:root {
  --ink: #e9ecf4;
  --ink-soft: #a8b0c4;
  --ink-muted: #6b7388;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --stroke: rgba(255, 255, 255, 0.1);
  --cobalt: #4d7cff;
  --cobalt-deep: #2856fa;
  --cobalt-glow: rgba(77, 124, 255, 0.45);
  --coral: #ff7a6b;
  --coral-soft: rgba(255, 122, 107, 0.25);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --font-sans: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Fraunces", ui-serif, Georgia, "Times New Roman", serif;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.45);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

@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;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 450;
  color: var(--ink);
  background: #07090f;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(77, 124, 255, 0.35);
  color: #fff;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 100% 80% at 50% -30%, rgba(77, 124, 255, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(255, 122, 107, 0.08), transparent 45%),
    radial-gradient(ellipse 60% 40% at 0% 20%, rgba(77, 124, 255, 0.12), transparent 50%),
    linear-gradient(180deg, #0a0c12 0%, #07090f 40%, #05060a 100%);
  animation: bg-shift 28s var(--ease-out) infinite alternate;
}

@keyframes bg-shift {
  0% {
    filter: hue-rotate(0deg) saturate(1);
  }
  100% {
    filter: hue-rotate(-12deg) saturate(1.08);
  }
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.35;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--cobalt-deep);
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius-sm);
  z-index: 100;
}

.skip-link:focus {
  left: 0.5rem;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.75rem 1.25rem;
  backdrop-filter: blur(16px) saturate(1.3);
  background: rgba(7, 9, 15, 0.72);
  border-bottom: 1px solid var(--stroke);
}

.nav__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.nav__menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.nav__menu-link {
  color: var(--ink-muted);
  text-decoration: none;
  white-space: nowrap;
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}

.nav__menu-link:hover {
  color: var(--ink-soft);
}

.nav__menu-link:focus-visible {
  outline: 2px solid var(--cobalt);
  outline-offset: 3px;
  border-radius: 4px;
}

.nav__menu-link--cta {
  color: var(--coral);
}

.nav__menu-link--cta:hover {
  color: #ff9a8e;
}

@media (max-width: 520px) {
  .nav__menu {
    width: 100%;
    justify-content: flex-start;
    padding-top: 0.6rem;
    border-top: 1px solid var(--stroke);
  }
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
}

.nav__brand:focus-visible {
  outline: 2px solid var(--cobalt);
  outline-offset: 4px;
  border-radius: 6px;
}

.nav__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--cobalt), var(--cobalt-deep));
  color: #fff;
  box-shadow: 0 8px 28px var(--cobalt-glow);
}

.nav__wordmark {
  font-family: var(--font-display);
  letter-spacing: 0.2em;
  font-size: 0.88rem;
  font-weight: 650;
}

.nav__pill {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--coral);
  border: 1px solid var(--coral-soft);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 122, 107, 0.06);
}

.nav__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), border-color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

button.btn {
  font-family: var(--font-sans);
}

.btn:focus-visible {
  outline: 2px solid var(--cobalt);
  outline-offset: 3px;
}

.btn--sm {
  padding: 0.5rem 0.95rem;
  font-size: 0.82rem;
  border-radius: 999px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--cobalt) 0%, var(--cobalt-deep) 100%);
  color: #fff;
  box-shadow: 0 10px 36px rgba(40, 86, 250, 0.35);
}

.btn--primary:hover:not([aria-disabled="true"]) {
  transform: translateY(-1px);
  box-shadow: 0 14px 44px rgba(40, 86, 250, 0.45);
}

.btn--primary[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

.btn--ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--stroke);
}

.btn--ghost:hover {
  border-color: rgba(77, 124, 255, 0.45);
  background: var(--surface-2);
}

.btn__icon {
  display: flex;
  opacity: 0.95;
}

/* Hero */
.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    padding: 3.5rem 2rem 5rem;
    gap: 2rem;
  }
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cobalt);
}

.hero__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.15rem);
  font-weight: 700;
  font-variation-settings: "SOFT" 40, "WONK" 0;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
}

.hero__lede {
  margin: 0;
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: min(52ch, 100%);
}

.hero__lede--payoff {
  margin-top: 1rem;
  max-width: min(54ch, 100%);
  font-size: 1.12rem;
  line-height: 1.55;
}

