/* Design tokens */
:root {
  --color-page: #eef3f8;
  --color-surface: #ffffff;
  --color-surface-alt: #f6f9fc;
  --color-surface-dark: #0c1730;
  --color-surface-dark-alt: #122544;
  --color-primary: #1e7bff;
  --color-primary-dark: #135fc6;
  --color-primary-soft: #d9e9ff;
  --color-border: rgba(15, 31, 56, 0.1);
  --color-text: #10213a;
  --color-text-soft: #58687d;
  --color-text-inverse: #f3f8ff;
  --color-success: #7fd1ae;
  --shadow-soft: 0 18px 44px rgba(12, 23, 48, 0.08);
  --shadow-strong: 0 22px 56px rgba(4, 14, 34, 0.24);
  --radius-xs: 0.75rem;
  --radius-sm: 1rem;
  --radius-md: 1.5rem;
  --radius-lg: 2rem;
  --radius-xl: 2.5rem;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.25rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 5rem;
  --max-width: 74rem;
  --header-height: 5rem;
  --hero-top-offset: clamp(4.25rem, 6vw, 5rem);
  --font-body: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Base */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-page);
  color: var(--color-text);
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

p,
ul,
ol,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

main {
  display: block;
}

:focus-visible {
  outline: 3px solid rgba(30, 123, 255, 0.4);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -3rem;
  left: 1rem;
  z-index: 80;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--color-primary);
  color: #ffffff;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.section {
  padding: clamp(4rem, 7vw, 5.35rem) 0;
}

.section--tight {
  padding: clamp(3.35rem, 5.8vw, 4.4rem) 0;
}

@supports (content-visibility: auto) {
  .defer-render {
    content-visibility: auto;
    contain-intrinsic-size: auto var(--defer-size, 900px);
  }

  .defer-render--sm {
    --defer-size: 260px;
  }

  .defer-render--md {
    --defer-size: 520px;
  }

  .defer-render--lg {
    --defer-size: 840px;
  }

  .defer-render--xl {
    --defer-size: 1160px;
  }
}

.section--navy {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(51, 123, 255, 0.22), transparent 22rem),
    linear-gradient(180deg, #10203b 0%, #0c1730 100%);
  color: var(--color-text-inverse);
}

