/* BrandTalk AI — design system
   Dark editorial. Premium. Built to convert. */

:root {
  --bg:           #0a0a18;
  --bg-deep:      #050511;
  --bg-soft:      #11112a;
  --surface:      #16162e;
  --surface-2:    #1c1c38;
  --border:       #232347;
  --border-soft:  #1a1a35;

  --text:         #f5f3ed;
  --text-soft:    #b8b8d4;
  --text-muted:   #7a7a98;

  --primary:      #5d6cff;
  --primary-2:    #8a3fff;
  --primary-glow: rgba(93,108,255,.35);

  --gold:         #d4a04a;
  --gold-deep:    #b8893a;
  --gold-glow:    rgba(212,160,74,.35);

  --accent-cyan:  #5fe3ff;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --max: 1180px;

  --shadow-glow: 0 0 60px var(--primary-glow);
  --shadow-card: 0 20px 60px rgba(0,0,0,.4);
  --shadow-lift: 0 30px 80px rgba(93,108,255,.12);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .18s, opacity .18s; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; }

::selection { background: var(--primary); color: #fff; }

/* Grain + ambient glows */
.bg-grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence baseFrequency='.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}
.bg-glow {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  width: 720px; height: 720px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .35;
}
.bg-glow-1 {
  top: -240px; left: -200px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 60%);
}
.bg-glow-2 {
  top: 40%; right: -300px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--primary-2) 0%, transparent 60%);
  opacity: .25;
}

/* Layout */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.section {
  padding: 110px 0;
  position: relative;
  z-index: 1;
}
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-family: var(--serif); font-size: clamp(34px, 4.5vw, 56px); font-weight: 500; line-height: 1.08; letter-spacing: -0.02em; }
.section-head h2 em { font-style: italic; color: var(--gold); font-weight: 500; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}
.eyebrow-gold { color: var(--gold); }

/* Buttons */
.btn-primary, .btn-ghost, .btn-gold, .btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .01em;
  padding: 12px 22px;
  border-radius: 10px;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-lg { padding: 16px 28px; font-size: 15px; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color: #fff;
  box-shadow: 0 12px 32px rgba(93,108,255,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(93,108,255,.5);
}

.btn-ghost {
  background: rgba(255,255,255,.04);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--primary);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #1a1a18;
  box-shadow: 0 12px 32px var(--gold-glow);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px var(--gold-glow);
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,24,.7);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}
.brand em { font-style: italic; color: var(--gold); font-weight: 500; }
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
}
.nav-links a {
  color: var(--text-soft);
  font-weight: 500;
}
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; gap: 10px; }

