/* ─────────────────────────────────────────────────────────────
   GlobalConnectLive  —  Dark Purple + Black + White + Gold
   Static modern design system  ·  Minimal motion
   ───────────────────────────────────────────────────────────── */

/* ─── Self-hosted fonts (Inter + Playfair Display) ────────────
   Served locally so the page never blocks on Google's CDN (the
   old render-blocking <link> to fonts.googleapis.com). Fast on
   distant/slow networks. Inter & Playfair are variable fonts, so
   a single woff2 covers the full weight range. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/fonts/inter.woff2) format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url(/fonts/playfair.woff2) format('woff2');
}

/* ─── Reset & box-sizing ──────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  color: var(--text);
  background: var(--bg-root);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
svg { display: block; }

/* ─── Palette ─────────────────────────────────────── */
:root {
  /* Base blacks + deep purples */
  --bg-root:       #05020d;
  --bg-0:          #0a0518;
  --bg-1:          #120a27;
  --bg-2:          #1a0f38;
  --bg-3:          #261750;
  --bg-card:       rgba(36, 22, 76, 0.45);
  --bg-card-2:     rgba(26, 15, 56, 0.70);
  --bg-elev:       rgba(58, 36, 120, 0.40);

  /* Purple accents */
  --purple-1:      #4c1d95;
  --purple-2:      #6d28d9;
  --purple-3:      #8b5cf6;
  --purple-4:      #a78bfa;
  --violet-1:      #2e1065;
  --plum:          #581c87;

  /* Gold accents */
  --gold-1:        #b8860b;
  --gold-2:        #d4a017;
  --gold-3:        #f3c240;
  --gold-4:        #f6d365;
  --gold-5:        #fbe68b;

  /* Text */
  --text:          #f5f3ff;
  --text-2:        #d8d2ee;
  --muted:         #9d8fc7;
  --muted-2:       #6f5fa0;
  --white:         #ffffff;

  /* Lines / borders */
  --line:          rgba(168, 141, 250, 0.10);
  --line-2:        rgba(168, 141, 250, 0.18);
  --line-gold:     rgba(243, 194, 64, 0.18);

  /* Functional */
  --radius-sm:     8px;
  --radius:        14px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --shadow-1:      0 1px 2px rgba(0,0,0,.5);
  --shadow-card:   0 10px 40px -15px rgba(76, 29, 149, 0.55);
  --shadow-gold:   0 8px 30px -10px rgba(243, 194, 64, 0.35);

  /* Container */
  --container: 1200px;
  --gap: 28px;
}

