@import url('https://fonts.googleapis.com/css2?family=Creepster&display=swap');
/* Vertex Bots – Styles */
:root {
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --card: #151515;
  --glass: rgba(255,255,255,0.06);
  --text: #e7e7e7;
  --muted: #b3b3b3;
  --primary: #9ca3af; /* gray-400 */
  --primary-600: #6b7280; /* gray-500/600 */
  --accent: #d1d5db; /* light gray */
  --border: rgba(255,255,255,0.08);
  --shadow: 0 10px 30px rgba(0,0,0,0.45);
  --transition: all 0.3s ease-in-out;
}

* { box-sizing: border-box }
html, body { height: 100% }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* ===============================
   Halloween Theme (scoped)
   Toggle with: body.halloween
=============================== */
@keyframes glowPulse {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(255,145,0,0.25)) }
  50% { filter: drop-shadow(0 0 22px rgba(255,145,0,0.45)) }
}

body.halloween {
  /* Override design tokens for Halloween */
  --primary: #f97316;       /* orange-500 */
  --primary-600: #ea580c;   /* orange-600 */
  --accent: #fde68a;        /* amber-200 */
  --muted: #cfcfd2;
  --border: rgba(255,148,36,0.18);
}

body.halloween {
  /* Deep night with eerie orange/purple glows, subtle grid and scene illustration */
  background:
    radial-gradient(1200px 800px at 85% -10%, rgba(255,145,0,0.10), transparent 55%),
    radial-gradient(900px 600px at 10% -5%, rgba(168,85,247,0.10), transparent 60%),
    radial-gradient(700px 600px at 65% 120%, rgba(255,98,0,0.08), transparent 62%),
    linear-gradient(180deg, rgba(0,0,0,0.6), transparent 42%),
    linear-gradient(rgba(255,153,51,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,153,51,0.012) 1px, transparent 1px),
    var(--scene-url, url('assets/pumpkin-landscape.svg')),
    #09090b;
  background-size: 
    100% 100%, 100% 100%, 100% 100%, 100% 100%, /* glow layers */
    44px 44px, 44px 44px, /* grid */
    cover, /* scene */
    100% 100%; /* base */
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat, repeat, no-repeat, no-repeat;
  background-position: center center, center center, center center, center top, 0 0, 0 0, var(--scene-pos, center bottom), center;
}

/* Subtle corner webs */
body.halloween::before,
body.halloween::after {
  content: "";
  position: fixed;
  width: 240px; height: 240px;
  pointer-events: none;
  opacity: 0.18;
  z-index: 1;
  background:
    radial-gradient(circle at 0 0, rgba(255,255,255,0.25) 2px, transparent 2px) 0 0 / 20px 20px,
    radial-gradient(circle at 0 0, rgba(255,255,255,0.20) 1px, transparent 1px) 10px 10px / 20px 20px;
  mask: radial-gradient(200px 200px at 0 0, #000 55%, transparent 56%);
}
body.halloween::before { top: 0; left: 0; }
body.halloween::after { bottom: 0; right: 0; transform: scaleX(-1) }

/* Header pumpkin glow */
body.halloween .brand img { animation: glowPulse 3.5s ease-in-out infinite }
body.halloween .btn--primary { box-shadow: 0 6px 28px rgba(239, 68, 68, 0.08), 0 0 0 1px rgba(249,115,22,0.08) }
body.halloween .btn--primary:hover { box-shadow: 0 10px 34px rgba(249,115,22,0.35) }
body.halloween .nav a::after { background-color: var(--primary) }
/* Orb glow and card accents */
body.halloween .orb {
  background:
    radial-gradient(circle at 35% 35%, rgba(255,145,0,0.22), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(168,85,247,0.18), transparent 62%);
  filter: blur(6px) saturate(140%);
  opacity: 0.95;
}
body.halloween .card:hover {
  border-color: rgba(249,115,22,0.35);
}

/* Spooky typographic accents */
body.halloween h1,
body.halloween h2,
body.halloween .price-card h3 {
  font-family: 'Creepster', Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 0 rgba(0,0,0,0.6), 0 0 18px rgba(249,115,22,0.35);
}

/* Brand pumpkin and header tint */
body.halloween .brand span::after {
  content: ' 🎃';
}
body.halloween .site-header {
  background: linear-gradient(180deg, rgba(15,10,5,0.95), rgba(15,10,5,0.6) 70%, transparent);
}

/* Section title underline cobweb */
body.halloween .section h2 {
  position: relative;
  padding-bottom: 6px;
}
body.halloween .section h2::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 88px; height: 6px;
  background: linear-gradient(90deg, rgba(249,115,22,0.8), rgba(168,85,247,0.7));
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(249,115,22,0.35);
}