.section--navy::before {
  content: "";
  position: absolute;
  inset: auto auto -5rem -5rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: rgba(30, 123, 255, 0.1);
  filter: blur(1rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  gap: 0.5rem;
  margin-bottom: var(--space-3);
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section--navy .eyebrow,
.hero .eyebrow {
  color: #8fc1ff;
}

.section-heading {
  display: grid;
  justify-items: start;
  text-align: left;
  gap: 0.85rem;
  margin-bottom: clamp(1.7rem, 3.5vw, 2.4rem);
}

.section-heading h1,
.section-heading h2,
.section-heading h3,
.hero h1,
.page-hero h1,
.thank-you-confirmation__panel h1 {
  margin: 0;
  font-family: inherit;
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero h1,
.page-hero h1,
.thank-you-confirmation__panel h1 {
  font-size: clamp(2.45rem, 4.8vw, 4.15rem);
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.section-heading > p:not(.eyebrow),
.hero__summary,
.page-hero__card > p:not(.eyebrow),
.final-cta__panel > div > p:not(.eyebrow) {
  max-width: 40rem;
  color: var(--color-text-soft);
  font-size: 1.025rem;
}

.section--navy .section-heading > p:not(.eyebrow),
.section--navy .founder-copy > p:not(.eyebrow):not(.founder-role),
.section--navy .pricing-note,
.section--navy .closing-line {
  color: rgba(243, 248, 255, 0.8);
}

.kicker-note {
  color: var(--color-text-soft);
  font-size: 0.95rem;
}

.cta-button,
.text-button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.cta-button {
  min-height: 3.5rem;
  padding: 0 1.5rem;
  background: var(--color-primary);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 30px rgba(30, 123, 255, 0.24);
}

.cta-button:hover,
.cta-button:focus-visible {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

.cta-button--ghost {
  background: transparent;
  color: var(--color-text-inverse);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.cta-button--ghost:hover,
.cta-button--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.text-button {
  padding: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.icon-button {
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0 1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.icon-button:hover,
.icon-button:focus-visible {
  border-color: rgba(30, 123, 255, 0.34);
  color: var(--color-primary);
}

.surface-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.muted-card {
  background: var(--color-surface-alt);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(12, 23, 48, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 34px rgba(4, 14, 34, 0.28);
  background: rgba(12, 23, 48, 0.98);
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
}

.logo-link {
  display: inline-flex;
  align-items: center;
  color: var(--color-text-inverse);
}

.brand-logo {
  display: block;
  width: clamp(8.1rem, 20vw, 10.6rem);
  height: auto;
}

.mobile-menu-toggle {
  min-width: 2.9rem;
  min-height: 2.9rem;
  padding: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--color-text-inverse);
}

.mobile-menu-toggle .menu-icon,
.mobile-menu-toggle::before,
.mobile-menu-toggle::after {
  display: block;
  width: 1rem;
  height: 0.12rem;
  margin: 0 auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-toggle::before,
.mobile-menu-toggle::after {
  content: "";
}

.mobile-menu-toggle .menu-icon {
  margin-top: 0.23rem;
  margin-bottom: 0.23rem;
}

.mobile-menu-toggle[aria-expanded="true"] .menu-icon {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"]::before {
  transform: translateY(0.35rem) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-0.35rem) rotate(-45deg);
}

.site-nav {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  left: 0;
  display: none;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: rgba(11, 22, 43, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
}

.site-nav.is-open {
  display: block;
}

.site-nav__links {
  display: grid;
  gap: 0.5rem;
}

.site-nav__links a {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  color: rgba(243, 248, 255, 0.86);
  font-weight: 600;
}

.site-nav__links a:hover,
.site-nav__links a:focus-visible,
.site-nav__links a.is-current {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.site-nav__cta {
  margin-top: 0.75rem;
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(47, 118, 255, 0.18), transparent 24rem),
    radial-gradient(circle at bottom right, rgba(47, 118, 255, 0.12), transparent 18rem),
    linear-gradient(180deg, #0b1730 0%, #10213e 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: rgba(30, 123, 255, 0.16);
  filter: blur(1rem);
  transform: translate(35%, -10%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-6);
  padding: var(--hero-top-offset) 0 var(--space-8);
}

.hero__copy {
  color: var(--color-text-inverse);
}

.home-page .hero__copy {
  display: grid;
  gap: 0;
  align-content: start;
}

.home-page h1 {
  max-width: 12.1ch;
}

.home-page-hero__line {
  display: block;
}

.home-page .hero__summary {
  max-width: 34rem;
  margin-top: 0.92rem;
  margin-bottom: 0.92rem;
}

.home-page .check-list {
  max-width: 33rem;
  margin-bottom: 0.82rem;
}

.home-page .hero__fine-print {
  max-width: 31rem;
  margin-top: 0.1rem;
}

.hero__summary {
  color: rgba(243, 248, 255, 0.82);
  margin-bottom: var(--space-4);
}

.check-list {
  display: grid;
  gap: 0.82rem;
  list-style: none;
  margin: 0 0 var(--space-3);
  padding: 0;
}

.feature-list li,
.check-list li {
  display: grid;
  grid-template-columns: 1.25rem minmax(0, 1fr);
  align-items: start;
  gap: 0.8rem;
  padding-left: 0;
}

.feature-list li {
  align-items: center;
}

.page-checklist li {
  position: relative;
  padding-left: 1.55rem;
}

.check-list li::before,
.feature-list li::before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.05rem;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 8.25L6.55 10.75L12 5.25' stroke='white' stroke-width='2.05' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 0.8rem 0.8rem no-repeat,
    linear-gradient(180deg, #2d8cff 0%, #1360c7 100%);
  box-shadow: 0 0 0 0.28rem rgba(30, 123, 255, 0.18);
}

.feature-list li::before {
  margin-top: 0;
}

.page-checklist li::before {
  content: "";
  position: absolute;
  top: 0.56rem;
  left: 0;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 0.28rem rgba(30, 123, 255, 0.18);
}

.hero__fine-print {
  margin: 0;
  color: rgba(243, 248, 255, 0.72);
  font-size: 0.95rem;
}

.hero__actions {
  display: grid;
  margin-top: var(--space-4);
  justify-items: start;
}

.home-page .hero__actions,
.why-page-hero .hero__actions {
  max-width: 34rem;
  margin-top: 1.05rem;
}

.hero__cta-row {
  display: grid;
  gap: 0.7rem;
  width: 100%;
  max-width: 35rem;
}

.home-page .hero__cta-row,
.why-page-hero .hero__cta-row {
  gap: 0.62rem;
}

.hero__button-row {
  display: grid;
  gap: 1rem;
  width: 100%;
}

.home-page .hero__button-row,
.why-page-hero .hero__button-row {
  gap: 0.9rem;
}

.hero__primary-cta {
  width: 100%;
  min-height: 3.7rem;
  padding-inline: 2.95rem;
  white-space: nowrap;
}

.hero__support-line {
  color: rgba(243, 248, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
  width: 100%;
  text-align: center;
}

.home-page .hero__support-line {
  font-size: 0.84rem;
  line-height: 1.32;
}

.hero__secondary-cta {
  min-height: 3.7rem;
  min-width: 10.75rem;
  width: 100%;
  padding-inline: 1.7rem;
  color: rgba(243, 248, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  justify-self: start;
  box-shadow: none;
  white-space: nowrap;
}

.hero__media {
  display: grid;
  align-self: start;
  margin: var(--space-4) 0;
}

.home-page .hero__media {
  margin: 1rem 0 1.1rem;
}

.video-card {
  position: relative;
  display: grid;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
  border-radius: calc(var(--radius-lg) + 0.24rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 24px 56px rgba(1, 8, 21, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(0.65rem);
  -webkit-backdrop-filter: blur(0.65rem);
}

.video-card__bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0.5rem;
  padding: 0.9rem 1rem;
  background: rgba(6, 14, 27, 0.64);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
}

.speed-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: auto;
  padding: 0.22rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.speed-toggle__option {
  min-height: 2rem;
  padding: 0 0.72rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(243, 248, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.speed-toggle__option:hover,
.speed-toggle__option:focus-visible {
  color: #ffffff;
}

.speed-toggle__option.is-active,
.speed-toggle__option[aria-pressed="true"] {
  background: linear-gradient(180deg, rgba(53, 131, 255, 0.96) 0%, rgba(19, 95, 198, 0.96) 100%);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(30, 123, 255, 0.22);
}

.video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #060d1b;
  overflow: hidden;
}

.video-launcher,
.video-shell__player,
.video-shell > div,
.video-shell__player iframe,
.video-shell iframe,
.video-shell video {
  display: block;
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  border: 0;
}

.video-shell--loaded *,
.video-shell--loaded iframe {
  max-width: none !important;
}

.video-shell video {
  display: block;
  object-fit: cover;
  background: #060d1b;
}

.video-launcher {
  position: relative;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
}

.video-launcher img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-launcher::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 13, 27, 0.06), rgba(6, 13, 27, 0.34));
}

.play-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.72rem 0.94rem;
  border-radius: 999px;
  background: rgba(8, 18, 35, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-weight: 700;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(0.5rem);
  -webkit-backdrop-filter: blur(0.5rem);
}

.play-badge__copy {
  display: grid;
  gap: 0.18rem;
  text-align: center;
}

.play-badge__label {
  display: block;
  line-height: 1;
}

.play-badge__meta {
  display: block;
  color: rgba(243, 248, 255, 0.72);
  font-size: 0.66rem;
  font-weight: 500;
  line-height: 1;
}

.play-badge__icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 2.75rem;
  width: 2.75rem;
  height: 2.75rem;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 10px 25px rgba(30, 123, 255, 0.28);
}

.play-badge__icon::before {
  content: "";
  display: block;
  margin-left: 0.15rem;
  border-top: 0.42rem solid transparent;
  border-bottom: 0.42rem solid transparent;
  border-left: 0.62rem solid #ffffff;
}

.video-card__caption {
  padding: 0.75rem 1.1rem 0.85rem;
  background: rgba(8, 17, 35, 0.28);
  color: rgba(243, 248, 255, 0.82);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: center;
}

.video-card__notice {
  padding: 0.9rem 1.25rem 1.2rem;
  color: #d7e8ff;
  font-size: 0.9rem;
}

/* Testimonials */
.testimonial-track {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-4);
  overflow: visible;
  padding-bottom: 0;
  scroll-snap-type: none;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  display: grid;
  gap: 1.2rem;
  min-width: 0;
  padding: 1.5rem;
  scroll-snap-align: none;
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card__identity {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-card__avatar {
  width: 3.35rem;
  height: 3.35rem;
  flex: none;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(30, 123, 255, 0.12);
  box-shadow: 0 10px 24px rgba(12, 23, 48, 0.08);
}

.testimonial-card__person {
  display: grid;
  gap: 0.15rem;
}

.testimonial-card__name,
.testimonial-card__company {
  margin: 0;
}

.testimonial-card__name {
  color: var(--color-text);
  font-size: 0.96rem;
  font-weight: 800;
}

.testimonial-card__company {
  color: var(--color-text-soft);
  font-size: 0.84rem;
  font-weight: 600;
}

.testimonial-card__stars {
  display: inline-flex;
  gap: 0.28rem;
  color: #f2b01e;
  font-size: 1.55rem;
  line-height: 1;
}

.testimonial-card__highlight {
  margin: 0;
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.35;
}

.testimonial-card__quote-wrap {
  display: grid;
  gap: 0.5rem;
}

.testimonial-card__quote {
  color: var(--color-text);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.55;
}

.testimonial-card__quote.is-collapsed {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.testimonial-card__toggle {
  width: fit-content;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  background: rgba(30, 123, 255, 0.08);
  font-size: 0.9rem;
  line-height: 1.2;
  -webkit-appearance: none;
  appearance: none;
}

/* Example showcase */
.examples-showcase {
  display: grid;
  gap: clamp(1.1rem, 2vw, 1.75rem);
  padding: clamp(1rem, 2vw, 1.5rem);
  align-items: start;
}

.examples-showcase__media {
  min-width: 0;
  touch-action: pan-y;
}

.example-card__frame {
  width: min(100%, 36rem);
  margin: 0 auto;
  padding: 0.85rem;
  border: 1px solid rgba(16, 33, 58, 0.08);
  border-radius: calc(var(--radius-lg) - 0.3rem);
  background: linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 18px 36px rgba(12, 23, 48, 0.06);
}

.browser-frame {
  overflow: hidden;
  border: 1px solid rgba(16, 33, 58, 0.12);
  border-radius: 1.35rem;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(12, 23, 48, 0.08);
}

.browser-frame__bar {
  display: flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0 0.95rem;
  border-bottom: 1px solid rgba(16, 33, 58, 0.08);
  background: linear-gradient(180deg, #f9fbfe 0%, #eef3f8 100%);
}

.browser-frame__dots {
  display: flex;
  gap: 0.35rem;
}

.browser-frame__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #c7d3e3;
}

.example-card__media {
  background: #dfe8f3;
  aspect-ratio: 7 / 6;
}

.example-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.examples-showcase__content {
  display: grid;
  grid-template-areas:
    "nav"
    "controls"
    "badge"
    "copy";
  gap: 1.15rem;
  align-content: start;
  align-self: stretch;
  min-width: 0;
}

.example-card__badge {
  grid-area: badge;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  align-self: center;
  width: fit-content;
  padding: 0.28rem 0.68rem;
  border-radius: 999px;
  background: #f5f9fe;
  color: #456180;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.examples-showcase__controls {
  grid-area: controls;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  justify-content: center;
}

.carousel__count {
  margin: 0;
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(16, 33, 58, 0.08);
  border-radius: 999px;
  background: #f8fbff;
  color: var(--color-text-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.example-nav__button {
  min-height: 2.9rem;
  min-width: 5.35rem;
  padding: 0 1rem;
  border: 1px solid rgba(16, 33, 58, 0.1);
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-text);
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 22px rgba(12, 23, 48, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.example-nav__button:hover,
.example-nav__button:focus-visible {
  border-color: rgba(30, 123, 255, 0.24);
  background: #f8fbff;
  color: var(--color-primary-dark);
  box-shadow: 0 14px 28px rgba(12, 23, 48, 0.08);
  transform: translateY(-1px);
}

.examples-showcase__copy {
  grid-area: copy;
  display: grid;
  gap: 0.95rem;
  text-align: center;
  justify-items: center;
}

.examples-showcase__copy h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.examples-showcase__copy > p {
  color: var(--color-text-soft);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 32rem;
}

.example-card__bullets {
  display: grid;
  gap: 0.8rem;
  list-style: none;
}

.example-card__bullets li {
  display: grid;
  grid-template-columns: 1.05rem minmax(0, 1fr);
  gap: 0.7rem;
  align-items: center;
  color: var(--color-text);
  font-size: 0.96rem;
  font-weight: 600;
}

.example-card__bullets li::before {
  content: "";
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 8.25L6.55 10.75L12 5.25' stroke='white' stroke-width='2.05' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 0.72rem 0.72rem no-repeat,
    linear-gradient(180deg, #2d8cff 0%, #1360c7 100%);
  box-shadow: 0 0 0 0.22rem rgba(30, 123, 255, 0.14);
}

.examples-showcase__nav {
  grid-area: nav;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  justify-content: center;
  align-self: start;
  transform: none;
}

.step-card__number,
.credibility-list span,
.pricing-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
}

.carousel__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.carousel__dot {
  width: 0.95rem;
  height: 0.95rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c6d4e3;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.carousel__dot.is-active {
  background: var(--color-primary);
  box-shadow: 0 0 0 0.3rem rgba(30, 123, 255, 0.18);
}

@media (max-width: 47.99rem) {
  .home-page h1 {
    max-width: none;
  }

  .home-page-hero__line {
    display: inline;
  }

  .play-badge {
    gap: 0.62rem;
    padding: 0.66rem 0.98rem 0.66rem 0.76rem;
    max-width: calc(100% - 2rem);
  }

  .play-badge__copy {
    min-width: 0;
  }

  .play-badge__label {
    white-space: nowrap;
    font-size: 0.96rem;
    line-height: 1.02;
  }

  .play-badge__icon {
    flex-shrink: 0;
    flex-basis: 2.5rem;
    width: 2.5rem;
    height: 2.5rem;
  }

  .example-card__badge {
    justify-self: center;
  }

  .example-card__bullets {
    display: none;
  }

  .video-card__title {
    display: none;
  }
}

/* Offer section */
.offer-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2rem, 4vw, 2.8rem);
}

.offer-media {
  display: grid;
  gap: 0.82rem;
  width: min(100%, 39rem);
  justify-self: start;
}

.offer-media img {
  width: 100%;
  max-width: 100%;
}

.offer-panel {
  display: grid;
  gap: 1.1rem;
}

.offer-panel .section-heading {
  gap: 0.78rem;
  margin-bottom: 0;
}

.offer-panel .section-heading > p:not(.eyebrow) {
  margin: 0;
  max-width: 34rem;
}

.feature-list {
  display: grid;
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pricing-chip {
  width: fit-content;
  padding: 0.72rem 1.14rem;
  border-radius: 999px;
  background: rgba(7, 23, 52, 0.54);
  border: 1px solid rgba(153, 185, 238, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0.65rem 1.7rem rgba(2, 16, 39, 0.16);
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
}

.pricing-note {
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

.page-hero--light {
  background: linear-gradient(180deg, #eef3f8 0%, #f7f9fc 100%);
}

.pricing-page {
  background: linear-gradient(180deg, #f7f9fc 0%, #f4f7fb 100%);
}

.pricing-page-hero {
  overflow: visible;
  background: linear-gradient(180deg, #eef3f8 0%, #f7f9fc 72%, rgba(244, 247, 251, 0) 100%);
}

.pricing-page-hero .page-hero__inner {
  padding: var(--hero-top-offset) 0 clamp(1rem, 2.2vw, 1.55rem);
}

.pricing-page-hero__panel {
  position: relative;
  display: grid;
  gap: clamp(1.7rem, 3.1vw, 2.7rem);
  justify-self: stretch;
  width: min(100%, 73.5rem);
  padding: clamp(1.4rem, 2.55vw, 1.85rem);
  padding-bottom: clamp(1.95rem, 3.6vw, 2.65rem);
  overflow: hidden;
  border: 1px solid rgba(16, 33, 58, 0.06);
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 12px 30px rgba(12, 23, 48, 0.03);
  background: transparent;
}

.pricing-page-hero__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 54%, rgba(255, 255, 255, 0.68) 78%, rgba(255, 255, 255, 0) 100%);
}

.pricing-page-hero__panel > * {
  position: relative;
  z-index: 1;
}

.pricing-page-hero__content {
  display: grid;
  gap: 0.72rem;
  align-content: start;
}

.pricing-page-hero__panel h1 {
  margin-top: -0.72rem;
  max-width: 10.9ch;
}

.pricing-page-hero__line {
  display: block;
}

.pricing-page-hero__content > p:not(.eyebrow) {
  max-width: 39rem;
}

.pricing-page-hero__checks {
  max-width: 32rem;
  margin-top: 0.1rem;
  margin-bottom: 0;
}

.pricing-page-hero__trust-line {
  color: #4f637e;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.55;
}

.pricing-page-hero__link-wrap {
  margin: 0;
}

.pricing-page-hero__link {
  display: inline-flex;
  align-items: center;
  color: #37506f;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-color: rgba(19, 95, 198, 0.24);
  text-underline-offset: 0.2rem;
}

.pricing-page-hero__link:hover,
.pricing-page-hero__link:focus-visible {
  color: var(--color-primary-dark);
  text-decoration-color: rgba(19, 95, 198, 0.5);
}

.pricing-page-hero__note {
  color: #344962;
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 0.12rem;
}

.pricing-page-hero__visual {
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 33.2rem;
  justify-self: center;
  align-self: center;
}

.pricing-page-hero__visual::before {
  content: "";
  position: absolute;
  inset: auto 8% -4% 18%;
  height: 52%;
  border-radius: 50%;
  background: rgba(30, 123, 255, 0.08);
  filter: blur(2.2rem);
  pointer-events: none;
}

.pricing-page-hero__visual-shell {
  position: relative;
  z-index: 1;
}

.system-snapshot__chips.pricing-page-hero__chips {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem 0.42rem;
  padding: 0.04rem 0.18rem 0.08rem;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.system-snapshot__chips.pricing-page-hero__chips li {
  border-color: rgba(16, 33, 58, 0.08);
  background: rgba(255, 255, 255, 0.9);
  color: #31455c;
  box-shadow: none;
}

.pricing-packages {
  padding-top: clamp(2.2rem, 4vw, 3rem);
}

.pricing-packages__inner {
  display: grid;
  gap: 1.65rem;
}

.pricing-packages__intro {
  max-width: none;
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.98rem;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
}

.pricing-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 1.4rem;
  min-width: 0;
  align-self: start;
  padding: 1.75rem;
  border-color: rgba(16, 33, 58, 0.08);
  border-radius: calc(var(--radius-xl) + 0.05rem);
  box-shadow: 0 20px 42px rgba(12, 23, 48, 0.06);
}

.pricing-card--featured {
  border-color: rgba(30, 123, 255, 0.24);
  background: linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
  box-shadow: 0 26px 52px rgba(12, 23, 48, 0.08);
}

.pricing-card__popular {
  position: absolute;
  top: 0;
  right: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  margin: 0;
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  background: rgba(30, 123, 255, 0.12);
  color: var(--color-primary-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateY(-50%);
  z-index: 2;
}

.pricing-card--featured .pricing-card__header {
  padding-top: 0;
}

.pricing-card__header {
  display: grid;
  align-content: start;
  gap: 0.6rem;
  min-height: 0;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(16, 33, 58, 0.08);
}

.pricing-card__title {
  margin: 0;
  font-size: 1.62rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.pricing-card__label {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pricing-card__price {
  margin: 0;
  color: #0b1d3a;
  font-size: clamp(2.5rem, 7vw, 3.15rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.pricing-card__descriptor {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.98rem;
  line-height: 1.55;
  text-wrap: pretty;
}

.pricing-card__body {
  display: grid;
  align-content: start;
  gap: 1.2rem;
}

.pricing-card__section {
  display: grid;
  align-content: start;
  gap: 0.95rem;
}

.pricing-card__section-title {
  margin: 0;
  color: #10213e;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-wrap: balance;
}

.pricing-card__list {
  display: grid;
  gap: 0.72rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card__list--checks li {
  display: grid;
  grid-template-columns: 1rem minmax(0, 1fr);
  align-items: start;
  gap: 0.68rem;
  color: var(--color-text-soft);
  min-width: 0;
  font-size: 0.96rem;
  line-height: 1.48;
}

.pricing-card__list--checks li::before {
  content: "";
  width: 1rem;
  height: 1rem;
  margin-top: 0.2rem;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 8.25L6.55 10.75L12 5.25' stroke='white' stroke-width='2.05' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 0.66rem 0.66rem no-repeat,
    linear-gradient(180deg, #2d8cff 0%, #1360c7 100%);
  box-shadow: 0 0 0 0.2rem rgba(30, 123, 255, 0.14);
}

.pricing-card__section--muted {
  padding-top: 1.1rem;
  border-top: 1px dashed rgba(16, 33, 58, 0.12);
}

.pricing-card__list--muted li {
  position: relative;
  padding-left: 1rem;
  color: var(--color-text-soft);
  min-width: 0;
  font-size: 0.96rem;
  line-height: 1.48;
}

.pricing-card__list--muted li::before {
  content: "";
  position: absolute;
  top: 0.58rem;
  left: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: rgba(16, 33, 58, 0.24);
}

.pricing-card__footer {
  padding-top: 0.8rem;
}

.pricing-card__button {
  width: 100%;
  min-height: 3.45rem;
}

.pricing-footnote {
  max-width: 58rem;
  margin: 0.2rem auto 0;
  color: var(--color-text-soft);
  font-size: 0.92rem;
  line-height: 1.6;
  text-align: center;
}

.offer-cta {
  display: grid;
  width: fit-content;
  gap: 0.5rem;
}

.offer-cta .pricing-note {
  width: 100%;
  margin-top: 0;
  text-align: center;
}

/* Process */
.steps-grid {
  display: grid;
  gap: var(--space-4);
}

.step-card {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
}

.step-card__number {
  width: fit-content;
  min-width: 3rem;
  min-height: 2.2rem;
  padding: 0 0.85rem;
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.step-card p {
  color: var(--color-text-soft);
}

.pricing-process {
  padding-top: clamp(4.4rem, 6vw, 5.25rem);
  padding-bottom: clamp(4.25rem, 5.8vw, 5rem);
}

.pricing-process .section-heading {
  margin-bottom: clamp(1.85rem, 3.6vw, 2.55rem);
}

.pricing-process .steps-grid {
  gap: 1.2rem;
}

.pricing-process__card {
  min-height: 100%;
  padding: 1.75rem;
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  box-shadow: 0 24px 44px rgba(3, 12, 30, 0.2);
  color: #10213e;
}

.pricing-process__card .step-card__number {
  background: rgba(30, 123, 255, 0.12);
  color: var(--color-primary-dark);
  box-shadow: inset 0 0 0 1px rgba(30, 123, 255, 0.12);
}

.pricing-process__card h3 {
  color: #10213e;
  font-size: 1.24rem;
}

.pricing-process__card p {
  color: rgba(16, 33, 58, 0.82);
  font-size: 1rem;
  line-height: 1.68;
}

/* Founder */
.founder-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 60rem);
  margin: 0 auto;
  gap: clamp(2rem, 4vw, 2.8rem);
  padding-inline: 1rem;
}

.founder-media {
  width: min(15rem, 100%);
  justify-self: start;
  align-self: start;
  overflow: hidden;
  padding: 0.45rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-strong);
}

.founder-media img {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
}

.founder-copy {
  display: grid;
  gap: 1rem;
  max-width: 39rem;
}

.founder-copy h2,
.founder-copy h3 {
  margin: 0;
}

.founder-name {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #ffffff;
}

.founder-role {
  color: #8fc1ff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.credibility-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.credibility-list span {
  padding: 0.55rem 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.closing-line {
  font-weight: 700;
}

/* Final CTA */
.final-cta__panel {
  display: grid;
  gap: 1.35rem;
  padding: clamp(1.9rem, 4vw, 2.55rem);
}

.pricing-final-cta {
  padding-top: clamp(4.4rem, 6vw, 5.2rem);
}

.pricing-final-cta__panel {
  position: relative;
  overflow: hidden;
  max-width: 72rem;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 2.65rem);
  border-color: rgba(16, 33, 58, 0.08);
  border-radius: calc(var(--radius-xl) + 0.1rem);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 24px 54px rgba(12, 23, 48, 0.08);
}

.pricing-final-cta__panel::after {
  content: none;
}

.pricing-final-cta__panel > * {
  position: relative;
  z-index: 1;
}

.pricing-final-cta__panel > div:first-child {
  max-width: 40rem;
}

.pricing-final-cta__panel--dark,
.why-final-cta__panel {
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.05) 100%);
  box-shadow: 0 24px 54px rgba(3, 12, 30, 0.2);
}

.pricing-final-cta__panel--dark h2,
.why-final-cta__panel h2 {
  color: #ffffff;
}

.pricing-final-cta__panel--dark > div > p:not(.eyebrow),
.why-final-cta__panel > div > p:not(.eyebrow) {
  color: rgba(243, 248, 255, 0.8);
}

.why-page-hero .hero__inner {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: clamp(1.8rem, 4.4vw, 3rem);
  padding: var(--hero-top-offset) 0 clamp(3.65rem, 5.2vw, 4.5rem);
}

.why-page-hero .hero__copy {
  max-width: 54rem;
}

.why-page-hero h1 {
  max-width: 12.3ch;
}

.why-page-hero__line {
  display: block;
}

.why-page-hero .hero__summary {
  max-width: 35rem;
  margin-top: 0.92rem;
  margin-bottom: 0;
}

.why-page-hero .check-list {
  max-width: 33rem;
  margin-top: 0.95rem;
  margin-bottom: 0.82rem;
}

.why-page-hero__video-link-wrap {
  margin: 0;
}

.why-page-hero__video-link {
  display: inline-flex;
  align-items: center;
  color: rgba(243, 248, 255, 0.86);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-color: rgba(143, 193, 255, 0.38);
  text-underline-offset: 0.2rem;
}

.why-page-hero__video-link:hover,
.why-page-hero__video-link:focus-visible {
  color: #ffffff;
  text-decoration-color: rgba(143, 193, 255, 0.68);
}

.why-page-hero__visual {
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 33rem;
  justify-self: center;
  align-self: center;
}

.why-page-hero__visual::before {
  content: "";
  position: absolute;
  inset: auto 10% -6% 18%;
  height: 58%;
  border-radius: 50%;
  background: rgba(30, 123, 255, 0.14);
  filter: blur(2.8rem);
  pointer-events: none;
}

.why-page-hero__visual-shell {
  position: relative;
  z-index: 1;
}

.system-visual {
  display: grid;
  gap: 0.7rem;
  overflow: hidden;
  padding: 0.76rem;
  border-radius: calc(var(--radius-lg) + 0.24rem);
}

.system-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-lg) - 0.24rem);
}

.system-visual--light {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(16, 33, 58, 0.08);
  box-shadow:
    0 22px 46px rgba(12, 23, 48, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.system-visual--light img {
  border: 1px solid rgba(16, 33, 58, 0.06);
  box-shadow: 0 18px 34px rgba(12, 23, 48, 0.08);
}

.system-visual--dark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 24px 56px rgba(1, 8, 21, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(0.65rem);
  -webkit-backdrop-filter: blur(0.65rem);
}

.system-visual--dark img {
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.system-snapshot {
  display: grid;
  gap: 0.6rem;
  padding: 0.3rem 0.2rem 0;
}

.system-snapshot__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem 0.42rem;
  align-items: flex-start;
  margin: 0;
  padding: 0.04rem 0.18rem 0.08rem;
  list-style: none;
}

.system-snapshot__chips li {
  display: inline-flex;
  align-items: center;
  min-height: 1.72rem;
  padding: 0.11rem 0.68rem;
  border-radius: 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(243, 248, 255, 0.88);
  font-size: 0.715rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1.08;
  white-space: nowrap;
}

.why-founder .founder-media {
  border-color: rgba(16, 33, 58, 0.08);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.why-founder .founder-copy {
  max-width: 39rem;
}

.why-founder .founder-copy > p:not(.eyebrow):not(.founder-role),
.why-founder .closing-line {
  color: var(--color-text);
}

.why-founder .founder-copy > p:not(.eyebrow):not(.founder-role):not(.closing-line) {
  color: var(--color-text-soft);
}

.why-founder .founder-name {
  color: var(--color-text);
}

.why-founder .founder-role {
  color: var(--color-primary-dark);
}

.why-founder .credibility-list span {
  background: #ffffff;
  border-color: rgba(16, 33, 58, 0.08);
  color: var(--color-text);
  box-shadow: 0 10px 24px rgba(12, 23, 48, 0.04);
}

.book-review-page {
  background: linear-gradient(180deg, #f4f7fb 0%, #eef3f8 100%);
}

.book-review-hero .hero__inner {
  grid-template-columns: minmax(0, 1fr);
  padding: var(--hero-top-offset) 0 clamp(2.8rem, 4.4vw, 3.35rem);
}

.book-review-hero .hero__copy {
  display: grid;
  gap: 0;
  justify-items: center;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.book-review-hero .eyebrow,
.thank-you-confirmation .eyebrow {
  justify-self: center;
  text-align: center;
}

.book-review-hero h1 {
  max-width: 12.2ch;
}

.book-review-hero__line {
  display: block;
}

.book-review-hero .hero__summary {
  max-width: 39rem;
  margin: 0.9rem auto 0;
  text-wrap: pretty;
}

.book-review-hero__link-wrap {
  margin: 0.95rem 0 0;
}

.book-review-hero__link {
  display: inline-flex;
  align-items: center;
  color: rgba(243, 248, 255, 0.86);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-color: rgba(143, 193, 255, 0.38);
  text-underline-offset: 0.2rem;
}

.book-review-hero__link:hover,
.book-review-hero__link:focus-visible {
  color: #ffffff;
  text-decoration-color: rgba(143, 193, 255, 0.68);
}

.book-review-booking {
  padding-top: clamp(2.4rem, 4.5vw, 3.2rem);
  background: #010321;
}

.book-review-booking .container {
  display: grid;
  gap: 1.25rem;
  justify-items: stretch;
}

.book-review-booking__trust-line {
  max-width: 44rem;
  margin: 0 auto;
  color: rgba(243, 248, 255, 0.8);
  font-size: 1rem;
  line-height: 1.65;
  text-align: center;
}

.booking-embed {
  width: 100%;
  max-width: 68rem;
  margin: 0 auto;
  display: grid;
  overflow: hidden;
  min-height: 42rem;
  border-radius: 1.4rem;
  background: #010321;
}

.booking-embed br {
  display: none;
}

.booking-embed iframe {
  display: block;
  min-height: 42rem;
  background: transparent;
}

.book-review-expect {
  padding-top: clamp(4.25rem, 5.8vw, 5rem);
  padding-bottom: clamp(4.1rem, 5.6vw, 4.85rem);
}

.book-review-expect__heading {
  margin-bottom: clamp(1.85rem, 3.6vw, 2.45rem);
}

.book-review-expect__grid {
  display: grid;
  gap: 1rem;
}

.book-review-expect__card {
  min-height: 100%;
  align-content: start;
  align-items: start;
}

.book-review-expect__card .step-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  width: 100%;
  max-width: 100%;
  min-height: 3.15rem;
  padding: 0.55rem 0.85rem;
  line-height: 1.25;
  text-wrap: balance;
  align-self: start;
}

.step-card__badge-number {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: #ffffff;
  color: var(--color-primary-dark);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1;
}

.book-review-expect__card p {
  color: rgba(16, 33, 58, 0.84);
  font-size: 1rem;
  line-height: 1.66;
}

.thank-you-page {
  background: linear-gradient(180deg, #0f1c34 0%, #0c1730 40%, #eef3f8 40%, #eef3f8 100%);
}

.thank-you-confirmation {
  padding-top: var(--hero-top-offset);
  padding-bottom: clamp(4.3rem, 6vw, 5.35rem);
}

.thank-you-confirmation .container {
  display: grid;
}

.thank-you-confirmation__panel {
  display: grid;
  gap: 1.15rem;
  justify-items: center;
  max-width: 48rem;
  margin: 0 auto;
  padding: clamp(2rem, 4.5vw, 3rem);
  text-align: center;
}

.thank-you-confirmation__panel h1 {
  margin: -1.15rem 0 0;
  color: #ffffff;
  max-width: 11.4ch;
}

.thank-you-confirmation__line {
  display: block;
}

.thank-you-confirmation__body,
.thank-you-confirmation__note {
  max-width: 38rem;
}

.thank-you-confirmation__body {
  color: rgba(243, 248, 255, 0.84);
  font-size: 1.03rem;
  line-height: 1.7;
}

.thank-you-confirmation__note {
  color: rgba(243, 248, 255, 0.68);
  font-size: 0.96rem;
}

.thank-you-confirmation__actions {
  margin-top: 0.25rem;
}

.thank-you-confirmation__button {
  min-width: 10.5rem;
}

/* FAQ */
.faq-shell {
  display: grid;
  gap: 1rem;
  margin-top: 0.65rem;
  padding: clamp(1.1rem, 2.4vw, 1.65rem);
  border: 1px solid rgba(16, 33, 58, 0.08);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  box-shadow: 0 22px 50px rgba(12, 23, 48, 0.06);
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(16, 33, 58, 0.08);
  border-radius: 1.35rem;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 10px 24px rgba(12, 23, 48, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.faq-item:hover,
.faq-item:focus-within {
  border-color: rgba(30, 123, 255, 0.16);
  box-shadow: 0 16px 34px rgba(12, 23, 48, 0.06);
}

.faq-item.is-open {
  border-color: rgba(30, 123, 255, 0.2);
  box-shadow: 0 18px 36px rgba(12, 23, 48, 0.07);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.45rem;
  padding: 1.3rem 1.45rem;
  background: transparent;
  border: 0;
  color: var(--color-text);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
  transition: color 0.2s ease;
}

.faq-question:hover,
.faq-question:focus-visible {
  color: #0b1d3a;
}

.faq-question__icon {
  flex: none;
  position: relative;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  border: 1px solid rgba(16, 33, 58, 0.1);
  background: #eef4fc;
  color: var(--color-primary);
  font-size: 0;
  line-height: 0;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.faq-question__icon::before,
.faq-question__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.72rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-question__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-question__icon {
  background: var(--color-primary);
  border-color: transparent;
  color: #ffffff;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.45rem;
  color: var(--color-text-soft);
  font-size: 0.98rem;
  line-height: 1.72;
  opacity: 0;
  transition: max-height 0.32s ease, opacity 0.22s ease, padding 0.32s ease;
}

.faq-item.is-open .faq-question__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.faq-cta {
  display: grid;
  gap: 0.9rem;
  align-items: start;
  padding-top: 1rem;
  border-top: 1px solid rgba(16, 33, 58, 0.08);
}

.faq-cta p {
  color: var(--color-text-soft);
  font-size: 0.98rem;
}

.faq-cta__button {
  min-height: 3.2rem;
  padding: 0 1.35rem;
  border: 1px solid rgba(30, 123, 255, 0.16);
  background: #ffffff;
  color: var(--color-primary-dark);
  box-shadow: 0 14px 28px rgba(30, 123, 255, 0.08);
}

.faq-cta__button:hover,
.faq-cta__button:focus-visible {
  background: #f5faff;
  color: var(--color-primary-dark);
}

/* Footer */
.site-footer {
  padding: clamp(3.1rem, 5.3vw, 4rem) 0;
  background: #09162c;
  color: rgba(243, 248, 255, 0.76);
}

.site-footer__inner {
  display: grid;
  gap: 1.4rem;
}

.site-footer__row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.site-footer__meta {
  display: grid;
  gap: 0.8rem;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.footer-links a {
  color: rgba(243, 248, 255, 0.68);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
}

.footer-tagline {
  margin: 0;
  color: rgba(243, 248, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-align: center;
}

.footer-copyright {
  margin: 0;
  color: rgba(243, 248, 255, 0.62);
  font-size: 0.88rem;
  text-align: center;
}

/* Placeholder pages */
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(47, 118, 255, 0.18), transparent 22rem),
    linear-gradient(180deg, #0b1730 0%, #10213e 48%, var(--color-page) 48%, var(--color-page) 100%);
}

.page-hero__inner {
  padding: var(--hero-top-offset) 0 var(--space-8);
}

.page-hero__card,
.page-shell-card,
.calendar-shell,
.confirmation-card {
  border-radius: var(--radius-xl);
}

.page-hero__card {
  display: grid;
  gap: 1rem;
  padding: 1.8rem;
  background: var(--color-surface);
  border: 1px solid rgba(16, 33, 58, 0.08);
  box-shadow: var(--shadow-soft);
}

.page-shell-card {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
}

.page-shell-grid {
  display: grid;
  gap: var(--space-4);
}

.page-checklist {
  display: grid;
  gap: 0.85rem;
  list-style: none;
}

.calendar-shell {
  padding: 1.5rem;
  background: #f6f9fd;
  border: 1px dashed #adc3dd;
}

.calendar-shell__placeholder {
  display: grid;
  place-items: center;
  min-height: 22rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #eff4fb 100%);
  border: 1px solid rgba(16, 33, 58, 0.08);
  color: var(--color-text-soft);
  text-align: center;
}

.confirmation-card {
  display: grid;
  gap: 1rem;
  padding: 1.8rem;
}

.confirmation-card p {
  color: var(--color-text-soft);
}

.inline-note {
  color: var(--color-text-soft);
  font-size: 0.95rem;
}

.section-helper {
  color: var(--color-text-soft);
  font-size: 0.95rem;
}

/* Responsive layout */
@media (min-width: 48rem) {
  .container {
    width: min(calc(100% - 3rem), var(--max-width));
  }

  .section {
    padding: clamp(4.85rem, 6.4vw, 5.8rem) 0;
  }

  .section--tight {
    padding: clamp(3.95rem, 5.2vw, 4.85rem) 0;
  }

  .hero__actions {
    align-items: start;
  }

  .home-page .hero__summary,
  .home-page .check-list,
  .home-page .hero__fine-print,
  .home-page .hero__actions,
  .why-page-hero .hero__actions {
    max-width: 34rem;
  }

  .home-page h1 {
    max-width: 11.15ch;
  }

  .faq-cta {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .hero__cta-row {
    width: fit-content;
    max-width: none;
  }

  .hero__button-row {
    grid-template-columns: clamp(23rem, 35vw, 27.5rem) minmax(10.75rem, auto);
    align-items: stretch;
  }

  .home-page .hero__cta-row,
  .why-page-hero .hero__cta-row {
    --hero-primary-cta-width: clamp(23rem, 35vw, 27.5rem);
  }

  .home-page .hero__button-row,
  .why-page-hero .hero__button-row {
    width: fit-content;
    max-width: none;
    grid-template-columns: var(--hero-primary-cta-width) auto;
  }

  .home-page .hero__primary-cta,
  .why-page-hero .hero__primary-cta {
    width: 100%;
    justify-self: stretch;
  }

  .hero__secondary-cta {
    width: auto;
  }

  .hero__support-line {
    width: clamp(23rem, 35vw, 27.5rem);
  }

  .home-page .hero__support-line,
  .why-page-hero .hero__support-line {
    width: auto;
    max-width: none;
  }

  .home-page .hero__support-line,
  .why-page-hero .hero__support-line {
    width: clamp(23rem, 35vw, 27.5rem);
    max-width: none;
  }

  .home-page .hero__support-line {
    width: var(--hero-primary-cta-width);
  }

  .examples-showcase {
    grid-template-columns: minmax(0, 1.06fr) minmax(18rem, 0.94fr);
  }

  .examples-showcase__content {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto 1fr;
    grid-template-areas:
      "badge controls"
      "copy copy"
      "nav nav";
    gap: 1.15rem;
  }

  .examples-showcase__controls {
    justify-content: flex-end;
    margin-left: auto;
  }

  .example-card__badge {
    justify-self: start;
  }

  .examples-showcase__copy {
    text-align: left;
    justify-items: start;
  }

  .example-card__bullets {
    display: grid;
  }

  .examples-showcase__nav {
    justify-content: flex-start;
    align-self: end;
    transform: translateY(-50px);
  }

  .testimonial-track {
    display: flex;
    align-items: flex-start;
    overflow: visible;
    scroll-snap-type: none;
  }

  .testimonial-card {
    flex: 1 1 0;
    min-width: 0;
  }

  .steps-grid,
  .page-shell-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .book-review-expect__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .book-review-expect__heading {
    max-width: none;
  }

  .book-review-expect__heading h2 {
    white-space: nowrap;
  }

  .site-footer__row {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }

  .site-footer__meta {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  }

  .footer-copyright {
    text-align: left;
    justify-self: start;
  }

  .footer-tagline {
    text-align: center;
    justify-self: center;
  }

  .footer-links {
    justify-content: flex-end;
    justify-self: end;
  }
}

@media (min-width: 64rem) {
  .mobile-menu-toggle {
    display: none;
  }

  .site-header__inner {
    gap: 2rem;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.25rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-nav__links {
    display: flex;
    align-items: center;
    gap: 0.35rem;
  }

  .site-nav__links a {
    padding: 0.55rem 0.9rem;
  }

  .site-nav__cta {
    margin-top: 0;
    width: auto;
  }

  .hero__inner,
  .offer-wrap,
  .page-shell-grid--two {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
  }

  .home-page .hero__inner {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .home-page .hero__copy {
    grid-template-columns: minmax(0, 0.91fr) minmax(0, 1.01fr);
    column-gap: clamp(3.8rem, 5.4vw, 5.8rem);
    row-gap: 0;
    align-items: start;
  }

  .home-page .hero__copy > :not(.hero__media) {
    grid-column: 1;
  }

  .home-page .hero__media {
    grid-column: 2;
    grid-row: 1 / span 6;
    align-self: start;
    justify-self: end;
    width: min(100%, 38rem);
    max-width: 38rem;
    margin: 1.55rem 0 0;
  }

  .home-page .video-card {
    width: 100%;
  }

  .founder-wrap {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.18fr);
    align-items: start;
    padding-inline: 0;
  }

  .founder-media {
    justify-self: end;
  }

  .founder-copy {
    padding-right: clamp(0.75rem, 2.5vw, 2rem);
  }

  .offer-wrap {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .page-shell-grid--two {
    align-items: start;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }

  .pricing-page-hero__panel {
    grid-template-columns: minmax(0, 1.01fr) minmax(0, 0.99fr);
    align-items: center;
  }

  .pricing-page-hero__content {
    padding-right: clamp(0.6rem, 1.8vw, 1.45rem);
  }

  .pricing-page-hero__visual {
    max-width: 34.6rem;
    justify-self: end;
    align-self: start;
    margin-top: 1.45rem;
  }

  .system-snapshot__chips,
  .system-snapshot__chips.pricing-page-hero__chips {
    padding-left: 0.42rem;
    padding-right: 0.42rem;
  }

  .pricing-card__header {
    min-height: 12.5rem;
  }

  .why-page-hero .hero__inner {
    grid-template-columns: minmax(0, 1.01fr) minmax(0, 0.99fr);
    align-items: center;
  }

  .why-page-hero .hero__copy {
    max-width: none;
  }

  .why-page-hero__visual {
    max-width: 34.2rem;
    justify-self: end;
    align-self: start;
    margin-top: 1.45rem;
  }

  .why-founder .founder-copy {
    padding-right: clamp(0.75rem, 2.5vw, 2rem);
  }

  .booking-embed,
  .booking-embed iframe {
    min-height: 45rem;
  }

  .book-review-booking__trust-line {
    max-width: none;
    width: 100%;
  }

  .final-cta__panel {
    grid-template-columns: minmax(0, 1.2fr) auto;
    align-items: center;
    padding: 2.25rem;
  }
}

@media (max-width: 30rem) {
  .pricing-card {
    padding: 1.45rem;
  }

  .speed-toggle {
    margin-left: auto;
  }

  .speed-toggle__option {
    padding: 0 0.75rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
