:root {
  --ink: #1a1220;
  --plum: #3d2647;
  --plum-soft: #5c3d68;
  --coral: #e84a4a;
  --coral-bright: #ff6b6b;
  --mint: #14b8a6;
  --mint-soft: #ccfbf1;
  --cream: #fdf9f7;
  --paper: #ffffff;
  --line: #ebe3e8;
  --muted: #6f5f75;
  --font: 'Sora', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --wide: 1180px;
  --narrow: 720px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 1rem;
}

a { color: var(--plum); text-decoration: none; }
a:hover { color: var(--coral); }

img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: var(--wide); margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: var(--narrow); }

/* Notice strip */
.top-strip {
  background: var(--mint-soft);
  border-bottom: 1px solid #99f6e4;
  font-size: 0.82rem;
  font-weight: 500;
  color: #0f766e;
}
.top-strip-inner { padding: 0.55rem 0; text-align: center; }

/* Nav — light bar, big logo */
.site-nav {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.site-nav-inner {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0.65rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo { height: 52px; width: auto; min-width: 180px; }

.site-nav nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
}

.nav-list a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}
.nav-list a:hover,
.nav-list a.active {
  color: var(--ink);
  border-bottom-color: var(--coral);
}

.nav-cta {
  background: var(--coral);
  color: white !important;
  padding: 0.65rem 1.35rem;
  border-radius: 6px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
  border: none;
}
.nav-cta:hover { background: var(--ink); color: white !important; }

.menu-btn {
  display: none;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.4rem 0.65rem;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--ink);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: 0.2s;
  text-decoration: none;
}

.btn-primary { background: var(--coral); color: white; }
.btn-primary:hover { background: var(--ink); color: white; }

.btn-secondary {
  background: var(--paper);
  color: var(--plum);
  border: 2px solid var(--line);
}
.btn-secondary:hover { border-color: var(--plum); color: var(--ink); }

.btn-ghost {
  background: transparent;
  color: var(--plum);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0.5rem 0;
}

.btn-lg { padding: 1rem 1.75rem; font-size: 1rem; }

/* HOME — split hero */
.hero-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  min-height: 520px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.hero-split__main {
  padding: 3.5rem 2rem 3.5rem max(1.5rem, calc((100vw - var(--wide)) / 2 + 1.5rem));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
}

.hero-split h1 {
  font-family: var(--font);
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 1.25rem;
  max-width: 14ch;
}

.hero-split__lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 42ch;
  margin-bottom: 2rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