/* ─── Background layers (static) ─────────────────── */
.bg-layer {
  position: fixed; inset: 0; z-index: -3; pointer-events: none;
  background:
    linear-gradient(180deg, #0e0624 0%, #120a27 20%, #1a0f38 50%, #120a27 80%, #0e0624 100%);
}
.bg-grain {
  position: fixed; inset: 0; z-index: -2; pointer-events: none; opacity: .035;
  background-image:
    linear-gradient(0deg, rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 4px 4px;
  mix-blend-mode: overlay;
}
.bg-radials {
  position: fixed; inset: 0; z-index: -2; pointer-events: none; overflow: hidden;
}
.radial {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .35;
  width: 540px; height: 540px;
}
.radial-gold   { top: -140px; left: 45%;  background: radial-gradient(circle, var(--gold-3) 0%, transparent 65%); width: 480px; height: 480px; opacity: .16; }
.radial-purple { top: 35%;    left: -200px; background: radial-gradient(circle, var(--purple-2) 0%, transparent 65%); }
.radial-violet { bottom: -180px; right: -140px; background: radial-gradient(circle, var(--plum) 0%, transparent 65%); }

/* ─── Utility classes ──────────────────────────── */
.gold-text {
  background: linear-gradient(120deg, var(--gold-2) 0%, var(--gold-4) 50%, var(--gold-3) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-weight: 800;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
section { padding: 108px 0; }
section + section { padding-top: 72px; }

/* ─── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 22px;
  border-radius: 12px;
  font-weight: 600; font-size: 14.5px; letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;
  line-height: 1;
  cursor: pointer;
}
.btn-sm { padding: 10px 16px; font-size: 13.5px; border-radius: 10px; }
.btn-lg { padding: 16px 28px; font-size: 15.5px; border-radius: 14px; }
.btn-block { width: 100%; }
.btn-icon { font-size: 12px; color: inherit; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold-3) 50%, var(--gold-4) 100%);
  color: #1a0f38;
  box-shadow: 0 6px 20px -8px rgba(243, 194, 64, 0.55), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -8px rgba(243, 194, 64, 0.70), inset 0 1px 0 rgba(255,255,255,0.5);
}

.btn-outline {
  background: transparent;
  border-color: var(--line-2);
  color: var(--text-2);
}
.btn-outline:hover {
  border-color: var(--gold-3);
  color: var(--gold-4);
  transform: translateY(-1px);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.14);
  color: var(--text);
}
.btn-outline-light:hover {
  border-color: var(--gold-3);
  color: var(--gold-4);
  transform: translateY(-1px);
  background: rgba(243, 194, 64, 0.04);
}

.btn-ghost {
  background: rgba(139, 92, 246, 0.07);
  color: var(--text-2);
}
.btn-ghost:hover {
  background: rgba(139, 92, 246, 0.14);
  color: var(--text);
  transform: translateY(-1px);
}

/* ─── Nav ──────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 5, 24, 0.72);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(145deg, rgba(243,194,64,0.10) 0%, rgba(109,40,217,0.10) 100%);
  border: 1px solid var(--line-gold);
}
.brand-name { font-size: 17px; letter-spacing: -0.015em; }
.brand-accent {
  background: linear-gradient(120deg, var(--gold-2), var(--gold-4));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-weight: 900;
}

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 10px 15px; border-radius: 10px;
  font-size: 14px; font-weight: 500; color: var(--text-2);
  position: relative;
  transition: all .2s ease;
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(139, 92, 246, 0.07);
}
.nav-links a::after {
  content: ''; position: absolute; left: 15px; right: 15px; bottom: 6px; height: 2px;
  background: linear-gradient(90deg, var(--gold-3), var(--purple-3));
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
  border-radius: 2px;
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-4));
  border: 2px solid var(--line-gold);
}
.nav-burger { display: none; width: 40px; height: 40px; border-radius: 10px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text-2); border-radius: 2px; }

/* ─── Hero ──────────────────────────────────────── */
.hero { padding: 112px 0 96px; position: relative; overflow: hidden; }
.hero-center {
  max-width: 960px; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 32px;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 24px; border-radius: 999px;
  background: rgba(243, 194, 64, 0.06);
  border: 1px solid var(--line-gold);
  color: var(--gold-4);
  font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
}
.kicker-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-3);
  box-shadow: 0 0 0 3px rgba(243, 194, 64, 0.15);
}
.kicker-line {
  width: 22px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-gold), transparent);
}

.hero-title {
  font-family: 'Playfair Display', 'Inter', serif;
  font-size: clamp(48px, 7.5vw, 92px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--white);
}
.hero-title .gold-text { font-weight: 800; }
.hero-lead {
  max-width: 780px;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.8;
  color: var(--text-2);
}

.hero-cta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
  margin-top: 12px;
}

