@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500&display=swap');

/* ─────────────────────────────────────────────────────────────
   RESET
───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─────────────────────────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────────────────────────── */
:root {
  --brand:        #5b72e8;
  --brand-light:  #7d93f0;
  --brand-dim:    rgba(91, 114, 232, 0.12);
  --purple:       #8338ec;
  --purple-dim:   rgba(131, 56, 236, 0.10);

  --bg:           #07070f;
  --bg-2:         #0c0c1c;
  --bg-3:         #111128;
  --glass:        rgba(255, 255, 255, 0.04);
  --glass-hover:  rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.08);

  --text:         #eeeeff;
  --text-mid:     #9494b8;
  --text-muted:   #52527a;

  --grad:         linear-gradient(135deg, var(--brand) 0%, var(--purple) 100%);
  --grad-subtle:  linear-gradient(135deg, rgba(91,114,232,0.12) 0%, rgba(131,56,236,0.12) 100%);
  --grad-text:    linear-gradient(135deg, #7d93f0 0%, #b89df5 100%);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-card:       0 0 0 1px var(--glass-border), 0 4px 24px rgba(0,0,0,0.5);
  --shadow-card-hover: 0 0 0 1px rgba(91,114,232,0.30), 0 20px 60px rgba(91,114,232,0.14), 0 4px 24px rgba(0,0,0,0.5);

  --max-width: 1120px;
  --narrow:     720px;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  cubic-bezier(0, 0, 0.2, 1);
}

/* ─────────────────────────────────────────────────────────────
   BASE
───────────────────────────────────────────────────────────── */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--text);
}

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─────────────────────────────────────────────────────────────
   LAYOUT
───────────────────────────────────────────────────────────── */
.container        { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }
.container--narrow{ max-width: var(--narrow);    margin: 0 auto; padding: 0 32px; }
section           { padding: 96px 0; }

/* ─────────────────────────────────────────────────────────────
   HEADER
───────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(7, 7, 15, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--glass-border);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  transition: opacity 0.2s;
}
.site-logo:hover { opacity: 0.8; }

.logo-mark { width: 28px; height: 24px; }

.site-nav { display: flex; align-items: center; gap: 32px; }

.site-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s var(--ease);
}
.site-nav a:hover,
.site-nav a.active { color: var(--text); }

.nav-cta {
  color: var(--brand-light) !important;
  background: var(--brand-dim);
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(91,114,232,0.22);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease) !important;
}
.nav-cta:hover {
  background: rgba(91,114,232,0.22) !important;
  border-color: rgba(91,114,232,0.45) !important;
}

/* ─────────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

/* Aurora blobs */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 10% 20%, rgba(91,114,232,0.20) 0%, transparent 55%),
    radial-gradient(ellipse 55% 65% at 90% 80%, rgba(131,56,236,0.15) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 55% 40%, rgba(91,114,232,0.06) 0%, transparent 60%);
  animation: aurora 20s ease-in-out infinite alternate;
  z-index: 0;
}

/* Dot grid */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 75%);
}

@keyframes aurora {
  0%   { transform: scale(1)    rotate(0deg);   opacity: 0.65; }
  33%  { transform: scale(1.06) rotate(1.5deg); opacity: 1;    }
  66%  { transform: scale(0.97) rotate(-1deg);  opacity: 0.80; }
  100% { transform: scale(1.03) rotate(0.5deg); opacity: 0.90; }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--brand-light);
  background: var(--brand-dim);
  border: 1px solid rgba(91,114,232,0.20);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(3rem, 7.5vw, 5.8rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.06;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-mid);
  max-width: 500px;
  margin: 0 auto 44px;
  line-height: 1.75;
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollbounce 2.5s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, var(--brand));
  border-radius: 1px;
}

@keyframes scrollbounce {
  0%, 100% { opacity: 0.35; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.9;  transform: translateX(-50%) translateY(8px); }
}

/* ─────────────────────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────────────────────── */
.btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 100px;
  transition: all 0.22s var(--ease);
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  line-height: 1;
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 28px rgba(91,114,232,0.38);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 44px rgba(91,114,232,0.55);
  filter: brightness(1.08);
}

.btn-ghost {
  background: var(--glass);
  color: var(--text-mid);
  border: 1px solid var(--glass-border);
}
.btn-ghost:hover {
  background: var(--glass-hover);
  color: var(--text);
  border-color: rgba(255,255,255,0.15);
}

.btn-outline {
  background: transparent;
  color: var(--brand-light);
  border: 1px solid rgba(91,114,232,0.38);
}
.btn-outline:hover {
  background: var(--brand-dim);
  border-color: var(--brand-light);
}

.btn-store {
  background: var(--glass);
  color: var(--text);
  border: 1px solid var(--glass-border);
  font-size: 0.88rem;
  padding: 12px 22px;
}
.btn-store:hover {
  background: var(--glass-hover);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}