.hero-split__aside {
  background: linear-gradient(165deg, var(--plum) 0%, #2a1830 100%);
  color: white;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-stack { display: flex; flex-direction: column; gap: 1.75rem; }

.stat-item strong {
  display: block;
  font-family: var(--font);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--coral-bright);
  line-height: 1;
}

.stat-item span {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-top: 0.35rem;
  display: block;
}

/* Pricing band — horizontal cards */
.pricing-band {
  padding: 4rem 0;
  background: var(--cream);
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.5rem;
}

.section-heading {
  font-family: var(--font);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.section-lead {
  color: var(--muted);
  max-width: 50ch;
  margin-bottom: 2.5rem;
}

.plan-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.plan-tile {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.plan-tile--express {
  border-color: var(--coral);
  box-shadow: 8px 8px 0 var(--coral);
}

.plan-tag {
  position: absolute;
  top: -12px;
  left: 1.5rem;
  background: var(--coral);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}

.plan-tile h3 {
  font-family: var(--font);
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.plan-tile .plan-time {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.plan-price {
  font-family: var(--font);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
}

.plan-price small { font-size: 1rem; font-weight: 500; color: var(--muted); }

.plan-features {
  list-style: none;
  flex: 1;
  margin-bottom: 1.5rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.plan-features li {
  padding: 0.45rem 0;
  padding-left: 1.25rem;
  position: relative;
  border-top: 1px solid var(--line);
}

.plan-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 700;
}

/* Industries — horizontal scroll strip */
.sectors-band {
  padding: 3.5rem 0;
  background: var(--ink);
  color: white;
  overflow: hidden;
}

.sectors-band .section-heading { color: white; }
.sectors-band .section-lead { color: rgba(255,255,255,0.65); }

.sector-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.sector-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.85rem 1.35rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* CTA strip */
.cta-strip {
  padding: 3rem 0;
  text-align: center;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

/* Inner pages — light masthead */
.masthead {
  padding: 2.5rem 0 2rem;
  background: var(--paper);
  border-bottom: 3px solid var(--coral);
}

.masthead h1 {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  color: var(--ink);
}

.masthead p { color: var(--muted); margin-top: 0.5rem; max-width: 55ch; }

.breadcrumb {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.breadcrumb a { color: var(--plum-soft); }

/* Process timeline page */
.page-body { padding: 3rem 0 4rem; }

.timeline-v {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  padding-left: 2.5rem;
}

.timeline-v::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--line);
}

.timeline-v__item {
  position: relative;
  padding-bottom: 2.5rem;
}

.timeline-v__dot {
  position: absolute;
  left: -2.5rem;
  top: 4px;
  width: 24px;
  height: 24px;
  background: var(--coral);
  border-radius: 50%;
  border: 4px solid var(--cream);
}

.timeline-v__item h3 {
  font-family: var(--font);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.timeline-v__item p { color: var(--muted); font-size: 0.95rem; }

/* Bento about */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.bento-cell {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.5rem;
  border-radius: 4px;
}

.bento-cell h3 {
  font-family: var(--font);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--plum);
}

.bento-cell p { font-size: 0.92rem; color: var(--muted); }

.bento-cell--lg { grid-column: span 7; }
.bento-cell--md { grid-column: span 5; }
.bento-cell--sm { grid-column: span 4; }
.bento-cell--wide { grid-column: span 8; }
.bento-cell--accent { background: var(--plum); color: white; border-color: var(--plum); }
.bento-cell--accent h3, .bento-cell--accent p { color: white; }
.bento-cell--accent p { opacity: 0.85; }

/* Pricing compare */
.compare-wrap {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 4px;
  overflow: hidden;
}

.compare-labels { background: var(--cream); padding: 1rem 0; }
.compare-labels div {
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  min-height: 52px;
  display: flex;
  align-items: center;
}
.compare-col {
  padding: 1.5rem 1.25rem;
  text-align: center;
  border-left: 1px solid var(--line);
}
.compare-col--hot { background: #fff5f5; }
.compare-col h3 { font-family: var(--font); margin-bottom: 0.5rem; }
.compare-col .plan-price { font-size: 2rem; margin: 1rem 0; }

/* Track page */
.track-layout {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.track-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: var(--mint-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.track-box {
  background: var(--paper);
  border: 2px solid var(--line);
  padding: 2rem;
  border-radius: 4px;
  text-align: left;
  margin-top: 2rem;
}

.track-field {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.track-field input {
  flex: 1;
  padding: 0.9rem 1rem;
  border: 2px solid var(--line);
  border-radius: 4px;
  font-size: 1rem;
  font-family: monospace;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.track-field input:focus {
  outline: none;
  border-color: var(--coral);
}

/* FAQ split */
.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: 100px;
}

.faq-sidebar h2 {
  font-family: var(--font);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s; }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a-inner { padding-top: 0.75rem; color: var(--muted); font-size: 0.95rem; line-height: 1.7; }

/* Contact split */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 { font-family: var(--font); font-size: 1.35rem; margin: 1.5rem 0 0.5rem; }
.contact-info p { color: var(--muted); font-size: 0.95rem; }

.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 2rem;
  border-radius: 4px;
}

/* Forms */
.form-group { margin-bottom: 1.15rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--line);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--paper);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--coral);
}

/* Apply wizard */
.apply-shell {
  max-width: 600px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.step-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--line);
}

.step-tab {
  flex: 1;
  text-align: center;
  padding: 0.75rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}

.step-tab.done { color: var(--mint); }
.step-tab.active { color: var(--coral); border-bottom-color: var(--coral); }

.form-panel {
  display: none;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 2rem;
  border-radius: 4px;
}

.form-panel.active { display: block; }

.form-panel h2 {
  font-family: var(--font);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.dob-row { display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 0.75rem; }
.dob-label { font-size: 0.72rem; font-weight: 600; color: var(--muted); text-transform: uppercase; display: block; margin-bottom: 0.3rem; }
.form-hint { font-size: 0.8rem; color: var(--muted); margin-top: 0.35rem; }

.form-nav { display: flex; justify-content: space-between; margin-top: 1.75rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }

.success-box,
.apply-success {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--mint-soft);
  border: 2px solid #5eead4;
  border-radius: 4px;
}
.apply-success__title { font-family: var(--font); color: var(--plum); margin: 0 0 1.25rem; font-size: 1.35rem; }
.apply-success__label { color: var(--muted); margin: 0 0 0.35rem; font-size: 0.95rem; }
.apply-success__tracking {
  font-size: 1.65rem; font-weight: 800; color: var(--plum);
  letter-spacing: 0.06em; margin: 0 0 1.5rem;
  padding: 0.75rem 1rem; background: var(--paper);
  border-radius: 4px; border: 2px dashed var(--coral);
}
.apply-success__payment-msg { font-size: 1.05rem; color: var(--ink); margin: 0 0 0.75rem; font-weight: 600; }
.apply-success__countdown { color: var(--coral); font-size: 1.25rem; font-weight: 800; }
.apply-success__note { color: var(--muted); font-size: 0.9rem; margin: 0 0 1.25rem; max-width: 420px; margin-left: auto; margin-right: auto; }
.apply-success__track { font-weight: 600; color: var(--coral); font-size: 0.9rem; }

.success-box .ref {
  font-family: var(--font);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--plum);
  letter-spacing: 0.08em;
  margin: 1rem 0;
}

/* Timeline track result */
.timeline-result { margin-top: 1.5rem; }
.timeline-result .tl-row {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 1rem;
  padding-bottom: 1.25rem;
}

.tl-marker {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
}

.tl-row.done .tl-marker { background: var(--mint); color: white; }
.tl-row.active .tl-marker { background: var(--coral); color: white; }

.tl-row h4 { font-family: var(--font); font-size: 0.95rem; }
.tl-row p { font-size: 0.85rem; color: var(--muted); }

.expected-banner {
  background: #fff8e6;
  border-left: 4px solid #f59e0b;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

/* Prose legal */
.prose { max-width: 65ch; }
.prose h2 { font-family: var(--font); font-size: 1.15rem; margin: 2rem 0 0.6rem; color: var(--plum); }
.prose p, .prose li { color: var(--muted); margin-bottom: 0.85rem; }
.prose ul { margin-left: 1.25rem; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
  font-size: 0.88rem;
}

.footer-wrap { max-width: var(--wide); margin: 0 auto; padding: 0 1.5rem; }

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo { height: 44px; width: auto; margin-bottom: 1rem; }

.footer-brand-block p { line-height: 1.65; max-width: 28ch; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.footer-links h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--coral-bright);
  margin-bottom: 0.85rem;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.45rem;
  font-size: 0.88rem;
}
.footer-links a:hover { color: white; }

.footer-legal {
  text-align: center;
  padding-top: 1.5rem;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* Mobile */
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split__main { padding: 2.5rem 1.5rem; }
  .hero-split__aside { padding: 2rem 1.5rem; }
  .plan-row { grid-template-columns: 1fr; }
  .compare-wrap { grid-template-columns: 1fr; }
  .compare-labels { display: none; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; }
  .contact-split { grid-template-columns: 1fr; }
  .bento-cell { grid-column: span 12 !important; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }

  .menu-btn { display: block; }
  .site-nav nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  }
  .site-nav nav.open { display: flex; }
  .nav-list { flex-direction: column; align-items: flex-start; width: 100%; }
  .nav-cta { width: 100%; text-align: center; margin-top: 0.5rem; }
}

@media (max-width: 480px) {
  .brand-logo { height: 44px; min-width: 160px; }
  .dob-row { grid-template-columns: 1fr; }
  .step-tabs { flex-wrap: wrap; }
}