.hero-meta {
  width: 100%; max-width: 700px;
  display: flex; align-items: center; gap: 24px;
  padding-top: 16px;
}
.meta-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
}
.meta-items {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-2);
  font-size: 15px; font-weight: 600;
  letter-spacing: 0.01em;
}
.meta-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 999px;
  background: rgba(54,211,153,0.06);
  border: 1px solid rgba(54,211,153,0.15);
  white-space: nowrap;
}
.meta-icon { color: #36d399; font-size: 14px; font-weight: 800; }
.meta-sep { color: var(--muted); font-size: 18px; opacity: 0.4; }

.hero-count {
  width: 100%; max-width: 820px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 44px 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(36,22,76,0.5) 0%, rgba(18,10,39,0.6) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px -12px rgba(76,29,149,0.3);
}
.count-stat { text-align: center; position: relative; }
.count-stat + .count-stat::before {
  content: ''; position: absolute; left: 0; top: 15%; bottom: 15%; width: 1px;
  background: linear-gradient(180deg, transparent, var(--line-2), transparent);
}
.count-num {
  font-size: 42px; font-weight: 800; letter-spacing: -0.02em;
  color: var(--white); line-height: 1;
  font-family: 'Playfair Display', 'Inter', serif;
}
.count-label {
  font-size: 14px; font-weight: 600; color: var(--muted);
  letter-spacing: 0.12em; text-transform: uppercase; margin-top: 12px;
}
.count-sep { display: none; }

/* ─── Section head ─────────────────────────────── */
.section-head { max-width: 820px; margin: 0 auto 64px; text-align: center; }
.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 20px; border-radius: 999px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid var(--line);
  font-size: 12px; font-weight: 700; letter-spacing: 0.22em;
  color: var(--purple-4);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.tag-mark { color: var(--gold-3); font-size: 11px; }
.section-title {
  font-family: 'Playfair Display', 'Inter', serif;
  font-size: clamp(36px, 4.8vw, 56px);
  font-weight: 700; line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 18px; line-height: 1.75;
  color: var(--text-2);
}

/* ─── Showcase / Meeting mock card ────────────────── */
.showcase { padding-top: 24px; }
.showcase-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(38, 23, 80, 0.65) 0%, rgba(18, 10, 39, 0.75) 100%);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(243,194,64,0.04) inset;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.showcase-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 2, 13, 0.5);
}
.dots { display: inline-flex; align-items: center; gap: 8px; }
.dots span { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.d1 { background: var(--purple-3); }
.d2 { background: var(--gold-3); }
.d3 { background: #36d399; }
.showcase-title {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 600; color: var(--text);
  font-size: 14px;
}
.bar-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 6px;
  background: rgba(255, 59, 59, 0.12);
  border: 1px solid rgba(255, 59, 59, 0.25);
  color: #ff8787;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
}
.bar-badge::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #ff3b3b; }
.showcase-right { display: inline-flex; align-items: center; gap: 8px; }
.bar-chip {
  padding: 6px 12px; border-radius: 8px;
  background: rgba(139, 92, 246, 0.10);
  border: 1px solid var(--line);
  font-size: 12.5px; color: var(--text-2); font-weight: 500;
}
.bar-gold {
  background: rgba(243, 194, 64, 0.08);
  border-color: var(--line-gold);
  color: var(--gold-4);
  font-weight: 600;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 136px;
  gap: 14px;
  padding: 24px;
}
.tile {
  position: relative;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(46, 16, 101, 0.85) 0%, rgba(18, 10, 39, 0.95) 100%);
  border: 1px solid var(--line);
  overflow: hidden;
}
.tile::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(243, 194, 64, 0.08) 0%, transparent 55%);
  pointer-events: none;
}
.tile-main { grid-row: span 3; }
.tile-screen { grid-column: 2 / span 2; grid-row: 3 / span 2; }
.tile-inner {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 14px 16px;
}
.tile-avatar {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; letter-spacing: 0.02em;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.08);
}
.tile-avatar.av-lg { width: 64px; height: 64px; border-radius: 16px; font-size: 16px; }
.av-gold   { background: linear-gradient(135deg, var(--gold-1), var(--gold-3)); }
.av-purple { background: linear-gradient(135deg, var(--purple-2), var(--purple-4)); }
.av-plum   { background: linear-gradient(135deg, #701a75, #c026d3); }
.av-violet { background: linear-gradient(135deg, var(--plum), var(--purple-3)); }
.gold-ring {
  border-color: var(--gold-3) !important;
  box-shadow: 0 0 0 3px rgba(243, 194, 64, 0.18), 0 0 30px -6px rgba(243, 194, 64, 0.4);
}
.tile-meta {
  display: flex; flex-direction: column; gap: 2px;
}
.t-name { font-size: 13px; font-weight: 600; color: var(--text); }
.t-role { font-size: 11px; color: var(--muted); }
.tile-indicators {
  display: inline-flex; gap: 6px; align-self: flex-end;
  position: absolute; bottom: 14px; right: 14px;
}
.badge-mic, .badge-cam, .badge-hand, .badge-muted {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(10, 5, 24, 0.75);
  border: 1px solid var(--line-2);
  font-size: 13px;
}
.badge-mic, .badge-cam { border-color: rgba(54, 211, 153, 0.25); }
.badge-muted { opacity: 0.55; }
.speaker-wave {
  position: absolute; left: 14px; right: 14px; bottom: 14px; height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg,
    var(--gold-3) 0%, var(--purple-3) 50%, var(--gold-3) 100%);
  opacity: 0.55;
}

/* Screen share tile */
.tile-screen {
  background: linear-gradient(135deg, rgba(10, 5, 24, 0.9) 0%, rgba(18, 10, 39, 0.95) 100%);
}
.screen-title {
  position: absolute; top: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(90deg, rgba(243, 194, 64, 0.14), rgba(243, 194, 64, 0.02));
  border-bottom: 1px solid var(--line-gold);
  font-size: 12.5px; font-weight: 600; color: var(--gold-4);
  display: inline-flex; align-items: center; gap: 8px;
}
.screen-chip { font-size: 10px; }
.screen-content {
  position: absolute; top: 54px; left: 14px; right: 14px; bottom: 14px;
  display: flex; flex-direction: column; gap: 14px;
}
.screen-chart {
  display: grid; grid-template-columns: repeat(8, 1fr);
  align-items: end;
  gap: 8px; height: 46%;
  padding: 10px;
  background: rgba(5, 2, 13, 0.5);
  border-radius: 10px;
  border: 1px solid var(--line);
}
.screen-chart .bar {
  width: 100%;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--gold-3), var(--gold-1));
  opacity: 0.75;
}
.b1 { height: 35%; } .b2 { height: 55%; } .b3 { height: 42%; } .b4 { height: 70%; }
.b5 { height: 60%; } .b6 { height: 85%; } .b7 { height: 48%; } .b8 { height: 75%; opacity: 1; }
.screen-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; flex: 1;
}
.screen-card {
  background: rgba(5, 2, 13, 0.5);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
  display: flex; flex-direction: column; gap: 8px;
}
.sc-top {
  width: 100%; height: 10px; border-radius: 3px;
}
.sc-top.gold   { background: linear-gradient(90deg, var(--gold-2), var(--gold-4)); }
.sc-top.purple { background: linear-gradient(90deg, var(--purple-2), var(--purple-4)); }
.sc-top.violet { background: linear-gradient(90deg, var(--plum), var(--purple-3)); }
.sc-line { height: 6px; border-radius: 3px; background: var(--line-2); }
.sc-line.short { width: 65%; opacity: 0.6; }