/* ─────────────────────────────────────────────────────────────
   SECTION HEADER
───────────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-top: 16px;
}
.section-header p {
  color: var(--text-mid);
  max-width: 460px;
  margin: 16px auto 0;
  font-size: 0.97rem;
}

.section-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 52px;
}
.section-rule::before,
.section-rule::after {
  content: '';
  width: 44px;
  height: 1px;
}
.section-rule::before { background: linear-gradient(to right,  transparent, rgba(91,114,232,0.45)); }
.section-rule::after  { background: linear-gradient(to left,   transparent, rgba(91,114,232,0.45)); }

/* ─────────────────────────────────────────────────────────────
   FEATURED SPOTLIGHT (homepage)
───────────────────────────────────────────────────────────── */
.featured {
  background: var(--bg-2);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.spotlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 72px;
  align-items: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 60px;
  position: relative;
  overflow: hidden;
}

/* Gradient border */
.spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: var(--grad);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  opacity: 0.45;
  pointer-events: none;
}

/* Glow blob behind icon */
.spotlight::after {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,114,232,0.14) 0%, transparent 70%);
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  filter: blur(24px);
  pointer-events: none;
}

.spotlight-icon-wrap { position: relative; z-index: 1; }

.spotlight-icon-img {
  width: 156px;
  height: 156px;
  border-radius: 36px;
  box-shadow: 0 24px 64px rgba(91,114,232,0.35), 0 0 0 1px rgba(255,255,255,0.1);
}

.spotlight-body { position: relative; z-index: 1; }

.platform-chip {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--brand-light);
  background: var(--brand-dim);
  border: 1px solid rgba(91,114,232,0.22);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.spotlight-body h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.spotlight-tagline {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 18px;
  font-style: italic;
}

.spotlight-desc {
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 500px;
  font-size: 0.95rem;
}

.spotlight-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.chip {
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  padding: 5px 13px;
  border-radius: 100px;
}

/* ─────────────────────────────────────────────────────────────
   PILLARS / ETHOS (homepage)
───────────────────────────────────────────────────────────── */
.pillars { background: var(--bg); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pillar-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.pillar-card:hover {
  background: var(--glass-hover);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: rgba(91,114,232,0.18);
}
.pillar-card:hover::before { transform: scaleX(1); }

.pillar-icon {
  width: 48px;
  height: 48px;
  background: var(--grad-subtle);
  border: 1px solid rgba(91,114,232,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.35rem;
}

.pillar-card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 12px; }
.pillar-card p  { font-size: 0.92rem; color: var(--text-mid); line-height: 1.72; }

/* ─────────────────────────────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────────────────────────────── */
.page-hero {
  padding: 160px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 15% 50%, rgba(91,114,232,0.11) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 88% 30%, rgba(131,56,236,0.08) 0%, transparent 55%);
}
.page-hero-content { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  margin: 14px 0 18px;
}
.page-hero-sub { color: var(--text-mid); font-size: 1.05rem; max-width: 480px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--brand-light); }
.breadcrumb-sep { opacity: 0.4; }

/* ─────────────────────────────────────────────────────────────
   APP GRID (apps/index.html)
───────────────────────────────────────────────────────────── */
.apps-section { background: var(--bg); }

.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.app-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.app-card:not(.app-card--soon):hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: rgba(91,114,232,0.25);
}

.app-card-top {
  padding: 32px;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 20px;
}

.app-icon-sm {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  flex-shrink: 0;
}

.app-card-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.app-card-body { padding: 28px 32px; flex: 1; display: flex; flex-direction: column; }
.app-card-tagline { font-size: 1rem; font-weight: 500; margin-bottom: 12px; }
.app-card-desc { font-size: 0.9rem; color: var(--text-mid); line-height: 1.72; margin-bottom: 24px; flex: 1; }

.app-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.tag {
  font-size: 0.73rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  padding: 4px 12px;
  border-radius: 100px;
}

/* Coming soon card */
.app-card--soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 60px 40px;
  border-style: dashed;
  min-height: 280px;
  opacity: 0.45;
}
.soon-badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
}
.soon-text { font-size: 0.9rem; color: var(--text-muted); text-align: center; }

/* ─────────────────────────────────────────────────────────────
   APP PAGE HERO (quest-buddy/index.html)
───────────────────────────────────────────────────────────── */
.app-page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.app-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(91,114,232,0.20) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 80% 110%, rgba(131,56,236,0.13) 0%, transparent 55%);
  z-index: 0;
}
.app-page-hero-content { position: relative; z-index: 1; }

.app-page-icon {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(91,114,232,0.45), 0 0 0 1px rgba(255,255,255,0.1);
  margin: 0 auto 28px;
}

