/* ==========================================================================
   Smart Onboard — Design System
   ========================================================================== */

:root {
  /* Base */
  --white:          #FFFFFF;
  --page-bg:        #FAFAFC;
  --gradient-warm:  #FAF8FC;
  --gradient-mid:   #F5F3FF;
  --gradient-soft:  #EDE9FE;
  --gradient-violet-tint: rgba(124, 58, 237, 0.04);
  --gradient-violet-soft: rgba(124, 58, 237, 0.08);

  /* Text */
  --heading:        #111827;
  --body:           #374151;
  --muted:          #6B7280;

  /* Primary accent — deep violet */
  --violet:         #5B21B6;
  --violet-mid:     #7C3AED;
  --violet-light:   #EDE9FE;
  --violet-border:  #DDD6FE;

  /* Secondary accents — icons and particles only */
  --coral:          #F97316;
  --coral-light:    #FEF3C7;
  --teal:           #06B6D4;
  --teal-light:     #CFFAFE;
  --green:          #10B981;
  --green-light:    #D1FAE5;

  /* Borders */
  --border:         #E5E7EB;
  --border-mid:     #D1D5DB;

  /* Dark (footer only) */
  --dark:           #111827;
  --dark-2:         #1F2937;

  /* Hero bloom */
  --bloom:          rgba(124, 58, 237, 0.06);
  --hero-gradient:  linear-gradient(165deg, #FFFFFF 0%, #FAF8FC 35%, rgba(245, 243, 255, 0.6) 100%);
  --section-alt:    linear-gradient(180deg, var(--gradient-warm) 0%, var(--gradient-mid) 50%, var(--gradient-warm) 100%);
  --section-soft:   linear-gradient(180deg, #FFFFFF 0%, var(--gradient-warm) 100%);

  /* Spacing (8px base) */
  --space-1:  8px;
  --space-2:  16px;
  --space-3:  24px;
  --space-4:  32px;
  --space-5:  40px;
  --space-6:  48px;
  --space-8:  64px;
  --space-9:  72px;
  --space-10: 80px;
  --space-12: 96px;

  /* Max-widths */
  --max-content:    1200px;
  --max-hero:       780px;
  --max-feature:    1100px;
  --max-hero-card:  1140px;

  /* Easing */
  --ease-reveal:    cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--body);
  background: var(--page-bg);
}

/* Type scale */
.hero__headline {
  font-size: 68px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--heading);
}

.section-h2 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--heading);
}

.caption,
.meta {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.btn--primary {
  background: var(--dark);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--dark-2);
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn--large {
  padding: 14px 32px;
}

.btn--violet {
  background: var(--violet);
  color: var(--white);
}

.btn--violet:hover {
  background: #4C1D95;
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(91, 33, 182, 0.3);
}

.btn--ghost {
  background: none;
  color: var(--violet);
}

.btn--ghost:hover {
  color: #4C1D95;
}

.link-ghost {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--violet);
  text-decoration: none;
  transition: color 200ms ease;
}

.link-ghost__arrow {
  display: inline-block;
  transition: transform 200ms ease;
}

.link-ghost:hover {
  color: #4C1D95;
}

.link-ghost:hover .link-ghost__arrow {
  transform: translateX(4px);
}

.link-ghost:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Eyebrow Pill
   -------------------------------------------------------------------------- */

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid rgba(17, 24, 39, 0.11);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--heading);
  margin-bottom: var(--space-3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.eyebrow-pill:hover {
  border-color: rgba(17, 24, 39, 0.2);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.eyebrow-pill__icon {
  flex-shrink: 0;
  color: var(--violet-mid);
}

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */

.nav {
  position: sticky;
  top: 0;
  width: 100%;
  height: 68px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 300ms ease, background 300ms ease;
}

.nav.nav--scrolled {
  border-bottom-color: rgba(124, 58, 237, 0.12);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-content);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.nav__logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
  text-decoration: none;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  margin-left: auto;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--body);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: color 150ms ease, border-color 150ms ease;
}

.nav__links a:hover {
  color: var(--violet);
  border-bottom-color: var(--violet);
}

.nav__links a:focus-visible,
.nav__overlay a:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 2px;
}

