/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Logo-matched amber system */
  --amber-primary:      #eaa011;                    /* Logo's dominant amber */
  --amber-highlight:    #ffae00;                    /* Brighter amber for hover/glow */
  --amber-deep:         #e97300;                    /* Deeper amber for accents */
  --amber-glow:         rgba(234, 160, 17, 0.3);   /* Glow effects */
  --amber-glow-strong:  rgba(234, 160, 17, 0.5);   /* Strong glow */
  --amber-dim:          rgba(234, 160, 17, 0.15);  /* Subtle backgrounds */

  /* Derived amber opacities */
  --amber-04:           rgba(234, 160, 17, 0.04);
  --amber-06:           rgba(234, 160, 17, 0.06);
  --amber-08:           rgba(234, 160, 17, 0.08);
  --amber-10:           rgba(234, 160, 17, 0.10);
  --amber-12:           rgba(234, 160, 17, 0.12);
  --amber-15:           rgba(234, 160, 17, 0.15);
  --amber-20:           rgba(234, 160, 17, 0.20);
  --amber-25:           rgba(234, 160, 17, 0.25);
  --amber-30:           rgba(234, 160, 17, 0.30);
  --amber-35:           rgba(234, 160, 17, 0.35);
  --amber-40:           rgba(234, 160, 17, 0.40);
  --amber-45:           rgba(234, 160, 17, 0.45);
  --amber-60:           rgba(234, 160, 17, 0.60);
  --amber-70:           rgba(234, 160, 17, 0.70);

  /* Aliases for backward compat */
  --amber:              var(--amber-primary);
  --amber-light:        var(--amber-highlight);
  --amber-dark:         var(--amber-deep);

  /* Backgrounds */
  --bg-primary:         #0a0a0a;
  --bg-secondary:       #111;
  --bg-card:            #151515;
  --bg-card-2:          #1a1a1a;
  --bg-deep:            #080808;

  /* Legacy bg aliases */
  --navy:               #0a0a0a;
  --navy-soft:          #111111;
  --bg:                 var(--bg-primary);
  --bg-alt:             var(--bg-secondary);

  /* Text */
  --text-primary:       #fff;
  --text-secondary:     #ccc;
  --text-muted:         #888;
  --text:               #EAEAEA;
  --text-soft:          #B0B0B0;

  /* Borders */
  --border:             rgba(255,255,255,0.07);
  --border-amber:       var(--amber-20);
  --border-soft:        rgba(255,255,255,0.04);

  /* Misc */
  --success:            #10B981;
  --radius:             14px;
  --shadow-sm:          0 1px 4px rgba(0,0,0,0.5), 0 2px 12px rgba(0,0,0,0.35);
  --shadow-md:          0 4px 16px rgba(0,0,0,0.6), 0 1px 4px rgba(0,0,0,0.4);
  --shadow-lg:          0 16px 48px rgba(0,0,0,0.7);
  --shadow-amber:       0 0 30px var(--amber-15);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 15px;
}

.mono { font-family: 'JetBrains Mono', 'Fira Code', monospace; }
.accent-text {
  background: linear-gradient(135deg, var(--amber-light), var(--amber), var(--amber-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ── DOT GRID ──────────────────────────────────────────────────── */
.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--amber-08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 30%, transparent 100%);
}

/* ── AMBIENT GLOW ─────────────────────────────────────────────── */
.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, var(--amber-06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── BUTTONS ───────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: #000; font-weight: 700; font-size: 14px;
  border: none; border-radius: 10px; cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 16px var(--amber-30), 0 0 0 1px var(--amber-15);
  transition: all 0.2s cubic-bezier(0.34,1.56,0.64,1);
  font-family: inherit;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--amber-40), 0 0 0 1px var(--amber-25);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  background: rgba(255,255,255,0.04);
  color: var(--text-soft); font-weight: 600; font-size: 14px;
  border: 1.5px solid var(--border); border-radius: 10px; cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}