/* Spooky floating layer (bats + ghosts) */
.spooky-layer { position: fixed; inset: 0; pointer-events: none; z-index: 2 }
.spooky-layer .bat,
.spooky-layer .ghost { position: absolute; opacity: 0.85; will-change: transform, opacity }

/* Stars and fog layers */
.stars-layer { position: fixed; inset: 0; pointer-events: none; z-index: 0 }
.stars-layer .star { position: absolute; width: 2px; height: 2px; background: rgba(255,255,255,0.85); border-radius: 50%; opacity: .6; animation: twinkle var(--twinkle-dur,4s) ease-in-out infinite }
@keyframes twinkle {
  0%, 100% { opacity: .25; filter: drop-shadow(0 0 0 rgba(255,255,255,0)) }
  50% { opacity: .95; filter: drop-shadow(0 0 6px rgba(255,255,255,.5)) }
}

.fog-layer { position: fixed; inset: 0; pointer-events: none; z-index: 1; overflow: hidden }
.fog-layer .fog {
  position: absolute; left: -10%; bottom: 8%; width: 120%; height: 45%;
  background: radial-gradient(60% 60% at 40% 60%, rgba(255,255,255,0.06), transparent 60%);
  filter: blur(12px) saturate(120%);
  animation: fogDrift 30s linear infinite alternate;
}
@keyframes fogDrift {
  from { transform: translateX(-6%) }
  to { transform: translateX(6%) }
}

@keyframes flyBat {
  0% { transform: translateX(-10vw) translateY(0) scale(0.9) rotate(0deg); opacity: 0 }
  10% { opacity: 1 }
  50% { transform: translateX(50vw) translateY(-6vh) scale(1) rotate(8deg) }
  100% { transform: translateX(110vw) translateY(0) scale(0.9) rotate(0deg); opacity: 0 }
}
@keyframes floatGhost {
  0% { transform: translateY(0) }
  50% { transform: translateY(-14px) }
  100% { transform: translateY(0) }
}
.spooky-layer .bat { font-size: 22px; animation: flyBat 14s linear infinite }
.spooky-layer .ghost { font-size: 26px; animation: floatGhost 4s ease-in-out infinite; text-shadow: 0 0 16px rgba(255,255,255,0.45) }

/* Dropping spider */
@keyframes spiderDrop {
  0% { transform: translateY(-140px) }
  20% { transform: translateY(18vh) }
  30% { transform: translateY(18vh) }
  50% { transform: translateY(-140px) }
  100% { transform: translateY(-140px) }
}
.spider { position: fixed; top: 0; right: 12vw; z-index: 3; animation: spiderDrop 12s ease-in-out infinite; pointer-events: none }
.spider::before { content: ''; position: absolute; left: 50%; top: -140px; width: 1px; height: 140px; background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05)) }
.spider .emoji { display: block; font-size: 24px; filter: drop-shadow(0 0 8px rgba(0,0,0,0.6)) }

/* Halloween accents for badges/pricing */
body.halloween .price-card--pro { border-color: rgba(249,115,22,0.25); box-shadow: 0 8px 28px rgba(249,115,22,0.1) }
body.halloween .price-card--pro .badge { background: linear-gradient(135deg, #ea580c, #f97316); color: #1b1b1b; border-radius: 10px; padding: 6px 10px; font-weight: 800; letter-spacing: .2px }

/* Themed list bullets */
body.halloween .list li { position: relative; list-style: none; padding-left: 14px }
body.halloween .list li::before { content: ''; position: absolute; left: 0; top: 0.7em; width: 6px; height: 6px; border-radius: 50%; background: #f97316; box-shadow: 0 0 8px rgba(249,115,22,0.45) }

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
  .spooky-layer .bat, .spooky-layer .ghost, .spider { animation: none !important }
}

/* Text reveal animations */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .85s ease, transform .85s ease }
.reveal--in { opacity: 1; transform: translateY(0) }
.reveal-delay-1 { transition-delay: .05s }
.reveal-delay-2 { transition-delay: .1s }
.reveal-delay-3 { transition-delay: .15s }
.reveal-delay-4 { transition-delay: .2s }
.reveal-delay-5 { transition-delay: .25s }
.reveal-delay-6 { transition-delay: .30s }
.reveal-delay-7 { transition-delay: .35s }
.reveal-delay-8 { transition-delay: .40s }
.reveal-delay-9 { transition-delay: .45s }
.reveal-delay-10 { transition-delay: .50s }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none }
}