.btn:focus-visible,
.nav__cta:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 2px;
}

.nav__cta {
  margin-left: var(--space-3);
  flex-shrink: 0;
}

.nav__sep {
  color: var(--body);
  font-size: 14px;
  user-select: none;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--heading);
  border-radius: 1px;
}

.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  top: 68px;
  z-index: 99;
  background: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-6);
}

.nav__overlay[aria-hidden="false"] {
  display: flex;
}

.nav__overlay a {
  font-size: 18px;
  font-weight: 500;
  color: var(--heading);
  text-decoration: none;
  transition: color 150ms ease;
}

.nav__overlay a:not(.btn):hover {
  color: var(--violet);
}

@media (min-width: 769px) {
  .nav__toggle {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__inner .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__overlay .btn {
    margin-top: var(--space-2);
  }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  background: var(--hero-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-12) var(--space-4);
}

.hero__bloom {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 100% 70% at 50% 20%,
      rgba(124, 58, 237, 0.06) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 70% 50% at 80% 70%,
      rgba(124, 58, 237, 0.03) 0%,
      transparent 50%
    );
}

.hero__content {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
  text-align: left;
}

.hero__left {
  min-width: 0;
}

.hero__right {
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__headline {
  margin: 0 0 var(--space-2);
}

.hero__headline-line {
  display: block;
}

.hero__sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--body);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 0 var(--space-4);
}

.hero__micro-list {
  list-style: none;
  margin: 0 0 var(--space-5);
  padding: 0;
}

.hero__micro-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: var(--space-2);
  font-size: 15px;
  font-weight: 500;
  color: var(--heading);
  line-height: 1.5;
}

.hero__micro-list li:last-child {
  margin-bottom: 0;
}

.hero__micro-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.hero__cta-secondary {
  margin-left: var(--space-1);
}

.hero__trust {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  margin: 0;
}

.hero__card {
  width: 100%;
  max-width: var(--max-hero-card);
  animation: heroFloat 5s ease-in-out infinite;
}

.hero-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04), 0 24px 80px rgba(0, 0, 0, 0.08);
  background: var(--white);
}

.hero-card__header {
  padding: var(--space-2) var(--space-4);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--body);
  background: var(--page-bg);
  border-bottom: 1px solid var(--border);
}

.hero-card__body {
  display: flex;
  min-height: 0;
}

.hero-card__main {
  flex: 1;
  line-height: 0;
  min-height: 220px;
  background: linear-gradient(135deg, var(--gradient-warm) 0%, var(--gradient-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card__img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.hero-card__side {
  flex: 0 0 80px;
  padding: var(--space-3);
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  border-left: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   Brand Trust Strip
   -------------------------------------------------------------------------- */

.brand-strip {
  background: linear-gradient(180deg, var(--gradient-warm) 0%, rgba(250, 248, 252, 0.6) 100%);
  padding: var(--space-4) 0;
  border-top: 1px solid rgba(124, 58, 237, 0.06);
  border-bottom: 1px solid rgba(124, 58, 237, 0.06);
}

.brand-strip__label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--muted);
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 var(--space-3);
}

.brand-strip__marquee {
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.brand-strip__subtitle {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
  margin: 0 0 var(--space-2);
}

.brand-strip__track {
  display: flex;
  width: max-content;
  animation: marquee 48s linear infinite;
}

.brand-strip__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.brand-strip__chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--heading);
  background: var(--white);
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.brand-strip__chip::before {
  content: '';
  display: inline-block;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='7.5' cy='7.5' r='7.5' fill='%235B21B6'/%3E%3Cpath d='M4.5 7.5L6.5 9.5L10.5 5.5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.brand-strip__name {
  flex-shrink: 0;
  min-width: 200px;
  font-size: 15px;
  font-weight: 600;
  color: var(--border-mid);
  text-align: center;
}

/* --------------------------------------------------------------------------
   Platform — Feature Grid
   -------------------------------------------------------------------------- */

.platform {
  padding: var(--space-12) var(--space-4);
  background: #FFFFFF;
  border-top: 1px solid var(--border);
}

.platform__inner {
  max-width: var(--max-feature);
  margin: 0 auto;
}

.platform__header {
  text-align: center;
  margin-bottom: var(--space-10);
  padding: 0 var(--space-4);
}

.platform__headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--heading);
  margin: 0;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.platform__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.platform__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: var(--space-5);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.platform__card:hover {
  box-shadow: 0 12px 36px rgba(91, 33, 182, 0.1);
  border-color: rgba(91, 33, 182, 0.15);
  transform: translateY(-3px);
}

.platform__card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
  background: var(--violet-light);
  color: var(--violet);
}

