/* =============================================
   GroRank — Main Stylesheet
   Brand: Ink #12161C · Copper #A6522B · Paper #F1F3F5
          Charcoal #171B20
   Fonts: Fraunces (display) · IBM Plex Sans (body) · IBM Plex Mono (data/labels)
   ============================================= */

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

/* ── TOKENS ── */
:root {
  --ink:        #090A22;
  --ink-2:      #12153D;
  --accent:     #6F5AFF;
  --accent-deep:#3F2AED;
  --paper:      #F4F5FF;
  --charcoal:   #181B3C;
  --muted:      #7A7DD1;
  --border:     #D8D9FF;
  --white:      #FFFFFF;
  --ff-display: 'Fraunces', serif;
  --ff-body:    'IBM Plex Sans', sans-serif;
  --ff-mono:    'IBM Plex Mono', monospace;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
}

/* ── BASE ── */
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  color: var(--charcoal);
  background: radial-gradient(circle at top, #ffffff 0%, #f7f8f9 32%, #f1f3f5 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--ff-display); line-height: 1.08; letter-spacing: -0.01em; font-weight: 600; }
h1 { font-size: clamp(38px, 5.5vw, 64px); font-weight: 600; }
h2 { font-size: clamp(28px, 3.4vw, 44px); font-weight: 600; }
h3 { font-size: clamp(18px, 2vw, 22px); font-weight: 600; }

/* ── LAYOUT ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
section { padding: 110px 0; }

/* ══════════════════════════════════
   NAVIGATION
══════════════════════════════════ */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.94);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(220,223,227,.8);
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
header.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 22px 50px rgba(22,30,42,.08);
  border-color: rgba(220,223,227,.95);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 88px; }

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

nav ul { list-style: none; display: flex; gap: 4px; align-items: center; }
nav a {
  text-decoration: none; color: var(--charcoal);
  font-size: 14px; font-weight: 500;
  padding: 7px 13px; border-radius: var(--r-sm);
  transition: color .2s, background .2s;
}
nav a:hover { color: var(--accent-deep); background: rgba(18,22,28,0.05); }
.nav-cta { background: var(--ink) !important; color: var(--white) !important; font-weight: 600 !important; }
.nav-cta:hover { background: var(--accent) !important; color: white !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 6px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

@media (max-width: 768px) {
  nav ul {
    display: none; position: absolute; top: 78px; left: 0; right: 0;
    background: rgba(241,243,245,0.98); flex-direction: column; align-items: stretch; gap: 0;
    padding: 12px 16px 20px; border-bottom: 1px solid var(--border);
  }
  nav ul.open { display: flex; }
  .hamburger { display: flex; }
  .nav-wrap { min-height: 78px; }
  .logo { height: 30px; }
  .logo-img { height: 30px; }
}

/* ══════════════════════════════════
   BUTTONS
══════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 28px; border-radius: var(--r-sm);
  font-family: var(--ff-body); font-size: 15px; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform .24s ease, background .24s ease, box-shadow .24s ease, color .24s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary { background: var(--accent); color: white; box-shadow: 0 18px 40px rgba(166,82,43,.18); }
.btn-primary:hover { background: var(--accent-deep); box-shadow: 0 22px 44px rgba(166,82,43,.24); }
.btn-outline { background: transparent; border: 1.5px solid rgba(125,126,255,.35); color: white; }
.btn-outline:hover { border-color: rgba(111,90,255,.95); background: rgba(111,90,255,.12); }
.btn-navy { background: var(--ink); color: white; }
.btn-navy:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn-primary-lg { font-size: 16px; padding: 17px 32px; }
.btn-nowrap { white-space: nowrap; }
.btn-mt { margin-top: 8px; }

/* ══════════════════════════════════
   SHARED LABELS & SECTION HEADERS
══════════════════════════════════ */
.tag-pill {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-mono); color: var(--accent);
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em;
  margin-bottom: 18px;
}
.tag-pill::before { content: ''; display: inline-block; width: 18px; height: 1px; background: var(--accent); }
.section-lead { font-size: 17px; color: var(--muted); line-height: 1.75; max-width: 600px; }
.section-header { margin-bottom: 52px; }
.section-header h2 { margin-bottom: 14px; }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  background: linear-gradient(165deg, #0B0D34 0%, #161B51 100%);
  color: white; padding: 104px 0 96px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: linear-gradient(180deg, black, transparent 72%);
  mask-image: linear-gradient(180deg, black, transparent 72%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 82% 18%, rgba(111,90,255,.18), transparent 18%),
    radial-gradient(circle at 22% 42%, rgba(102,194,255,.14), transparent 14%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 24% 46%, rgba(111,90,255,.12), transparent 22%),
    radial-gradient(circle at 78% 72%, rgba(96,205,255,.1), transparent 18%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 420px; gap: 64px;
  align-items: center; position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-mono); color: rgba(255,255,255,.8); font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  margin-bottom: 24px;
}
.hero-eyebrow::before { content: ''; display: inline-block; width: 18px; height: 1px; background: rgba(111,90,255,.85); }
.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: #D99968; }
.hero-sub {
  font-size: 17px; line-height: 1.75; opacity: .82;
  margin-bottom: 38px; max-width: 540px;
}
.hero-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px;
  margin-bottom: 32px;
}
.hero-stat {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-stat strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 28px;
  color: white;
  line-height: 1;
}
.hero-stat span {
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.5;
}
.hero-foot { font-size: 13px; opacity: .58; display: flex; align-items: center; gap: 8px; }
.hero-foot::before { content: ''; display: inline-block; width: 18px; height: 1px; background: currentColor; }