.hero__lede-connected {
  color: #d6dffb;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: underline;
  text-decoration-color: rgba(77, 124, 255, 0.55);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.22em;
}

.hero__lede strong {
  color: var(--ink);
  font-weight: 700;
}

.hero__lede em {
  font-style: italic;
  color: var(--ink);
}

.hero__lede a {
  color: var(--cobalt);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.hero__lede a:hover {
  color: #8aa9ff;
}

.hero__lede a:focus-visible {
  outline: 2px solid var(--cobalt);
  outline-offset: 3px;
  border-radius: 4px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.app-store-notice {
  margin-top: 1.25rem;
  padding: 1.25rem 1.35rem;
  max-width: 42rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(77, 124, 255, 0.3);
  background: rgba(77, 124, 255, 0.09);
  color: var(--ink-soft);
}

@media (prefers-reduced-motion: no-preference) {
  .app-store-notice {
    animation: app-store-notice-in 0.4s var(--ease-out);
  }
}

@keyframes app-store-notice-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.app-store-notice__title {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 650;
  color: #fff;
  letter-spacing: -0.02em;
}

.app-store-notice__body {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.hero__stats {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hero__stats li {
  font-size: 0.88rem;
  color: var(--ink-muted);
  padding-left: 1.1rem;
  border-left: 2px solid rgba(77, 124, 255, 0.35);
}

.stat__num {
  display: inline-block;
  min-width: 4.5rem;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

/* Hero demo video (YouTube) */
.hero__video-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 0;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.glow--a {
  width: min(100%, 320px);
  height: 240px;
  background: var(--cobalt);
  opacity: 0.18;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float 12s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-48%, -52%) scale(1.04);
  }
}

.demo-video {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 36rem;
}

.demo-video__placeholder {
  margin: 0;
  padding: 2rem 1.25rem;
  min-height: 12rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.2);
  color: var(--ink-muted);
}

.demo-video--ready .demo-video__placeholder {
  display: none;
}

.demo-video__placeholder-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 650;
  color: var(--ink-soft);
}

.demo-video__placeholder-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  max-width: 26rem;
}

.demo-video__placeholder-text code {
  font-size: 0.84em;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.1em 0.35em;
  border-radius: 4px;
  color: var(--ink-soft);
}

.demo-video--ready .demo-video__frame:not([hidden]) {
  box-shadow:
    var(--shadow-soft),
    0 0 0 1px rgba(77, 124, 255, 0.15);
}

.demo-video__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
}

.demo-video__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Features */
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.section--features {
  padding-top: 1rem;
}

.section__head {
  max-width: 52ch;
  margin-bottom: 2.25rem;
}

.section__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #fff;
}

.section__sub {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1rem;
}

.features {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.feature {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--stroke);
  transition: border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.feature:hover {
  border-color: rgba(77, 124, 255, 0.28);
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.feature__icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 1rem;
  color: var(--cobalt);
  background: rgba(77, 124, 255, 0.1);
  border: 1px solid rgba(77, 124, 255, 0.2);
}

.feature__title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.feature__text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

.feature__icon--coral {
  color: var(--coral);
  background: rgba(255, 122, 107, 0.1);
  border-color: rgba(255, 122, 107, 0.22);
}

.feature__icon--amber {
  color: #e8b84a;
  background: rgba(232, 184, 74, 0.1);
  border-color: rgba(232, 184, 74, 0.22);
}

.feature__icon--teal {
  color: #3dd4b4;
  background: rgba(61, 212, 180, 0.1);
  border-color: rgba(61, 212, 180, 0.22);
}

/* Highlights strip */
.section--highlights {
  padding-top: 0.5rem;
  padding-bottom: 3rem;
}

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

@media (min-width: 640px) {
  .highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .highlights {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.highlights__item {
  margin: 0;
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  background: linear-gradient(165deg, rgba(77, 124, 255, 0.07), rgba(0, 0, 0, 0.12));
}

.highlights__value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 650;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.highlights__label {
  display: block;
  font-size: 0.84rem;
  color: var(--ink-muted);
  line-height: 1.45;
}

/* Phone mockup + screenshot slideshow */
.section--phone {
  padding-top: 0.5rem;
  padding-bottom: 3.25rem;
}

.section--phone .phone-section__copy.section__head {
  margin-bottom: 0;
}

.phone-section {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.75rem;
  width: 100%;
  box-sizing: border-box;
  padding: 1.65rem 1.35rem 1.85rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background:
    linear-gradient(155deg, rgba(77, 124, 255, 0.1) 0%, transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0.28) 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.phone-section__copy {
  margin-bottom: 0;
  width: 100%;
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}

.phone-section__copy .section__sub {
  margin-left: auto;
  margin-right: auto;
  max-width: 38ch;
}

.phone-section__bullets {
  list-style: none;
  margin: 1.25rem auto 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  max-width: 32rem;
  text-align: left;
}

.phone-section__bullets li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.phone-section__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cobalt), var(--cobalt-deep));
  box-shadow: 0 0 10px rgba(77, 124, 255, 0.45);
}

.phone-section__device {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .phone-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, min(22rem, 100%));
    gap: clamp(1.75rem, 4vw, 3rem);
    align-items: center;
    justify-items: stretch;
    padding: 2rem 2.25rem 2.15rem;
  }

  .phone-section__copy {
    text-align: left;
    margin-inline: 0;
    max-width: none;
    justify-self: stretch;
    padding-right: 0.5rem;
  }

  .phone-section__copy .section__sub {
    margin-left: 0;
    margin-right: 0;
    max-width: 42ch;
  }

  .phone-section__bullets {
    margin: 1.35rem 0 0;
    max-width: none;
  }

  .phone-section__device {
    justify-content: flex-end;
  }

  .phone-showcase {
    margin-inline: 0;
  }
}