/* ===============================
   Halloween: extend to components
=============================== */
body.halloween .panel,
body.halloween .card,
body.halloween .table,
body.halloween .form__row input,
body.halloween .form__row textarea {
  border-color: rgba(249,115,22,0.18);
}
body.halloween .table th { color: #fde68a }
body.halloween .table td { color: #e9e9ea }
body.halloween .table tr:hover td { background: rgba(249,115,22,0.06) }

body.halloween .form__row input:focus,
body.halloween .form__row textarea:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249,115,22,0.18);
}

body.halloween .team .avatar-img,
body.halloween .team .avatar {
  border-color: rgba(249,115,22,0.35);
  box-shadow: 0 8px 24px rgba(249,115,22,0.15);
}

body.halloween .partner-header {
  background: linear-gradient(180deg, rgba(26,14,5,0.95), rgba(26,14,5,0.65) 75%, transparent);
}
body.halloween .partner-header__logo img,
body.halloween .logo-grid .logo img {
  filter: grayscale(100%) sepia(20%) hue-rotate(-10deg) contrast(1.05);
}
body.halloween .partner-header__logo:hover img,
body.halloween .logo-grid .logo:hover img {
  filter: none;
}

body.halloween .hero__trust span { color: #fde68a }

body.halloween footer { border-top: 1px solid rgba(249,115,22,0.2); background: linear-gradient(180deg, rgba(26,14,5,0.6), rgba(10,10,10,0)) }

body.halloween .price-card .price { color: #fde68a }
body.halloween .price-card .price span { color: #fbd38d }
body.halloween .btn.btn--primary.btn--full { box-shadow: 0 10px 28px rgba(249,115,22,0.22) }

/* Seasonal countdown banner under header */
body.halloween .seasonal-banner {
  position: sticky;
  top: 56px;
  z-index: 45;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  margin: 0;
  background: linear-gradient(90deg, rgba(234,88,12,0.18), rgba(249,115,22,0.12));
  border-top: 1px solid rgba(249,115,22,0.15);
  border-bottom: 1px solid rgba(249,115,22,0.15);
  backdrop-filter: blur(6px) saturate(120%);
  color: #fde68a;
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(0,0,0,0.5);
}
body.halloween .seasonal-banner .timer { font-variant-numeric: tabular-nums; letter-spacing: 0.5px }

/* Brand pumpkin icon next to title */
body.halloween .brand .brand-pumpkin { width: 18px; height: 18px; margin-left: 6px; filter: drop-shadow(0 0 6px rgba(249,115,22,0.4)) }
/* Override earlier text emoji after by clearing content here */
body.halloween .brand span::after { content: '' }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  /* Enhanced layered background with smoother transitions */
  background:
    radial-gradient(1200px 800px at 80% -10%, rgba(166, 173, 255, 0.10), transparent 50%),
    radial-gradient(900px 600px at 10% 0%, rgba(255, 189, 231, 0.08), transparent 55%),
    radial-gradient(700px 600px at 70% 120%, rgba(141, 219, 255, 0.08), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.5), transparent 40%),
    /* Seamless grid pattern */
    linear-gradient(rgba(255,255,255,0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.01) 1px, transparent 1px),
    var(--bg);
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  line-height: 1.6;
  transition: background-position 0.5s ease-in-out;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px clamp(16px, 6vw, 56px);
  background: linear-gradient(180deg, rgba(10,10,10,0.9), rgba(10,10,10,0.6) 70%, transparent);
  backdrop-filter: saturate(130%) blur(6px);
  border-bottom: 1px solid var(--border);
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none }
.brand span { color: #ffffff; font-weight: 800; font-size: clamp(18px, 2.2vw, 22px); letter-spacing: 0.2px }
.partner-header {
  position: sticky; 
  top: 64px; 
  z-index: 40;
  padding: 16px clamp(16px, 6vw, 56px);
  background: linear-gradient(180deg, rgba(17,17,17,0.95), rgba(17,17,17,0.7) 80%, transparent);
  border-bottom: 1px solid var(--border);
  backdrop-filter: saturate(120%) blur(6px);
  margin: 0;
}
.partner-header__inner {
  display: flex; 
  gap: 32px; 
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  overflow-x: auto; 
  overflow-y: hidden; 
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding: 8px 0;
}
.partner-header__inner::-webkit-scrollbar { height: 6px }
.partner-header__inner::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px }
.partner-header__logo { display: inline-flex; align-items: center; justify-content: center; height: 40px }
.partner-header__logo img {
  max-height: 28px; max-width: 160px; object-fit: contain;
  filter: grayscale(100%) contrast(1.05); opacity: 0.85;
  transition: filter .2s ease, opacity .2s ease, transform .2s ease;
}
.partner-header__logo:hover img { filter: none; opacity: 1; transform: scale(1.02) }
.brand img { filter: drop-shadow(0 6px 14px rgba(255,255,255,0.12)) }
.nav { display: flex; align-items: center; gap: 18px }
.nav a { 
  color: var(--muted); 
  text-decoration: none; 
  font-weight: 500;
  position: relative;
  transition: var(--transition);
  padding: 4px 0;
}
.nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary);
  transition: var(--transition);
}
.nav a:hover { 
  color: var(--text);
}
.nav a:hover::after {
  width: 100%;
}