/* Dispatch Ticket (signature hero visual) */
.ticket {
  background: var(--paper);
  border-radius: var(--r-md);
  box-shadow: 0 30px 60px rgba(0,0,0,.4);
  padding: 22px 24px 26px;
  position: relative;
  transform: rotate(-2deg);
  transition: transform .4s;
  font-family: var(--ff-mono);
}
.ticket:hover { transform: rotate(0deg); }
.ticket::before,
.ticket::after {
  content: ''; position: absolute; top: 76px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--ink-2);
}
.ticket::before { left: -9px; }
.ticket::after { right: -9px; }
.ticket-top {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 14px; margin-bottom: 14px;
  border-bottom: 1px dashed #C7CBD1;
  font-size: 12px; font-weight: 600; color: var(--charcoal); letter-spacing: 0.04em;
}
.ticket-time { color: var(--muted); font-weight: 400; }
.ticket-row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 7px 0; font-size: 12.5px;
}
.ticket-label { color: var(--muted); }
.ticket-value { color: var(--charcoal); font-weight: 500; text-align: right; }
.ticket-divider { height: 1px; background: #C7CBD1; margin: 10px 0; }
.ticket-stamp {
  font-family: var(--ff-display); font-style: italic; font-weight: 600;
  font-size: 22px; letter-spacing: 0.06em; color: var(--accent);
  border: 2px solid var(--accent); border-radius: 8px;
  padding: 4px 16px; display: inline-block;
  transform: rotate(-8deg);
  position: absolute; right: 20px; bottom: -14px;
  background: var(--paper);
  animation: stampIn .5s cubic-bezier(.2,1.6,.4,1) .9s both;
}

@keyframes stampIn {
  0%   { opacity: 0; transform: rotate(-8deg) scale(1.9); }
  100% { opacity: 1; transform: rotate(-8deg) scale(1); }
}

@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; max-width: 640px; }
  .ticket { display: none; }
}

