/* ============================================================
   GROWISE / TAM AI — Official Site Stylesheet v4
   TAM AI First · Sora + Inter · Purple Design System
   ============================================================ */

/* ── DESIGN TOKENS ── */
:root {
  --purple-950: #0d0520;
  --purple-900: #1a0a2e;
  --purple-800: #2d1155;
  --purple-700: #4a1d96;
  --purple-600: #6d28d9;
  --purple-500: #7c3aed;
  --purple-400: #8b5cf6;
  --purple-300: #a78bfa;
  --purple-200: #c4b5fd;
  --purple-100: #ede9fe;
  --purple-50:  #f5f3ff;

  --accent:           #7c3aed;
  --text-primary:     #0f0a1a;
  --text-secondary:   #4b4566;
  --text-muted:       #8b85a0;
  --border:           #e5e0f0;
  --bg:               #ffffff;
  --bg-subtle:        #faf9ff;

  --green:       #10b981;
  --green-light: #34d399;
  --red:         #f87171;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img, video { max-width: 100%; display: block; }

/* ── LUCIDE ICONS ── */
.lucide { width: 22px; height: 22px; stroke-width: 1.75; flex-shrink: 0; }
.icon-sm .lucide { width: 18px; height: 18px; }
.icon-lg .lucide { width: 28px; height: 28px; stroke-width: 1.5; }

/* ── BODY ── */
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.6;
}
h1, h2, h3, h4, h5 { font-family: 'Sora', sans-serif; line-height: 1.2; }
a { text-decoration: none; }

/* ── BUTTONS ── */
.btn-primary {
  font-family: 'Sora', sans-serif; font-size: 0.9rem; font-weight: 600; color: white;
  padding: 11px 24px; border-radius: 10px;
  background: linear-gradient(135deg, var(--purple-600), var(--purple-500));
  border: none; cursor: pointer; transition: all 0.25s;
  box-shadow: 0 2px 16px rgba(124,58,237,0.3);
  display: inline-flex; align-items: center; gap: 7px;
  text-decoration: none; white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 24px rgba(124,58,237,0.45); }
.btn-secondary {
  font-family: 'Sora', sans-serif; font-size: 0.9rem; font-weight: 600; color: var(--purple-600);
  padding: 10px 24px; border-radius: 10px; background: transparent;
  border: 1.5px solid var(--purple-300); cursor: pointer; transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 7px; text-decoration: none; white-space: nowrap;
}
.btn-secondary:hover { background: var(--purple-50); border-color: var(--purple-400); }
.btn-ghost {
  font-size: 0.875rem; font-weight: 500; color: var(--text-secondary);
  padding: 8px 16px; border-radius: 8px; border: 1px solid transparent;
  transition: all 0.2s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-ghost:hover { border-color: var(--border); background: var(--bg-subtle); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 5%; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border); transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(124,58,237,0.08); }

.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo-img { height: 34px; width: auto; display: block; }

.nav-center { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link {
  font-size: 0.875rem; font-weight: 500; color: var(--text-secondary);
  padding: 8px 13px; border-radius: 8px;
  border: none; background: none; cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; gap: 4px;
  text-decoration: none; font-family: 'Inter', sans-serif; white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--accent); background: var(--purple-50); }
.nav-chevron { font-size: 0.6rem; opacity: 0.5; transition: transform 0.2s; }
.nav-item:hover .nav-chevron { transform: rotate(180deg); }