/* Buttons */
.btn { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  gap: 8px; 
  padding: 12px 18px; 
  border-radius: 12px; 
  background: var(--card); 
  color: var(--text); 
  border: 1px solid var(--border); 
  text-decoration: none; 
  font-weight: 600; 
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  z-index: -1;
}
.btn:hover::before {
  width: 100%;
}
.btn--primary { 
  background: linear-gradient(135deg, var(--primary-600), var(--primary)); 
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(156, 163, 175, 0.2);
}
.btn--ghost { 
  background: transparent; 
  border-color: var(--border);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.05);
}
.btn--small { 
  padding: 8px 12px; 
  border-radius: 10px;
}
.btn--full { 
  width: 100%;
}
.btn:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Team */
.team .member { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 14px; text-align: left }
.member__media { display: grid; align-content: center }
.avatar { width: 72px; height: 72px; border-radius: 999px; display: grid; place-items: center; font-weight: 800; color: var(--text); background: linear-gradient(180deg, var(--primary-600), var(--primary)); border: 1px solid var(--border); box-shadow: var(--shadow) }
.avatar-img { width: 72px; height: 72px; border-radius: 999px; object-fit: cover; border: 1px solid var(--border); box-shadow: var(--shadow); background: #0a0a0a }
.member__body { display: grid; gap: 4px }
.member__name { margin: 0; line-height: 1.2 }
.member__role { color: var(--muted); font-size: 14px; margin: 0 }
.member__tasks { margin: 6px 0 0; padding-left: 18px; color: var(--muted); font-size: 14px }
.member__tasks li { margin: 2px 0 }

.team .member img.avatar-img { display: block }
.team .member img.avatar-img + .avatar { display: none }

@media (max-width: 640px) {
  .team .member { grid-template-columns: 1fr; justify-items: center; text-align: center }
  .member__body { justify-items: center }
  .member__tasks { text-align: left }
}

/* Hero */
.btn--ghost { background: transparent; border-color: var(--border) }
.btn--small { padding: 8px 12px; border-radius: 10px }
.btn--full { width: 100% }
.btn:hover { transform: translateY(-1px); filter: brightness(1.05) }
.hero { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(24px, 4vw, 48px); align-items: center; padding: 48px clamp(16px, 6vw, 56px) 24px }
.hero h1 { font-size: clamp(28px, 4.8vw, 56px); line-height: 1.1; margin: 0 0 12px }
.hero p { margin: 0 0 22px; color: var(--muted); font-size: clamp(16px, 1.4vw, 18px) }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap }
.hero__trust { display: flex; gap: 16px; margin-top: 18px; color: var(--muted); font-size: 14px }
.hero__visual { position: relative; min-height: 320px }
.orb { position: absolute; inset: 0; margin: auto; width: min(420px, 90%); height: min(420px, 90%); background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08), transparent 60%), radial-gradient(circle at 70% 70%, rgba(255,255,255,0.06), transparent 60%); border-radius: 50%; filter: blur(8px) saturate(130%); opacity: 0.9 }
.glass-card { position: absolute; right: 6%; top: 14%; width: 280px; padding: 16px; border-radius: 16px; background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)); border: 1px solid var(--border); box-shadow: var(--shadow); backdrop-filter: blur(8px) }
.stat { display: flex; align-items: baseline; justify-content: space-between; padding: 10px 8px; border-bottom: 1px dashed var(--border) }
.stat:last-child { border-bottom: none }
.stat__label { color: var(--muted) }