/* ══════════════════════════════════
   HOW GRORANK HELPS (pillars)
══════════════════════════════════ */
#help { background: radial-gradient(circle at top center, rgba(111,90,255,.12), transparent 34%), radial-gradient(circle at bottom right, rgba(71,106,255,.08), transparent 30%), #eef0ff; }
#help .section-header { text-align: left; max-width: 760px; margin: 0 auto 48px; }
#help .section-header h2 { color: var(--charcoal); }
#help .section-header .tag-pill { color: var(--accent); }
#help .section-header .section-lead { color: #5f63ad; }
.pillar-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }
.pillar-card {
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(111,90,255,.18);
  border-radius: calc(var(--r-md) * 1.25);
  padding: 38px 36px;
  box-shadow: 0 26px 70px rgba(20,24,66,.06);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(111,90,255,.08), transparent 30%);
  pointer-events: none;
}
.pillar-card:hover {
  border-color: var(--accent);
  background: rgba(255,255,255,.98);
  box-shadow: 0 32px 80px rgba(20,24,66,.12);
  transform: translateY(-4px);
}
.pillar-top { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.pillar-icon {
  width: 44px; height: 44px; border-radius: 16px; flex-shrink: 0;
  background: rgba(111,90,255,.08);
  border: 1.5px solid rgba(111,90,255,.22);
  color: var(--accent);
  display: grid; place-items: center;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.pillar-card:hover .pillar-icon {
  border-color: var(--accent);
  transform: translateY(-2px);
  background: rgba(111,90,255,.16);
}
.pillar-code {
  font-family: var(--ff-mono); font-size: 12px; font-weight: 700;
  color: #6b6fd3; letter-spacing: 0.12em; text-transform: uppercase;
}
.pillar-card h3 { font-size: 21px; margin-bottom: 14px; }
.pillar-intro { font-size: 15px; color: #5a5f8f; line-height: 1.75; margin-bottom: 22px; }
.pillar-list { list-style: none; margin-bottom: 22px; padding: 0; }
.pillar-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0; font-size: 13px; line-height: 1.6;
  color: #3c3a5e;
}
.pillar-outcome {
  font-size: 14px; font-weight: 600; color: var(--charcoal);
  padding-top: 20px; border-top: 1px solid rgba(111,90,255,.16);
}
.pillar-outcome span { font-family: var(--ff-mono); font-weight: 700; color: var(--accent); text-transform: uppercase; font-size: 11px; letter-spacing: .08em; }

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

/* ══════════════════════════════════
   PROBLEM
══════════════════════════════════ */
.problem { background: radial-gradient(circle at top left, #11133f 0%, #0b0d29 100%); color: white; }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.problem .tag-pill { color: var(--accent); }
.problem .tag-pill::before { background: var(--accent); }
.problem h2 { color: white; margin-bottom: 20px; }
.problem h2 em { font-style: italic; color: #D99968; }
.problem-body { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,.72); margin-bottom: 20px; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.08); border-radius: var(--r-md); overflow: hidden; }
.check-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--ink-2);
  padding: 16px 18px;
}
.check-icon {
  font-family: var(--ff-mono); color: #D99968; font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.check-item span { font-size: 13px; color: rgba(255,255,255,.85); line-height: 1.4; }

@media (max-width: 820px) {
  .problem-grid { grid-template-columns: 1fr; gap: 44px; }
  .check-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════
   FLAGSHIP OFFER
══════════════════════════════════ */
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.offer-intro { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 28px; }
.offer-close {
  font-style: italic; color: var(--ink); font-weight: 500; font-size: 15px;
  padding-top: 24px; border-top: 1px solid var(--border); margin-bottom: 28px;
}
.offer-box {
  background: var(--paper); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 36px;
}
.offer-box h3 {
  font-size: 17px; margin-bottom: 22px; padding-bottom: 16px;
  border-bottom: 2px solid var(--accent);
}
.offer-list { list-style: none; }
.offer-list li {
  display: flex; gap: 14px; align-items: flex-start; padding: 13px 0;
  border-bottom: 1px solid var(--border); font-size: 14px; line-height: 1.55;
}
.offer-list li:last-child { border-bottom: none; }
.offer-check {
  font-family: var(--ff-mono); color: var(--accent-deep); font-weight: 700; font-size: 14px;
  flex-shrink: 0; margin-top: 1px;
}

@media (max-width: 820px) {
  .offer-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ══════════════════════════════════
   HOW IT WORKS
══════════════════════════════════ */
.how {
  background: linear-gradient(165deg, var(--ink) 0%, var(--ink-2) 100%);
  color: white;
}
.how .section-header { text-align: center; }
.how .section-header h2 { color: white; }
.how .tag-pill { color: var(--accent); }
.how .tag-pill::before { background: var(--accent); }
.how .section-lead { color: rgba(255,255,255,.62); margin: 0 auto; text-align: center; }

.steps-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1px;
  background: rgba(255,255,255,.08); border-radius: var(--r-md); overflow: hidden;
  margin-bottom: 52px;
}
.step {
  background: var(--ink-2); padding: 44px 36px;
  transition: background .25s;
}
.step:hover { background: #212A34; }
.step-num {
  font-family: var(--ff-display); font-style: italic; font-size: 60px; font-weight: 600;
  color: rgba(217,153,104,.35); line-height: 1; margin-bottom: 20px;
}
.step-label {
  font-family: var(--ff-mono); font-size: 10px; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.12em; color: #D99968; margin-bottom: 10px;
}
.step h3 { color: white; margin-bottom: 14px; font-size: 20px; }
.step p { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.7; }
.how-cta { text-align: center; }

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

/* ══════════════════════════════════
   ONE CONNECTED GROWTH SYSTEM
══════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.why-card {
  padding: 36px; border-radius: var(--r-md);
  border: 1px solid var(--border); background: white;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  position: relative;
}
.why-card:hover { border-color: var(--accent); box-shadow: 0 22px 48px rgba(18,22,28,.08); transform: translateY(-3px); }
.why-icon {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  border: 1.5px solid var(--border); display: grid; place-items: center;
  font-family: var(--ff-mono); font-weight: 600; color: var(--accent-deep);
  margin-bottom: 18px;
}
.why-card h3 { font-size: 19px; margin-bottom: 12px; }
.why-card p { color: var(--muted); font-size: 14px; line-height: 1.7; }

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

/* ══════════════════════════════════
   TOOLS WE CONNECT
══════════════════════════════════ */
.tools-section { background: var(--paper); }
.tools-section .section-header { text-align: center; }
.tools-section .section-lead { margin: 0 auto; text-align: center; }
.tools-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 8px; }
.tool-chip {
  display: inline-flex; align-items: center;
  font-family: var(--ff-mono);
  background: white; border: 1px solid var(--border); color: var(--charcoal);
  font-size: 13px; font-weight: 500;
  padding: 9px 18px; border-radius: var(--r-sm);
  transition: transform .24s ease, border-color .24s ease, color .24s ease, box-shadow .24s ease;
}
.tool-chip:hover {
  border-color: var(--accent); color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(166,82,43,.08);
}

/* ══════════════════════════════════
   FINAL CTA
══════════════════════════════════ */
.final-cta {
  background: linear-gradient(165deg, var(--ink) 0%, var(--ink-2) 100%);
  color: white; position: relative; overflow: hidden;
}
.final-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.contact-header { text-align: center; margin-bottom: 44px; }
.final-cta h2 { color: white; font-size: clamp(30px, 4vw, 48px); margin-bottom: 14px; }
.final-cta h2 em { font-style: italic; color: #D99968; }
.contact-header p { font-size: 17px; opacity: .8; line-height: 1.75; margin: 0; }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-step { display: flex; flex-direction: column; gap: 18px; }
.form-step[hidden], .form-success[hidden] { display: none; }
.form-step-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 2px; }
.form-step-heading h3 { color: white; font-size: 24px; }
.form-step-count { font-family: var(--ff-mono); color: #a99fff; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,.7);
  letter-spacing: 0.02em;
}
.req { color: #D99968; }
.form-group input {
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.16);
  border-radius: var(--r-sm); padding: 13px 16px;
  font-family: var(--ff-body); font-size: 15px; color: white;
  transition: border-color .2s, background .2s;
  outline: none; width: 100%;
}
.form-group input::placeholder { color: rgba(255,255,255,.32); }
.form-group input:focus {
  border-color: var(--accent); background: rgba(255,255,255,.1);
}
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.16);
  border-radius: 10px; padding: 13px 16px;
  font-family: var(--ff-body); font-size: 15px; color: white;
  transition: border-color .2s, background .2s;
  outline: none; width: 100%;
}
.form-group textarea { resize: vertical; min-height: 112px; line-height: 1.5; }
.form-group textarea::placeholder { color: rgba(255,255,255,.32); }
.form-group select { appearance: none; padding-right: 44px; background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,.68) 50%), linear-gradient(135deg, rgba(255,255,255,.68) 50%, transparent 50%); background-position: calc(100% - 20px) 52%, calc(100% - 14px) 52%; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.form-group select:invalid { color: rgba(255,255,255,.46); }
.form-group select option { color: var(--charcoal); background: white; }
.form-group textarea:focus, .form-group select:focus { border-color: var(--accent); background-color: rgba(255,255,255,.1); }
.form-group.has-error input, .form-group.has-error textarea, .form-group.has-error select { border-color: #f08a8a; }
.field-error { display: block; min-height: 0; color: #ffb4b4; font-size: 12px; line-height: 1.35; }
.optional { color: rgba(255,255,255,.4); font-weight: 400; }
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 4px; }
.form-actions-next { justify-content: flex-end; }
.btn-back { background: transparent; border: 1px solid rgba(255,255,255,.24); color: rgba(255,255,255,.82); }
.btn-back:hover { background: rgba(255,255,255,.08); color: white; }
.form-status { min-height: 18px; margin: 0; color: #ffb4b4; font-size: 13px; }
.form-success { text-align: center; padding: 28px 0 8px; }
.success-mark { width: 52px; height: 52px; margin: 0 auto 18px; border: 1px solid rgba(231,173,119,.58); border-radius: 50%; display: grid; place-items: center; color: var(--warm); font-size: 24px; }
.form-success h3 { color: white; font-size: 30px; margin-bottom: 10px; }
.form-success p { color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.65; }
.btn-submit { width: 100%; justify-content: center; margin-top: 6px; font-size: 16px; padding: 17px; }
.form-actions .btn-submit { width: auto; min-width: 132px; }
.form-actions-next .btn-submit { width: auto; }
.form-note { text-align: center; font-size: 13px; color: rgba(255,255,255,.38); margin-top: 16px; margin-bottom: 0; }
.form-consent { gap: 10px; margin-top: 4px; }
.consent-check { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; font-size: 13px; font-weight: 400; line-height: 1.55; letter-spacing: .01em; color: rgba(255,255,255,.72); }
.consent-check input[type="checkbox"] { flex-shrink: 0; width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--accent); cursor: pointer; }
.consent-check a { color: #a99fff; text-decoration: underline; }
.consent-check a:hover { color: #c4bcff; }
.consent-note { margin: 0; font-size: 12px; line-height: 1.5; color: rgba(255,255,255,.4); }

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .form-step-heading { align-items: flex-start; flex-direction: column; gap: 4px; }
  .form-actions { align-items: stretch; }
  .form-actions .btn { flex: 1; }
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer { background: var(--ink); color: white; padding: 64px 0 32px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px;
  padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 28px;
}
.footer-logo {
  display: inline-flex;
  height: 40px;
  text-decoration: none;
  margin-bottom: 14px;
}
.footer-logo .logo-img { height: 40px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.42); line-height: 1.7; max-width: 280px; }
.footer-signoff {
  margin-top: 18px;
  color: #e7ad77;
  font-family: var(--ff-display);
  font-size: 20px;
  font-style: italic;
  letter-spacing: -.02em;
}
.footer-col h5 {
  font-family: var(--ff-mono); font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,.32); margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,.58); text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.28); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,.28); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,.62); }

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  section { padding: 64px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ══════════════════════════════════
   ENTRANCE ANIMATIONS
══════════════════════════════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.hero-content > * { animation: fadeUp .65s ease both; }
.hero-content > *:nth-child(1) { animation-delay: .08s; }
.hero-content > *:nth-child(2) { animation-delay: .18s; }
.hero-content > *:nth-child(3) { animation-delay: .28s; }
.hero-content > *:nth-child(4) { animation-delay: .38s; }
.hero-content > *:nth-child(5) { animation-delay: .46s; }
.ticket { animation: fadeIn .9s ease .3s both; }

/* ══════════════════════════════════
   PREMIUM POLISH PASS
   A quieter, more editorial surface around the dispatch-ticket signature.
══════════════════════════════════ */
:root {
  --ink: #0b1028;
  --ink-2: #141b3f;
  --accent: #7867ff;
  --accent-deep: #5d4af0;
  --paper: #f6f7fb;
  --charcoal: #202743;
  --muted: #4b5474;
  --border: #e1e5f0;
  --warm: #e7ad77;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
}

body {
  background: #f8f9fc;
  color: var(--charcoal);
}

::selection { background: rgba(120,103,255,.22); color: var(--ink); }

a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid rgba(120,103,255,.42);
  outline-offset: 3px;
}