/* Hero */
.hero {
  position: relative;
  padding: 100px 0 140px;
  overflow: hidden;
}
.hero-inner {
  max-width: 920px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(93,108,255,.08);
  border: 1px solid rgba(93,108,255,.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: .03em;
  margin-bottom: 32px;
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #5fe3a0;
  box-shadow: 0 0 0 0 rgba(95,227,160,.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(95,227,160,.6); }
  70% { box-shadow: 0 0 0 10px rgba(95,227,160,0); }
  100% { box-shadow: 0 0 0 0 rgba(95,227,160,0); }
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
/* Cycling time/scenario word in hero — sized to longest word, ghost spacer keeps layout stable */
.time-cycle {
  display: inline-block;
  position: relative;
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
  vertical-align: baseline;
  white-space: nowrap;
}
.time-cycle::before {
  content: 'While you sleep.';
  display: inline-block;
  visibility: hidden;
}
.time-cycle span {
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
  animation: timeCycle 12s infinite;
  animation-fill-mode: both;
}
.time-cycle span:nth-child(1) { animation-delay: 0s; }
.time-cycle span:nth-child(2) { animation-delay: 3s; }
.time-cycle span:nth-child(3) { animation-delay: 6s; }
.time-cycle span:nth-child(4) { animation-delay: 9s; }
@keyframes timeCycle {
  0%   { opacity: 0; transform: translateY(8px); }
  4%, 22% { opacity: 1; transform: translateY(0); }
  25%, 100% { opacity: 0; transform: translateY(-8px); }
}

.hero-sub {
  font-size: 20px;
  color: var(--text-soft);
  max-width: 640px;
  margin-bottom: 40px;
  line-height: 1.55;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-meta-item { display: flex; flex-direction: column; gap: 2px; }
.hero-meta-item strong {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-meta-item span {
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.hero-meta-divider {
  width: 1px; height: 32px;
  background: var(--border);
}

/* Hero orb (right side animated visual) */
.hero-orb {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 560px;
  height: 560px;
  z-index: 1;
  pointer-events: none;
  opacity: .6;
}
.orb-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(93,108,255,.25);
}
.orb-ring-1 { animation: orbSpin 18s linear infinite; }
.orb-ring-2 { inset: 60px; border-color: rgba(212,160,74,.2); animation: orbSpin 24s linear infinite reverse; }
.orb-ring-3 { inset: 120px; border-color: rgba(93,108,255,.4); animation: orbSpin 12s linear infinite; }
@keyframes orbSpin { to { transform: rotate(360deg); } }

.orb-core {
  position: absolute;
  inset: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--primary), var(--primary-2));
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 0 80px var(--primary-glow),
    inset 0 0 60px rgba(255,255,255,.1);
  animation: orbPulse 4s ease-in-out infinite;
}
@keyframes orbPulse {
  0%, 100% { box-shadow: 0 0 80px var(--primary-glow), inset 0 0 60px rgba(255,255,255,.1); }
  50% { box-shadow: 0 0 120px var(--primary-glow), inset 0 0 80px rgba(255,255,255,.15); }
}
.waveform { color: rgba(255,255,255,.95); }
.wf-bars rect {
  fill: currentColor;
  animation: waveBeat 1.4s ease-in-out infinite;
  transform-origin: center;
}
.wf-bars rect:nth-child(odd) { animation-delay: .15s; }
.wf-bars rect:nth-child(3n) { animation-delay: .3s; }
.wf-bars rect:nth-child(5n) { animation-delay: .45s; }
@keyframes waveBeat {
  0%, 100% { transform: scaleY(.6); }
  50% { transform: scaleY(1.1); }
}

@media (max-width: 920px) {
  .hero-orb { display: none; }
}

/* Strip */
.strip {
  padding: 24px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: rgba(255,255,255,.02);
}
.strip-inner {
  display: flex; align-items: center; gap: 32px;
  flex-wrap: wrap;
}
.strip-label {
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 600;
}
.strip-types {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-family: var(--serif); font-size: 16px; font-style: italic;
  color: var(--text-soft);
}

/* How */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.how-step {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-soft) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.how-step:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lift);
}
.step-num {
  display: inline-block;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .1em;
  margin-bottom: 18px;
}
.how-step h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.how-step p { color: var(--text-soft); font-size: 15px; }

@media (max-width: 880px) { .how-grid { grid-template-columns: 1fr; } }

/* Demo */
.demo-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: center;
}
.demo-copy h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.demo-copy h2 em { font-style: italic; color: var(--gold); }
.demo-copy p { color: var(--text-soft); font-size: 17px; max-width: 480px; margin-bottom: 32px; }

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-align: left;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.btn-call:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lift);
}
.call-icon {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.call-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  animation: callPulse 1.6s ease-out infinite;
}
@keyframes callPulse {
  0% { transform: scale(.9); opacity: .8; }
  100% { transform: scale(1.5); opacity: 0; }
}
.call-info { display: flex; flex-direction: column; gap: 2px; }
.call-label {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 600;
}
.call-number {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
}

.demo-fineprint {
  margin-top: 18px;
  font-size: 13px !important;
  color: var(--text-muted) !important;
  max-width: 420px !important;
}