.platform__card-icon svg {
  width: 24px;
  height: 24px;
}

.platform__card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
  margin: 0 0 var(--space-2);
  line-height: 1.3;
}

.platform__card-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--body);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Problem — Sound Familiar?
   -------------------------------------------------------------------------- */

.problem {
  padding: var(--space-12) var(--space-4);
  background: linear-gradient(180deg, var(--gradient-warm) 0%, var(--gradient-mid) 45%, var(--gradient-warm) 100%);
}

.problem__inner {
  max-width: var(--max-feature);
  margin: 0 auto;
}

.problem__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}

.problem__left {
  display: flex;
  flex-direction: column;
}

.problem__header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.problem__headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--heading);
  margin: 0 0 var(--space-3);
}

.problem__sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--body);
  margin: 0;
  line-height: 1.65;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.problem__cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.problem__card {
  margin: 0;
  padding: var(--space-5);
  background: #FFFFFF;
  border-radius: 14px;
  border: none;
  border-left: 4px solid var(--violet-mid);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.problem__card:hover {
  box-shadow: 0 8px 28px rgba(91, 33, 182, 0.1);
  border-left-color: var(--violet);
}

.problem__card-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-style: italic;
  font-weight: 500;
  color: var(--heading);
  line-height: 1.65;
  margin: 0;
}

.problem__transition {
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
  margin: var(--space-4) 0 0;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Compare Table
   -------------------------------------------------------------------------- */

.compare {
  margin-top: 0;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.compare__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.compare__col-title {
  padding: var(--space-3) var(--space-4);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.compare__col-title--before {
  background: #F3F4F6;
  color: var(--muted);
}

.compare__col-title--after {
  background: var(--violet);
  color: #FFFFFF;
}

.compare__body {
  padding: 0;
}

.compare__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.compare__row:last-child {
  border-bottom: none;
}

.compare__cell {
  padding: var(--space-3) var(--space-4);
  font-size: 15px;
  line-height: 1.55;
}

.compare__cell--before {
  color: var(--body);
  font-style: italic;
  border-right: 1px solid var(--border);
}

.compare__cell--after {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--heading);
  font-weight: 600;
}

.compare__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #059669;
  margin-top: 2px;
}

.compare__footer {
  padding: var(--space-3) var(--space-4);
  background: #047857;
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  text-align: center;
  letter-spacing: 0.01em;
}

/* --------------------------------------------------------------------------
   Process — How It Works
   -------------------------------------------------------------------------- */

.process {
  padding: var(--space-12) var(--space-4);
  background: #FFFFFF;
  border-top: 1px solid var(--border);
}

.process__inner {
  max-width: 760px;
  margin: 0 auto;
}

.process__header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.process__headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--heading);
  margin: 0 0 var(--space-2);
}

.process__sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--body);
  margin: 0;
  line-height: 1.65;
}

.process__steps {
  position: relative;
  padding-left: 80px;
}

.process__steps::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--violet-border);
}

.process__step {
  position: relative;
  padding-bottom: var(--space-8);
}

.process__step:last-child {
  padding-bottom: 0;
}

.process__num {
  position: absolute;
  left: -80px;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--violet);
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.process__content {
  padding-top: 10px;
}

.process__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--heading);
  margin: 0 0 var(--space-1);
  line-height: 1.3;
}

.process__desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Timeline
   -------------------------------------------------------------------------- */

.timeline {
  padding: var(--space-12) var(--space-4);
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.timeline__inner {
  max-width: 680px;
  margin: 0 auto;
}

.timeline__header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.timeline__header .eyebrow-pill {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
}

.timeline__headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--white);
  margin: 0;
}

.timeline__track {
  position: relative;
  padding-left: 120px;
  margin-bottom: var(--space-8);
}