.phone-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  max-width: 22rem;
  margin-inline: auto;
}

.phone-shell {
  width: min(300px, 82vw);
  padding: 11px 11px 13px;
  border-radius: 40px;
  background: linear-gradient(165deg, #343848 0%, #1a1d28 38%, #0e1018 100%);
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.07) inset;
}

.phone-shell__inner {
  border-radius: 30px;
  overflow: hidden;
  background: #06070c;
}

.phone-notch {
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 5px;
  background: #06070c;
}

.phone-notch::after {
  content: "";
  display: block;
  width: 86px;
  height: 5px;
  border-radius: 999px;
  background: #242831;
}

.phone-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 499 / 1024;
  max-height: min(70dvh, 600px);
  /* Match inset display so PNGs clip with the same curve as the glass */
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
}

.phone-slides {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
}

.phone-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
  /* LCD: flat under notch, rounded at bottom like the mockup glass */
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
}

.phone-slide.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .phone-slide {
    transition: none;
  }
}

.phone-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  display: block;
  background-color: #0b0d14;
  /* Match figure: explicit radii so bitmaps clip inside the mockup (inherit is flaky on <img>) */
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  transform: translateZ(0);
}

.phone-caption {
  margin: 0;
  min-height: 1.45em;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.45;
  padding: 0 0.5rem;
}

.phone-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.phone-nav {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: var(--surface);
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.phone-nav:hover {
  border-color: rgba(77, 124, 255, 0.45);
  background: var(--surface-2);
}

.phone-nav:focus-visible {
  outline: 2px solid var(--cobalt);
  outline-offset: 3px;
}

.phone-dots {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.phone-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: width 0.25s var(--ease-out), background 0.2s var(--ease-out);
}

.phone-dot.is-active {
  width: 1.35rem;
  background: var(--cobalt);
}

.phone-dot:focus-visible {
  outline: 2px solid var(--cobalt);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .phone-dot {
    transition: background 0.2s var(--ease-out);
  }
}

/* Split + checklist */
.section--split {
  padding-bottom: 3.5rem;
}

.eyebrow--teal {
  color: #5ee0c8;
}

.split {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 880px) {
  .split {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
}

.split__lede {
  max-width: 52ch;
}

.checklist {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cobalt), var(--cobalt-deep));
  box-shadow: 0 0 10px rgba(77, 124, 255, 0.45);
}

.split__aside {
  display: grid;
  gap: 1rem;
}

.note-card {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(77, 124, 255, 0.22);
  background: rgba(77, 124, 255, 0.07);
}

.note-card--muted {
  border-color: var(--stroke);
  background: var(--surface);
}

.note-card__kicker {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cobalt);
}

.note-card--muted .note-card__kicker {
  color: var(--ink-soft);
}