/* Showcase dock */
.showcase-dock {
  padding: 18px 24px 0;
}
.dock-row {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(5, 2, 13, 0.6);
  border: 1px solid var(--line);
  border-radius: 16px 16px 0 0;
  border-bottom: 0;
}
.dbtn {
  position: relative;
  width: 46px; height: 46px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(38, 23, 80, 0.55);
  border: 1px solid var(--line-2);
  transition: all .2s ease;
  color: var(--text-2);
}
.dbtn span:first-child { font-size: 15px; }
.dbtn:hover { border-color: var(--gold-3); color: var(--gold-4); transform: translateY(-1px); }
.dbtn.on {
  background: rgba(54, 211, 153, 0.10);
  border-color: rgba(54, 211, 153, 0.3);
  color: #7ce9b8;
}
.dbtn.leave {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  border: 0;
  color: #fff;
  width: 54px;
}
.pill {
  position: absolute; top: -4px; right: -4px;
  padding: 2px 6px; min-width: 18px; height: 18px;
  border-radius: 999px;
  background: var(--purple-3); color: #fff;
  font-size: 10px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}
.pill.red { background: #ef4444; }
.pill.gold-dot {
  background: var(--gold-3); min-width: 12px; width: 12px; height: 12px;
  padding: 0; right: -2px; top: -2px;
}

.showcase-caption {
  padding: 14px 24px 24px;
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(5, 2, 13, 0.4);
  border-top: 1px solid var(--line);
}
.cap-speaker {
  padding: 5px 12px; border-radius: 8px;
  background: rgba(94, 197, 255, 0.10);
  border: 1px solid rgba(94, 197, 255, 0.20);
  color: #7cd0ff;
  font-size: 12px; font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.cap-text {
  font-size: 13.5px; color: var(--text-2); line-height: 1.6;
  padding-top: 4px;
}

/* ─── Features grid ─────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  padding: 44px 36px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
  position: relative; overflow: hidden;
  transition: all .3s ease;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
  opacity: 0;
  transition: opacity .3s ease;
}
.feature-card:hover {
  border-color: var(--line-2);
  background: var(--bg-elev);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.feature-card:hover::before { opacity: 1; }
.feat-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(139, 92, 246, 0.10);
  border: 1px solid var(--line-2);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--purple-4);
  margin-bottom: 26px;
  font-size: 22px;
}
.feat-icon.gold {
  background: rgba(243, 194, 64, 0.10);
  border-color: var(--line-gold);
  color: var(--gold-3);
}
.feature-card h3 {
  font-size: 24px; font-weight: 700;
  color: #c4b5fd;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 16px; line-height: 1.75; color: var(--white);
}
.gold-accent:hover { border-color: var(--line-gold) !important; }
.gold-accent:hover .feat-icon {
  background: rgba(243, 194, 64, 0.14);
  box-shadow: 0 0 0 4px rgba(243, 194, 64, 0.05);
}

/* ─── Steps ─────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.step-card {
  padding: 44px 36px 48px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.step-num {
  position: absolute;
  top: 16px; right: 22px;
  font-family: 'Playfair Display', serif;
  font-size: 80px; font-weight: 800;
  line-height: 1;
  background: linear-gradient(180deg, rgba(243,194,64,0.10), rgba(243,194,64,0.02));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.step-card.middle .step-num {
  background: linear-gradient(180deg, rgba(139,92,246,0.12), rgba(139,92,246,0.02));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.step-card h3 {
  font-size: 26px; font-weight: 700; color: var(--white);
  letter-spacing: -0.01em; margin-bottom: 12px;
  position: relative;
}
.step-card p { font-size: 16px; line-height: 1.75; color: var(--text-2); position: relative; }
.step-line {
  position: absolute; bottom: 0; left: 36px; right: 36px; height: 3px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(90deg, var(--purple-2), var(--gold-3));
  opacity: 0.3;
}
.step-card.middle .step-line { background: linear-gradient(90deg, var(--purple-2), var(--plum)); }

/* ─── Pricing ──────────────────────────────────── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}
.plan-card {
  padding: 40px 28px 36px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--line);
  position: relative;
  transition: all .3s ease;
}
.plan-card:hover {
  border-color: var(--line-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.plan-card.featured {
  background:
    linear-gradient(180deg, rgba(243,194,64,0.06) 0%, rgba(38,23,80,0.6) 100%);
  border: 1px solid var(--line-gold);
  transform: scale(1.03);
  box-shadow: var(--shadow-gold), 0 12px 40px -12px rgba(243,194,64,0.15);
}
.plan-card.featured:hover {
  box-shadow: 0 14px 50px -12px rgba(243,194,64,0.30), var(--shadow-gold);
}
.featured-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  padding: 6px 18px; border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-4));
  color: #1a0f38;
  font-size: 11.5px; font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 6px 18px -6px rgba(243, 194, 64, 0.6);
  white-space: nowrap;
}
.plan-tag {
  display: inline-block;
  padding: 6px 14px; border-radius: 8px;
  background: rgba(139, 92, 246, 0.10);
  color: var(--purple-4);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 20px;
}
.plan-tag.gold {
  background: rgba(243, 194, 64, 0.10);
  color: var(--gold-4);
}
.plan-card h3 {
  font-size: 26px; font-weight: 700; color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.plan-price { margin-bottom: 8px; display: inline-flex; align-items: baseline; gap: 4px; }
.price-num {
  font-size: 52px; font-weight: 800; color: var(--white);
  letter-spacing: -0.03em; line-height: 1;
  font-family: 'Playfair Display', serif;
}
.price-per { color: var(--muted); font-size: 16px; font-weight: 500; }
.plan-desc { color: var(--text-2); font-size: 16px; margin-bottom: 24px; }
.plan-card ul { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.plan-card li {
  font-size: 16px; color: var(--text-2);
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.5;
}
.gold-check {
  color: var(--gold-3);
  font-size: 15px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── Testimonials ─────────────────────────────── */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote-card {
  padding: 44px 36px 36px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--line);
  position: relative;
  border-top: 3px solid var(--purple-3);
}
.quote-card.gold-accent { border-top-color: var(--gold-3); }
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 80px; line-height: 0.7;
  color: rgba(139, 92, 246, 0.3);
  margin-bottom: 12px;
  font-weight: 900;
}
.quote-mark.gold { color: rgba(243, 194, 64, 0.35); }
.quote-stars {
  color: var(--gold-3);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 4px rgba(243,194,64,0.25));
}
.quote-text {
  font-size: 16.5px; line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 24px;
  font-style: italic;
}
.quote-person {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.qp-av {
  width: 46px; height: 46px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #fff;
}
.quote-person b { display: block; font-size: 15px; color: var(--white); font-weight: 600; }
.quote-person span { display: block; font-size: 13px; color: var(--muted); }

/* ─── FAQ ─────────────────────────────────────── */
.faq-list { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-list details {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 4px 26px;
  transition: all .25s ease;
}
.faq-list details[open] {
  border-color: var(--line-gold);
  background: var(--bg-card-2);
}
.faq-list summary {
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-size: 17px; font-weight: 600; color: var(--text);
  user-select: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '';
  flex-shrink: 0;
  width: 34px; height: 34px; border-radius: 10px;
  background: rgba(243, 194, 64, 0.10);
  border: 1px solid var(--line-gold);
  color: var(--gold-3);
  font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: all .2s ease;
  background-image:
    linear-gradient(90deg, currentColor 50%, transparent 50%),
    linear-gradient(0deg, currentColor 50%, transparent 50%);
  background-size: 14px 2px, 2px 14px;
  background-repeat: no-repeat;
  background-position: 50% 50%, 50% 50%;
  color: var(--gold-3);
}
.faq-list details[open] summary::after {
  transform: rotate(45deg);
  background: var(--gold-3);
  background-size: 14px 2px, 2px 0px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border-color: var(--gold-3);
}
.faq-list details p {
  padding: 0 0 24px;
  font-size: 16px; line-height: 1.8;
  color: var(--text-2);
}

/* ─── CTA Band ─────────────────────────────────── */
.cta-card {
  position: relative;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(109,40,217,0.25) 0%, rgba(18,10,39,0.95) 40%, rgba(243,194,64,0.08) 100%);
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px -20px rgba(76,29,149,0.5), inset 0 1px 0 rgba(243,194,64,0.05);
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.cta-ornament {
  position: absolute;
  width: 340px; height: 340px; border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  pointer-events: none;
}
.cta-ornament.top-left     { top: -160px;  left: -100px; background: var(--purple-2); }
.cta-ornament.bottom-right { bottom: -180px; right: -100px; background: var(--gold-2); opacity: 0.18; }
.cta-inner {
  position: relative; z-index: 2;
  padding: 72px 64px;
  text-align: center;
}
.cta-kicker {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold-4);
  margin-bottom: 20px;
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 18px;
}
.cta-desc {
  max-width: 660px; margin: 0 auto 34px;
  color: var(--text-2); font-size: 18px; line-height: 1.8;
}
.cta-row {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.cta-trust {
  display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px;
  color: var(--muted); font-size: 14px; font-weight: 500;
}
.cta-trust span { color: var(--text-2); }
.cta-buttons {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
}

/* ─── Footer ───────────────────────────────────── */
footer {
  padding: 80px 0 36px;
  border-top: 1px solid var(--line);
  margin-top: 32px;
  background: transparent;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p {
  margin-top: 20px;
  font-size: 15px; line-height: 1.75;
  color: var(--text-2);
  max-width: 340px;
}
.footer-grid h4 {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.footer-grid a {
  display: block;
  padding: 7px 0;
  font-size: 15px;
  color: var(--text-2);
  transition: all .2s ease;
}
.footer-grid a:hover {
  color: var(--gold-4);
  transform: translateX(2px);
}
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--muted);
  gap: 20px; flex-wrap: wrap;
}
.foot-links a { color: var(--muted); }
.foot-links a:hover { color: var(--gold-4); }

/* ─── Auth pages (login/signup/subscribe/account) backward compat ─ */
.auth-wrap {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 48px 24px;
}
.auth-wrap > .card {
  width: 100%; max-width: 440px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 40px 32px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
}
.auth-wrap h1 {
  font-family: 'Playfair Display', serif;
  font-size: 30px; font-weight: 700; color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.auth-wrap p.auth-sub { color: var(--text-2); font-size: 14px; margin-bottom: 28px; }
.auth-wrap .tabs {
  display: flex; border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.auth-wrap .tabs button {
  padding: 12px 18px; font-size: 14px; font-weight: 600;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all .2s ease;
}
.auth-wrap .tabs button.active {
  color: var(--gold-4);
  border-color: var(--gold-3);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 12.5px; font-weight: 600;
  color: var(--text-2); margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 11px;
  background: rgba(5, 2, 13, 0.6);
  border: 1px solid var(--line-2);
  color: var(--text);
  font-family: inherit;
  font-size: 14.5px;
  outline: none;
  transition: all .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold-3);
  box-shadow: 0 0 0 4px rgba(243, 194, 64, 0.08);
}
.divider {
  display: flex; align-items: center; gap: 14px;
  margin: 26px 0;
  color: var(--muted); font-size: 12.5px;
}
.divider::before, .divider::after {
  content: ''; flex: 1; height: 1px; background: var(--line);
}
.auth-alt.google {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 16px; border-radius: 11px;
  background: rgba(139,92,246,0.06); border: 1px solid var(--line-2);
  font-size: 14px; font-weight: 600; color: var(--text-2);
  transition: all .2s ease; cursor: pointer;
}
.auth-alt.google:hover {
  border-color: var(--gold-3);
  color: var(--text);
}
.auth-msg { padding: 12px 16px; border-radius: 11px; margin-bottom: 18px; font-size: 13.5px; }
.auth-msg.err { background: rgba(239,68,68,0.10); border: 1px solid rgba(239,68,68,0.25); color: #fca5a5; }
.auth-msg.ok  { background: rgba(54,211,153,0.10); border: 1px solid rgba(54,211,153,0.25); color: #86efac; }
.auth-wrap .btn.btn-block { margin-top: 8px; }

/* Account dashboard */
.acct-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  padding: 48px 0;
}
.acct-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(8px);
}
.acct-card h2 {
  font-size: 20px; font-weight: 700; color: var(--white);
  margin-bottom: 20px; letter-spacing: -0.01em;
}
.acct-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.acct-row:last-child { border-bottom: 0; }
.acct-row span:first-child { color: var(--muted); }
.acct-row span:last-child  { color: var(--text); font-weight: 500; }
.badge {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em;
}
.badge.free { background: rgba(139,92,246,0.10); border: 1px solid var(--line-2); color: var(--purple-4); }
.badge.pro  { background: rgba(243,194,64,0.10); border: 1px solid var(--line-gold); color: var(--gold-4); }
.usage-bar {
  margin-top: 6px;
  height: 8px; border-radius: 999px;
  background: rgba(139,92,246,0.08);
  border: 1px solid var(--line);
  overflow: hidden;
}
.usage-bar i {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--gold-2), var(--gold-4));
  border-radius: inherit;
}

/* ─── Responsive ──────────────────────────────── */
@media (max-width: 1200px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-card.featured { transform: none; }
}
@media (max-width: 1080px) {
  .hero-count { grid-template-columns: repeat(4, 1fr); padding: 30px 18px; }
  .count-num { font-size: 36px; }
  .showcase-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; }
  .tile-main { grid-row: span 3; grid-column: span 2; }
  .tile-screen { grid-column: span 2; }
  .features-grid, .steps-grid, .quotes-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; }
  .acct-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  section { padding: 80px 0; }
  .steps-grid::before { display: none; }
}
@media (max-width: 760px) {
  .nav-inner { height: 68px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; position: absolute; top: 68px; left: 16px; right: 16px;
    flex-direction: column; align-items: stretch; gap: 4px;
    padding: 16px; border-radius: var(--radius);
    background: rgba(10, 5, 24, 0.95);
    border: 1px solid var(--line);
    backdrop-filter: blur(20px);
  }
  .nav-links.open a { padding: 12px 16px; }
  .nav-burger { display: inline-flex; }
  .nav-cta-desktop { display: none; }
  .hero { padding: 72px 0 64px; }
  .hero-title { font-size: 48px; }
  .hero-count { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .count-num { font-size: 36px; }
  .count-stat + .count-stat::before { display: none; }
  .hero-meta { flex-direction: column; gap: 14px; }
  .showcase-grid { grid-template-columns: 1fr; grid-auto-rows: 110px; gap: 10px; }
  .tile-main { grid-row: span 3; grid-column: span 1; }
  .tile-screen { grid-column: span 1; grid-row: auto; min-height: 220px; }
  .showcase-bar { flex-wrap: wrap; gap: 10px; }
  .features-grid, .steps-grid, .quotes-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
  .cta-inner { padding: 52px 32px; }
  .cta-title { font-size: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .hero { padding: 56px 0 48px; }
  .hero-title { font-size: 42px; }
  .hero-count { grid-template-columns: repeat(2, 1fr); }
  .count-num { font-size: 30px; }
  .container { padding: 0 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .showcase-right { width: 100%; justify-content: flex-start; }
  .dock-row { flex-wrap: wrap; }
  .plan-card, .quote-card, .feature-card, .step-card { padding: 32px 22px; }
}