.timeline__track::before {
  content: '';
  position: absolute;
  left: 88px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: rgba(124, 58, 237, 0.3);
}

.timeline__item {
  position: relative;
  padding-bottom: var(--space-6);
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__marker {
  position: absolute;
  left: -32px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--violet-mid);
  border: 2px solid var(--dark);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.25);
  flex-shrink: 0;
}

.timeline__marker--final {
  background: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
}

.timeline__label {
  position: absolute;
  left: -120px;
  top: 2px;
  width: 80px;
  text-align: right;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--violet-mid);
  line-height: 1.4;
}

.timeline__item:last-child .timeline__label {
  color: #10B981;
}

.timeline__content {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
}

.timeline__content strong {
  color: var(--white);
  font-weight: 600;
}

.timeline__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 12px;
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-4);
}

.timeline__total-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.timeline__total-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}

.timeline__signoff {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Offer
   -------------------------------------------------------------------------- */

.offer {
  background: linear-gradient(165deg, #5B21B6 0%, #6D28D9 40%, #5B21B6 100%);
  padding: var(--space-12) var(--space-4);
}

.offer__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.offer__heading {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 var(--space-4);
}

.offer__body {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin: 0 auto var(--space-2);
  line-height: 1.65;
}

.offer__framing {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 var(--space-2);
}

.offer__persona {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 var(--space-5);
}

.btn--offer {
  background: var(--white);
  color: var(--violet);
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
}

.btn--offer:hover {
  background: var(--white);
  color: #4C1D95;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.offer__trust {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: var(--space-2) 0 0;
}

/* --------------------------------------------------------------------------
   Close
   -------------------------------------------------------------------------- */

.close {
  background: linear-gradient(180deg, var(--gradient-warm) 0%, var(--page-bg) 100%);
  padding: var(--space-12) var(--space-4);
}

.close__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.close__line {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--heading);
  margin: 0 0 var(--space-2);
  line-height: 1.15;
}

.close__persona {
  font-size: 14px;
  color: var(--body);
  margin: 0 0 var(--space-2);
}

.close__persona:last-of-type {
  margin-bottom: var(--space-5);
}

.close__body {
  font-size: 18px;
  color: var(--body);
  max-width: 560px;
  margin: 0 auto var(--space-3);
  line-height: 1.65;
}

.close__trust {
  font-size: 13px;
  color: var(--muted);
  margin: var(--space-2) 0 0;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  background: var(--dark);
  padding: 64px var(--space-4) 40px;
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-6);
  max-width: var(--max-content);
  margin: 0 auto;
}

.footer__col--left {
  flex: 0 0 auto;
}

.footer__logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: var(--space-1);
}

.footer__tagline {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.footer__col--centre {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  flex: 1;
  justify-content: center;
}

.footer__col--centre a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 150ms ease;
}

.footer__col--centre a:hover {
  color: var(--white);
}

.footer__col--centre a:focus-visible,
.footer__col--right .btn:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.footer__sep {
  color: var(--muted);
  font-size: 14px;
  user-select: none;
}

.footer__col--right {
  flex: 0 0 auto;
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: var(--white);
}

.footer__bottom {
  border-top: 1px solid var(--dark-2);
  margin-top: var(--space-8);
  padding-top: var(--space-4);
}