.btn-secondary:hover {
  border-color: var(--amber); color: var(--amber);
  background: var(--amber-10);
  box-shadow: 0 0 16px var(--amber-10);
}

/* ── NAV ───────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,10,0.90);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 24px;
  height: 60px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.logo-name { font-weight: 800; font-size: 16px; color: var(--text); letter-spacing: 0.02em; }
.logo-version {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--text-muted);
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  padding: 2px 8px; border-radius: 20px;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 7px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  text-decoration: none; transition: all 0.15s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.btn-nav {
  margin-left: 4px;
  padding: 7px 16px !important;
  background: var(--amber-08) !important;
  color: var(--amber) !important;
  border: 1px solid var(--border-amber) !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
}
.btn-nav:hover {
  background: var(--amber-15) !important;
  border-color: var(--amber-35) !important;
  box-shadow: 0 0 12px var(--amber-10) !important;
}

/* ── HERO ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 130px 24px 80px;
  background: linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 40%, #0a0a0a 100%);
  overflow: hidden;
}
.hero-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}

/* Hero phrase logo */
.hero-phrase-logo {
  max-width: 100%;
  width: 560px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 24px var(--amber-20));
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px;
  background: var(--amber-06); border: 1px solid var(--border-amber);
  border-radius: 6px; margin-bottom: 20px;
  font-size: 12px; color: var(--text-muted);
}
.tag-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber-60);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}
h1 {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 900; line-height: 1.1;
  color: var(--text); margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-tagline {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--amber);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero-sub {
  font-size: 16px; color: var(--text-soft);
  line-height: 1.7; margin-bottom: 28px;
  max-width: 460px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-stats {
  display: inline-flex; align-items: center;
  padding: 10px 16px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}
.stat { display: inline-flex; flex-direction: column; align-items: center; padding: 0 12px; }
.stat-val { font-size: 14px; font-weight: 700; color: var(--amber); line-height: 1.3; }
.stat-label { font-size: 10px; color: var(--text-muted); line-height: 1.3; }
.stat-div { width: 1px; height: 26px; background: var(--border); flex-shrink: 0; }

/* ── TERMINAL WINDOW ───────────────────────────────────────────── */
.hero-right { position: relative; }
.terminal-window {
  background: #0a0a0a;
  border-radius: 12px;
  border: 1px solid var(--amber-12);
  box-shadow: var(--shadow-lg), 0 0 40px var(--amber-06);
  overflow: hidden;
  position: relative; z-index: 2;
}
.terminal-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.t-dot { width: 12px; height: 12px; border-radius: 50%; }
.t-dot.red    { background: #FF5F57; }
.t-dot.yellow { background: #FFBD2E; }
.t-dot.green  { background: #28C840; }
.t-title {
  flex: 1; text-align: center;
  font-size: 12px; color: rgba(255,255,255,0.30);
  margin: 0 8px;
}
.terminal-body { padding: 16px 20px; font-size: 13px; line-height: 2; }
.t-line { display: flex; align-items: baseline; gap: 8px; }
.t-blank { height: 6px; }
.t-prompt { color: var(--amber); font-weight: 700; }
.t-cmd { color: #E2E8F0; }
.t-str { color: #86EFAC; }
.t-out { color: rgba(255,255,255,0.35); padding-left: 20px; }
.t-success { color: #6EE7B7 !important; }
.cursor-blink {
  color: var(--amber);
  animation: blink 1.2s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── PHONE ─────────────────────────────────────────────────────── */
.phone-float {
  position: absolute; bottom: -20px; right: -24px;
  z-index: 3;
  animation: float-phone 5s ease-in-out infinite;
}
@keyframes float-phone {
  0%,100%{ transform: translateY(0) rotate(2deg); }
  50%     { transform: translateY(-10px) rotate(-1deg); }
}
.phone-shell {
  width: 148px;
  background: #141414;
  border-radius: 28px;
  padding: 10px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.7), 0 0 0 1px var(--amber-10) inset;
}
.phone-notch {
  width: 40px; height: 6px;
  background: rgba(255,255,255,0.10);
  border-radius: 3px; margin: 0 auto 8px;
}
.phone-screen {
  background: #0a0a0a; border-radius: 18px;
  padding: 10px; min-height: 220px;
}
.p-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.p-profile { font-size: 11px; color: rgba(255,255,255,0.6); }
.p-conn { font-size: 10px; color: var(--amber); }
.p-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.p-btn {
  border-radius: 10px; padding: 10px 4px;
  font-size: 11px; font-weight: 600; color: white;
  text-align: center; line-height: 1.3; cursor: pointer;
  transition: transform 0.15s, opacity 0.15s;
}
.p-btn small { font-size: 9px; font-weight: 500; opacity: 0.85; }
.p-btn:active { transform: scale(0.9); }
.p-amber  { background: linear-gradient(135deg, var(--amber), var(--amber-dark)); }
.p-blue   { background: linear-gradient(135deg, #3B82F6, #2563EB); }
.p-red    { background: linear-gradient(135deg, #EF4444, #DC2626); }
.p-purple { background: linear-gradient(135deg, #8B5CF6, #7C3AED); }
.p-green  { background: linear-gradient(135deg, #10B981, #059669); }
.p-teal   { background: linear-gradient(135deg, #14B8A6, #0D9488); }
.p-dots { display: flex; justify-content: center; gap: 5px; margin-top: 8px; }
.p-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.p-dot.active { background: var(--amber); width: 14px; border-radius: 3px; }
.p-bar { width: 48px; height: 3px; background: rgba(255,255,255,0.10); border-radius: 2px; margin: 8px auto 0; }

/* ── DOWNLOAD ──────────────────────────────────────────────────── */
.download-section {
  padding: 72px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.download-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dl-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: all 0.25s ease;
}
.dl-card:hover {
  border-color: var(--border-amber);
  box-shadow: 0 0 20px var(--amber-06);
}
.dl-card-featured {
  border-color: var(--amber-25);
  box-shadow: 0 0 0 1px var(--amber-06), var(--shadow-sm);
}
.dl-card-soon { opacity: 0.5; }
.dl-platform { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 800; color: var(--text); }
.dl-platform svg { color: var(--text); }
.dl-platform-muted { color: var(--text-muted); }
.dl-platform-muted svg { color: var(--text-muted); }
.dl-desc { font-size: 13px; color: var(--text-soft); line-height: 1.6; flex: 1; }
.dl-desc-muted { color: var(--text-muted); }
.dl-meta { font-size: 11px; color: var(--text-muted); }
.dl-meta-muted { color: var(--text-muted); opacity: 0.4; }
.dl-btn { width: 100%; justify-content: center; margin-top: auto; }
.btn-soon {
  width: 100%; padding: 12px 24px;
  background: rgba(255,255,255,0.03); color: var(--text-muted);
  border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 14px; font-weight: 600; cursor: not-allowed; font-family: inherit;
}

/* ── SECTION DIVIDER ──────────────────────────────────────────── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber-15), transparent);
  border: none;
  margin: 0;
}

/* ── FEATURES ──────────────────────────────────────────────────── */
.features {
  padding: 72px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-label {
  font-size: 12px; font-weight: 600;
  color: var(--amber); letter-spacing: 0.08em; margin-bottom: 10px;
}
.section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800; color: var(--text);
  margin-bottom: 40px; letter-spacing: -0.02em;
}
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
.feature-card:hover {
  border-color: var(--amber-35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 24px var(--amber-08);
  background: var(--bg-card-2);
}
.fc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.fc-icon { font-size: 22px; }
.fc-type {
  font-size: 10px; font-weight: 600; color: var(--amber);
  background: var(--amber-10); border: 1px solid var(--amber-20);
  padding: 3px 8px; border-radius: 4px;
}
.feature-card h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.feature-card p { font-size: 13px; color: var(--text-soft); line-height: 1.6; margin-bottom: 14px; }
.fc-code {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  background: rgba(0,0,0,0.5); color: rgba(255,255,255,0.45);
  padding: 8px 12px; border-radius: 7px;
  border: 1px solid rgba(255,255,255,0.04);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.code-key { color: #93C5FD; }
.code-val { color: var(--amber-dim); }

/* ── HOW IT WORKS ──────────────────────────────────────────────── */
.how-it-works { padding: 72px 0; background: var(--bg-alt); }
.arch-diagram {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 48px;
  padding: 28px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.arch-node { text-align: center; padding: 0 20px; flex: 0 0 auto; }
.arch-icon { font-size: 28px; margin-bottom: 8px; }
.arch-label { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.arch-sub { font-size: 11px; color: var(--text-muted); line-height: 1.4; }
.arch-node-center .arch-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin: 0 auto 8px;
  box-shadow: 0 4px 16px var(--amber-30);
}
.arch-line {
  flex: 1; max-width: 120px; position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.arch-line-inner {
  width: 100%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--amber) 0, var(--amber) 6px, transparent 6px, transparent 12px);
  position: relative;
}
.arch-line-inner::after {
  content: ''; position: absolute; right: -6px; top: -4px;
  border: 5px solid transparent; border-left-color: var(--amber);
}
.arch-line-label { font-size: 10px; color: var(--text-muted); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-item {
  padding: 24px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.25s ease;
}
.step-item:hover {
  border-color: var(--border-amber);
  box-shadow: 0 0 16px var(--amber-06);
}
.step-num { font-size: 28px; font-weight: 700; color: var(--amber); margin-bottom: 10px; display: block; line-height: 1; }
.step-item h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.step-item p { font-size: 13px; color: var(--text-soft); line-height: 1.6; }
.inline-mono {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--amber);
  background: var(--amber-10); padding: 1px 6px; border-radius: 4px;
}

/* ── PRO / PRICING ─────────────────────────────────────────────── */
.pro-section {
  padding: 72px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.pricing-header {
  text-align: center;
  margin-bottom: 48px;
}
.pricing-header h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800; color: var(--text);
  margin-bottom: 8px; letter-spacing: -0.02em;
}
.pricing-subtitle {
  color: var(--text-muted);
  font-size: 15px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
}

/* Free tier card */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.25s ease;
}
.pricing-card:hover {
  border-color: var(--border-amber);
  box-shadow: 0 0 20px var(--amber-06);
}

/* Pro tier card */
.pricing-card-pro {
  background: var(--amber-04);
  border: 1px solid var(--amber-30);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  box-shadow: 0 0 40px var(--amber-08);
  transition: all 0.25s ease;
}
.pricing-card-pro:hover {
  border-color: var(--amber-45);
  box-shadow: 0 0 50px var(--amber-12);
}

.pricing-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--amber);
  color: #000;
  font-size: 11px; font-weight: 700;
  padding: 3px 12px; border-radius: 20px;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px var(--amber-30);
}

.pricing-tier-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.pricing-tier-label-pro {
  font-size: 12px;
  color: var(--amber);
  margin-bottom: 12px;
}

.pricing-price {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.pricing-period {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 28px;
}
.pricing-period-pro {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-soft);
}
.pricing-features li .check {
  color: var(--amber);
  flex-shrink: 0;
}
.pricing-features li strong {
  color: #fff;
}
.pricing-features li .soon-tag {
  font-size: 11px;
  color: var(--text-muted);
  margin-left: 4px;
}

/* Tier tracker */
.tier-tracker {
  background: rgba(0,0,0,0.30);
  border: 1px solid var(--amber-15);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 20px;
}
.tier-tracker-label {
  color: var(--amber-70);
  font-size: 11px;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.tier-progress-track {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
}
.tier-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--amber-dark), var(--amber));
  border-radius: 999px;
  width: 0%;
  transition: width 0.8s cubic-bezier(0.4,0,0.2,1);
}

/* Activation section */
.activation-section {
  max-width: 620px;
  margin: 56px auto 0;
}
.activation-header {
  text-align: center;
  margin-bottom: 32px;
}
.activation-header .mono {
  color: var(--text-muted);
  font-size: 12px;
  margin-bottom: 8px;
}
.activation-header p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}
.activation-header p strong {
  color: var(--text);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.faq-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.2s ease;
}
.faq-card:hover {
  border-color: var(--border-amber);
}
.faq-card .mono {
  color: var(--amber);
  font-size: 11px;
  margin-bottom: 8px;
}
.faq-card p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}
.faq-card a {
  color: var(--amber);
  text-decoration: none;
}
.faq-card a:hover {
  text-decoration: underline;
}

.pro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.pro-section h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800; color: var(--text);
  margin-bottom: 14px; letter-spacing: -0.02em;
}
.pro-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pro-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--text-soft);
  padding: 10px 14px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px;
}
.pro-item-tag {
  font-size: 10px; font-weight: 600; color: var(--amber);
  background: var(--amber-10); border: 1px solid var(--amber-25);
  padding: 2px 7px; border-radius: 4px; flex-shrink: 0;
}
.notify-card {
  background: var(--bg-card); border-radius: 16px; padding: 32px;
  border: 1px solid var(--border);
}
.notify-label { font-size: 12px; color: var(--amber); margin-bottom: 12px; display: block; }
.notify-card > p { font-size: 14px; color: var(--text-soft); margin-bottom: 20px; line-height: 1.6; }
.notify-form { display: flex; gap: 10px; flex-direction: column; }
.notify-input {
  width: 100%; padding: 11px 16px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text); font-size: 14px; font-family: inherit;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.notify-input::placeholder { color: var(--text-muted); }
.notify-input:focus {
  border-color: var(--amber);
  box-shadow: 0 0 12px var(--amber-10);
}
.notify-thanks { font-size: 13px; color: #6EE7B7; margin-top: 12px; }

/* ── FOOTER ────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-deep);
  padding: 32px 0 24px;
  border-top: 1px solid var(--border);
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.footer .logo-name { color: var(--text); }
.footer .logo-version { border-color: var(--border); color: var(--text-muted); background: rgba(255,255,255,0.03); }
.footer-sub { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--amber); }
.footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--border);
  font-size: 12px; color: var(--text-muted); opacity: 0.5;
}

/* ── INTEGRATIONS ─────────────────────────────────────────────── */
.integrations-section {
  padding: 72px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.integrations-header {
  text-align: center;
  margin-bottom: 48px;
}
.integrations-header h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.integrations-subtitle {
  color: var(--text-muted);
  font-size: 15px;
}
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.integration-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
.integration-card:hover {
  border-color: var(--amber-35);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm), 0 0 20px var(--amber-06);
  background: var(--bg-card-2);
}
.integration-card-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.integration-card-name .int-icon {
  font-size: 18px;
  line-height: 1;
}
.integration-card-desc {
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.5;
}
.integrations-footer {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: var(--text-muted);
}
.integrations-footer .int-highlight {
  color: var(--amber);
  font-weight: 600;
}

/* macOS badge */
.macos-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 6px 14px;
  background: var(--amber-06);
  border: 1px solid var(--amber-15);
  border-radius: 20px;
  font-size: 12px;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
}
.macos-badge .macos-icon {
  font-size: 14px;
}

/* ── REVEAL ────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34,1.56,0.64,1); }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-phrase-logo { width: 100%; max-width: 420px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .integrations-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .arch-diagram { flex-direction: column; gap: 16px; }
  .arch-line { transform: rotate(90deg); width: 60px; }
  .pro-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .download-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
  .integrations-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 8px; }
  .nav-links a:not(.btn-nav) { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .faq-grid { grid-template-columns: 1fr; }
}