.nav-dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: white; border: 1px solid var(--border); border-radius: 14px;
  box-shadow: 0 8px 40px rgba(124,58,237,0.1), 0 2px 8px rgba(0,0,0,0.04);
  padding: 8px; min-width: 210px; z-index: 200;
  padding-top: 14px; margin-top: 0;
}
.nav-item::after {
  content: ''; position: absolute;
  top: 100%; left: -8px; right: -8px; height: 14px; z-index: 199;
}
.nav-item:hover .nav-dropdown { display: block; }
.nav-dropdown-link {
  display: block; padding: 10px 14px; border-radius: 8px;
  color: var(--text-secondary); text-decoration: none; transition: all 0.15s;
}
.nav-dropdown-link:hover { background: var(--purple-50); color: var(--accent); }
.nav-dropdown-link-title { font-weight: 600; font-size: 0.875rem; color: var(--text-primary); margin-bottom: 2px; }
.nav-dropdown-link-sub { font-size: 0.75rem; color: var(--text-muted); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-lang {
  font-size: 0.78rem; font-weight: 600; color: var(--text-muted);
  padding: 5px 10px; border-radius: 6px;
  background: var(--bg-subtle); border: 1px solid var(--border);
  cursor: pointer; text-decoration: none; transition: all 0.2s;
}
.nav-lang:hover { border-color: var(--purple-300); color: var(--accent); }

/* ── LANGUAGE SWITCHER ── */
.lang-switcher { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.78rem; font-weight: 600; color: var(--text-muted);
  padding: 5px 10px; border-radius: 6px;
  background: var(--bg-subtle); border: 1px solid var(--border);
  cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.lang-btn:hover { border-color: var(--purple-300); color: var(--accent); }
.lang-btn svg { width: 14px; height: 14px; stroke: currentColor; flex-shrink: 0; }
.lang-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: white; border: 1px solid var(--border); border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12); min-width: 160px;
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: all 0.2s; z-index: 200;
}
.lang-switcher.open .lang-dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.lang-option {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; font-size: 0.825rem; color: var(--text-secondary);
  cursor: pointer; transition: background 0.15s; border-radius: 8px; text-decoration: none;
}
.lang-option:hover { background: var(--bg-subtle); color: var(--text-primary); }
.lang-option.active { color: var(--purple-600); font-weight: 600; }
.lang-option .lang-flag { font-size: 1rem; }
.lang-coming { font-size: 0.68rem; color: var(--text-muted); margin-left: auto; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.nav-hamburger span { width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all 0.3s; display: block; }

.nav-mobile {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: white; border-bottom: 1px solid var(--border);
  padding: 12px 5% 24px; z-index: 99;
  flex-direction: column; gap: 2px; box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 11px 16px; border-radius: 8px; font-size: 0.9rem; color: var(--text-secondary); display: block; }
.nav-mobile a:hover { background: var(--purple-50); color: var(--accent); }
.nav-mobile-group-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); padding: 10px 16px 4px; }
.nav-mobile-divider { height: 1px; background: var(--border); margin: 8px 0; }
.nav-mobile-ctas { display: flex; flex-direction: column; gap: 8px; padding: 8px 0 0; }
.nav-mobile-ctas .btn-primary, .nav-mobile-ctas .btn-secondary { justify-content: center; }

/* ── HERO ── */
.hero {
  padding: 140px 5% 100px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
  position: relative; overflow: hidden; min-height: 100vh;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.1; }
.orb-1 { width: 600px; height: 600px; background: var(--purple-500); top: -150px; left: -80px; }
.orb-2 { width: 450px; height: 450px; background: var(--purple-400); bottom: -80px; right: 0; opacity: 0.07; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 90% at 30% 40%, black 30%, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 90% at 30% 40%, black 30%, transparent);
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 700; color: var(--purple-600); background: var(--purple-50);
  border: 1px solid rgba(124,58,237,0.2); padding: 5px 14px; border-radius: 100px;
  margin-bottom: 28px; letter-spacing: 0.04em; text-transform: uppercase;
  animation: fadeUp 0.5s ease both;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--purple-500); animation: pulse 2s infinite; }
.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem); font-weight: 800;
  letter-spacing: -0.04em; line-height: 1.08; margin-bottom: 24px;
  animation: fadeUp 0.5s 0.1s ease both;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--purple-600) 0%, var(--purple-400) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { font-size: 1.05rem; color: var(--text-secondary); max-width: 480px; margin-bottom: 40px; line-height: 1.75; animation: fadeUp 0.5s 0.2s ease both; }
.hero-ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; animation: fadeUp 0.5s 0.3s ease both; }
.hero-proof { display: flex; align-items: center; gap: 16px; color: var(--text-muted); font-size: 0.8rem; flex-wrap: wrap; animation: fadeUp 0.5s 0.4s ease both; }
.proof-divider { width: 1px; height: 18px; background: var(--border); }
.hero-visual { position: relative; z-index: 1; animation: fadeUp 0.6s 0.2s ease both; }
.hero-mockup-wrap {
  transform: perspective(1200px) rotateY(-8deg) rotateX(3deg);
  transform-origin: left center; transition: transform 0.5s ease;
}
.hero-mockup-wrap:hover { transform: perspective(1200px) rotateY(-3deg) rotateX(1deg); }

/* ── SECTION COMMONS ── */
section { padding: 100px 5%; }
.section-label {
  font-size: 0.7rem; font-weight: 700; color: var(--purple-600);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
}
.section-label::before { content: ''; width: 20px; height: 2px; background: var(--purple-500); border-radius: 2px; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 16px; }
.section-sub { font-size: 1.05rem; color: var(--text-secondary); max-width: 540px; line-height: 1.7; }
.center { text-align: center; }
.center .section-label { justify-content: center; }
.center .section-sub { margin: 0 auto; }