.note-card__body {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

/* Pull quote */
.section--blockquote {
  padding-bottom: 3.5rem;
}

.quote-block {
  margin: 0;
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background:
    linear-gradient(145deg, rgba(255, 122, 107, 0.08) 0%, transparent 42%),
    var(--surface);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.quote-block p {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 550;
  line-height: 1.45;
  color: #fff;
  font-style: italic;
}

.quote-block__cite {
  font-size: 0.88rem;
  font-style: normal;
  color: var(--ink-muted);
  line-height: 1.5;
}

.quote-block__cite cite {
  font-style: italic;
  color: var(--ink-soft);
}

/* FAQ */
.section--faq {
  padding-bottom: 3.5rem;
}

.section__head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 44rem;
}

.section__head--center .section__sub {
  margin-left: auto;
  margin-right: auto;
}

.faq {
  max-width: 40rem;
  margin: 2rem auto 0;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.faq__item + .faq__item {
  border-top: 1px solid var(--stroke);
}

.faq__summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.35rem;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
  transition: background 0.2s var(--ease-out);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.faq__summary::-webkit-details-marker {
  display: none;
}

.faq__summary::after {
  content: "";
  flex: 0 0 auto;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.35rem;
  border-right: 2px solid var(--ink-muted);
  border-bottom: 2px solid var(--ink-muted);
  transform: rotate(45deg);
  transition: transform 0.2s var(--ease-out);
}

.faq__item[open] .faq__summary::after {
  transform: rotate(225deg);
  margin-top: 0.45rem;
}

.faq__q {
  flex: 1;
  min-width: 0;
  padding-right: 0.25rem;
}

.faq__summary:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq__answer {
  margin: 0;
  padding: 0 1.35rem 1.15rem;
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

.faq__answer a {
  color: var(--cobalt);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq__answer a:hover {
  color: #7a9eff;
}

/* CTA band */
.section--cta {
  padding-bottom: 3rem;
}

.cta {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--stroke);
  background:
    linear-gradient(135deg, rgba(77, 124, 255, 0.12) 0%, transparent 45%),
    var(--surface);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.cta__inner {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .cta__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2.25rem 2.5rem;
    gap: 2rem;
  }
}

.cta__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 650;
  color: #fff;
}

.cta__text {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
  max-width: 46ch;
}

.cta__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-shrink: 0;
  gap: 0.75rem;
  min-width: min(100%, 20rem);
}

@media (min-width: 720px) {
  .cta__actions {
    align-items: flex-end;
  }
}

.cta__notify-block {
  width: 100%;
}

.notify {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: stretch;
}

.notify__input {
  flex: 1 1 10rem;
  min-width: 0;
  padding: 0.65rem 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, 0.28);
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
}

.notify__input::placeholder {
  color: var(--ink-muted);
}

.notify__input:hover {
  border-color: rgba(255, 255, 255, 0.16);
}

.notify__input:focus {
  outline: none;
  border-color: rgba(77, 124, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(77, 124, 255, 0.2);
}

.notify__btn {
  flex: 0 0 auto;
}

.notify__success {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(77, 124, 255, 0.28);
  background: rgba(77, 124, 255, 0.08);
  text-align: left;
}

.notify__success-title {
  margin: 0 0 0.35rem;
  font-weight: 700;
  font-size: 0.98rem;
  color: #fff;
}

.notify__success-sub {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

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

/* Footer */
.foot {
  border-top: 1px solid var(--stroke);
  padding: 2.5rem 1.5rem 3rem;
  text-align: left;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.35));
}

.foot__inner {
  max-width: 560px;
  margin: 0 auto;
}

.foot__inner--wide {
  max-width: 1120px;
}

.foot__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 720px) {
  .foot__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
  }
}

.foot__brand-block {
  max-width: 22rem;
}

.foot__brand {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  color: #fff;
}

.foot__tagline {
  margin: 0 0 0.5rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.foot__tagline cite {
  font-style: italic;
  color: var(--ink);
}

.foot__line {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.foot__label {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

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

.foot__list a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s var(--ease-out);
}

.foot__list a:hover {
  color: #fff;
}

.foot__list a:focus-visible {
  outline: 2px solid var(--cobalt);
  outline-offset: 3px;
  border-radius: 4px;
}

.foot__fine {
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--stroke);
  font-size: 0.78rem;
  color: var(--ink-muted);
  line-height: 1.5;
  text-align: center;
}

.foot__fine cite {
  font-style: italic;
  color: var(--ink-soft);
}