header { border-bottom-color: rgba(225,229,240,.9); }
.nav-wrap { min-height: 82px; }
nav a { letter-spacing: -.01em; }
nav a:hover { background: rgba(120,103,255,.07); }
.nav-cta { box-shadow: 0 10px 24px rgba(11,16,40,.16); }

.btn {
  border-radius: 10px;
  letter-spacing: -.01em;
}
.btn-primary {
  background: linear-gradient(135deg, #8878ff 0%, #6654ef 100%);
  box-shadow: 0 16px 34px rgba(93,74,240,.26);
}
.btn-primary:hover { background: linear-gradient(135deg, #9587ff 0%, #705ff5 100%); box-shadow: 0 20px 40px rgba(93,74,240,.32); }
.btn-outline { border-color: rgba(255,255,255,.28); }
.btn-outline:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.08); }

.hero {
  background: radial-gradient(circle at 78% 10%, rgba(120,103,255,.2), transparent 25%), linear-gradient(145deg, #090d25 0%, #151d48 62%, #20245a 100%);
  padding: 116px 0 108px;
}
.hero::before { opacity: .72; background-size: 48px 48px; }
.hero-eyebrow { color: rgba(255,255,255,.68); }
.hero-eyebrow::before { width: 26px; background: var(--warm); }
.hero h1 { letter-spacing: -.035em; max-width: 700px; }
.hero h1 em { color: var(--warm); }
.hero-sub { max-width: 575px; color: rgba(255,255,255,.75); }
.hero-stat {
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.13);
  backdrop-filter: blur(8px);
}
.hero-stat strong { color: #fff; letter-spacing: -.04em; }
.ticket { border-radius: 16px; box-shadow: 0 34px 85px rgba(0,0,0,.44); }
.ticket-stamp { color: var(--accent-deep); border-color: var(--accent-deep); }

section { padding: 122px 0; }
.section-header { margin-bottom: 58px; }
.section-header h2, .problem h2, .offer-grid h2 { letter-spacing: -.035em; }
.tag-pill { color: var(--accent-deep); }
.tag-pill::before { background: var(--accent); }

#help {
  background: radial-gradient(circle at 80% 0%, rgba(120,103,255,.13), transparent 30%), #f0f1ff;
}
.pillar-grid { gap: 22px; }
.pillar-card {
  border-radius: var(--r-lg);
  padding: 36px;
  border-color: rgba(120,103,255,.15);
  box-shadow: 0 18px 48px rgba(31,37,84,.055);
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: 0 28px 62px rgba(31,37,84,.13); }
.pillar-badge {
  display: inline-flex; align-items: baseline; gap: 8px;
  margin: 0 0 20px; padding: 8px 12px;
  border-radius: 999px; background: #f0efff; color: var(--accent-deep);
  font-family: var(--ff-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .06em;
}
.pillar-badge strong { font-family: var(--ff-display); font-size: 20px; letter-spacing: -.04em; }
.pillar-card h3 { letter-spacing: -.025em; }

.problem { background: radial-gradient(circle at 12% 12%, #20285d 0%, transparent 32%), #0b1028; }
.check-grid, .steps-grid { border-radius: 16px; }
.check-item { background: #121938; }
.check-item:hover { background: #182047; }

.offer-box, .why-card { border-radius: 18px; border-color: var(--border); }
.offer-box { box-shadow: 0 18px 50px rgba(28,35,73,.05); }
.offer-box h3 { border-bottom-color: var(--accent); }
.why-card { background: rgba(255,255,255,.72); }

.how, .final-cta { background: radial-gradient(circle at 90% 0%, rgba(120,103,255,.18), transparent 28%), #0b1028; }
.step { background: #121938; }
.step:hover { background: #192147; }
.step-num { color: rgba(231,173,119,.46); }
.step-label { color: var(--warm); }

.tools-section { background: #f0f1f7; }
.tool-chip { border-radius: 999px; padding: 10px 18px; }

.final-cta::before {
  content: ''; position: absolute; width: 420px; height: 420px; border-radius: 50%;
  top: -240px; left: 50%; transform: translateX(-50%);
  background: rgba(120,103,255,.12); filter: blur(4px); pointer-events: none;
}
.form-group input { border-radius: 10px; }

@media (max-width: 768px) {
  nav ul { top: 74px; background: rgba(248,249,252,.98); box-shadow: 0 22px 34px rgba(11,16,40,.1); }
  .nav-wrap { min-height: 74px; }
  section { padding: 82px 0; }
  .hero { padding: 82px 0 76px; }
  .hero-stats { gap: 8px; }
  .hero-stat { padding: 13px 12px; }
}

/* Main services section: a deep slate bridge between the hero and lighter proof sections. */
#help {
  background: radial-gradient(circle at 82% 0%, rgba(120,103,255,.2), transparent 30%), #1a2146;
  color: #fff;
}
#help .section-header h2 { color: #fff; }
#help .section-header .section-lead { color: rgba(255,255,255,.68); }
#help .section-header .tag-pill { color: #a99fff; }
#help .section-header .tag-pill::before { background: #a99fff; }
#help .pillar-card {
  background: rgba(39,48,91,.88);
  border-color: rgba(174,164,255,.18);
  box-shadow: 0 24px 58px rgba(5,9,29,.2);
}
#help .pillar-card::before { background: radial-gradient(circle at top left, rgba(150,137,255,.15), transparent 34%); }
#help .pillar-card:hover { background: #303a70; border-color: rgba(174,164,255,.55); box-shadow: 0 30px 66px rgba(5,9,29,.3); }
#help .pillar-icon { background: rgba(150,137,255,.12); border-color: rgba(174,164,255,.3); color: #b5adff; }
#help .pillar-card:hover .pillar-icon { background: rgba(150,137,255,.2); border-color: #b5adff; }
#help .pillar-code { color: #aaa6e8; }
#help .pillar-badge { background: rgba(150,137,255,.13); color: #c3bdff; }
#help .pillar-intro, #help .pillar-list li { color: rgba(255,255,255,.7); }
#help .pillar-outcome { color: rgba(255,255,255,.9); border-top-color: rgba(174,164,255,.18); }

/* ══════════════════════════════════
   SECTION RHYTHM FIX
   The page opened with three dark sections in a row (hero, problem, help),
   then "Growth System" and "Revenue Leak" sat back-to-back on the identical
   flat light background with no boundary between them. Flip #help back to
   light (distinct lavender tint, not a plain match of #system) and flip
   #focus to dark so the two flat-light sections no longer merge.
══════════════════════════════════ */
#help {
  background: radial-gradient(circle at 84% 0%, rgba(120,103,255,.14), transparent 32%), #eef0ff;
  color: var(--charcoal);
}
#help .section-header h2 { color: var(--charcoal); }
#help .section-header .section-lead { color: #5f63ad; }
#help .section-header .tag-pill { color: var(--accent-deep); }
#help .section-header .tag-pill::before { background: var(--accent); }
#help .pillar-card {
  background: rgba(255,255,255,.95);
  border-color: rgba(111,90,255,.18);
  box-shadow: 0 26px 70px rgba(20,24,66,.06);
}
#help .pillar-card::before { background: radial-gradient(circle at top left, rgba(111,90,255,.08), transparent 30%); }
#help .pillar-card:hover { background: rgba(255,255,255,.98); border-color: var(--accent); box-shadow: 0 32px 80px rgba(20,24,66,.12); }
#help .pillar-icon { background: rgba(111,90,255,.08); border-color: rgba(111,90,255,.22); color: var(--accent); }
#help .pillar-card:hover .pillar-icon { background: rgba(111,90,255,.16); border-color: var(--accent); }
#help .pillar-code { color: #6b6fd3; }
#help .pillar-badge { background: #f0efff; color: var(--accent-deep); }
#help .pillar-intro, #help .pillar-list li { color: #5a5f8f; }
#help .pillar-outcome { color: var(--charcoal); border-top-color: rgba(111,90,255,.16); }
#help .pillar-outcome span, #help .offer-check { color: var(--accent-deep); }

#focus {
  background: radial-gradient(circle at 12% 100%, rgba(120,103,255,.16), transparent 32%), #0b1028;
  color: #fff;
}
#focus h2 { color: #fff; }
#focus h2 em { font-style: italic; color: var(--warm); }
#focus .tag-pill { color: var(--accent); }
#focus .tag-pill::before { background: var(--accent); }
#focus .offer-intro { color: rgba(255,255,255,.72); }
#focus .offer-box {
  background: rgba(39,48,91,.88);
  border-color: rgba(174,164,255,.18);
  box-shadow: 0 24px 58px rgba(5,9,29,.2);
}
#focus .offer-box h3 { color: #fff; border-bottom-color: var(--accent); }
#focus .offer-list li { border-bottom-color: rgba(174,164,255,.16); color: rgba(255,255,255,.85); }
#focus .offer-check { color: #c3bdff; }
#focus .btn-navy {
  background: linear-gradient(135deg, #8878ff 0%, #6654ef 100%);
  box-shadow: 0 16px 34px rgba(93,74,240,.26);
}
#focus .btn-navy:hover { background: linear-gradient(135deg, #9587ff 0%, #705ff5 100%); box-shadow: 0 20px 40px rgba(93,74,240,.32); }

/* ══════════════════════════════════
   ABOUT PAGE
══════════════════════════════════ */
.about-hero { padding: 112px 0 92px; }
.about-hero .container { max-width: 840px; }
.about-hero h1 { margin-bottom: 22px; max-width: 760px; }
.about-hero .hero-sub {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(19px, 2.3vw, 25px);
  line-height: 1.5;
  color: var(--warm);
  opacity: 1;
  margin-bottom: 0;
  max-width: 620px;
}
.about-section .container { max-width: 840px; }
.about-section .section-header { margin-bottom: 30px; }
.about-prose p { font-size: 16px; line-height: 1.85; color: var(--muted); margin-bottom: 20px; }
.about-prose p:last-child { margin-bottom: 0; }
.about-section.is-dark {
  background: radial-gradient(circle at 88% 0%, rgba(120,103,255,.18), transparent 28%), #0b1028;
  color: #fff;
}
.about-section.is-dark .section-header h2 { color: #fff; }
.about-section.is-dark .tag-pill { color: #a99fff; }
.about-section.is-dark .tag-pill::before { background: #a99fff; }
.about-section.is-dark .about-prose p { color: rgba(255,255,255,.72); }
.about-cta-actions { text-align: center; margin-top: 6px; }

.about-founder { display: flex; gap: 44px; align-items: flex-start; }
.about-founder-photo { flex: 0 0 200px; }
.about-founder-photo img {
  width: 200px; height: 200px; object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(24,27,60,.16);
}
.about-founder-content { flex: 1; min-width: 0; }

.legal-section { padding: 88px 0 130px; }
.about-prose h2 { font-size: 22px; margin: 44px 0 14px; }
.about-prose h2:first-of-type { margin-top: 0; }
.about-prose h3 { font-size: 17px; margin: 26px 0 10px; }
.about-prose strong { color: var(--charcoal); }
.about-prose a { color: var(--accent-deep); }
.legal-list { color: var(--muted); font-size: 16px; line-height: 1.85; margin: 0 0 20px 22px; }
.legal-list li { margin-bottom: 8px; }

@media (max-width: 768px) {
  .about-hero { padding: 78px 0 64px; }
  .about-founder { flex-direction: column; gap: 24px; }
  .about-founder-photo { flex-basis: auto; }
  .about-founder-photo img { width: 148px; height: 148px; }
  .legal-section { padding: 64px 0 80px; }
}