.footer__copyright {
  font-size: 13px;
  color: #4B5563;
  text-align: center;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Scroll Reveals
   -------------------------------------------------------------------------- */

@keyframes scrollReveal {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollRevealMobile {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollRevealReduced {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
}

.reveal-group--visible .reveal {
  animation: scrollReveal 550ms var(--ease-reveal) forwards;
}

@media (max-width: 768px) {
  .reveal-group--visible .reveal {
    animation-name: scrollRevealMobile;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal-group--visible .reveal {
    animation: scrollRevealReduced 200ms var(--ease-reveal) forwards;
  }
}

/* --------------------------------------------------------------------------
   Page Load Animation
   -------------------------------------------------------------------------- */

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroRevealReduced {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes navReveal {
  from { opacity: 0; }
  to { opacity: 1; }
}

.nav {
  opacity: 0;
  animation: navReveal 400ms var(--ease-reveal) 0ms both;
}

.hero .eyebrow-pill {
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 450ms var(--ease-reveal) 80ms both;
}

.hero__headline {
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 550ms var(--ease-reveal) 160ms both;
}

.hero__sub {
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 450ms var(--ease-reveal) 240ms both;
}

.hero__micro-list {
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 450ms var(--ease-reveal) 320ms both;
}

.hero__ctas {
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 400ms var(--ease-reveal) 400ms both;
}

.hero__trust {
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 400ms var(--ease-reveal) 480ms both;
}

.hero__card {
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 600ms var(--ease-reveal) 560ms both, heroFloat 5s ease-in-out 1160ms infinite;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-6);
  }

  .hero__left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__micro-list {
    align-self: center;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__right {
    order: 1;
  }

  .hero__headline {
    font-size: 48px;
  }

  .hero {
    padding: 72px var(--space-4);
  }

  .section-h2 {
    font-size: 34px;
  }

  .platform__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .platform,
  .problem,
  .process,
  .timeline,
  .offer,
  .close {
    padding: 72px var(--space-4);
  }

  .offer__heading {
    font-size: 34px;
  }

  .close__line {
    font-size: 34px;
  }

  .timeline__headline {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .hero__headline {
    font-size: 38px;
  }

  .hero {
    padding: 48px var(--space-4) 56px;
    min-height: auto;
  }

  .hero-card__side {
    display: none;
  }

  .section-h2 {
    font-size: 28px;
  }

  .platform,
  .problem,
  .process,
  .timeline,
  .offer,
  .close {
    padding: 48px var(--space-4);
  }

  .platform__grid {
    grid-template-columns: 1fr;
  }

  .platform__headline {
    font-size: 26px;
  }

  .problem__headline {
    font-size: 26px;
  }

  .problem__body {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .problem__transition {
    text-align: center;
  }

  .problem__card {
    padding: var(--space-4);
  }

  .process__headline {
    font-size: 26px;
  }

  .process__steps {
    padding-left: 64px;
  }

  .process__num {
    left: -64px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .process__steps::before {
    left: 19px;
    top: 20px;
    bottom: 20px;
  }

  .process__title {
    font-size: 18px;
  }

  .timeline__headline {
    font-size: 26px;
  }

  .timeline__track {
    padding-left: 90px;
  }

  .timeline__track::before {
    left: 58px;
  }

  .timeline__label {
    left: -90px;
    width: 52px;
    font-size: 10px;
  }

  .timeline__marker {
    left: -28px;
  }

  .timeline__total {
    flex-direction: column;
    gap: var(--space-1);
    text-align: center;
  }

  .offer__heading {
    font-size: 28px;
  }

  .close__line {
    font-size: 28px;
  }

  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-4);
  }

  .footer__col--centre {
    order: -1;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-1);
  }

  .footer {
    padding-top: 48px;
    padding-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .hero__card {
    display: none;
  }

  .hero__headline {
    font-size: 32px;
  }

  .compare__header,
  .compare__row {
    grid-template-columns: 1fr;
  }

  .compare__col-title--before {
    border-bottom: 1px solid var(--border);
  }

  .compare__cell--before {
    border-right: none;
    border-bottom: 1px dashed var(--border);
    padding-bottom: var(--space-1);
  }

  .compare__cell--after {
    padding-top: var(--space-1);
  }

  .process__steps {
    padding-left: 52px;
  }

  .process__num {
    left: -52px;
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .process__steps::before {
    left: 17px;
    top: 18px;
    bottom: 18px;
  }
}

/* --------------------------------------------------------------------------
   Reduced Motion
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  .nav {
    animation: navReveal 200ms var(--ease-reveal) 0ms forwards;
  }

  .hero .eyebrow-pill,
  .hero__headline,
  .hero__sub,
  .hero__trust,
  .hero__card {
    animation: heroRevealReduced 200ms var(--ease-reveal) 0ms forwards;
    transform: none;
  }

  .brand-strip__track {
    animation: none;
  }

  .btn,
  .eyebrow-pill,
  .nav__links a,
  .link-ghost__arrow,
  .platform__card {
    transition-duration: 0ms;
  }

  .link-ghost:hover .link-ghost__arrow {
    transform: none;
  }
}