/* Phone visual */
.demo-phone {
  display: flex;
  justify-content: center;
  position: relative;
}
.demo-phone::before {
  content: '';
  position: absolute;
  inset: 10% 20%;
  background: radial-gradient(circle, var(--primary-glow), transparent 70%);
  filter: blur(60px);
  z-index: 0;
}
.phone-frame {
  position: relative;
  width: 320px;
  height: 640px;
  background: linear-gradient(180deg, #2a2a4a 0%, #1a1a35 100%);
  border-radius: 48px;
  padding: 12px;
  box-shadow:
    0 60px 120px rgba(0,0,0,.5),
    inset 0 1px 0 rgba(255,255,255,.1),
    0 0 0 1px rgba(255,255,255,.05);
  z-index: 1;
}
.phone-notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 28px;
  background: #050511;
  border-radius: 16px;
  z-index: 3;
}
.phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #1a1a35 0%, #0a0a18 100%);
  border-radius: 38px;
  padding: 56px 24px 32px;
  display: flex;
  flex-direction: column;
}
.phone-status {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 36px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.status-icons { display: flex; gap: 6px; align-items: center; color: var(--text-soft); }

.phone-call {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.call-avatar {
  position: relative;
  width: 110px; height: 110px;
  margin-bottom: 20px;
}
.avatar-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  animation: avatarPulse 2s ease-in-out infinite;
}
@keyframes avatarPulse {
  0%, 100% { transform: scale(1); opacity: .7; }
  50% { transform: scale(1.05); opacity: 1; }
}
.avatar-core {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 500;
  color: #fff;
  box-shadow: 0 20px 40px var(--primary-glow);
}
.call-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 4px;
}
.call-state {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.call-timer { color: var(--text-soft); }

.call-transcript {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
  flex: 1;
}
.transcript-line {
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 12px;
  text-align: left;
  line-height: 1.4;
  max-width: 88%;
  animation: lineIn .5s ease-out backwards;
}
.transcript-line.their {
  background: rgba(93,108,255,.15);
  border: 1px solid rgba(93,108,255,.25);
  color: var(--text);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.transcript-line.yours {
  background: rgba(255,255,255,.06);
  color: var(--text-soft);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.transcript-line:nth-child(1) { animation-delay: .2s; }
.transcript-line:nth-child(2) { animation-delay: 1.2s; }
.transcript-line:nth-child(3) { animation-delay: 2.2s; }
@keyframes lineIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.call-actions {
  display: flex; gap: 16px;
  justify-content: center;
}
.call-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-soft);
}
.call-btn-end {
  background: #ef4444;
  color: #fff;
  transform: rotate(135deg);
}

@media (max-width: 920px) {
  .demo-inner { grid-template-columns: 1fr; gap: 48px; }
  .demo-phone { display: none; }
}

/* Bento features */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 20px;
}
.bento-card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-soft) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(93,108,255,.08), transparent 40%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.bento-card:hover::before { opacity: 1; }
.bento-card:hover {
  transform: translateY(-3px);
  border-color: rgba(93,108,255,.4);
}
.bento-lg { grid-column: span 2; }
.bento-tall { grid-row: span 2; }

.bento-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(93,108,255,.15), rgba(138,63,255,.1));
  border: 1px solid rgba(93,108,255,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: 6px;
}
.bento-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.bento-card p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}
.bento-card em { font-style: italic; color: var(--gold); }

@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-lg { grid-column: span 2; }
  .bento-tall { grid-row: auto; }
}
@media (max-width: 640px) {
  .bento { grid-template-columns: 1fr; }
  .bento-lg, .bento-tall { grid-column: auto; grid-row: auto; }
}