/* ── SUB HERO ── */
.sub-hero { padding: 160px 5% 80px; background: var(--bg-subtle); position: relative; overflow: hidden; }
.sub-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(124,58,237,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(124,58,237,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent);
}
.sub-hero-inner { position: relative; z-index: 1; }
.sub-hero .section-label { margin-bottom: 16px; }
.sub-hero h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 800; letter-spacing: -0.04em; margin-bottom: 20px; }
.sub-hero h1 em { font-style: normal; background: linear-gradient(135deg, var(--purple-600), var(--purple-400)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.sub-hero-sub { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.7; max-width: 580px; margin-bottom: 32px; }
.sub-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── MOCK UI PANELS (Light Theme v4) ── */
.mock-panel {
  background: #ffffff; border: 1px solid #dde3ef; border-radius: 16px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.07), 0 2px 8px rgba(0,0,0,0.04);
}
.mock-bar {
  background: #f4f6fb; border-bottom: 1px solid #dde3ef;
  display: flex; align-items: center; gap: 6px; padding: 10px 16px;
}
.mock-panel-inner { padding: 16px; }
.mock-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.mock-dot.r { background: #ff5f57; } .mock-dot.y { background: #ffbd2e; } .mock-dot.g { background: #28c840; }
.mock-label { font-size: 0.65rem; color: #94a3b8; margin-left: 8px; font-family: 'Sora', sans-serif; }
.mock-section-title { font-family: 'Sora', sans-serif; font-size: 0.6rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; padding: 0 2px; }
.mock-row {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; border-radius: 8px;
  background: #f8fafc; border: 1px solid #eff2f8;
  margin-bottom: 5px; font-size: 0.75rem; color: #475569;
}
.mock-row.highlight { background: rgba(124,58,237,0.06); border: 1px solid rgba(124,58,237,0.18); }
.mock-cell { flex: 1; min-width: 0; }
.mock-cell-main { font-weight: 600; color: #1e293b; font-size: 0.8rem; }
.mock-cell-sub { font-size: 0.62rem; color: #94a3b8; margin-top: 1px; }
.mock-badge { font-size: 0.6rem; padding: 2px 8px; border-radius: 100px; background: rgba(124,58,237,0.1); color: var(--purple-600); font-weight: 600; white-space: nowrap; flex-shrink: 0; }
.mock-badge.green { background: rgba(16,185,129,0.12); color: #059669; }
.mock-badge.orange { background: rgba(245,158,11,0.12); color: #d97706; }
.mock-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mock-stat { background: #f4f6fb; border: 1px solid #dde3ef; border-radius: 10px; padding: 12px; text-align: center; }
.mock-stat-num { font-family: 'Sora', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--purple-600); }
.mock-stat-label { font-size: 0.58rem; color: #94a3b8; margin-top: 2px; }
.mock-progress-row { margin-bottom: 8px; }
.mock-prog-label { display: flex; justify-content: space-between; font-size: 0.6rem; color: #94a3b8; margin-bottom: 4px; }
.mock-prog-bar { height: 5px; border-radius: 3px; background: #e2e8f0; overflow: hidden; }
.mock-prog-fill { height: 100%; background: linear-gradient(90deg, var(--purple-600), var(--purple-400)); border-radius: 3px; }

/* ── SIGNAL FEED ── */
.signal-section { background: var(--bg-subtle); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.signal-feed { display: flex; flex-direction: column; gap: 10px; }
.signal-card { background: white; border: 1px solid var(--border); border-radius: 14px; padding: 16px 18px; display: flex; align-items: flex-start; gap: 14px; transition: all 0.3s; }
.signal-card:hover { border-color: var(--purple-300); box-shadow: 0 4px 20px rgba(124,58,237,0.08); }
.signal-card.new { border-left: 3px solid var(--purple-400); }
.signal-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--purple-50); border: 1px solid rgba(124,58,237,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.signal-body { flex: 1; min-width: 0; }
.signal-company { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.875rem; color: var(--text-primary); margin-bottom: 3px; }
.signal-text { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.45; margin-bottom: 8px; }
.signal-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 0.7rem; color: var(--text-muted); }
.signal-source { padding: 2px 8px; border-radius: 100px; background: var(--purple-50); color: var(--purple-600); font-weight: 700; font-size: 0.65rem; }
.signal-action { margin-top: 8px; padding: 8px 12px; border-radius: 8px; background: rgba(124,58,237,0.05); font-size: 0.75rem; color: var(--purple-700); line-height: 1.4; border-left: 2px solid var(--purple-400); }
.signal-action strong { color: var(--purple-600); }

/* ── EMAIL PREVIEW ── */
.email-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.email-input-panel { display: flex; flex-direction: column; gap: 14px; }
.email-input-group { display: flex; flex-direction: column; gap: 5px; }
.email-input-label { font-size: 0.72rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.email-input-value { background: var(--bg-subtle); border: 1.5px solid var(--border); border-radius: 10px; padding: 11px 14px; font-size: 0.85rem; color: var(--text-primary); line-height: 1.45; }
.email-input-value strong { color: var(--purple-600); }
.ai-gen-btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 10px;
  background: linear-gradient(135deg, var(--purple-600), var(--purple-400));
  color: white; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.875rem;
  cursor: pointer; border: none; margin-top: 4px; transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(124,58,237,0.3); width: fit-content; text-decoration: none;
}
.ai-gen-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(124,58,237,0.4); }
.email-output { background: white; border: 1.5px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.email-output-bar { padding: 12px 18px; background: var(--bg-subtle); border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 6px; }
.eo-dot { width: 10px; height: 10px; border-radius: 50%; }
.eo-dot.r { background: #ff5f57; } .eo-dot.y { background: #ffbd2e; } .eo-dot.g { background: #28c840; }
.eo-title { font-size: 0.68rem; color: var(--text-muted); margin-left: 8px; font-family: 'Sora', sans-serif; }
.email-output-body { padding: 20px 22px; }
.email-to { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 6px; }
.email-subject { font-weight: 700; font-size: 0.92rem; margin-bottom: 14px; color: var(--text-primary); padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.email-body-text { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.85; }
.email-highlight { background: rgba(124,58,237,0.1); color: var(--purple-700); padding: 1px 4px; border-radius: 3px; font-weight: 500; }
.email-ai-tag { display: inline-flex; align-items: center; gap: 5px; font-size: 0.65rem; font-weight: 700; color: var(--purple-600); background: var(--purple-50); border: 1px solid rgba(124,58,237,0.2); padding: 3px 10px; border-radius: 100px; margin-top: 14px; }

/* ── FEATURE GRID (v4: no icons → visual card top) ── */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.feature-card { background: white; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: all 0.3s; display: flex; flex-direction: column; }
.feature-card:hover { border-color: var(--purple-300); box-shadow: 0 4px 24px rgba(124,58,237,0.08); transform: translateY(-2px); }
.feature-card-visual { height: 110px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.feature-card-body { padding: 20px 22px 24px; flex: 1; }
.feature-card-title { font-family: 'Sora', sans-serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.feature-card-desc { font-size: 0.825rem; color: var(--text-secondary); line-height: 1.6; }

/* ── PLAYBOOK ── */
.playbook-wrap { position: relative; margin-top: 56px; }
.playbook-line { position: absolute; top: 52px; left: calc(16.67% + 40px); right: calc(16.67% + 40px); height: 2px; background: linear-gradient(90deg, var(--purple-500) 0%, var(--purple-300) 100%); z-index: 0; }
.playbook-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; z-index: 1; }
.playbook-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 32px; }
.playbook-num { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--purple-600), var(--purple-400)); color: white; font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; box-shadow: 0 4px 20px rgba(124,58,237,0.3); }
.playbook-step-icon { font-size: 1.8rem; margin-bottom: 14px; }
.playbook-step-title { font-family: 'Sora', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.playbook-step-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.65; flex: 1; }
.playbook-step-tag { display: inline-block; margin-top: auto; padding-top: 12px; font-size: 0.68rem; font-weight: 700; color: var(--purple-600); background: var(--purple-50); border: 1px solid rgba(124,58,237,0.15); padding: 3px 10px; border-radius: 100px; letter-spacing: 0.04em; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--purple-900); color: white; padding: 100px 5%; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; width: 800px; height: 800px; border-radius: 50%; background: var(--purple-700); filter: blur(150px); opacity: 0.2; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.cta-banner h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 800; letter-spacing: -0.04em; margin-bottom: 16px; position: relative; }
.cta-banner p { font-size: 1.1rem; color: rgba(255,255,255,0.6); margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; position: relative; line-height: 1.7; }
.cta-btns { display: flex; align-items: center; gap: 14px; justify-content: center; position: relative; flex-wrap: wrap; }
.btn-white { padding: 13px 28px; background: white; color: var(--purple-700); border-radius: 10px; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.95rem; text-decoration: none; transition: all 0.25s; box-shadow: 0 4px 20px rgba(0,0,0,0.2); display: inline-flex; align-items: center; gap: 6px; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.25); }
.btn-outline-white { padding: 12px 28px; background: rgba(255,255,255,0.08); color: white; border-radius: 10px; font-family: 'Sora', sans-serif; font-weight: 600; font-size: 0.95rem; text-decoration: none; border: 1px solid rgba(255,255,255,0.2); transition: all 0.25s; display: inline-flex; align-items: center; gap: 6px; }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }

/* ── PRODUCT LAYOUT ── */
.product-section { padding: 100px 5%; }
.product-section.alt { background: var(--bg-subtle); }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.product-layout.reverse { direction: rtl; }
.product-layout.reverse > * { direction: ltr; }
.product-features { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.feature-item { display: flex; gap: 14px; padding: 14px 16px; border-radius: 10px; transition: background 0.2s; }
.feature-item:hover { background: var(--purple-50); }
.feature-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--purple-500); margin-top: 6px; flex-shrink: 0; }
.feature-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 3px; }
.feature-desc { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.55; }

/* ── PRICING (equal height, CTA pinned to bottom) ── */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; align-items: stretch; margin-top: 56px; }
.pricing-card {
  background: white; border: 2px solid var(--border); border-radius: 20px; padding: 26px 22px;
  transition: all 0.25s; position: relative; cursor: pointer;
  display: flex; flex-direction: column; /* equal height + bottom-pin CTA */
}
.pricing-card:hover:not(.featured) { border-color: var(--purple-300); box-shadow: 0 4px 24px rgba(124,58,237,0.1); }
.pricing-card.featured { border-color: var(--purple-500); background: linear-gradient(180deg, var(--purple-50) 0%, white 60%); box-shadow: 0 8px 40px rgba(124,58,237,0.14); }
.pricing-card.selected { border-color: var(--purple-500); box-shadow: 0 0 0 4px rgba(124,58,237,0.12); }
.featured-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); font-size: 0.7rem; font-weight: 700; background: linear-gradient(135deg, var(--purple-600), var(--purple-400)); color: white; padding: 4px 16px; border-radius: 100px; letter-spacing: 0.04em; white-space: nowrap; }
.pricing-plan { font-family: 'Sora', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.pricing-tagline { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 18px; line-height: 1.4; }
.pricing-price { font-family: 'Sora', sans-serif; font-size: 2.1rem; font-weight: 800; letter-spacing: -0.04em; margin-bottom: 2px; color: var(--text-primary); }
.pricing-price sub { font-size: 0.85rem; font-weight: 400; color: var(--text-muted); vertical-align: baseline; }
.pricing-price-note { font-size: 0.76rem; color: var(--text-muted); margin-bottom: 22px; }
.pricing-divider { height: 1px; background: var(--border); margin-bottom: 18px; }
.pricing-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; flex: 1; /* expand to fill space, pin CTA below */ }
.pricing-feature { display: flex; align-items: flex-start; gap: 9px; font-size: 0.8rem; color: var(--text-secondary); }
.check { color: var(--purple-500); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing-cta {
  display: block; text-align: center; padding: 12px 16px; border-radius: 10px;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 0.875rem;
  cursor: pointer; border: none; transition: all 0.25s; text-decoration: none; width: 100%;
  margin-top: auto; /* always pin to bottom */
}
.pricing-cta.outline { border: 1.5px solid var(--purple-300); color: var(--purple-600); background: transparent; }
.pricing-cta.outline:hover { background: var(--purple-50); }
.pricing-cta.filled { background: linear-gradient(135deg, var(--purple-600), var(--purple-500)); color: white; box-shadow: 0 4px 16px rgba(124,58,237,0.3); }
.pricing-cta.filled:hover { box-shadow: 0 6px 24px rgba(124,58,237,0.4); transform: translateY(-1px); }
.pricing-cta.enterprise { background: var(--bg-subtle); color: var(--text-primary); border: 1.5px solid var(--border); }
.pricing-cta.enterprise:hover { border-color: var(--purple-300); background: var(--purple-50); color: var(--purple-700); }

.credits-note { text-align: center; margin: 28px auto 0; font-size: 0.825rem; color: var(--text-muted); padding: 14px 24px; border: 1px solid var(--border); border-radius: 10px; background: var(--bg-subtle); max-width: 640px; display: block; }
.credits-note strong { color: var(--text-primary); }

/* ── COMPARISON TABLE ── */
.cmp-table { width: 100%; border-collapse: collapse; margin-top: 56px; }
.cmp-table th, .cmp-table td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.84rem; }
.cmp-table th { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.76rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; background: var(--bg-subtle); cursor: pointer; transition: background 0.2s; }
.cmp-table th:first-child { border-radius: 10px 0 0 0; cursor: default; }
.cmp-table th:last-child { border-radius: 0 10px 0 0; }
.cmp-table th.cmp-active { background: rgba(124,58,237,0.1); color: var(--purple-700); }
.cmp-table td:first-child { font-weight: 600; color: var(--text-primary); }
.cmp-table td.cmp-active { background: rgba(124,58,237,0.04); }
.cmp-yes { color: var(--green); font-weight: 700; }
.cmp-no { color: var(--red); opacity: 0.6; }
.cmp-category-row td { background: var(--purple-50); font-weight: 700; font-size: 0.78rem; color: var(--purple-700); padding: 10px 16px; }
.cmp-category-row td.cmp-active { background: rgba(124,58,237,0.1); }

/* ── FAQ ── */
.faq-section { padding: 80px 5%; }
.faq-list { max-width: 720px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; padding: 20px 0; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: 'Sora', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--text-primary); gap: 16px; transition: color 0.2s; }
.faq-q:hover { color: var(--accent); }
.faq-icon { font-size: 1rem; transition: transform 0.3s; flex-shrink: 0; color: var(--text-muted); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.75; }
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 20px; }

/* ── ABOUT ── */
.about-story { display: grid; grid-template-columns: 3fr 2fr; gap: 72px; align-items: start; }
.about-text h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 14px; letter-spacing: -0.02em; }
.about-text p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.85; margin-bottom: 16px; }
.about-sidebar { display: flex; flex-direction: column; gap: 16px; }
.about-info-card { background: var(--bg-subtle); border: 1px solid var(--border); border-radius: 14px; padding: 18px 20px; }
.about-info-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 5px; }
.about-info-value { font-size: 0.9rem; font-weight: 600; }
.about-info-sub { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }
.founder-section { margin-top: 72px; }
.founder-card { background: white; border: 1px solid var(--border); border-radius: 20px; padding: 36px; display: flex; align-items: flex-start; gap: 28px; max-width: 760px; }
.founder-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--purple-600), var(--purple-400)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; font-size: 1.8rem; font-family: 'Sora', sans-serif; flex-shrink: 0; }
.founder-name { font-family: 'Sora', sans-serif; font-size: 1.25rem; font-weight: 800; margin-bottom: 4px; }
.founder-title { font-size: 0.825rem; color: var(--text-muted); margin-bottom: 14px; }
.founder-bio { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.75; }
.founder-links { display: flex; gap: 12px; margin-top: 14px; }
.founder-links a { font-size: 0.825rem; color: var(--purple-600); font-weight: 600; }
.founder-links a:hover { text-decoration: underline; }
.mission-band { background: var(--purple-900); color: white; border-radius: 20px; padding: 48px 56px; margin-top: 64px; }
.mission-band h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 14px; letter-spacing: -0.02em; }
.mission-band p { font-size: 1.05rem; color: rgba(255,255,255,0.7); line-height: 1.75; max-width: 560px; }
.products-overview { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.product-ov-card { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 28px; transition: all 0.3s; }
.product-ov-card:hover { border-color: var(--purple-300); box-shadow: 0 4px 20px rgba(124,58,237,0.08); transform: translateY(-2px); }
.product-ov-card.flagship { border-color: var(--purple-300); background: var(--purple-50); }
.product-ov-badge { display: inline-block; font-size: 0.65rem; font-weight: 700; color: white; background: linear-gradient(135deg, var(--purple-600), var(--purple-400)); padding: 2px 9px; border-radius: 100px; margin-bottom: 12px; letter-spacing: 0.04em; }
.product-ov-icon { font-size: 1.8rem; margin-bottom: 12px; }
.product-ov-name { font-family: 'Sora', sans-serif; font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.product-ov-desc { font-size: 0.825rem; color: var(--text-secondary); line-height: 1.6; }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 3fr 2fr; gap: 72px; align-items: start; }
.contact-form { background: white; border: 1px solid var(--border); border-radius: 20px; padding: 36px; }
.contact-form h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 6px; }
.contact-form-sub { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 28px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label { font-size: 0.82rem; font-weight: 600; color: var(--text-secondary); }
.form-input { padding: 11px 15px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 0.875rem; font-family: 'Inter', sans-serif; color: var(--text-primary); background: var(--bg); transition: all 0.2s; outline: none; width: 100%; }
.form-input:focus { border-color: var(--purple-400); box-shadow: 0 0 0 3px rgba(124,58,237,0.1); }
.form-input::placeholder { color: var(--text-muted); }
textarea.form-input { resize: vertical; min-height: 110px; }
select.form-input { cursor: pointer; }
.form-submit { width: 100%; padding: 14px; background: linear-gradient(135deg, var(--purple-600), var(--purple-500)); color: white; border: none; border-radius: 10px; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1rem; cursor: pointer; transition: all 0.25s; box-shadow: 0 4px 16px rgba(124,58,237,0.3); margin-top: 8px; }
.form-submit:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(124,58,237,0.4); }
.form-note { font-size: 0.78rem; color: var(--text-muted); text-align: center; margin-top: 10px; }
.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card { background: var(--bg-subtle); border: 1px solid var(--border); border-radius: 14px; padding: 22px; }
.contact-info-icon { font-size: 1.5rem; margin-bottom: 10px; }
.contact-info-title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.95rem; margin-bottom: 6px; }
.contact-info-text { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }
.contact-info-text a { color: var(--purple-600); font-weight: 500; }
.demo-cta-card { background: var(--purple-900); color: white; border-radius: 14px; padding: 28px; }
.demo-cta-card h3 { font-family: 'Sora', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.demo-cta-card p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 16px; }
.demo-items { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.demo-item { display: flex; gap: 8px; align-items: flex-start; font-size: 0.8rem; color: rgba(255,255,255,0.75); }
.demo-item-dot { color: var(--purple-300); font-weight: 700; flex-shrink: 0; }

/* ── FOOTER ── */
footer { padding: 64px 5% 40px; border-top: 1px solid var(--border); background: var(--bg); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { text-decoration: none; display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo img { height: 28px; width: auto; }
.footer-brand p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 8px; margin-top: 18px; }
.footer-social a { width: 32px; height: 32px; border-radius: 8px; background: var(--bg-subtle); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: var(--text-muted); text-decoration: none; transition: all 0.2s; }
.footer-social a:hover { border-color: var(--purple-300); color: var(--accent); background: var(--purple-50); }
.footer-col h4 { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.82rem; margin-bottom: 16px; color: var(--text-primary); }
.footer-col a { display: block; font-size: 0.8rem; color: var(--text-muted); text-decoration: none; margin-bottom: 9px; transition: color 0.2s; }
.footer-col a:hover { color: var(--purple-600); }
.footer-other-note { font-size: 0.73rem; color: var(--text-muted); font-style: italic; margin-bottom: 10px; line-height: 1.5; }
.footer-other-note a { color: var(--purple-500); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--border); font-size: 0.78rem; color: var(--text-muted); flex-wrap: wrap; gap: 10px; }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--accent); }