.app-page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.app-page-tagline { font-size: 1.15rem; color: var(--text-mid); margin-bottom: 36px; }
.app-page-chips {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* ─────────────────────────────────────────────────────────────
   FEATURES GRID
───────────────────────────────────────────────────────────── */
.features {
  background: var(--bg-2);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s var(--ease);
}
.feature-card:hover {
  background: var(--glass-hover);
  border-color: rgba(91,114,232,0.2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--grad-subtle);
  border: 1px solid rgba(91,114,232,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.feature-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 10px; }
.feature-card p  { font-size: 0.87rem; color: var(--text-mid); line-height: 1.68; }

/* ─────────────────────────────────────────────────────────────
   SCREENSHOTS placeholder
───────────────────────────────────────────────────────────── */
.screenshots {
  background: var(--bg);
}

.screenshots-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: none;
}
.screenshots-scroll::-webkit-scrollbar { display: none; }

.screenshot-frame {
  flex-shrink: 0;
  width: 220px;
  height: 390px;
  background: var(--bg-3);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-family: 'Space Grotesk', sans-serif;
}

/* ─────────────────────────────────────────────────────────────
   PRICING
───────────────────────────────────────────────────────────── */
.pricing { background: var(--bg); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 680px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
}
.pricing-card.pricing-card--pro {
  border-color: rgba(91,114,232,0.38);
  background: linear-gradient(145deg, rgba(91,114,232,0.08) 0%, rgba(131,56,236,0.08) 100%);
}

.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--grad);
  color: #fff;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-mid);
}

.plan-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.plan-price .currency { font-size: 1.4rem; vertical-align: super; font-weight: 600; letter-spacing: 0; }
.plan-period { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 32px; }

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.55;
}
.plan-features li::before {
  content: '✓';
  color: var(--brand-light);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.82rem;
  margin-top: 1px;
}

/* ─────────────────────────────────────────────────────────────
   SUPPORT
───────────────────────────────────────────────────────────── */
.support-section { background: var(--bg); }

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 80px;
}

.support-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.3s var(--ease);
}
.support-card:hover {
  border-color: rgba(91,114,232,0.2);
  background: var(--glass-hover);
  transform: translateY(-2px);
}

.support-card-icon {
  width: 48px;
  height: 48px;
  background: var(--grad-subtle);
  border: 1px solid rgba(91,114,232,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 20px;
}

.support-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; }
.support-card p  { font-size: 0.9rem; color: var(--text-mid); line-height: 1.72; }
.support-card a  { color: var(--brand-light); transition: color 0.2s; }
.support-card a:hover { color: var(--brand); text-decoration: underline; }

.faq-heading {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 36px;
}

.faq-list { display: flex; flex-direction: column; gap: 14px; }

.faq-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s var(--ease);
}
.faq-item:hover { border-color: rgba(91,114,232,0.2); }

.faq-q { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1rem; margin-bottom: 10px; }
.faq-a { font-size: 0.9rem; color: var(--text-mid); line-height: 1.72; }

/* ─────────────────────────────────────────────────────────────
   PROSE (Privacy Policy)
───────────────────────────────────────────────────────────── */
.prose-section { background: var(--bg); }

.prose h2 {
  font-size: 1.35rem;
  font-weight: 600;
  margin: 52px 0 16px;
  padding-top: 36px;
  border-top: 1px solid var(--glass-border);
}
.prose h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.prose p { font-size: 0.93rem; color: var(--text-mid); line-height: 1.82; margin-bottom: 16px; }
.prose ul {
  padding-left: 0; list-style: none;
  margin-bottom: 16px; display: flex; flex-direction: column; gap: 8px;
}
.prose ul li {
  font-size: 0.93rem; color: var(--text-mid);
  padding-left: 22px; position: relative; line-height: 1.72;
}
.prose ul li::before { content: '—'; position: absolute; left: 0; color: var(--text-muted); }
.prose strong { color: var(--text); font-weight: 500; }
.prose a { color: var(--brand-light); text-decoration: underline; text-decoration-color: rgba(91,114,232,0.3); }
.prose a:hover { text-decoration-color: var(--brand-light); }

/* ─────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--glass-border);
  padding: 56px 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  transition: opacity 0.2s;
}
.footer-logo:hover { opacity: 0.8; }

.footer-nav { display: flex; gap: 28px; }
.footer-nav a { font-size: 0.87rem; color: var(--text-muted); transition: color 0.2s; }
.footer-nav a:hover { color: var(--text-mid); }

.footer-divider { height: 1px; background: var(--glass-border); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy { font-size: 0.8rem; color: var(--text-muted); }

.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.8rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--text-mid); }

/* ─────────────────────────────────────────────────────────────
   REVEAL ANIMATIONS
───────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  section { padding: 72px 0; }

  .pillars-grid  { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .support-grid  { grid-template-columns: 1fr; }

  .spotlight {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
    text-align: center;
  }
  .spotlight-icon-wrap { margin: 0 auto; }
  .spotlight-desc { margin: 0 auto 32px; }
  .spotlight-chips { justify-content: center; }
  .spotlight::after { display: none; }
}

@media (max-width: 640px) {
  .container, .container--narrow { padding: 0 20px; }
  section { padding: 60px 0; }

  .site-nav { gap: 18px; }
  .nav-cta  { display: none; }

  .hero h1 { font-size: 2.8rem; }
  .hero-sub { font-size: 1rem; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { justify-content: center; }

  .pillars-grid  { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .app-grid      { grid-template-columns: 1fr; }

  .spotlight { padding: 28px; }
  .spotlight-icon-img { width: 100px; height: 100px; }
  .spotlight-body h2  { font-size: 2rem; }

  .footer-top    { flex-direction: column; gap: 24px; align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}