/* Sections */
.section { padding: 64px clamp(16px, 6vw, 56px) }
.section h2 { font-size: clamp(22px, 3vw, 34px); margin: 0 0 24px }
.section--spaced { margin-top: 48px }
@media (min-width: 768px) {
  .section--spaced { margin-top: 72px }
}
@media (min-width: 1024px) {
  .section--spaced { margin-top: 96px }
}
.grid { display: grid; gap: 16px }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) }
.card { 
  background: var(--card); 
  border: 1px solid var(--border); 
  border-radius: 14px; 
  padding: 24px; 
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.15);
}
.card--outline { background: transparent }
  .list { margin: 0; padding-left: 18px; color: var(--muted) }

  /* Partner Logos */
  .logo-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    align-items: center;
  }
  .logo-grid .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-decoration: none;
    transition: var(--transition);
    transform: translateZ(0);
    backface-visibility: hidden;
  }
  
  .logo-grid .logo:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.15);
  }
  
  .logo-grid .logo img {
    max-width: 100%;
    max-height: 56px;
    object-fit: contain;
    filter: grayscale(100%) contrast(1.05);
    opacity: 0.9;
    transition: filter .2s ease, opacity .2s ease, transform .2s ease;
  }
  
  .logo-grid .logo:hover img {
    filter: none;
    opacity: 1;
    transform: scale(1.02);
  }

/* Panel + Table */
.panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.table-responsive { width: 100%; overflow-x: auto }
.table { width: 100%; border-collapse: collapse; font-size: 14px }
.table th, .table td { border-bottom: 1px solid var(--border); padding: 10px 12px; text-align: left }
.table th { color: var(--accent); font-weight: 700 }
.table td { color: var(--muted) }
.table tr:last-child th, .table tr:last-child td { border-bottom: none }
.table .logo-cell img { height: 36px; width: auto; border-radius: 8px; object-fit: contain; background: #0a0a0a; border: 1px solid var(--border) }
.table a { color: var(--text); text-decoration: none }
.table a:hover { text-decoration: underline }

@media (max-width: 600px) {
  .table { font-size: 13px }
  .table .hide-sm { display: none }
}

/* Pricing */
.pricing { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) }
.price-card { position: relative; background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 18px; box-shadow: var(--shadow) }
.price-card--pro { background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)); border-color: rgba(255,255,255,0.18) }
/* Corner ribbon */
.price-card .ribbon {
  position: absolute;
  top: 12px;
  right: -38px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, #ea580c, #f97316);
  color: #1b1b1b;
  padding: 6px 56px;
  font-weight: 800;
  letter-spacing: .3px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
}
  .price { font-size: 28px; font-weight: 800; margin: 8px 0 12px }
  .form { max-width: 680px }
.form__row { display: grid; gap: 8px; margin-bottom: 14px }
.form__row input, .form__row textarea { width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--border); background: rgba(0,0,0,0.2); color: var(--text); outline: none }
.form__row input:focus, .form__row textarea:focus { border-color: var(--primary-600) }
.form__status { margin-top: 8px; color: var(--accent); font-weight: 600 }