/* ── PAIN SECTION ── */
.pain-section { background: var(--purple-900); color: white; padding: 100px 5%; position: relative; overflow: hidden; }
.pain-section::before { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: var(--purple-700); filter: blur(120px); opacity: 0.25; top: -200px; right: -100px; }
.pain-section .section-label { color: var(--purple-300); }
.pain-section .section-label::before { background: var(--purple-400); }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 56px; background: rgba(255,255,255,0.04); border-radius: 16px; overflow: hidden; }
.pain-item { padding: 36px 32px; background: rgba(255,255,255,0.02); transition: background 0.3s; }
.pain-item:hover { background: rgba(124,58,237,0.12); }
.pain-num { font-family: 'Sora', sans-serif; font-size: 2.8rem; font-weight: 800; color: rgba(139,92,246,0.25); line-height: 1; margin-bottom: 14px; letter-spacing: -0.05em; }
.pain-title { font-family: 'Sora', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.pain-desc { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ── INTEGRATIONS ── */
.integrations-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 48px; }
.integration-card { background: white; border: 1px solid var(--border); border-radius: 14px; padding: 20px 16px; text-align: center; transition: all 0.3s; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.integration-card:hover { border-color: var(--purple-300); box-shadow: 0 4px 20px rgba(124,58,237,0.08); transform: translateY(-2px); }
.integration-logo { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; flex-shrink: 0; font-family: 'Sora', sans-serif; }
.integration-name { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.875rem; }
.integration-type { font-size: 0.7rem; color: var(--text-muted); }

/* ── EMAIL STATUS PIPELINE ── */
.email-status-bar { display: flex; align-items: center; flex-wrap: wrap; gap: 0; margin-top: 16px; padding: 10px 14px; background: var(--bg-subtle); border-radius: 8px; border: 1px solid var(--border); }
.status-step { display: flex; align-items: center; gap: 4px; font-size: 0.65rem; font-weight: 600; color: var(--text-muted); white-space: nowrap; }
.status-step.done { color: var(--green); }
.status-step.active { color: var(--purple-600); }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border); flex-shrink: 0; }
.status-step.done .status-dot { background: var(--green); }
.status-step.active .status-dot { background: var(--purple-500); animation: pulse 2s infinite; }
.status-arrow { color: var(--border); margin: 0 5px; font-size: 0.6rem; }
.status-arrow.done { color: var(--green); }