/* Pricing */
.pricing .section-head {
  text-align: center;
  margin-left: auto; margin-right: auto;
}
.cycle-toggle {
  display: inline-flex;
  margin-top: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
}
.cycle-btn {
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .25s, color .25s;
}
.cycle-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
}
.cycle-save {
  font-size: 11px;
  background: var(--gold);
  color: #1a1a18;
  padding: 2px 8px;
  border-radius: 100px;
  font-weight: 600;
}
.cycle-btn.active .cycle-save { background: rgba(255,255,255,.2); color: #fff; }

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.tier {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-soft) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.tier:hover {
  transform: translateY(-4px);
  border-color: rgba(93,108,255,.4);
  box-shadow: var(--shadow-lift);
}
.tier-featured {
  background: linear-gradient(180deg, rgba(93,108,255,.08) 0%, var(--bg-soft) 100%);
  border-color: var(--primary);
  box-shadow: 0 0 60px rgba(93,108,255,.15);
}
.tier-featured:hover {
  border-color: var(--primary);
  box-shadow: 0 0 80px rgba(93,108,255,.25);
}
.tier-premium {
  background: linear-gradient(180deg, rgba(212,160,74,.06) 0%, var(--bg-soft) 100%);
  border-color: rgba(212,160,74,.4);
}
.tier-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.tier-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.tier-tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.tier-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.price-amount {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  transition: opacity .2s;
}
.price-cycle { color: var(--text-muted); font-size: 16px; }
.tier-setup {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.tier-setup strong { color: var(--text-soft); }
.setup-waived { color: var(--gold); font-weight: 500; margin-left: 4px; }

.tier-feats {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.tier-feats li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
}
.tier-feats li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'><path d='M3 7l3 3 5-6' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}
.tier-cta { width: 100%; justify-content: center; padding: 14px; }

.pricing-fineprint {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 32px;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
}

@media (max-width: 980px) { .tiers { grid-template-columns: 1fr; max-width: 460px; margin: 16px auto 0; } }

/* Partners */
.partners {
  background: linear-gradient(180deg, transparent 0%, rgba(212,160,74,.04) 50%, transparent 100%);
}
.partners-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.partners-copy h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.partners-copy > p {
  color: var(--text-soft);
  font-size: 17px;
  max-width: 520px;
  margin-bottom: 36px;
}

.partners-stats {
  display: flex;
  gap: 28px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.partners-stat {
  display: flex; flex-direction: column; gap: 4px;
}
.partners-stat strong {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}
.partners-stat span {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: .03em;
  max-width: 200px;
}

.partners-card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-soft) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.partners-card-head {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 600;
}
.partners-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.pcard-stat {
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pcard-stat span {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.pcard-stat strong {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
}
.pcard-stat small {
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
}
.partners-card-list { display: flex; flex-direction: column; gap: 8px; }
.pcard-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  background: rgba(255,255,255,.02);
  border-radius: var(--r-sm);
  font-size: 13px;
}
.pcard-name { color: var(--text); font-weight: 500; }
.pcard-tag {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 100px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.tag-active { background: rgba(95,227,160,.15); color: #5fe3a0; }
.tag-trial { background: rgba(212,160,74,.15); color: var(--gold); }
.pcard-mrr { color: var(--text-soft); font-weight: 500; }

@media (max-width: 980px) { .partners-inner { grid-template-columns: 1fr; gap: 48px; } }

/* Trust */
.trust-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
.trust-quote {
  position: relative;
  padding: 40px 36px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-soft) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
}
.trust-quote svg { color: var(--primary); margin-bottom: 16px; }
.trust-quote p {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.trust-attr { display: flex; flex-direction: column; gap: 2px; font-size: 13px; }
.trust-attr strong { color: var(--text); font-weight: 600; }
.trust-attr span { color: var(--text-muted); }

.trust-bullets { display: flex; flex-direction: column; gap: 24px; }
.trust-b {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
  padding-left: 16px;
  border-left: 2px solid var(--gold);
}
.trust-b strong { color: var(--text); }

@media (max-width: 880px) { .trust-inner { grid-template-columns: 1fr; gap: 36px; } }

/* Final CTA */
.final-cta {
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(93,108,255,.08) 0%, transparent 70%);
}
.final-inner h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 880px;
  margin-left: auto; margin-right: auto;
}
.final-inner > p {
  font-size: 18px;
  color: var(--text-soft);
  margin-bottom: 36px;
}
.final-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-soft);
  padding-top: 80px;
  position: relative;
  z-index: 2;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 360px;
  margin-bottom: 12px;
}
.footer-by { font-size: 13px !important; color: var(--text-muted) !important; }
.footer-by a { color: var(--gold); }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 880px) {
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

/* Reveal on scroll — additive polish, never hides content */
.reveal { transform: translateY(16px); transition: transform .7s ease-out, opacity .7s ease-out; opacity: .5; }
.reveal.in { transform: translateY(0); opacity: 1; }
/* If JS doesn't run, everything stays at opacity 1 by default already */
.no-js .reveal, html:not(.has-js) .reveal { transform: none; opacity: 1; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Mobile nav fallback */
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-actions .btn-ghost { display: none; }
  .nav-actions .btn-primary { padding: 10px 18px; font-size: 13px; }
}

/* Light tweaks for very small screens */
@media (max-width: 540px) {
  .section { padding: 80px 0; }
  .hero { padding: 60px 0 80px; }
  .hero-title { font-size: 44px; }
  .hero-meta-divider { display: none; }
  .hero-meta { gap: 24px; }
}

/* Inner pages — narrow content */
.page-narrow .container { max-width: 880px; }
.page-narrow.center .container { text-align: center; }

.page-head {
  margin-bottom: 64px;
  max-width: 720px;
}
.page-head h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 16px 0 20px;
}
.page-head h1 em { font-style: italic; color: var(--gold); }
.page-head > p {
  font-size: 18px;
  color: var(--text-soft);
  line-height: 1.55;
}

/* Three-card grid for "what you earn / give / honest part" */
.page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.page-card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-soft) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
}
.page-card h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.page-card p {
  color: var(--text-soft);
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.6;
}
.page-card em { color: var(--gold); font-style: italic; }
.page-card strong { color: var(--text); }

.feat-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feat-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
}
.feat-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'><path d='M2 6l3 3 5-6' stroke='white' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}
.feat-list li strong { color: var(--text); }

@media (max-width: 980px) { .page-grid { grid-template-columns: 1fr; } }

/* Form */
.page-form {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-soft) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 44px;
  max-width: 720px;
  margin: 0 auto;
}
.page-form h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.form-intro {
  color: var(--text-soft);
  font-size: 15px;
  margin-bottom: 32px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field-full { grid-column: span 2; }
.form-field span {
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 500;
  letter-spacing: .01em;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font: inherit;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(93,108,255,.18);
}
.form-field textarea { resize: vertical; min-height: 100px; }

.form-submit { padding: 16px 32px; }
.form-fineprint {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.5;
}
.form-fineprint a { color: var(--gold); }

.form-status {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: var(--r-md);
  font-size: 14px;
  line-height: 1.5;
}
.form-status-ok {
  background: rgba(95,227,160,.08);
  border: 1px solid rgba(95,227,160,.3);
  color: #5fe3a0;
}
.form-status-ok strong { color: #fff; }
.form-status-err {
  background: rgba(239,68,68,.08);
  border: 1px solid rgba(239,68,68,.3);
  color: #fca5a5;
}

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-field-full { grid-column: auto; }
  .page-form { padding: 28px 22px; }
}

/* Legal pages */
.legal h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 12px 0 12px;
}
.legal-meta {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 48px;
  letter-spacing: .02em;
}
.legal h2 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  margin: 36px 0 12px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.legal p {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.legal p strong { color: var(--text); }
.legal p em { color: var(--gold); font-style: italic; }
.legal a { color: var(--primary); }
.legal a:hover { text-decoration: underline; }
.legal ul.feat-list {
  margin: 12px 0 24px;
}
.legal-sig {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  font-style: italic;
  color: var(--text-muted) !important;
}

/* Success mark animation */
.success-mark {
  display: inline-block;
  animation: successIn .6s ease-out;
}
@keyframes successIn {
  from { opacity: 0; transform: scale(.8); }
  to { opacity: 1; transform: scale(1); }
}