/* ── ROLE BADGES ── */
.for-roles { padding: 52px 5%; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; }
.for-roles-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; margin-bottom: 20px; }
.role-badges { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.role-badge { display: flex; align-items: center; gap: 8px; padding: 9px 18px; border-radius: 100px; background: white; border: 1.5px solid var(--border); font-size: 0.875rem; font-weight: 600; color: var(--text-secondary); transition: all 0.2s; }
.role-badge:hover { border-color: var(--purple-300); color: var(--purple-600); background: var(--purple-50); }
.role-badge .lucide { color: var(--purple-500); }

/* ── WHY TAM AI ── */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.why-card { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 28px; transition: all 0.3s; }
.why-card:hover { border-color: var(--purple-300); box-shadow: 0 4px 24px rgba(124,58,237,0.08); transform: translateY(-2px); }
.why-card-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--purple-50); border: 1px solid rgba(124,58,237,0.1); display: flex; align-items: center; justify-content: center; color: var(--purple-600); margin-bottom: 16px; }
.why-card-title { font-family: 'Sora', sans-serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.why-card-desc { font-size: 0.825rem; color: var(--text-secondary); line-height: 1.6; }

/* ── LEGAL PAGES ── */
.legal-hero { background: var(--bg-subtle); border-bottom: 1px solid var(--border); padding: 140px 5% 60px; }
.legal-hero h1 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 12px; }
.legal-meta { font-size: 0.85rem; color: var(--text-muted); }
.legal-switcher { display: flex; gap: 10px; flex-wrap: wrap; padding: 20px 5%; border-bottom: 1px solid var(--border); background: white; position: sticky; top: 68px; z-index: 10; }
.legal-switch-btn { padding: 6px 18px; border-radius: 100px; font-size: 0.8rem; font-weight: 600; color: var(--text-secondary); text-decoration: none; background: var(--bg-subtle); border: 1px solid var(--border); transition: all 0.2s; }
.legal-switch-btn:hover, .legal-switch-btn.active { background: var(--purple-50); color: var(--purple-600); border-color: var(--purple-300); }
.legal-content { max-width: 800px; margin: 0 auto; padding: 60px 5% 100px; }
.legal-content h2 { font-size: 1.3rem; font-weight: 700; margin: 40px 0 12px; color: var(--text-primary); letter-spacing: -0.02em; padding-top: 8px; border-top: 1px solid var(--border); }
.legal-content h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.legal-content h3 { font-size: 1rem; font-weight: 700; margin: 24px 0 8px; color: var(--text-primary); }
.legal-content p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.85; margin-bottom: 14px; }
.legal-content ul, .legal-content ol { padding-left: 22px; margin-bottom: 14px; }
.legal-content li { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 6px; }
.legal-content a { color: var(--purple-600); text-decoration: underline; }
.legal-callout { background: var(--purple-50); border: 1px solid var(--purple-200); border-radius: 10px; padding: 16px 20px; margin-bottom: 20px; font-size: 0.875rem; color: var(--purple-800); line-height: 1.7; }
/* DNS form */
.dns-form { background: var(--bg-subtle); border: 1px solid var(--border); border-radius: 16px; padding: 32px; margin: 32px 0; }
.dns-form h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; }
.dns-checkbox { display: flex; gap: 12px; align-items: flex-start; margin: 20px 0; font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }
.dns-checkbox input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; width: 16px; height: 16px; cursor: pointer; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* Reveal — only hides with JS enabled */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js .reveal.visible { opacity: 1; transform: translateY(0); }
.js .reveal-d1 { transition-delay: 0.1s; }
.js .reveal-d2 { transition-delay: 0.2s; }
.js .reveal-d3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 120px 5% 64px; }
  .hero-visual { display: none; }
  .two-col, .email-layout, .product-layout, .about-story, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .two-col.reverse, .product-layout.reverse { direction: ltr; }
  .products-overview { grid-template-columns: 1fr 1fr; }
  .integrations-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-center, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 64px 5%; }
  .hero h1 { font-size: 2.2rem; }
  .playbook-grid { grid-template-columns: 1fr; gap: 36px; }
  .playbook-line { display: none; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .products-overview { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .integrations-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .founder-card { flex-direction: column; gap: 20px; }
  .mission-band { padding: 36px 28px; }
  .legal-switcher { top: 68px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .cta-btns { flex-direction: column; }
  .why-grid { grid-template-columns: 1fr; }
  .integrations-grid { grid-template-columns: repeat(2, 1fr); }
}
