:root {
  --ink: #071225;
  --ink-soft: #26344a;
  --navy: #061123;
  --navy-2: #0a1a35;
  --navy-3: #10284d;
  --blue: #287cff;
  --blue-bright: #55a6ff;
  --blue-pale: #c7e3ff;
  --violet: #8b78ff;
  --gold: #ffc83d;
  --mint: #54e6c2;
  --red: #ff6e7c;
  --paper: #ffffff;
  --cloud: #f4f7fb;
  --cloud-2: #eaf0f7;
  --muted: #617087;
  --line: rgba(11, 28, 54, 0.12);
  --line-light: rgba(255, 255, 255, 0.13);
  --shadow-sm: 0 14px 40px rgba(6, 17, 35, 0.11);
  --shadow-lg: 0 38px 100px rgba(1, 8, 22, 0.28);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --shell: min(1400px, calc(100vw - 80px));
  --header-height: 82px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Inter, Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-is-open {
  overflow: hidden;
}

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

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

.keep-together {
  white-space: nowrap;
}

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

button,
summary {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

::selection {
  color: #041020;
  background: var(--gold);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 12px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.ambient-shell {
  position: fixed;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient-orb {
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
}

.ambient-orb--one {
  top: 18%;
  right: -280px;
  background: var(--blue);
}

.ambient-orb--two {
  top: 56%;
  left: -340px;
  background: var(--violet);
}

.ambient-grid {
  position: absolute;
  inset: 0;
  opacity: 0.018;
  background-image:
    linear-gradient(rgba(7, 18, 37, 0.9) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 18, 37, 0.9) 1px, transparent 1px);
  background-size: 64px 64px;
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow--blue {
  color: #1b6de1;
}

.eyebrow__signal {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(84, 230, 194, 0.12);
}

.eyebrow__signal::after {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(84, 230, 194, 0.6);
  border-radius: inherit;
  content: "";
  animation: signal-pulse 2.6s ease-out infinite;
}

.product-label {
  margin: 0 0 14px;
  color: #2373e5;
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 740;
  line-height: 1;
  transition:
    color 240ms ease,
    background 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button--small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 13px;
}

.button--primary {
  color: #031020;
  background: linear-gradient(135deg, #fbd34f 0%, #ffb82e 100%);
  box-shadow: 0 18px 44px rgba(255, 191, 48, 0.22);
}

.button--primary:hover {
  box-shadow: 0 22px 56px rgba(255, 191, 48, 0.3);
}

.button--light {
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.12);
}

.button--light:hover {
  background: #f6f9fd;
}

.button--ghost {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
}

.button--dark {
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 18px 44px rgba(6, 17, 35, 0.18);
}

.button--dark:hover {
  background: #112543;
}

.button--wide {
  width: 100%;
}

.play-dot {
  display: inline-flex;
  width: 27px;
  height: 27px;
  align-items: center;
  justify-content: center;
  padding-left: 2px;
  border-radius: 50%;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  font-size: 9px;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--paper);
  font-size: 14px;
  font-weight: 720;
  transition: gap 240ms var(--ease), border-color 240ms ease;
}

.arrow-link:hover {
  gap: 20px;
  border-color: rgba(255, 255, 255, 0.7);
}

.arrow-link--dark {
  color: var(--ink);
  border-color: rgba(7, 18, 37, 0.18);
}

.arrow-link--dark:hover {
  border-color: rgba(7, 18, 37, 0.7);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  color: var(--paper);
  transition:
    height 260ms var(--ease),
    color 260ms ease,
    background 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  height: 70px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(5, 15, 31, 0.82);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(22px) saturate(150%);
}

.site-header__inner {
  display: flex;
  width: var(--shell);
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  font-size: 15.5px;
  font-weight: 720;
  letter-spacing: -0.018em;
}

.brand__mark {
  position: relative;
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: #081a35;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__name {
  display: grid;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}

.brand__name strong,
.brand__name small {
  display: block;
  line-height: 1;
}

.brand__name strong {
  font-size: 17px;
  font-weight: 720;
  letter-spacing: -0.018em;
}

.brand__name small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 9.5px;
  font-weight: 650;
  letter-spacing: 0.045em;
}

.brand--header .brand__mark {
  width: 66px;
  height: 55px;
  flex-basis: 66px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand--header .brand__mark img {
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.22));
}

.brand--header .brand__mark {
  transition:
    transform 220ms var(--ease);
}

@media (hover: hover) {
  .brand--header:hover .brand__mark {
    transform: translateY(-1px);
  }
}

.site-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
}

.site-nav__links,
.site-nav__actions {
  display: flex;
  align-items: center;
}

.site-nav__links {
  gap: 26px;
}

.site-nav__links a,
.text-link {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 620;
  transition: color 180ms ease;
}

.site-nav__links a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.site-nav__links a:hover,
.text-link:hover {
  color: var(--paper);
}

.site-nav__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav__actions {
  gap: 20px;
}

.nav-toggle {
  display: none;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 9px 0 9px 14px;
  color: var(--paper);
  background: transparent;
  cursor: pointer;
}

.nav-toggle__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-toggle__icon {
  position: relative;
  width: 24px;
  height: 18px;
}

.nav-toggle__icon i {
  position: absolute;
  right: 0;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease, top 220ms ease;
}

.nav-toggle__icon i:first-child {
  top: 5px;
}

.nav-toggle__icon i:last-child {
  top: 12px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon i:first-child {
  top: 9px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon i:last-child {
  top: 9px;
  transform: rotate(-45deg);
}

.launch-hero {
  position: relative;
  display: grid;
  min-height: 940px;
  grid-template-columns: minmax(560px, 0.95fr) minmax(560px, 1.05fr);
  align-items: center;
  gap: clamp(44px, 4vw, 72px);
  overflow: hidden;
  padding: calc(var(--header-height) + 78px) max(40px, calc((100vw - 1400px) / 2)) 92px;
  color: var(--paper);
  background:
    radial-gradient(circle at 70% 44%, rgba(41, 123, 255, 0.2), transparent 31%),
    radial-gradient(circle at 92% 5%, rgba(140, 120, 255, 0.16), transparent 30%),
    linear-gradient(145deg, #051022 0%, #081830 46%, #061123 100%);
}

.launch-hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to right, black, transparent 75%);
}

.launch-hero::after {
  position: absolute;
  right: -12%;
  bottom: -38%;
  width: 850px;
  height: 850px;
  border: 1px solid rgba(85, 166, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 110px rgba(85, 166, 255, 0.025),
    0 0 0 230px rgba(85, 166, 255, 0.018);
  content: "";
}

.launch-hero__copy {
  position: relative;
  z-index: 4;
  max-width: 700px;
}

.launch-hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(58px, 5vw, 88px);
  font-weight: 640;
  letter-spacing: -0.04em;
  line-height: 1.02;
  text-wrap: balance;
}

.hero-heading__line {
  display: block;
  text-wrap: balance;
}

.hero-heading__line + .hero-heading__line {
  margin-top: 0.1em;
}

.gradient-type {
  padding-bottom: 0.06em;
  color: transparent;
  background: linear-gradient(105deg, #ffffff 5%, #9fcdff 53%, #b7aaff 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.launch-hero__lead {
  max-width: 54ch;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(18px, 1.35vw, 20px);
  letter-spacing: -0.01em;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.hero-actions--center {
  justify-content: center;
}

.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.045);
  font-size: 12px;
  backdrop-filter: blur(14px);
}

.hero-proof b {
  color: rgba(255, 255, 255, 0.96);
  font-weight: 720;
}

.hero-proof__divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.2);
}

.launch-stage {
  --stage-x: 0px;
  --stage-y: 0px;
  position: relative;
  z-index: 3;
  width: min(760px, 53vw);
  height: 680px;
  justify-self: end;
  transform: translate3d(var(--stage-x), var(--stage-y), 0);
  transition: transform 220ms var(--ease);
}

.stage-glow {
  position: absolute;
  top: 70px;
  left: 130px;
  width: 510px;
  height: 510px;
  border-radius: 50%;
  background: rgba(35, 114, 226, 0.27);
  filter: blur(90px);
  animation: breathe 6s ease-in-out infinite alternate;
}

.desktop-shell {
  position: absolute;
  top: 108px;
  right: 124px;
  width: 690px;
  height: 458px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 25px;
  background: rgba(7, 18, 37, 0.78);
  box-shadow:
    0 55px 110px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: perspective(1300px) rotateY(6deg) rotateX(1deg);
  backdrop-filter: blur(22px);
}

.desktop-shell__bar {
  display: flex;
  height: 39px;
  align-items: center;
  gap: 6px;
  padding: 0 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.035);
  font-size: 8px;
}

.desktop-shell__bar > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.desktop-shell__bar > span:first-child {
  background: rgba(255, 110, 124, 0.8);
}

.desktop-shell__bar > span:nth-child(2) {
  background: rgba(255, 200, 61, 0.8);
}

.desktop-shell__bar > span:nth-child(3) {
  background: rgba(84, 230, 194, 0.75);
}

.desktop-shell__bar b {
  margin-left: 15px;
  font-weight: 600;
}

.desktop-shell__bar em {
  margin-left: auto;
  color: var(--mint);
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-shell__body {
  display: flex;
  height: calc(100% - 39px);
}

.mock-sidebar {
  display: flex;
  width: 56px;
  flex: 0 0 56px;
  align-items: center;
  flex-direction: column;
  gap: 21px;
  padding-top: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(3, 11, 24, 0.48);
}

.mock-sidebar__brand {
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  margin-bottom: 9px;
  border-radius: 9px;
  color: var(--navy);
  background: var(--gold);
  font-size: 8px;
  font-weight: 850;
}

.mock-sidebar i {
  display: block;
  width: 15px;
  height: 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 5px;
}

.mock-sidebar i.is-active {
  border-color: rgba(85, 166, 255, 0.8);
  background: rgba(85, 166, 255, 0.22);
  box-shadow: 0 0 0 7px rgba(85, 166, 255, 0.06);
}

.mock-dashboard {
  flex: 1;
  padding: 28px 25px 20px;
}

.mock-dashboard__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.mock-dashboard__heading small,
.mock-dashboard__heading strong {
  display: block;
}

.mock-dashboard__heading small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mock-dashboard__heading strong {
  color: rgba(255, 255, 255, 0.95);
  font-size: 17px;
  letter-spacing: -0.03em;
}

.mock-dashboard__heading > span {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--paper);
  font-size: 7px;
  font-weight: 750;
}

.mock-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 20px;
}

.mock-metrics article,
.mock-week,
.mock-readiness {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
}

.mock-metrics article {
  min-height: 68px;
  padding: 12px;
  border-radius: 12px;
}

.mock-metrics small,
.mock-metrics strong,
.mock-metrics em {
  display: block;
}

.mock-metrics small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 6px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mock-metrics strong {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.93);
  font-size: 11px;
}

.mock-metrics em {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 6px;
  font-style: normal;
}

.mock-dashboard__grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr;
  gap: 9px;
  margin-top: 10px;
}

.mock-week,
.mock-readiness {
  min-height: 209px;
  padding: 14px;
  border-radius: 14px;
}

.mock-card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.88);
  font-size: 8px;
}

.mock-card-title span {
  color: var(--blue-bright);
  font-size: 6px;
}

.week-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  margin: 13px 0 16px;
}

.week-row b {
  display: flex;
  height: 41px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 5px;
  font-weight: 650;
}

.week-row b i {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 9px;
  font-style: normal;
}

.week-row b.is-today {
  color: #9dccff;
  background: rgba(40, 124, 255, 0.18);
}

.event-line {
  display: grid;
  grid-template-columns: 27px 4px 1fr;
  align-items: start;
  gap: 9px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 7px;
}

.event-line time {
  color: rgba(255, 255, 255, 0.38);
  font-size: 6px;
}

.event-line__mark {
  width: 3px;
  height: 26px;
  border-radius: 3px;
  background: var(--blue);
}

.event-line__mark--gold {
  background: var(--gold);
}

.event-line b,
.event-line small {
  display: block;
}

.event-line b {
  line-height: 1.1;
}

.event-line small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 6px;
}

.mock-readiness {
  text-align: center;
}

.readiness-ring {
  position: relative;
  display: flex;
  width: 82px;
  height: 82px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 15px auto 9px;
  border: 7px solid rgba(255, 255, 255, 0.07);
  border-top-color: var(--mint);
  border-right-color: var(--mint);
  border-radius: 50%;
  transform: rotate(25deg);
}

.readiness-ring b,
.readiness-ring span {
  transform: rotate(-25deg);
}

.readiness-ring b {
  color: var(--paper);
  font-size: 15px;
  line-height: 1;
}

.readiness-ring span {
  color: rgba(255, 255, 255, 0.38);
  font-size: 6px;
}

.avatar-row {
  display: flex;
  justify-content: center;
}

.avatar-row i {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  margin-left: -4px;
  border: 2px solid #101f39;
  border-radius: 50%;
  color: var(--paper);
  background: #284d7b;
  font-size: 5px;
  font-style: normal;
}

.avatar-row i:nth-child(2) {
  background: #6d55a9;
}

.avatar-row i:nth-child(3) {
  background: #a16d2c;
}

.avatar-row i:nth-child(4) {
  background: #287469;
}

.mock-readiness p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.34);
  font-size: 6px;
  line-height: 1.4;
}

.phone-frame {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border: 7px solid #0b1220;
  border-radius: 42px;
  background: #0b1220;
  box-shadow:
    0 48px 90px rgba(0, 0, 0, 0.44),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.phone-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 34px;
  content: "";
  pointer-events: none;
}

.phone-frame picture,
.phone-frame img {
  width: 100%;
  height: 100%;
}

.phone-frame img {
  object-fit: cover;
}

.phone-frame__sensor {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 50%;
  width: 35%;
  height: 17px;
  border-radius: 999px;
  background: #03060b;
  transform: translateX(-50%);
}

.phone-frame--hero {
  position: absolute;
  top: 34px;
  right: 4px;
  width: 258px;
  height: 561px;
  transform: rotate(2.6deg);
  animation: hero-phone-float 6.5s ease-in-out infinite alternate;
}

.float-card {
  position: absolute;
  z-index: 5;
  min-width: 170px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  color: var(--paper);
  background: rgba(12, 27, 51, 0.78);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px) saturate(140%);
}

.float-card span,
.float-card strong,
.float-card small {
  display: block;
}

.float-card span {
  color: var(--blue-pale);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.float-card strong {
  margin-top: 5px;
  font-size: 12px;
}

.float-card small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 8px;
}

.float-card--weather {
  top: 22px;
  right: 228px;
  animation: card-float 5.8s 0.4s ease-in-out infinite alternate;
}

.float-card--change {
  right: 179px;
  bottom: 50px;
  min-width: 216px;
  animation: card-float 6.4s 1.2s ease-in-out infinite alternate-reverse;
}

.float-card .float-card__status {
  display: inline-flex;
  width: auto;
  padding: 3px 7px;
  border-radius: 999px;
  color: var(--mint);
  background: rgba(84, 230, 194, 0.1);
}

.float-card--family {
  bottom: 7px;
  left: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: card-float 7s 0.7s ease-in-out infinite alternate;
}

.mini-avatars {
  display: flex;
}

.mini-avatars i {
  display: flex;
  width: 27px;
  height: 27px;
  align-items: center;
  justify-content: center;
  margin-right: -8px;
  border: 2px solid #10223e;
  border-radius: 50%;
  color: var(--paper);
  background: #2d65a4;
  font-size: 8px;
  font-style: normal;
}

.mini-avatars i:nth-child(2) {
  background: #7c61b0;
}

.mini-avatars i:nth-child(3) {
  background: #bd7b30;
}

.stage-note {
  position: absolute;
  right: 4px;
  bottom: 7px;
  margin: 0;
  color: rgba(255, 255, 255, 0.26);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  bottom: 36px;
  left: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 1px;
  height: 36px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.scroll-cue i::after {
  position: absolute;
  top: -100%;
  left: 0;
  width: 1px;
  height: 65%;
  background: rgba(255, 255, 255, 0.75);
  content: "";
  animation: scroll-line 2.2s ease-in-out infinite;
}

.family-case-section {
  position: relative;
  overflow: hidden;
  padding: 145px 0 135px;
  background:
    radial-gradient(circle at 10% 8%, rgba(84, 230, 194, 0.13), transparent 27%),
    radial-gradient(circle at 90% 16%, rgba(40, 124, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #eef4fa 100%);
}

.family-case-section::before {
  position: absolute;
  top: 65px;
  right: -220px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(40, 124, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(40, 124, 255, 0.025),
    0 0 0 190px rgba(40, 124, 255, 0.018);
  content: "";
}

.family-case-shell {
  position: relative;
  z-index: 1;
}

.family-case-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.52fr);
  align-items: end;
  gap: clamp(55px, 7vw, 110px);
}

.family-case-intro h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(58px, 6vw, 94px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.family-case-intro__lead {
  max-width: 780px;
  margin: 30px 0 0;
  color: #53647b;
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.62;
}

.family-story-listen {
  padding: 24px;
  border: 1px solid rgba(40, 124, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 22px 60px rgba(7, 18, 37, 0.08);
  backdrop-filter: blur(18px);
}

.family-story-listen .pricing-audio-button--overview {
  max-width: none;
  margin: 0;
}

.family-story-transcript p {
  max-height: 190px;
  overflow-y: auto;
}

.family-cast {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 62px;
}

.family-person {
  display: flex;
  min-width: 0;
  min-height: 74px;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border: 1px solid rgba(7, 18, 37, 0.1);
  border-radius: 18px;
  cursor: pointer;
  color: #293b54;
  background: rgba(255, 255, 255, 0.76);
  text-align: left;
  box-shadow: 0 10px 28px rgba(7, 18, 37, 0.045);
  transition:
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--ease);
}

.family-person:hover {
  border-color: rgba(40, 124, 255, 0.34);
  transform: translateY(-2px);
}

.family-person.is-active {
  border-color: rgba(40, 124, 255, 0.62);
  background: var(--paper);
  box-shadow: 0 16px 38px rgba(40, 124, 255, 0.13);
}

.family-person__avatar {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 14px;
  color: #0c2847;
  background: #dceaf8;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.family-person__avatar--all {
  color: var(--paper);
  background: linear-gradient(135deg, #0b2547, #167c9a);
}

.family-person__avatar--noah,
.family-source--noah > span,
.family-calendar-event--noah > span {
  color: #0f55a6;
  background: #dcebff;
}

.family-person__avatar--nixon,
.family-source--nixon > span,
.family-calendar-event--nixon > span {
  color: #795700;
  background: #fff0be;
}

.family-person__avatar--noel,
.family-source--noel > span,
.family-calendar-event--noel > span {
  color: #6548b8;
  background: #ebe4ff;
}

.family-person__avatar--neve,
.family-source--neve > span,
.family-calendar-event--neve > span {
  color: #a03b69;
  background: #ffe0ed;
}

.family-person__avatar--parents,
.family-source--parents > span,
.family-calendar-event--parents > span,
.family-calendar-event--dad > span {
  color: #08715e;
  background: #d9f5ed;
}

.family-source--work > span {
  color: #52647b;
  background: #e6ebf1;
}

.family-person > span:last-child {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.family-person b {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.family-person small {
  overflow: hidden;
  color: #748399;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.family-case-demo {
  display: grid;
  grid-template-columns: minmax(310px, 0.78fr) minmax(190px, 0.38fr) minmax(430px, 1fr);
  align-items: stretch;
  gap: 14px;
  margin-top: 14px;
}

.family-source-panel,
.family-hub-panel {
  min-width: 0;
  padding: 27px;
  border: 1px solid rgba(7, 18, 37, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 64px rgba(7, 18, 37, 0.08);
}

.family-demo-heading {
  display: flex;
  min-height: 50px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}

.family-demo-heading span {
  display: block;
  margin-bottom: 4px;
  color: #73849a;
  font-size: 8px;
  font-weight: 820;
  letter-spacing: 0.15em;
}

.family-demo-heading h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.family-demo-heading > b {
  padding: 7px 10px;
  border-radius: 999px;
  color: #486079;
  background: #edf2f7;
  font-size: 9px;
  white-space: nowrap;
}

.family-demo-heading--hub > b {
  color: #076b59;
  background: #ddf7f0;
}

.family-source-list,
.family-calendar-list {
  display: grid;
  gap: 7px;
  margin-top: 17px;
}

.family-source {
  display: grid;
  min-width: 0;
  min-height: 49px;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 7px 9px;
  border: 1px solid rgba(7, 18, 37, 0.07);
  border-radius: 13px;
  background: #f8fafc;
  transition: opacity 180ms ease, transform 180ms var(--ease);
}

.family-source > span,
.family-calendar-event > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 10px;
  font-size: 8px;
  font-weight: 850;
}

.family-source > div,
.family-calendar-event > div {
  display: grid;
  min-width: 0;
  gap: 1px;
}

.family-source b,
.family-calendar-event b {
  overflow: hidden;
  color: #23364e;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.family-source small,
.family-calendar-event small {
  overflow: hidden;
  color: #7a899d;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.family-source em {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: #5f7289;
  background: #e7edf4;
  font-size: 8px;
  font-style: normal;
  font-weight: 820;
}

.family-case-bridge {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  padding: 24px 15px;
  border-radius: 28px;
  color: var(--paper);
  background:
    radial-gradient(circle at 50% 25%, rgba(40, 124, 255, 0.25), transparent 40%),
    linear-gradient(165deg, #08162c, #0c2947);
  box-shadow: 0 24px 64px rgba(7, 18, 37, 0.15);
}

.family-bridge-address {
  display: flex;
  max-width: 100%;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  font-size: 8px;
}

.family-bridge-address span {
  color: var(--mint);
  font-size: 11px;
  font-weight: 850;
}

.family-bridge-address b {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.family-bridge-track {
  position: relative;
  width: 1px;
  height: 58px;
  margin: 10px 0;
  background: rgba(255, 255, 255, 0.16);
}

.family-bridge-track i {
  position: absolute;
  top: -7px;
  left: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 14px rgba(84, 230, 194, 0.8);
  animation: family-signal 2.8s ease-in-out infinite;
}

.family-bridge-track i:nth-child(2) {
  animation-delay: 0.85s;
}

.family-bridge-track i:nth-child(3) {
  animation-delay: 1.7s;
}

.family-bridge-machine {
  display: flex;
  width: 100%;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.family-bridge-machine img {
  width: 62px;
  height: 52px;
  object-fit: contain;
}

.family-bridge-machine strong {
  margin: 8px 0 10px;
  font-size: 14px;
}

.family-bridge-machine span {
  width: 100%;
  padding: 5px 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.53);
  font-size: 7px;
}

.family-case-bridge > p {
  max-width: 15ch;
  margin: 18px 0 0;
  color: var(--mint);
  font-size: 9px;
  font-weight: 730;
  line-height: 1.4;
  text-align: center;
}

.family-hub-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 17px;
}

.family-hub-summary > span {
  display: flex;
  min-height: 49px;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(7, 18, 37, 0.07);
  border-radius: 13px;
  background: #f7fafc;
}

.family-hub-summary i {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  place-items: center;
  border-radius: 9px;
  color: #0d6d5a;
  background: #dcf6ef;
  font-size: 10px;
  font-style: normal;
  font-weight: 840;
}

.family-hub-summary small {
  color: #64758b;
  font-size: 8px;
  font-weight: 720;
}

.family-calendar-event {
  display: grid;
  min-width: 0;
  min-height: 51px;
  grid-template-columns: 38px 32px 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 7px 9px;
  border: 1px solid rgba(7, 18, 37, 0.07);
  border-radius: 13px;
  background: #fbfcfe;
  transition: opacity 180ms ease, transform 180ms var(--ease);
}

.family-calendar-event time {
  color: #51647d;
  font-size: 9px;
  font-weight: 760;
}

.family-calendar-event em {
  padding: 5px 7px;
  border-radius: 999px;
  color: #607289;
  background: #edf2f7;
  font-size: 6px;
  font-style: normal;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.family-calendar-event[data-family-members="dad"] em {
  color: #67582f;
  background: #fff3c9;
}

.family-case-payoff {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.family-case-payoff article {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 13px;
  padding: 21px;
  border: 1px solid rgba(7, 18, 37, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
}

.family-case-payoff article > span {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 15px;
  color: #0d6f5c;
  background: #dcf5ee;
  font-size: 19px;
  font-weight: 800;
}

.family-case-payoff b {
  font-size: 13px;
}

.family-case-payoff p {
  margin: 5px 0 0;
  color: #697990;
  font-size: 10px;
  line-height: 1.5;
}

.family-case-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@keyframes family-signal {
  0% {
    top: -7px;
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  78% {
    opacity: 1;
  }
  100% {
    top: calc(100% + 2px);
    opacity: 0;
  }
}

@media (max-width: 1180px) {
  .family-case-intro {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 35px;
  }

  .family-story-listen {
    max-width: 640px;
  }

  .family-cast {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .family-case-demo {
    grid-template-columns: 1fr;
  }

  .family-case-bridge {
    min-height: 190px;
    display: grid;
    grid-template-columns: minmax(160px, auto) minmax(100px, 0.5fr) minmax(180px, auto);
    gap: 20px;
  }

  .family-bridge-track {
    width: 100%;
    height: 1px;
    margin: 0;
  }

  .family-bridge-track i {
    top: -3px;
    left: -7px;
    animation-name: family-signal-horizontal;
  }

  .family-bridge-machine span {
    display: none;
  }

  .family-case-bridge > p {
    display: none;
  }

  .family-source-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .family-case-payoff {
    grid-template-columns: 1fr;
  }
}

@keyframes family-signal-horizontal {
  0% {
    left: -7px;
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  78% {
    opacity: 1;
  }
  100% {
    left: calc(100% + 2px);
    opacity: 0;
  }
}

@media (max-width: 760px) {
  .family-case-section {
    padding: 100px 0 92px;
  }

  .family-case-intro h2 {
    font-size: clamp(52px, 14vw, 68px);
  }

  .family-case-intro__lead {
    margin-top: 23px;
    font-size: 17px;
  }

  .family-story-listen {
    padding: 18px;
    border-radius: 20px;
  }

  .family-cast {
    display: flex;
    width: calc(100vw - 14px);
    gap: 9px;
    margin-top: 44px;
    overflow-x: auto;
    padding: 0 14px 12px 0;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
  }

  .family-person {
    min-width: 175px;
    flex: 0 0 175px;
    scroll-snap-align: start;
  }

  .family-source-panel,
  .family-hub-panel,
  .family-case-bridge {
    padding: 21px 18px;
    border-radius: 22px;
  }

  .family-source-list {
    grid-template-columns: 1fr;
  }

  .family-case-bridge {
    min-height: 220px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .family-bridge-track {
    width: 1px;
    height: 46px;
    justify-self: center;
  }

  .family-bridge-track i {
    top: -7px;
    left: -3px;
    animation-name: family-signal;
  }

  .family-hub-summary {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .family-calendar-event {
    grid-template-columns: 37px 31px minmax(0, 1fr);
  }

  .family-calendar-event em {
    display: none;
  }

  .family-case-payoff article {
    padding: 18px;
  }
}

@media (max-width: 430px) {
  .family-case-intro h2 {
    font-size: 49px;
  }

  .family-case-intro__lead {
    font-size: 16px;
  }

  .family-hub-summary > span {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .family-calendar-event {
    grid-template-columns: 34px 30px minmax(0, 1fr);
    gap: 7px;
  }
}

/* Family story v2: character-led Family Hub walkthrough. */
.family-story-v3 .family-case-intro {
  align-items: center;
}

.family-story-v3 .family-case-intro__lead {
  max-width: 850px;
}

.family-guided-tour {
  position: sticky;
  top: 74px;
  z-index: 12;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px 20px;
  margin-top: 30px;
  padding: 13px 16px 9px;
  overflow: hidden;
  border: 1px solid rgba(7, 18, 37, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 42px rgba(7, 18, 37, 0.12);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.family-guided-tour__copy {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
}

.family-guided-tour__copy > div {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.family-guided-tour__copy b {
  color: #18304c;
  font-size: 12px;
}

.family-guided-tour__copy small {
  overflow: hidden;
  color: #6c7d93;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.family-guided-tour__pulse {
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border-radius: 50%;
  background: #2677db;
  box-shadow: 0 0 0 6px rgba(38, 119, 219, 0.1);
}

.family-story-v3.is-narrating .family-guided-tour__pulse {
  background: #0b937a;
  box-shadow: 0 0 0 6px rgba(11, 147, 122, 0.12);
  animation: family-tour-pulse 1.7s ease-in-out infinite;
}

.family-story-v3.is-tour-paused .family-guided-tour__pulse {
  background: #d39010;
  box-shadow: 0 0 0 6px rgba(211, 144, 16, 0.12);
  animation: none;
}

.family-guided-tour button {
  padding: 8px 12px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  color: #fff;
  background: #156f61;
  font-size: 9px;
  font-weight: 820;
}

.family-guided-tour button[hidden] {
  display: none;
}

.family-guided-tour__track {
  position: relative;
  display: block;
  height: 3px;
  grid-column: 1 / -1;
  overflow: hidden;
  border-radius: 999px;
  background: #e5ebf2;
}

.family-guided-tour__track i {
  display: block;
  width: var(--family-tour-progress, 0%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2677db, #13a087);
  transition: width 220ms linear;
}

.family-introduction-stage,
.family-hub-story {
  position: relative;
  scroll-margin-top: 150px;
  margin-top: 60px;
  padding: clamp(28px, 3vw, 46px);
  border: 1px solid rgba(7, 18, 37, 0.1);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 26px 76px rgba(7, 18, 37, 0.08);
}

.family-stage-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.family-stage-heading > div > span {
  display: block;
  margin-bottom: 8px;
  color: #2677db;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.family-stage-heading h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.045em;
}

.family-stage-heading > p {
  max-width: 500px;
  margin: 0;
  color: #66778d;
  font-size: 14px;
  line-height: 1.55;
}

.family-character-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 35px;
}

.family-character {
  --character-color: #347bd4;
  --character-light: #e4efff;
  --character-skin: #d7a680;
  --character-hair: #473225;
  display: grid;
  min-width: 0;
  gap: 12px;
  padding: 13px 13px 15px;
  border: 1px solid rgba(7, 18, 37, 0.09);
  border-radius: 22px;
  cursor: pointer;
  color: #1c3049;
  background: #f8fafc;
  text-align: left;
  box-shadow: 0 8px 20px rgba(7, 18, 37, 0.04);
  transition: transform 240ms var(--ease), border-color 240ms ease, box-shadow 240ms ease, opacity 240ms ease;
}

.family-character--nixon {
  --character-color: #d39811;
  --character-light: #fff2c8;
  --character-skin: #bc805c;
  --character-hair: #39271d;
}

.family-character--noel {
  --character-color: #7656d1;
  --character-light: #eee8ff;
  --character-skin: #d2a17e;
  --character-hair: #6d4a31;
}

.family-character--neve {
  --character-color: #c34a80;
  --character-light: #ffe5f0;
  --character-skin: #d7a785;
  --character-hair: #765037;
}

.family-character--mom {
  --character-color: #128670;
  --character-light: #ddf7ef;
  --character-skin: #cc9670;
  --character-hair: #513426;
}

.family-character--dad {
  --character-color: #23677f;
  --character-light: #dceff4;
  --character-skin: #c78f68;
  --character-hair: #30251f;
}

.family-character:hover,
.family-character.is-active {
  border-color: color-mix(in srgb, var(--character-color), white 30%);
  transform: translateY(-6px);
  box-shadow: 0 20px 42px color-mix(in srgb, var(--character-color), transparent 82%);
}

.family-story-v3.is-narrating .family-character:not(.is-active) {
  opacity: 0.48;
}

.family-character__portrait {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 17px;
  background-image: url("/assets/images/smith-family-editorial-cast-v3.png");
  background-repeat: no-repeat;
  background-size: 300% 200%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.36);
}

.family-character--noah .family-character__portrait { background-position: 0 0; }
.family-character--nixon .family-character__portrait { background-position: 50% 0; }
.family-character--noel .family-character__portrait { background-position: 100% 0; }
.family-character--neve .family-character__portrait { background-position: 0 100%; }
.family-character--mom .family-character__portrait { background-position: 50% 100%; }
.family-character--dad .family-character__portrait { background-position: 100% 100%; }

.family-character.is-active .family-character__portrait {
  animation: family-character-pop 520ms var(--ease);
}

.family-character > span:last-child {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.family-character b {
  font-size: 13px;
}

.family-character small {
  overflow: hidden;
  color: #73839a;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.family-character-spotlight {
  display: grid;
  min-height: 150px;
  grid-template-columns: 110px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  margin-top: 18px;
  padding: 24px 30px;
  border-radius: 24px;
  color: var(--paper);
  background:
    radial-gradient(circle at 85% 20%, rgba(84, 230, 194, 0.17), transparent 36%),
    linear-gradient(135deg, #07182f, #0a3d59);
}

.family-character-spotlight__number {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  color: var(--mint);
  background: rgba(255, 255, 255, 0.07);
  font-size: 31px;
  font-weight: 820;
}

.family-character-spotlight > div > p:first-child {
  margin: 0 0 7px;
  color: var(--mint);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.family-character-spotlight h3 {
  margin: 0;
  font-size: clamp(23px, 2.5vw, 36px);
  letter-spacing: -0.035em;
}

.family-character-spotlight > div > p:last-child {
  max-width: 900px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.55;
}

.family-hub-story {
  overflow: hidden;
  border: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 10% 0%, rgba(40, 124, 255, 0.28), transparent 34%),
    radial-gradient(circle at 100% 25%, rgba(84, 230, 194, 0.13), transparent 28%),
    #06152a;
}

.family-stage-heading--hub > div > span {
  color: var(--mint);
}

.family-stage-heading--hub > p {
  color: rgba(255, 255, 255, 0.6);
}

.family-free-inbox-callout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  padding: 19px 22px;
  border: 1px solid rgba(255, 193, 43, 0.42);
  border-radius: 20px;
  background: linear-gradient(100deg, rgba(255, 193, 43, 0.17), rgba(255, 255, 255, 0.07));
}

.family-free-inbox-callout__badge {
  padding: 8px 10px;
  border-radius: 999px;
  color: #09182c;
  background: #ffc12b;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.family-free-inbox-callout > div {
  display: grid;
  gap: 4px;
}

.family-free-inbox-callout b {
  font-size: 14px;
}

.family-free-inbox-callout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 10px;
  line-height: 1.45;
}

.family-free-inbox-callout p strong {
  color: #fff;
}

.family-free-inbox-callout > em {
  max-width: 180px;
  color: #ffc12b;
  font-size: 10px;
  font-style: normal;
  font-weight: 760;
  line-height: 1.4;
  text-align: right;
}

.family-tuesday-storyline {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(84, 230, 194, 0.2);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
}

.family-tuesday-storyline article {
  display: grid;
  min-width: 0;
  grid-template-columns: 31px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.family-tuesday-storyline article > span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 10px;
  color: #06213c;
  background: var(--mint);
  font-size: 10px;
  font-weight: 900;
}

.family-tuesday-storyline article > div {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.family-tuesday-storyline b {
  font-size: 10px;
}

.family-tuesday-storyline small {
  color: rgba(255, 255, 255, 0.54);
  font-size: 8px;
  line-height: 1.35;
}

.family-tuesday-storyline > i {
  color: #ffc12b;
  font-size: 16px;
  font-style: normal;
}

.family-feature-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-top: 24px;
  scroll-margin-top: 12px;
}

.family-feature-tabs button {
  display: grid;
  min-width: 0;
  min-height: 78px;
  place-items: center;
  gap: 6px;
  padding: 12px 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 15px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.055);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 800;
  transition: border-color 200ms ease, color 200ms ease, background 200ms ease, transform 200ms var(--ease);
}

.family-feature-tabs button span {
  font-size: 21px;
}

.family-story-cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  margin-top: 24px;
  padding: clamp(24px, 3.5vw, 44px);
  border: 1px solid rgba(255, 193, 43, 0.42);
  border-radius: 28px;
  color: var(--paper);
  background:
    radial-gradient(circle at 88% 10%, rgba(84, 230, 194, 0.18), transparent 32%),
    linear-gradient(135deg, #102d54 0%, #154b67 100%);
  box-shadow: 0 26px 70px rgba(5, 25, 48, 0.18);
  scroll-margin-top: 92px;
}

.family-story-cta__mark {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border-radius: 22px;
  color: #102d54;
  background: var(--sun);
  font-size: 28px;
  box-shadow: 0 14px 34px rgba(255, 193, 43, 0.24);
}

.family-story-cta__copy > span {
  display: block;
  margin-bottom: 7px;
  color: var(--mint);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.family-story-cta__copy h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 46px);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.family-story-cta__copy p {
  max-width: 720px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.family-story-cta__actions {
  display: grid;
  min-width: 245px;
  gap: 10px;
}

.family-story-cta__actions .button {
  justify-content: center;
  text-align: center;
}

.family-story-cta.is-tour-step > * {
  animation: family-tour-rise 540ms var(--ease) both;
}

.family-story-cta.is-tour-step > *:nth-child(2) {
  animation-delay: 120ms;
}

.family-story-cta.is-tour-step > *:nth-child(3) {
  animation-delay: 240ms;
}

[data-pricing-breakdown] {
  scroll-margin-top: 92px;
}

.family-feature-tabs button:hover,
.family-feature-tabs button.is-active {
  border-color: rgba(84, 230, 194, 0.55);
  color: var(--paper);
  background: rgba(84, 230, 194, 0.11);
  transform: translateY(-2px);
}

.family-feature-tabs button:focus-visible,
.family-character:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 2px;
}

.family-feature-stage {
  margin-top: 12px;
}

.family-feature-panel {
  display: grid;
  min-height: 560px;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
  align-items: center;
  gap: clamp(28px, 4vw, 70px);
  padding: clamp(28px, 4vw, 58px);
  border-radius: 24px;
  color: #182b43;
  background: #f7fafe;
}

.family-feature-panel[hidden] {
  display: none;
}

.family-feature-panel.is-active {
  animation: family-feature-enter 520ms var(--ease);
}

.family-feature-panel.is-tour-step .family-feature-copy > *,
.family-feature-panel.is-tour-step .family-product-window > *,
.family-feature-panel.is-tour-step .family-calendar-window li,
.family-feature-panel.is-tour-step .family-message-window article,
.family-feature-panel.is-tour-step .family-driver-card,
.family-feature-panel.is-tour-step .family-progress-window article,
.family-feature-panel.is-tour-step .family-connect-window article {
  animation: family-tour-rise 540ms var(--ease) both;
}

.family-feature-panel.is-tour-step .family-feature-copy > *:nth-child(2),
.family-feature-panel.is-tour-step .family-product-window > *:nth-child(2),
.family-feature-panel.is-tour-step .family-calendar-window li:nth-child(2),
.family-feature-panel.is-tour-step .family-message-window article:nth-of-type(2),
.family-feature-panel.is-tour-step .family-driver-card:nth-of-type(2),
.family-feature-panel.is-tour-step .family-progress-window article:nth-of-type(2),
.family-feature-panel.is-tour-step .family-connect-window article:nth-of-type(2) {
  animation-delay: 130ms;
}

.family-feature-panel.is-tour-step .family-feature-copy > *:nth-child(3),
.family-feature-panel.is-tour-step .family-product-window > *:nth-child(3),
.family-feature-panel.is-tour-step .family-calendar-window li:nth-child(3),
.family-feature-panel.is-tour-step .family-message-window article:nth-of-type(3) {
  animation-delay: 260ms;
}

.family-feature-panel.is-tour-step .family-calendar-window li:nth-child(4),
.family-feature-panel.is-tour-step .family-message-window article:nth-of-type(4) {
  animation-delay: 390ms;
}

.family-feature-panel.is-tour-step .family-driver-card.is-recommended,
.family-feature-panel.is-tour-step .family-personal-form button,
.family-feature-panel.is-tour-step .family-progress-stats,
.family-feature-panel.is-tour-step .family-connect-window article:last-of-type {
  animation-name: family-tour-emphasis;
}

.family-feature-copy > p:first-child {
  margin: 0 0 10px;
  color: #2474d2;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.family-feature-copy h3 {
  max-width: 570px;
  margin: 0;
  font-size: clamp(31px, 3.4vw, 52px);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.family-feature-copy > p:nth-of-type(2) {
  margin: 22px 0 0;
  color: #5f7086;
  font-size: 15px;
  line-height: 1.62;
}

.family-feature-copy ul {
  display: grid;
  gap: 10px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.family-feature-copy li {
  position: relative;
  padding-left: 27px;
  color: #40536b;
  font-size: 12px;
  line-height: 1.45;
}

.family-feature-copy li::before {
  position: absolute;
  top: -1px;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 6px;
  color: #08715e;
  background: #daf5ed;
  content: "✓";
  font-size: 9px;
  font-weight: 900;
}

.family-product-window {
  overflow: hidden;
  border: 1px solid #dce5ef;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(7, 18, 37, 0.13);
}

.family-product-window > header {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 17px 20px;
  color: #fff;
  background: linear-gradient(120deg, #0b2648, #0e6170);
}

.family-product-window > header > div {
  display: grid;
  gap: 3px;
}

.family-product-window > header span {
  color: #6be0cd;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.family-product-window > header b {
  font-size: 15px;
}

.family-product-window > header em {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.08);
  font-size: 8px;
  font-style: normal;
  font-weight: 720;
  white-space: nowrap;
}

.family-member-strip {
  display: flex;
  gap: 7px;
  padding: 13px 17px;
  border-bottom: 1px solid #e6edf4;
  background: #f7f9fc;
}

.family-member-strip span {
  display: grid;
  min-width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid #dbe4ed;
  border-radius: 10px;
  color: #617289;
  background: #fff;
  font-size: 8px;
  font-weight: 820;
}

.family-member-strip span.is-active {
  min-width: 45px;
  color: #fff;
  background: #126b79;
}

.family-calendar-window ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 7px 17px;
  list-style: none;
}

.family-calendar-window li {
  display: grid;
  grid-template-columns: 42px 32px 1fr;
  align-items: center;
  gap: 10px;
  padding: 10px 2px;
  border-bottom: 1px solid #edf1f5;
}

.family-calendar-window time {
  color: #697a90;
  font-size: 9px;
  font-weight: 750;
}

.family-calendar-window li > i,
.family-message-window article > i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 10px;
  font-size: 8px;
  font-style: normal;
  font-weight: 850;
}

.tone-noah { color: #0f55a6; background: #dcebff; }
.tone-nixon { color: #795700; background: #fff0be; }
.tone-noel { color: #6548b8; background: #ebe4ff; }
.tone-neve { color: #a03b69; background: #ffe0ed; }

.family-calendar-window li > div,
.family-message-window article > div {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.family-calendar-window li b,
.family-message-window article b {
  overflow: hidden;
  color: #263a51;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.family-calendar-window li small,
.family-message-window article small {
  color: #7a899d;
  font-size: 8px;
}

.family-calendar-window footer {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 12px 17px 16px;
}

.family-tuesday-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(170px, 0.55fr);
  align-items: stretch;
}

.family-calendar-window .family-tuesday-schedule {
  padding: 8px 13px;
}

.family-calendar-window .family-tuesday-schedule li {
  grid-template-columns: 38px 30px minmax(0, 1fr) auto;
  gap: 8px;
  padding: 9px 1px;
}

.family-tuesday-schedule li > em {
  padding: 5px 7px;
  border-radius: 999px;
  color: #62758c;
  background: #edf2f6;
  font-size: 7px;
  font-style: normal;
  font-weight: 780;
  white-space: nowrap;
}

.family-tuesday-schedule li > em.is-conflict {
  color: #9b4b00;
  background: #ffebc7;
}

.family-conflict-rail {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 18px;
  border-left: 1px solid #f0dca2;
  color: #3f3217;
  background: linear-gradient(155deg, #fff9e9, #fff1c9);
}

.family-conflict-rail__badge {
  justify-self: start;
  padding: 6px 8px;
  border-radius: 999px;
  color: #8a4700;
  background: #ffe0a4;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.family-conflict-rail > b {
  color: #402f0e;
  font-size: 14px;
  line-height: 1.2;
}

.family-conflict-rail > p {
  margin: 0;
  color: #796a4a;
  font-size: 8px;
  line-height: 1.45;
}

.family-conflict-rail > div {
  display: grid;
  gap: 1px;
  padding: 9px;
  border: 1px solid rgba(174, 112, 0, 0.17);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.56);
}

.family-conflict-rail > div span {
  color: #a45100;
  font-size: 17px;
  font-weight: 900;
}

.family-conflict-rail > div small {
  color: #887754;
  font-size: 7px;
}

.family-conflict-rail button,
.family-ride-action {
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: #147161;
  font-size: 8px;
  font-weight: 850;
}

.family-tuesday-window footer {
  align-items: center;
  color: #607289;
  background: #f7f9fc;
  font-size: 8px;
}

.family-tuesday-window footer strong {
  color: #137160;
}

.family-tuesday-window footer span {
  padding: 0;
  background: transparent;
}

.family-calendar-window footer span,
.family-personal-examples span,
.family-connect-sources span {
  padding: 6px 8px;
  border-radius: 999px;
  color: #52657d;
  background: #eef3f7;
  font-size: 7px;
  font-weight: 720;
}

.family-conflict-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  padding: 17px;
  background: #fff8e3;
}

.family-conflict-row > span {
  display: grid;
  grid-template-columns: 31px 1fr;
  column-gap: 8px;
  padding: 10px;
  border: 1px solid #f2dfaa;
  border-radius: 13px;
  background: #fff;
}

.family-conflict-row i {
  display: grid;
  width: 31px;
  height: 31px;
  grid-row: 1 / span 2;
  place-items: center;
  border-radius: 10px;
  color: #086f5d;
  background: #dcf5ee;
  font-size: 8px;
  font-style: normal;
  font-weight: 850;
}

.family-conflict-row b,
.family-driver-card b {
  color: #283b52;
  font-size: 10px;
}

.family-conflict-row small,
.family-driver-card small {
  color: #7b899b;
  font-size: 8px;
}

.family-driver-prompt {
  margin: 18px 18px 8px;
  color: #718197;
  font-size: 8px;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.family-driver-card {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 11px;
  margin: 8px 17px;
  padding: 11px;
  border: 1px solid #e2e8ef;
  border-radius: 14px;
}

.family-driver-card > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 13px;
  color: #0c6656;
  background: #ddf5ef;
  font-size: 9px;
  font-weight: 850;
}

.family-driver-card > div {
  display: grid;
  gap: 1px;
}

.family-driver-card p {
  margin: 4px 0 0;
  color: #566a82;
  font-size: 8px;
}

.family-driver-card > em {
  padding: 5px 7px;
  border-radius: 999px;
  color: #64758b;
  background: #eef2f6;
  font-size: 7px;
  font-style: normal;
  font-weight: 750;
}

.family-driver-card.is-recommended {
  border-color: #9adccb;
  background: #f3fcfa;
}

.family-driver-card.is-recommended > em {
  color: #08715e;
  background: #d9f5ed;
}

.family-ride-action {
  margin: 10px 17px 12px;
  background: linear-gradient(110deg, #126b5d, #0d8c77);
}

.family-ride-resolved {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin: 0 17px 17px;
  padding: 11px;
  border: 1px solid #94d9c8;
  border-radius: 14px;
  color: #174b40;
  background: #e8faf5;
}

.family-ride-resolved > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: #0b9278;
  font-size: 14px;
  font-weight: 900;
}

.family-ride-resolved > div {
  display: grid;
  gap: 2px;
}

.family-ride-resolved b {
  font-size: 10px;
}

.family-ride-resolved small,
.family-ride-resolved em {
  color: #55796f;
  font-size: 7px;
}

.family-ride-resolved em {
  font-style: normal;
  font-weight: 760;
}

.family-personal-form {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.family-personal-form label {
  display: grid;
  gap: 6px;
  color: #6a7a8e;
  font-size: 8px;
  font-weight: 750;
}

.family-personal-form input {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #dbe3ec;
  border-radius: 11px;
  color: #263b53;
  background: #f8fafc;
  font: inherit;
  font-size: 10px;
}

.family-personal-form > div {
  display: flex;
  gap: 7px;
}

.family-personal-form > div span {
  padding: 8px 10px;
  border: 1px solid #dce4ec;
  border-radius: 10px;
  color: #64758a;
  font-size: 8px;
}

.family-personal-form > div span.is-active {
  border-color: #83d2bf;
  color: #0a715d;
  background: #e5f8f3;
}

.family-personal-form button {
  padding: 11px 14px;
  border: 0;
  border-radius: 11px;
  color: #fff;
  background: #167263;
  font-size: 9px;
  font-weight: 800;
}

.family-personal-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0 22px 22px;
}

.family-progress-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 16px;
  background: #f7f9fc;
}

.family-progress-stats span {
  display: grid;
  gap: 3px;
  padding: 12px;
  border: 1px solid #e2e8ef;
  border-radius: 13px;
  background: #fff;
}

.family-progress-stats b {
  color: #143b63;
  font-size: 20px;
}

.family-progress-stats small {
  color: #718196;
  font-size: 8px;
}

.family-progress-window > article {
  display: grid;
  gap: 4px;
  margin: 10px 16px;
  padding: 13px;
  border: 1px solid #e2e8ef;
  border-radius: 14px;
}

.family-progress-window > article > span {
  color: #167567;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.family-progress-window > article b {
  color: #273c54;
  font-size: 11px;
}

.family-progress-window > article p {
  margin: 1px 0;
  color: #5f7188;
  font-size: 9px;
  line-height: 1.45;
}

.family-progress-window > article small {
  color: #8794a5;
  font-size: 7px;
}

.family-message-window nav {
  display: flex;
  gap: 6px;
  padding: 12px 15px;
  border-bottom: 1px solid #e7edf3;
}

.family-message-window nav span {
  padding: 6px 9px;
  border-radius: 999px;
  color: #66768b;
  background: #eef2f6;
  font-size: 7px;
  font-weight: 760;
}

.family-message-window nav span.is-active {
  color: #fff;
  background: #123c65;
}

.family-message-window article {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 10px;
  margin: 0 15px;
  padding: 12px 0;
  border-bottom: 1px solid #edf1f5;
}

.family-message-window article > em {
  color: #137260;
  font-size: 7px;
  font-style: normal;
  font-weight: 800;
}

.family-connect-window > article {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  margin: 14px 17px;
  padding: 13px;
  border: 1px solid #e1e8ef;
  border-radius: 14px;
}

.family-connect-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: #0e6857;
  background: #daf4ed;
  font-size: 14px;
  font-weight: 900;
}

.family-connect-icon--google {
  color: #fff;
  background: linear-gradient(135deg, #4285f4, #34a853 49%, #fbbc05 50%, #ea4335);
}

.family-connect-window article > div {
  display: grid;
  gap: 2px;
}

.family-connect-window article b {
  color: #293d54;
  font-size: 10px;
}

.family-connect-window article small {
  color: #718196;
  font-size: 8px;
}

.family-connect-window article > em {
  padding: 5px 7px;
  border-radius: 999px;
  color: #09725e;
  background: #def6ef;
  font-size: 7px;
  font-style: normal;
  font-weight: 780;
}

.family-connect-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 4px 17px 14px;
}

.family-connect-window > p {
  margin: 0;
  padding: 14px 17px 18px;
  border-top: 1px solid #e7edf3;
  color: #5f7188;
  font-size: 9px;
}

.family-connect-window > p b {
  color: #0c6c5a;
}

.family-case-payoff--v2 {
  margin-top: 18px;
}

@keyframes family-character-pop {
  0% { transform: scale(0.88) translateY(8px); }
  65% { transform: scale(1.04) translateY(-2px); }
  100% { transform: scale(1) translateY(0); }
}

@keyframes family-feature-enter {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes family-tour-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(0.72); }
}

@keyframes family-tour-rise {
  from { opacity: 0; transform: translateY(13px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes family-tour-emphasis {
  0% { opacity: 0; transform: translateY(13px) scale(0.97); }
  68% { opacity: 1; transform: translateY(0) scale(1.025); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1180px) {
  .family-character-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .family-feature-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .family-feature-panel {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .family-feature-copy {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .family-guided-tour {
    position: relative;
    top: auto;
    margin-top: 24px;
  }

  .family-introduction-stage,
  .family-hub-story {
    margin-top: 36px;
    padding: 21px 16px;
    border-radius: 24px;
  }

  .family-stage-heading {
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }

  .family-character-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 25px;
  }

  .family-character {
    padding: 9px 9px 12px;
    border-radius: 17px;
  }

  .family-character__portrait {
    border-radius: 13px;
  }

  .family-character-spotlight {
    grid-template-columns: 64px 1fr;
    gap: 15px;
    padding: 18px;
    border-radius: 18px;
  }

  .family-character-spotlight__number {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    font-size: 20px;
  }

  .family-character-spotlight h3 {
    font-size: 22px;
  }

  .family-character-spotlight > div > p:last-child {
    font-size: 11px;
  }

  .family-free-inbox-callout {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 17px;
  }

  .family-free-inbox-callout__badge {
    justify-self: start;
  }

  .family-free-inbox-callout > em {
    max-width: none;
    text-align: left;
  }

  .family-tuesday-storyline {
    grid-template-columns: 1fr;
  }

  .family-tuesday-storyline > i {
    padding-left: 8px;
    transform: rotate(90deg);
    transform-origin: center;
  }

  .family-feature-tabs {
    display: flex;
    width: calc(100vw - 46px);
    grid-template-columns: none;
    gap: 7px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: inline mandatory;
  }

  .family-feature-tabs button {
    min-width: 150px;
    flex: 0 0 150px;
    scroll-snap-align: start;
  }

  .family-story-cta {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .family-story-cta__mark {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    font-size: 23px;
  }

  .family-story-cta__actions {
    min-width: 0;
  }

  .family-feature-panel {
    gap: 28px;
    padding: 25px 16px 16px;
    border-radius: 19px;
  }

  .family-feature-copy h3 {
    font-size: 35px;
  }

  .family-feature-copy > p:nth-of-type(2) {
    font-size: 14px;
  }

  .family-product-window {
    border-radius: 17px;
  }

  .family-product-window > header {
    align-items: flex-start;
    flex-direction: column;
  }

  .family-conflict-row {
    grid-template-columns: 1fr;
  }

  .family-tuesday-layout {
    grid-template-columns: 1fr;
  }

  .family-conflict-rail {
    border-top: 1px solid #f0dca2;
    border-left: 0;
  }
}

@media (max-width: 430px) {
  .family-guided-tour {
    grid-template-columns: 1fr;
  }

  .family-guided-tour__copy small {
    white-space: normal;
  }

  .family-guided-tour button {
    justify-self: start;
  }

  .family-character-spotlight {
    grid-template-columns: 1fr;
  }

  .family-character-spotlight__number {
    width: 52px;
    height: 52px;
  }

  .family-progress-stats {
    gap: 5px;
  }

  .family-progress-stats span {
    padding: 9px;
  }

  .family-calendar-window .family-tuesday-schedule li {
    grid-template-columns: 36px 30px minmax(0, 1fr);
  }

  .family-tuesday-schedule li > em {
    justify-self: start;
    grid-column: 3;
  }

  .family-ride-resolved {
    grid-template-columns: 34px 1fr;
  }

  .family-ride-resolved > em {
    grid-column: 2;
  }
}

.promise-strip {
  overflow: hidden;
  color: var(--paper);
  background: #030b19;
}

.promise-track {
  display: flex;
  width: max-content;
  align-items: center;
  padding: 22px 0;
  animation: promise-drift 36s linear infinite;
}

.promise-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

.promise-group span {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 560;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.promise-group span::after {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 34px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.story-section {
  padding-top: 155px;
  padding-bottom: 160px;
}

.section-intro {
  max-width: 800px;
}

.section-intro--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-intro--center .eyebrow {
  justify-content: center;
}

.section-intro h2,
.intelligence-copy h2,
.audience-heading h2,
.identity-copy h2,
.commerce-copy h2,
.pricing-heading h2,
.faq-heading h2,
.contact-copy h2,
.closing-content h2,
.trust-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(48px, 5.2vw, 78px);
  font-weight: 640;
  letter-spacing: -0.042em;
  line-height: 1.025;
  text-wrap: balance;
}

.section-intro > p:last-child {
  max-width: 710px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.family-day {
  position: relative;
  margin-top: 76px;
  overflow: hidden;
  border: 1px solid rgba(7, 18, 37, 0.09);
  border-radius: var(--radius-lg);
  background: #f7f9fc;
  box-shadow: var(--shadow-lg);
}

.family-day::before {
  position: absolute;
  top: -240px;
  left: 12%;
  width: 620px;
  height: 420px;
  border-radius: 50%;
  background: rgba(40, 124, 255, 0.12);
  filter: blur(80px);
  content: "";
}

.family-day__topbar {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 106px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 34px;
  border-bottom: 1px solid rgba(7, 18, 37, 0.08);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(20px);
}

.family-day__topbar span,
.family-day__topbar strong {
  display: block;
}

.family-day__topbar strong {
  margin-top: 5px;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.story-control {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid rgba(7, 18, 37, 0.12);
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
  font-size: 12px;
  font-weight: 720;
  box-shadow: 0 10px 28px rgba(7, 18, 37, 0.08);
}

.story-control__icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  padding-left: 1px;
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  font-size: 8px;
}

.family-day__canvas {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 600px;
  grid-template-columns: 0.96fr 1.04fr;
}

.day-column {
  padding: 50px 58px 46px;
  border-right: 1px solid rgba(7, 18, 37, 0.08);
  background: rgba(255, 255, 255, 0.56);
}

.day-column__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 34px;
}

.day-column__header span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.day-column__header strong {
  font-size: 18px;
  letter-spacing: -0.03em;
}

.day-track {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.day-track::before {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 62px;
  width: 1px;
  background: rgba(7, 18, 37, 0.1);
  content: "";
}

.day-event {
  position: relative;
  display: grid;
  min-height: 84px;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 34px;
}

.day-event::before {
  position: absolute;
  z-index: 2;
  top: 5px;
  left: 58px;
  width: 9px;
  height: 9px;
  border: 3px solid #f7f9fc;
  border-radius: 50%;
  background: #9aa7b9;
  box-sizing: content-box;
  content: "";
}

.day-event time {
  color: #758298;
  font-size: 12px;
  font-weight: 700;
}

.day-event div {
  padding: 0 0 24px 8px;
}

.day-event b,
.day-event span {
  display: block;
}

.day-event b {
  font-size: 14px;
  letter-spacing: -0.02em;
}

.day-event span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.day-event--soccer::before {
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(40, 124, 255, 0.1);
}

.day-event--baseball::before {
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(255, 200, 61, 0.12);
}

.day-event--game::before {
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(84, 230, 194, 0.12);
}

.story-moments {
  position: relative;
  min-height: 600px;
  padding: 76px 70px;
  color: var(--paper);
  background:
    radial-gradient(circle at 78% 18%, rgba(77, 142, 255, 0.28), transparent 32%),
    linear-gradient(145deg, #09182e, #061123);
}

.story-moment {
  position: absolute;
  inset: 76px 70px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 700ms var(--ease);
}

.story-moment.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.moment-number {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
}

.moment-kicker {
  margin: 5px 0 16px;
  color: var(--blue-bright);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-moment h3 {
  max-width: 510px;
  margin: 0;
  font-size: clamp(34px, 3.2vw, 52px);
  font-weight: 620;
  letter-spacing: -0.038em;
  line-height: 1.06;
}

.story-moment div > p:last-child {
  max-width: 440px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 16px;
  line-height: 1.65;
}

.story-progress {
  position: absolute;
  z-index: 4;
  right: 70px;
  bottom: 50px;
  display: flex;
  gap: 8px;
}

.story-progress button {
  position: relative;
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.story-progress button > span {
  position: absolute;
  width: 42px;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.story-progress button > span::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--paper);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
}

.story-progress button.is-active > span::after {
  transform: scaleX(1);
}

.family-day.is-playing .story-progress button.is-active > span::after {
  animation: story-progress 5s linear forwards;
}

.placeholder-note {
  position: relative;
  z-index: 4;
  margin: 0;
  padding: 13px 34px;
  border-top: 1px solid rgba(7, 18, 37, 0.07);
  color: #657287;
  background: rgba(255, 255, 255, 0.74);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
}

.placeholder-note span {
  margin-right: 6px;
  color: var(--gold);
}

.placeholder-note--dark {
  border-top-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.58);
  background: rgba(2, 9, 21, 0.4);
}

.intelligence-section {
  position: relative;
  overflow: hidden;
  padding: 170px 0;
  color: var(--paper);
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    #061123;
  background-size: 72px 72px;
}

.intelligence-section::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(90, 163, 255, 0.55), transparent);
  content: "";
}

.intelligence-section__glow {
  position: absolute;
  top: -200px;
  right: -80px;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: rgba(50, 120, 255, 0.17);
  filter: blur(110px);
}

.intelligence-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(600px, 1.22fr);
  align-items: center;
  gap: clamp(70px, 8vw, 140px);
}

.preview-pill {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(84, 230, 194, 0.22);
  border-radius: 999px;
  color: var(--mint);
  background: rgba(84, 230, 194, 0.08);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.preview-pill--quiet {
  color: #9bcaff;
  border-color: rgba(85, 166, 255, 0.2);
  background: rgba(85, 166, 255, 0.08);
}

.intelligence-copy .eyebrow {
  gap: 14px;
}

.intelligence-copy h2 {
  color: var(--paper);
}

.intelligence-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  line-height: 1.7;
}

.intelligence-list {
  margin: 40px 0;
  padding: 0;
  list-style: none;
}

.intelligence-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: start;
  gap: 16px;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.intelligence-list li > span {
  color: #6baeff;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.intelligence-list b,
.intelligence-list small {
  display: block;
}

.intelligence-list b {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
}

.intelligence-list small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 12px;
  line-height: 1.5;
}

.intelligence-demo {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: rgba(10, 26, 53, 0.72);
  box-shadow:
    0 56px 130px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(22px);
}

.intelligence-demo::after {
  position: absolute;
  z-index: 4;
  top: -10%;
  bottom: -10%;
  left: -32%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(95, 172, 255, 0.12), transparent);
  content: "";
  transform: skewX(-16deg);
  animation: ai-scan 8s 1s ease-in-out infinite;
  pointer-events: none;
}

.intelligence-demo__bar {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 14px;
  padding: 22px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.025);
}

.ai-spark,
.ai-co-manager-avatar {
  display: inline-flex;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(121, 179, 255, 0.26);
  border-radius: 13px;
  color: #a7d3ff;
  background: rgba(40, 124, 255, 0.1);
  box-shadow: 0 0 34px rgba(40, 124, 255, 0.18);
}

.ai-co-manager-avatar {
  position: relative;
  width: 58px;
  height: 58px;
  flex-basis: 58px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.ai-co-manager-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 14px 22px rgba(0, 0, 0, 0.24))
    drop-shadow(0 0 18px rgba(77, 148, 255, 0.12));
}

.ai-co-manager-avatar i {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 11px;
  height: 11px;
  border: 3px solid #0b1d3a;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 16px rgba(84, 230, 194, 0.6);
}

.intelligence-demo__bar small,
.intelligence-demo__bar strong {
  display: block;
}

.intelligence-demo__bar small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 9.5px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intelligence-demo__bar strong {
  margin-top: 3px;
  font-size: 17px;
  letter-spacing: -0.03em;
}

.intelligence-demo__bar .preview-pill {
  margin-left: auto;
}

.calendar-streams {
  position: relative;
  padding: 28px 28px 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.calendar-source {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 10px 1fr auto;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.calendar-source:first-child {
  margin-top: 0;
}

.source-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 5px rgba(139, 120, 255, 0.08);
}

.source-dot--blue {
  background: var(--blue-bright);
  box-shadow: 0 0 0 5px rgba(85, 166, 255, 0.08);
}

.source-dot--gold {
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(255, 200, 61, 0.08);
}

.calendar-source b,
.calendar-source small {
  display: block;
}

.calendar-source b {
  font-size: 12px;
}

.calendar-source small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
}

.calendar-source time {
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
  font-weight: 700;
}

.conflict-beam {
  position: absolute;
  z-index: 1;
  top: 70px;
  right: 74px;
  bottom: 66px;
  width: 1px;
  background: linear-gradient(var(--red), rgba(255, 110, 124, 0.15));
}

.conflict-beam span {
  position: absolute;
  top: 47%;
  left: 50%;
  width: 11px;
  height: 11px;
  border: 2px solid #192845;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(255, 110, 124, 0.08);
  transform: translate(-50%, -50%);
}

.ai-answer {
  padding: 28px;
}

.ai-answer__heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.ai-answer__pulse {
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 200, 61, 0.2);
  border-radius: 50%;
  background: rgba(255, 200, 61, 0.06);
}

.ai-answer__pulse i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(255, 200, 61, 0.65);
}

.ai-answer__heading small,
.ai-answer__heading strong {
  display: block;
}

.ai-answer__heading small {
  color: #79b6ff;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.ai-answer__heading strong {
  margin-top: 2px;
  font-size: 13px;
}

.suggestion-card {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
}

.suggestion-card--best {
  border-color: rgba(84, 230, 194, 0.23);
  background: rgba(84, 230, 194, 0.055);
}

.suggestion-card > span {
  display: inline-flex;
  min-height: 23px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.06);
  font-size: 7px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.suggestion-card--best > span {
  color: var(--mint);
  background: rgba(84, 230, 194, 0.08);
}

.suggestion-card b,
.suggestion-card small {
  display: block;
}

.suggestion-card b {
  font-size: 10px;
}

.suggestion-card small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  line-height: 1.4;
}

.suggestion-card .mock-action {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
  font-size: 8px;
}

.ai-answer > p {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.29);
  font-size: 8px;
  text-align: right;
}

.connected-section {
  padding-top: 160px;
  padding-bottom: 170px;
}

.connected-section .section-intro {
  display: grid;
  max-width: none;
  grid-template-columns: 1fr 0.68fr;
  align-items: end;
  gap: 100px;
}

.connected-section .section-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -65px;
}

.connected-section .section-intro > p:last-child {
  margin: 0 0 6px;
  font-size: 17px;
}

.connection-flow {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 80px 1fr 80px 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 92px;
}

.connection-flow article {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(7, 18, 37, 0.09);
  border-radius: 26px;
  background: linear-gradient(145deg, #fff, #f4f7fb);
  box-shadow: 0 20px 55px rgba(7, 18, 37, 0.08);
}

.connection-flow article::after {
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(40, 124, 255, 0.09);
  filter: blur(30px);
  content: "";
}

.connection-flow article > span {
  color: #8b97a8;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.flow-icon {
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  margin: 39px 0 28px;
  border-radius: 19px;
  color: var(--paper);
  background: linear-gradient(145deg, var(--blue), #6157dd);
  box-shadow: 0 18px 34px rgba(40, 124, 255, 0.22);
  font-size: 19px;
  font-weight: 800;
}

.connection-flow article:nth-of-type(2) .flow-icon {
  color: var(--navy);
  background: linear-gradient(145deg, var(--gold), #ff9e35);
  box-shadow: 0 18px 34px rgba(255, 184, 46, 0.2);
}

.connection-flow article:nth-of-type(3) .flow-icon {
  background: linear-gradient(145deg, var(--mint), #35aabf);
  box-shadow: 0 18px 34px rgba(84, 230, 194, 0.2);
}

.connection-flow h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.connection-flow p {
  max-width: 260px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.connection-flow > i {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: rgba(7, 18, 37, 0.12);
}

.connection-flow > i::after {
  position: absolute;
  top: -1px;
  left: -20px;
  width: 20px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
  animation: flow-signal 2.6s ease-in-out infinite;
}

.audience-section {
  padding: 150px 0 160px;
  background:
    radial-gradient(circle at 5% 25%, rgba(40, 124, 255, 0.07), transparent 25%),
    var(--cloud);
}

.audience-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.audience-key {
  display: grid;
  min-width: 290px;
  gap: 10px;
}

.audience-key span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #647187;
  font-size: 12px;
  font-weight: 650;
}

.audience-key b {
  display: flex;
  width: 29px;
  height: 29px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(7, 18, 37, 0.1);
  border-radius: 50%;
  color: #2571d8;
  background: rgba(255, 255, 255, 0.7);
  font-size: 8px;
}

.audience-panels {
  display: grid;
  margin-top: 70px;
}

.audience-panel {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(360px, 0.76fr) minmax(600px, 1.24fr);
  align-items: center;
  gap: 78px;
  overflow: hidden;
  padding: 68px 70px;
  border: 1px solid rgba(7, 18, 37, 0.08);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 38px 90px rgba(7, 18, 37, 0.11);
}

.audience-panel--coach {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 100% 0, rgba(40, 124, 255, 0.2), transparent 35%),
    #071327;
  box-shadow: 0 44px 100px rgba(7, 18, 37, 0.22);
}

.audience-panel__copy {
  position: relative;
  z-index: 4;
}

.audience-panel__copy h3 {
  margin: 0;
  font-size: clamp(40px, 4vw, 62px);
  font-weight: 630;
  letter-spacing: -0.04em;
  line-height: 1.045;
}

.audience-panel__copy > p:not(.product-label) {
  max-width: 520px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.67;
}

.audience-panel--coach .audience-panel__copy h3 {
  color: var(--paper);
}

.audience-panel--coach .audience-panel__copy > p:not(.product-label) {
  color: rgba(255, 255, 255, 0.58);
}

.audience-panel--coach .product-label {
  color: #81bbff;
}

.audience-panel--coach .feature-checks li {
  color: rgba(255, 255, 255, 0.72);
}

.audience-panel--coach .feature-checks li::before {
  color: var(--mint);
  background: rgba(84, 230, 194, 0.1);
}

.audience-bridge {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(620px, calc(100% - 70px));
  min-height: 74px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  justify-self: center;
  margin: -10px 0;
  padding: 0 26px;
  border: 1px solid rgba(7, 18, 37, 0.1);
  border-radius: 999px;
  color: #536279;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(7, 18, 37, 0.11);
  backdrop-filter: blur(18px);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audience-bridge i {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: rgba(7, 18, 37, 0.12);
}

.audience-bridge i::after {
  position: absolute;
  top: -1px;
  left: -24px;
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
  animation: flow-signal 2.6s ease-in-out infinite;
}

.feature-checks {
  margin: 34px 0;
  padding: 0;
  list-style: none;
}

.feature-checks li {
  position: relative;
  margin-top: 13px;
  padding-left: 27px;
  color: #35435a;
  font-size: 13px;
  font-weight: 620;
}

.feature-checks li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: inline-flex;
  width: 17px;
  height: 17px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #0c6d5b;
  background: rgba(84, 230, 194, 0.16);
  content: "✓";
  font-size: 9px;
  font-weight: 900;
}

.family-product-scene {
  position: relative;
  min-height: 600px;
}

.phone-frame--family {
  position: absolute;
  width: 255px;
  height: 555px;
}

.phone-frame--rear {
  top: 35px;
  left: 40px;
  opacity: 0.74;
  transform: rotate(-7deg) scale(0.92);
}

.phone-frame--front {
  top: 0;
  right: 46px;
  transform: rotate(4deg);
}

.scene-chip {
  position: absolute;
  z-index: 6;
  min-width: 190px;
  padding: 15px 17px;
  border: 1px solid rgba(7, 18, 37, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 46px rgba(7, 18, 37, 0.15);
  backdrop-filter: blur(16px);
}

.scene-chip span,
.scene-chip b,
.scene-chip small {
  display: block;
}

.scene-chip span {
  color: #2775df;
  font-size: 8px;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scene-chip b {
  margin-top: 4px;
  font-size: 12px;
}

.scene-chip small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.scene-chip--arrival {
  top: 82px;
  right: 0;
  animation: card-float 5.5s ease-in-out infinite alternate;
}

.scene-chip--message {
  bottom: 62px;
  left: 8px;
  animation: card-float 6.2s 0.8s ease-in-out infinite alternate-reverse;
}

.coach-product-scene {
  min-width: 0;
}

.coach-window {
  overflow: hidden;
  border: 1px solid rgba(7, 18, 37, 0.1);
  border-radius: 22px;
  background: #0a1730;
  box-shadow: 0 34px 80px rgba(4, 14, 31, 0.28);
}

.coach-window__top {
  display: flex;
  min-height: 45px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.56);
  font-size: 8px;
}

.coach-window__top > div {
  display: flex;
  gap: 5px;
}

.coach-window__top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.19);
}

.coach-window__top i:first-child {
  background: var(--red);
}

.coach-window__top i:nth-child(2) {
  background: var(--gold);
}

.coach-window__top i:nth-child(3) {
  background: var(--mint);
}

.coach-window__top .mock-action {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--paper);
  font-size: 7px;
  font-weight: 750;
}

.coach-window__body {
  display: grid;
  grid-template-columns: 92px 1fr;
  min-height: 500px;
}

.coach-window aside {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 18px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.38);
  font-size: 7px;
}

.coach-window aside b {
  display: flex;
  width: 29px;
  height: 29px;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px 5px;
  border-radius: 9px;
  color: var(--navy);
  background: var(--gold);
  font-size: 8px;
}

.coach-window aside span {
  padding: 8px 8px;
  border-radius: 7px;
}

.coach-window aside span.is-active {
  color: #a9d0ff;
  background: rgba(40, 124, 255, 0.14);
}

.coach-canvas {
  padding: 28px 24px;
}

.coach-welcome {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.coach-welcome small,
.coach-welcome strong {
  display: block;
}

.coach-welcome small {
  color: #6eaef9;
  font-size: 6px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.coach-welcome strong {
  margin-top: 4px;
  color: var(--paper);
  font-size: 18px;
  letter-spacing: -0.04em;
}

.coach-welcome > span {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--mint);
  background: rgba(84, 230, 194, 0.09);
  font-size: 7px;
  font-weight: 700;
}

.coach-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 24px;
}

.coach-cards article {
  min-height: 89px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.coach-cards small,
.coach-cards b,
.coach-cards em {
  display: block;
}

.coach-cards small {
  color: rgba(255, 255, 255, 0.32);
  font-size: 6px;
  letter-spacing: 0.1em;
}

.coach-cards b {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

.coach-cards em {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 6px;
  font-style: normal;
}

.coach-table {
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
}

.coach-table > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 8px;
}

.coach-table > div span {
  color: #6dacfa;
  font-size: 6px;
}

.coach-table p {
  display: grid;
  grid-template-columns: 30px 1fr 58px 40px;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 10px 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.65);
  font-size: 7px;
}

.coach-table p b {
  color: rgba(255, 255, 255, 0.78);
}

.coach-table p span {
  color: var(--mint);
}

.coach-table p:last-child span {
  color: var(--gold);
}

.coach-table p em {
  color: rgba(255, 255, 255, 0.32);
  font-style: normal;
}

.avatar {
  display: flex;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--paper);
  background: #2d6baf;
  font-size: 6px;
  font-style: normal;
}

.avatar--gold {
  background: #b87d2f;
}

.avatar--violet {
  background: #6d5cae;
}

.identity-section {
  display: grid;
  grid-template-columns: minmax(380px, 0.76fr) minmax(650px, 1.24fr);
  align-items: center;
  gap: clamp(70px, 7vw, 120px);
  padding-top: 170px;
  padding-bottom: 180px;
}

.identity-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 29px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.67;
}

.identity-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 34px 0 39px;
}

.identity-steps span {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #36445a;
  font-size: 13px;
  font-weight: 640;
}

.identity-steps b {
  display: flex;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #1763c4;
  background: rgba(40, 124, 255, 0.1);
  font-size: 9px;
}

.brand-studio {
  overflow: hidden;
  border: 1px solid rgba(7, 18, 37, 0.12);
  border-radius: 29px;
  color: var(--paper);
  background:
    radial-gradient(circle at 12% -10%, rgba(40, 124, 255, 0.32), transparent 34%),
    #071327;
  box-shadow: 0 42px 100px rgba(7, 18, 37, 0.22);
}

.brand-studio__header {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 23px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-studio__header > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-studio__header .ai-spark {
  width: 34px;
  height: 34px;
  flex-basis: 34px;
  border-radius: 11px;
}

.brand-studio__header b {
  font-size: 13px;
}

.brand-studio__header > span {
  color: rgba(255, 255, 255, 0.39);
  font-size: 9px;
}

.logo-directions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  padding: 22px 22px 10px;
}

.logo-tile {
  position: relative;
  display: flex;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.04);
}

.logo-tile--selected {
  border-color: rgba(85, 166, 255, 0.58);
  box-shadow: 0 0 0 2px rgba(85, 166, 255, 0.13);
}

.logo-tile picture {
  display: flex;
  width: 78%;
  height: 78%;
}

.logo-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-tile > span {
  position: absolute;
  right: 7px;
  bottom: 7px;
  padding: 4px 7px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--paper);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-tile--bolt i {
  position: relative;
  display: block;
  width: 40%;
  height: 66%;
  background: linear-gradient(160deg, #9fd0ff, #356ed6);
  clip-path: polygon(54% 0, 100% 0, 67% 39%, 96% 39%, 28% 100%, 43% 55%, 7% 55%);
  transform: rotate(4deg);
}

.logo-tile--monogram b {
  color: transparent;
  background: linear-gradient(135deg, #f9d34e, #ff7a5f);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(23px, 3vw, 45px);
  font-weight: 900;
  letter-spacing: -0.12em;
}

.logo-tile--crest b {
  position: relative;
  z-index: 2;
  display: flex;
  width: 55%;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  border: 3px solid #79e4c8;
  border-radius: 48% 48% 56% 56%;
  color: #79e4c8;
  font-size: clamp(22px, 2vw, 36px);
}

.brand-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 22px 18px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.brand-tools small {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.swatches {
  display: flex;
  gap: 7px;
}

.swatches i {
  display: block;
  width: 19px;
  height: 19px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: #082f75;
}

.swatches i:nth-child(2) {
  background: #f7ce4b;
}

.swatches i:nth-child(3) {
  background: #eaf1fa;
}

.swatches i:nth-child(4) {
  background: #111827;
}

.brand-tools .mock-action {
  padding: 9px 12px;
  border-radius: 9px;
  color: var(--navy);
  background: var(--paper);
  font-size: 8px;
  font-weight: 760;
}

.brand-application {
  display: grid;
  grid-template-columns: 1.15fr 0.72fr 1fr;
  gap: 9px;
  padding: 0 22px 22px;
}

.brand-application > article {
  min-height: 135px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.04);
}

.mini-app-card {
  padding: 21px 16px;
  background:
    radial-gradient(circle at 100% 0, rgba(247, 206, 75, 0.22), transparent 45%),
    rgba(255, 255, 255, 0.04) !important;
}

.mini-app-card span,
.mini-app-card b,
.mini-app-card small {
  display: block;
}

.mini-app-card span {
  color: #7fb9ff;
  font-size: 6px;
  font-weight: 750;
  letter-spacing: 0.13em;
}

.mini-app-card b {
  max-width: 110px;
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.1;
}

.mini-app-card small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 7px;
}

.merch-shirt {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e9edf3 !important;
}

.merch-shirt::before {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 60%;
  height: 70%;
  border-radius: 10px 10px 18px 18px;
  background: #0b2f70;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.08);
  content: "";
}

.merch-shirt::after {
  position: absolute;
  top: 20%;
  left: 9%;
  width: 82%;
  height: 29%;
  background: #0b2f70;
  clip-path: polygon(0 34%, 20% 0, 32% 26%, 68% 26%, 80% 0, 100% 34%, 87% 70%, 74% 53%, 26% 53%, 13% 70%);
  content: "";
}

.merch-shirt span {
  position: relative;
  z-index: 2;
  display: flex;
  width: 31px;
  height: 31px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 6px;
}

.merch-shirt picture,
.merch-shirt img {
  display: block;
  width: 100%;
  height: 100%;
}

.merch-shirt img {
  object-fit: contain;
}

.brand-email {
  padding: 15px;
  background: #f8fafc !important;
}

.brand-email span,
.brand-email b {
  display: block;
}

.brand-email span {
  color: #2d72cb;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.brand-email b {
  margin: 9px 0 14px;
  color: var(--ink);
  font-size: 12px;
}

.brand-email i {
  display: block;
  width: 80%;
  height: 5px;
  margin-top: 6px;
  border-radius: 999px;
  background: #dce3ec;
}

.brand-email i:nth-of-type(2) {
  width: 95%;
}

.brand-email i:nth-of-type(3) {
  width: 63%;
}

.commerce-section {
  padding: 170px 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 0 25%, rgba(139, 120, 255, 0.12), transparent 26%),
    radial-gradient(circle at 100% 72%, rgba(40, 124, 255, 0.14), transparent 30%),
    #061123;
}

.commerce-grid {
  display: grid;
  gap: 130px;
}

.store-story,
.invoice-story {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(620px, 1.28fr);
  align-items: center;
  gap: clamp(70px, 8vw, 130px);
}

.commerce-copy h2 {
  color: var(--paper);
}

.commerce-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 17px;
  line-height: 1.7;
}

.inline-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.inline-proof li {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.53);
  background: rgba(255, 255, 255, 0.035);
  font-size: 10px;
  font-weight: 650;
}

.store-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  color: var(--ink);
  background: #f5f6f8;
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.34);
}

.store-window__top {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  border-bottom: 1px solid rgba(7, 18, 37, 0.08);
  background: var(--paper);
}

.store-window__top b {
  font-size: 13px;
  letter-spacing: -0.02em;
}

.store-window__top span {
  font-size: 9px;
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 20px;
}

.product-grid article {
  padding: 10px 10px 14px;
  border: 1px solid rgba(7, 18, 37, 0.07);
  border-radius: 15px;
  background: var(--paper);
}

.product-grid article > small,
.product-grid article > b,
.product-grid article > span {
  display: block;
}

.product-grid article > small {
  margin-top: 12px;
  color: #7e8b9d;
  font-size: 6px;
  font-weight: 760;
  letter-spacing: 0.1em;
}

.product-grid article > b {
  margin-top: 4px;
  font-size: 10px;
}

.product-grid article > span {
  margin-top: 4px;
  color: #5f6e82;
  font-size: 8px;
}

.product-visual {
  position: relative;
  display: flex;
  aspect-ratio: 1 / 1.05;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 11px;
  background: #e8edf4;
}

.product-visual::before {
  position: absolute;
  content: "";
}

.product-visual span {
  position: relative;
  z-index: 3;
  display: flex;
  width: 29px;
  height: 29px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--gold);
  background: #0b2f70;
  font-size: 7px;
  font-weight: 850;
}

.product-visual--hoodie::before {
  width: 61%;
  height: 70%;
  border-radius: 25px 25px 13px 13px;
  background: #23385e;
  box-shadow:
    -26px 6px 0 -10px #23385e,
    26px 6px 0 -10px #23385e;
}

.product-visual--tee::before {
  width: 62%;
  height: 64%;
  background: #f8f9fb;
  clip-path: polygon(26% 0, 41% 8%, 59% 8%, 74% 0, 100% 20%, 84% 40%, 75% 32%, 75% 100%, 25% 100%, 25% 32%, 16% 40%, 0 20%);
  box-shadow: 0 10px 20px rgba(7, 18, 37, 0.08);
}

.product-visual--cap::before {
  top: 33%;
  width: 56%;
  height: 35%;
  border-radius: 70% 70% 15% 15%;
  background: #0a2f71;
  box-shadow: 27px 20px 0 -10px #0a2f71;
}

.product-visual--cap span {
  margin-top: -3px;
  border: 0;
  background: transparent;
}

.invoice-story {
  grid-template-columns: minmax(620px, 1.28fr) minmax(360px, 0.72fr);
}

.invoice-story__visual {
  position: relative;
  display: flex;
  min-height: 590px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    rgba(255, 255, 255, 0.025);
  background-size: 38px 38px;
}

.invoice-card {
  width: min(420px, calc(100% - 70px));
  padding: 28px;
  border-radius: 21px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 38px 80px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg);
}

.invoice-card__top {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.invoice-card__top > span {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: var(--navy);
  background: var(--gold);
  font-size: 10px;
  font-weight: 850;
}

.invoice-card__top small,
.invoice-card__top b {
  display: block;
}

.invoice-card__top small {
  color: #8591a3;
  font-size: 7px;
  font-weight: 780;
  letter-spacing: 0.12em;
}

.invoice-card__top b {
  margin-top: 3px;
  font-size: 12px;
}

.invoice-card__top em {
  color: #7d899a;
  font-size: 8px;
  font-style: normal;
}

.invoice-card__person {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
}

.invoice-card__person small,
.invoice-card__person b {
  display: block;
}

.invoice-card__person small {
  color: #8995a5;
  font-size: 6px;
  font-weight: 780;
  letter-spacing: 0.11em;
}

.invoice-card__person b {
  margin-top: 4px;
  font-size: 11px;
}

.status-pill {
  padding: 6px 9px;
  border-radius: 999px;
  color: #17685a;
  background: rgba(84, 230, 194, 0.16);
  font-size: 7px;
  font-weight: 760;
}

.invoice-line,
.invoice-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.invoice-line {
  padding: 15px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #55647a;
  font-size: 10px;
}

.invoice-line b {
  color: var(--ink);
}

.invoice-total {
  padding: 22px 0;
  font-size: 11px;
  font-weight: 700;
}

.invoice-total b {
  font-size: 18px;
}

.invoice-card .mock-action--payment {
  display: flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--paper);
  background: var(--ink);
  font-size: 9px;
  font-weight: 760;
}

.payment-toast {
  position: absolute;
  right: 7%;
  bottom: 14%;
  display: flex;
  min-width: 230px;
  align-items: center;
  gap: 12px;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
  color: var(--paper);
  background: rgba(11, 29, 52, 0.87);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  animation: card-float 6s ease-in-out infinite alternate;
}

.payment-toast > span {
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #09211c;
  background: var(--mint);
  font-size: 11px;
  font-weight: 900;
}

.payment-toast b,
.payment-toast small {
  display: block;
}

.payment-toast b {
  font-size: 10px;
}

.payment-toast small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 8px;
}

.commerce-copy--invoice {
  grid-column: 2;
}

.feature-checks--compact li {
  color: rgba(255, 255, 255, 0.65);
}

.depth-section {
  padding-top: 170px;
  padding-bottom: 180px;
}

.depth-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 80px;
}

.depth-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 39px;
  border: 1px solid rgba(7, 18, 37, 0.09);
  border-radius: 29px;
  background: #f5f7fa;
}

.depth-card::before {
  position: absolute;
  right: -100px;
  bottom: -140px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(40, 124, 255, 0.07);
  filter: blur(35px);
  content: "";
}

.depth-card--wide,
.depth-card--stream {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 60px;
}

.depth-card__number {
  position: absolute;
  top: 29px;
  right: 31px;
  color: #9da8b7;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.depth-card h3 {
  max-width: 610px;
  margin: 0;
  font-size: clamp(31px, 3.5vw, 50px);
  font-weight: 620;
  letter-spacing: -0.038em;
  line-height: 1.07;
}

.depth-card > p:not(.product-label),
.depth-card > div > p:not(.product-label) {
  max-width: 530px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.formation-board {
  position: relative;
  width: 100%;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, 0.3) 50%, transparent 50.2%),
    linear-gradient(#1a8a6c, #126d5a);
  box-shadow: 0 28px 60px rgba(7, 18, 37, 0.18);
}

.formation-board::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.formation-board::after {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  content: "";
}

.formation-board i {
  position: absolute;
  z-index: 2;
  top: var(--y);
  left: var(--x);
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  color: var(--paper);
  background: #174c9b;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  transform: translate(-50%, -50%);
}

.message-stack {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
}

.message-stack > span {
  display: grid;
  grid-template-columns: 35px 1fr;
  align-items: center;
  gap: 11px;
  margin-top: 9px;
  padding: 12px;
  border: 1px solid rgba(7, 18, 37, 0.07);
  border-radius: 13px;
  background: var(--paper);
  box-shadow: 0 10px 25px rgba(7, 18, 37, 0.07);
}

.message-stack i {
  grid-row: 1 / 3;
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--paper);
  background: #3174c9;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.message-stack > span:last-child i {
  background: #7b63af;
}

.message-stack b {
  font-size: 10px;
}

.message-stack small {
  color: var(--muted);
  font-size: 8px;
}

.style-controls {
  position: absolute;
  right: 35px;
  bottom: 40px;
  left: 35px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.style-controls span {
  aspect-ratio: 1.7;
  border-radius: 12px;
  background: linear-gradient(135deg, #092f72, #276ecc);
  box-shadow: 0 12px 28px rgba(7, 18, 37, 0.12);
}

.style-controls span:nth-child(2) {
  background: linear-gradient(135deg, #7e5dcc, #df7eb1);
}

.style-controls span:nth-child(3) {
  background: linear-gradient(135deg, #156f5d, #65d7b7);
}

.style-controls i {
  height: 8px;
  align-self: center;
  border-radius: 999px;
  background: #d3dbe5;
}

.style-controls i::after {
  display: block;
  width: 17px;
  height: 17px;
  margin-top: -5px;
  margin-left: 35%;
  border: 4px solid var(--paper);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 4px 10px rgba(7, 18, 37, 0.18);
  content: "";
}

.memory-film {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  display: flex;
  min-height: 160px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px;
  color: var(--paper);
  background:
    linear-gradient(rgba(5, 14, 29, 0.35), rgba(5, 14, 29, 0.78)),
    radial-gradient(circle at 40% 40%, #367fc6, #0b2142 68%);
  box-shadow: 0 20px 50px rgba(7, 18, 37, 0.18);
}

.memory-film::before,
.memory-film::after {
  position: absolute;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
}

.memory-film::before {
  left: -28px;
}

.memory-film::after {
  right: -28px;
}

.memory-film span {
  color: #a8d3ff;
  font-size: 7px;
  font-weight: 780;
  letter-spacing: 0.14em;
}

.memory-film b {
  margin-top: 4px;
  font-size: 34px;
  letter-spacing: -0.06em;
}

.memory-film small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 8px;
}

.depth-card--stream {
  min-height: 470px;
  color: var(--paper);
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 110, 124, 0.16), transparent 28%),
    #071327;
}

.depth-card--stream h3 {
  color: var(--paper);
}

.depth-card--stream > div > p:not(.product-label) {
  color: rgba(255, 255, 255, 0.54);
}

.price-inline {
  display: inline-flex;
  margin-top: 27px;
  padding: 8px 12px;
  border: 1px solid rgba(84, 230, 194, 0.19);
  border-radius: 999px;
  color: var(--mint);
  background: rgba(84, 230, 194, 0.07);
  font-size: 11px;
}

.live-frame {
  position: relative;
  display: grid;
  min-height: 300px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(rgba(4, 11, 24, 0.35), rgba(4, 11, 24, 0.75)),
    radial-gradient(circle at 60% 44%, #406b92, #0a1b33 68%);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.27);
}

.live-frame::before {
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  content: "";
  transform: perspective(400px) rotateX(62deg);
}

.live-frame > span {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--paper);
  background: var(--red);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.09em;
}

.live-frame b {
  position: relative;
  z-index: 2;
  font-size: 18px;
  letter-spacing: -0.03em;
  text-align: center;
}

.live-frame i {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-style: normal;
}

.live-frame small {
  position: absolute;
  right: 18px;
  bottom: 17px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
}

.trust-section {
  padding: 150px 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 16% 12%, rgba(40, 124, 255, 0.16), transparent 27%),
    #061123;
}

.trust-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 120px;
}

.trust-copy h2 {
  color: var(--paper);
}

.trust-copy > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 17px;
  line-height: 1.67;
}

.trust-points article {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-points article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-points article > span {
  color: #65a9f8;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.trust-points b {
  font-size: 17px;
}

.trust-points p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 13px;
}

.pricing-section {
  padding-top: 90px;
  padding-bottom: 180px;
}

.pricing-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  align-items: end;
  gap: clamp(36px, 5vw, 80px);
}

.pricing-heading h2 {
  max-width: 760px;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1;
}

.pricing-heading__summary > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.pricing-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
  margin-top: 42px;
}

.pricing-family-lead {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(28px, 3vw, 40px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 8%, rgba(84, 230, 194, 0.3), transparent 31%),
    linear-gradient(135deg, #081a34 0%, #0a4057 62%, #0a6d70 100%);
  box-shadow: 0 28px 70px rgba(7, 18, 37, 0.2);
}

.pricing-family-lead::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.pricing-family-lead__topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.pricing-family-lead__recommended,
.pricing-family-lead__trial {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.pricing-family-lead__recommended {
  color: #071225;
  background: #ffc847;
}

.pricing-family-lead__trial {
  color: #d7fff6;
  border: 1px solid rgba(215, 255, 246, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.pricing-family-lead__heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
}

.pricing-family-lead__icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  color: #071225;
  background: #54e6c2;
  font-size: 32px;
  font-weight: 900;
}

.pricing-family-lead__icon svg,
.pricing-team-route__icon svg {
  width: 30px;
  height: 30px;
}

.pricing-family-lead h3 {
  max-width: 760px;
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(28px, 2.7vw, 40px);
  line-height: 1.05;
}

.pricing-family-lead .pricing-plan__eyebrow {
  color: #68f1d1;
}

.pricing-family-lead__intro {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.6;
}

.pricing-family-lead__price {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.pricing-family-lead__price strong {
  color: #fff;
  font-size: clamp(44px, 4.4vw, 62px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.pricing-family-lead__price span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.5;
}

.pricing-family-lead__price b { color: #d7fff6; }

.pricing-family-lead__capacity {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.pricing-family-lead__capacity span {
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.pricing-family-lead__capacity b {
  color: #68f1d1;
  font-size: 17px;
  line-height: 1.1;
}

.pricing-family-lead__capacity small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  line-height: 1.35;
}

.pricing-family-lead__features {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-path-details > summary {
  display: none;
}

.pricing-path-details:not([open]) > .pricing-family-lead__features,
.pricing-path-details:not([open]) > .pricing-team-route__boundary,
.pricing-path-details:not([open]) > ul {
  display: grid;
}

.pricing-path-details:not([open]) > .pricing-family-lead__boundary {
  display: block;
}

.pricing-family-lead__features li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.45;
}

.pricing-family-lead__features li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: #68f1d1;
  font-weight: 900;
}

.pricing-family-lead__boundary {
  position: relative;
  z-index: 1;
  margin: 24px 0 0;
  padding: 13px 15px;
  border: 1px solid rgba(255, 200, 71, 0.28);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 200, 71, 0.08);
  font-size: 12px;
  line-height: 1.5;
}

.pricing-family-lead__boundary b { color: #ffe39a; }

.pricing-family-lead__cta {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 22px;
  color: #071225;
  background: #ffc847;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.pricing-family-lead__cta:hover { background: #ffd66f; }

.pricing-family-lead .pricing-transcript {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.pricing-family-lead .pricing-transcript summary,
.pricing-family-lead .pricing-transcript p { color: inherit; }

.pricing-team-route {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid rgba(16, 51, 78, 0.14);
  border-radius: 28px;
  background: linear-gradient(160deg, #fff, #f1f6fa);
  box-shadow: 0 22px 55px rgba(7, 18, 37, 0.09);
}

.pricing-team-route__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
}

.pricing-team-route__label,
.pricing-team-route__starting {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.pricing-team-route__label {
  color: #fff;
  background: #123c5a;
}

.pricing-team-route__starting {
  color: #36536b;
  border: 1px solid #d3e0e9;
  background: #f7fafc;
}

.pricing-team-route__icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 18px;
  color: #174261;
  background: #e3edf5;
  font-size: 28px;
  font-weight: 900;
}

.pricing-team-route h3 {
  margin: 8px 0 12px;
  font-size: clamp(28px, 2.7vw, 40px);
  line-height: 1.05;
}

.pricing-team-route > p {
  margin: 0;
  color: #5d6f82;
  font-size: 14px;
  line-height: 1.55;
}

.pricing-team-route__price {
  display: grid;
  gap: 4px;
  margin-top: 26px;
  padding: 16px;
  border: 1px solid #d9e5ee;
  border-radius: 16px;
  background: #fff;
}

.pricing-team-route__price strong {
  color: #0e3854;
  font-size: 34px;
  line-height: 1;
}

.pricing-team-route__price span {
  color: #6b7d90;
  font-size: 11px;
}

.pricing-team-route ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
}

.pricing-team-route li {
  position: relative;
  padding-left: 20px;
  color: #425a70;
  font-size: 13px;
  line-height: 1.4;
}

.pricing-team-route li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #138a78;
  font-weight: 900;
}

.pricing-team-route .button { margin-top: auto; }

.pricing-path-details--team {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.pricing-team-route__cta {
  color: #fff;
  background: #123c5a;
}

.pricing-team-route__cta:hover { background: #0a2b43; }

.pricing-team-route .pricing-team-route__boundary {
  margin-top: 14px;
  color: #8a5c00;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.pricing-start-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  margin-top: 54px;
  padding: 22px 24px 22px 28px;
  overflow: hidden;
  border-radius: 24px;
  color: var(--paper);
  background:
    radial-gradient(circle at 75% 0, rgba(84, 230, 194, 0.26), transparent 32%),
    linear-gradient(135deg, #08172f, #0d3153);
  box-shadow: 0 24px 60px rgba(7, 18, 37, 0.16);
}

.pricing-start-band > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.pricing-start-band__badge {
  display: inline-flex;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(84, 230, 194, 0.5);
  border-radius: 18px;
  color: #071225;
  background: var(--mint);
  font-size: 21px;
  font-weight: 850;
}

.pricing-start-band p {
  display: grid;
  gap: 4px;
  margin: 0;
}

.pricing-start-band p b {
  font-size: 19px;
}

.pricing-start-band p small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.pricing-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.pricing-plan {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 650px;
  flex-direction: column;
  padding: 30px 26px 24px;
  border: 1px solid rgba(7, 18, 37, 0.11);
  border-radius: 26px;
  background: #f8fafc;
  box-shadow: 0 18px 46px rgba(7, 18, 37, 0.07);
}

.pricing-plan--starter {
  border-color: rgba(17, 143, 114, 0.23);
  background: linear-gradient(180deg, rgba(84, 230, 194, 0.11), #f8fafc 28%);
}

.pricing-plan--pro {
  z-index: 1;
  border: 2px solid #287cff;
  background: linear-gradient(180deg, rgba(40, 124, 255, 0.11), #f8fafc 28%);
  box-shadow: 0 24px 66px rgba(40, 124, 255, 0.17);
}

.pricing-plan--large {
  background: linear-gradient(180deg, rgba(139, 120, 255, 0.1), #f8fafc 28%);
}

.pricing-plan--club {
  background: linear-gradient(180deg, rgba(255, 200, 61, 0.12), #f8fafc 28%);
}

.pricing-plan__ribbon {
  position: absolute;
  top: -13px;
  left: 50%;
  padding: 7px 15px;
  border-radius: 999px;
  color: var(--paper);
  background: #156fe9;
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.pricing-plan__top {
  display: flex;
  min-height: 28px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.pricing-plan__eyebrow {
  color: #176bd7;
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pricing-plan__tag {
  padding: 6px 9px;
  border-radius: 999px;
  color: #5d6d83;
  background: rgba(7, 18, 37, 0.06);
  font-size: 9px;
  font-weight: 720;
  line-height: 1;
  white-space: nowrap;
}

.pricing-plan__price {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 11px;
  margin-top: 18px;
}

.pricing-plan__price strong {
  color: var(--ink);
  font-size: clamp(42px, 3.8vw, 58px);
  font-weight: 680;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.pricing-plan__price > span {
  color: #66768c;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.45;
}

.pricing-plan__who {
  min-height: 84px;
  margin: 16px 0 0;
  color: #53637a;
  font-size: 13px;
  line-height: 1.58;
}

.pricing-plan__limit {
  display: grid;
  gap: 4px;
  margin: 20px 0 0;
  padding: 15px;
  border: 1px solid rgba(7, 18, 37, 0.08);
  border-radius: 15px;
  background: var(--paper);
}

.pricing-plan__limit b {
  font-size: 14px;
}

.pricing-plan__limit span {
  color: #718096;
  font-size: 10px;
  line-height: 1.45;
}

.pricing-plan__features {
  display: grid;
  gap: 12px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.pricing-plan__features li {
  position: relative;
  padding-left: 23px;
  color: #34445a;
  font-size: 11px;
  line-height: 1.45;
}

.pricing-plan__features li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  border-radius: 50%;
  color: #08725c;
  background: rgba(84, 230, 194, 0.17);
  content: "✓";
  font-size: 8px;
  font-weight: 900;
}

.pricing-plan__actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.pricing-plan__actions .button {
  min-height: 48px;
  padding: 0 14px;
  font-size: 12px;
}

.pricing-audio-button {
  display: flex;
  width: 100%;
  min-height: 49px;
  align-items: center;
  gap: 11px;
  padding: 8px 12px;
  border: 1px solid rgba(7, 18, 37, 0.12);
  border-radius: 14px;
  cursor: pointer;
  color: #213249;
  background: var(--paper);
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms var(--ease);
}

.pricing-audio-button:hover {
  border-color: rgba(40, 124, 255, 0.45);
  background: #f7fbff;
  transform: translateY(-1px);
}

.pricing-audio-button.is-playing {
  border-color: rgba(40, 124, 255, 0.55);
  background: #eef6ff;
}

.pricing-audio-button__icon {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  place-items: center;
  padding-left: 2px;
  border-radius: 50%;
  color: var(--paper);
  background: #116fe2;
  font-size: 10px;
  box-shadow: 0 7px 18px rgba(17, 111, 226, 0.2);
}

.pricing-audio-button.is-playing .pricing-audio-button__icon {
  padding-left: 0;
  background: #0e8e73;
}

.pricing-audio-button > span:last-child {
  display: grid;
  gap: 1px;
}

.pricing-audio-button b {
  font-size: 11px;
}

.pricing-audio-button small {
  color: #738198;
  font-size: 9px;
}

.pricing-audio-button--overview {
  max-width: 410px;
  min-height: 62px;
  margin-top: 20px;
  padding: 10px 14px;
  border-color: rgba(40, 124, 255, 0.22);
  border-radius: 17px;
  background: #f2f7fe;
}

.pricing-audio-button--overview .pricing-audio-button__icon {
  width: 38px;
  height: 38px;
  flex-basis: 38px;
}

.pricing-audio-button--overview b {
  font-size: 13px;
}

.pricing-audio-button--overview small {
  font-size: 10px;
}

.pricing-transcript {
  margin-top: 10px;
  color: #607087;
  font-size: 10px;
}

.pricing-transcript summary {
  width: max-content;
  cursor: pointer;
  color: #516178;
  font-size: 9px;
  font-weight: 720;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pricing-transcript p {
  margin: 9px 0 0;
  padding: 11px;
  border-radius: 10px;
  background: rgba(7, 18, 37, 0.045);
  line-height: 1.55;
}

.pricing-transcript--overview {
  max-width: 520px;
}

.pricing-addons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 16px;
}

.pricing-addon {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 20px;
  padding: 28px;
  border: 1px solid rgba(7, 18, 37, 0.1);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 16px 44px rgba(7, 18, 37, 0.06);
}

.pricing-addon--family {
  grid-template-columns: auto 1fr minmax(170px, 0.34fr);
}

.pricing-addon__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  color: #0b6b59;
  background: rgba(84, 230, 194, 0.16);
  font-size: 24px;
  font-weight: 800;
}

.pricing-addon--live .pricing-addon__icon {
  color: #a23f25;
  background: rgba(255, 110, 124, 0.14);
  font-size: 18px;
}

.pricing-addon h3 {
  margin: 6px 0 8px;
  font-size: 19px;
  line-height: 1.25;
}

.pricing-addon p {
  margin: 0;
  color: #627188;
  font-size: 12px;
  line-height: 1.55;
}

.pricing-addon__price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-top: 13px !important;
}

.pricing-addon__price b {
  color: var(--ink);
  font-size: 15px;
}

.pricing-addon__price span {
  color: #718096;
  font-size: 10px;
}

.pricing-addon .pricing-transcript {
  grid-column: 3;
  margin-top: -4px;
}

.pricing-compare {
  margin-top: 16px;
  padding: 30px;
  border: 1px solid rgba(7, 18, 37, 0.1);
  border-radius: 24px;
  background: #f7f9fc;
}

.pricing-compare__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 22px;
}

.pricing-compare__heading h3 {
  margin: 6px 0 0;
  font-size: 22px;
}

.join-link {
  display: block;
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.2);
  text-underline-offset: 4px;
}

.join-link--dark {
  margin: 0;
  color: #3d506b;
  text-decoration-color: rgba(7, 18, 37, 0.22);
}

.pricing-compare__scroll {
  overflow-x: auto;
  border: 1px solid rgba(7, 18, 37, 0.08);
  border-radius: 16px;
  background: var(--paper);
}

.pricing-compare table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
  color: #46566d;
  font-size: 11px;
  text-align: left;
}

.pricing-compare th,
.pricing-compare td {
  padding: 15px 17px;
  border-bottom: 1px solid rgba(7, 18, 37, 0.08);
}

.pricing-compare thead th {
  color: #76859a;
  background: #fbfcfe;
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.pricing-compare tbody th,
.pricing-compare td b {
  color: var(--ink);
}

.pricing-capacity-cell {
  min-width: 190px;
}

.pricing-capacity-cell b,
.pricing-capacity-cell span {
  display: block;
}

.pricing-capacity-cell span {
  margin-top: 3px;
  color: #64748a;
  font-size: 10px;
  line-height: 1.35;
}

.pricing-compare tbody tr:last-child th,
.pricing-compare tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-compare__note {
  margin: 14px 0 0;
  color: #748399;
  font-size: 9px;
}

.pricing-audio-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .pricing-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-plan {
    min-height: 610px;
  }

  .pricing-plan__who {
    min-height: 64px;
  }

  .pricing-addons {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .pricing-heading {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pricing-heading__summary > p {
    font-size: 15px;
  }

  .pricing-path-grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .pricing-family-lead__icon { width: 58px; height: 58px; }
  .pricing-family-lead .button { width: 100%; }

  .pricing-start-band {
    grid-template-columns: 1fr;
  }

  .pricing-start-band .button {
    width: 100%;
  }

  .pricing-plan-grid {
    grid-template-columns: 1fr;
  }

  .pricing-plan {
    min-height: 0;
  }

  .pricing-plan__who {
    min-height: 0;
  }

  .pricing-addon--family,
  .pricing-addon {
    grid-template-columns: auto 1fr;
  }

  .pricing-addon .pricing-audio-button,
  .pricing-addon .pricing-transcript {
    grid-column: 1 / -1;
  }

  .pricing-compare__heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .pricing-section {
    padding-top: 82px;
  }

  .pricing-family-lead,
  .pricing-team-route {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .pricing-family-lead__topline {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 22px;
  }

  .pricing-family-lead__heading {
    grid-template-columns: 1fr;
  }

  .pricing-family-lead__features {
    grid-template-columns: 1fr;
  }

  .pricing-start-band {
    padding: 20px;
  }

  .pricing-start-band > div {
    align-items: flex-start;
  }

  .pricing-start-band__badge {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    border-radius: 14px;
    font-size: 18px;
  }

  .pricing-start-band p b {
    font-size: 16px;
  }

  .pricing-plan,
  .pricing-addon,
  .pricing-compare {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .pricing-plan__price strong {
    font-size: 49px;
  }

  .pricing-addon--family,
  .pricing-addon {
    grid-template-columns: 1fr;
  }

  .pricing-addon__icon {
    width: 42px;
    height: 42px;
  }
}

.activity-section {
  position: relative;
  overflow: hidden;
  padding: 150px 0;
  background:
    radial-gradient(circle at 0 0, rgba(40, 124, 255, 0.09), transparent 30%),
    var(--cloud);
}

.activity-section::after {
  position: absolute;
  right: -240px;
  bottom: -300px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(40, 124, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 100px rgba(40, 124, 255, 0.022),
    0 0 0 220px rgba(40, 124, 255, 0.014);
  content: "";
}

.activity-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(330px, 0.68fr) minmax(700px, 1.32fr);
  align-items: center;
  gap: clamp(65px, 7vw, 120px);
}

.activity-copy h2 {
  margin: 0;
  font-size: clamp(46px, 4.8vw, 72px);
  font-weight: 640;
  letter-spacing: -0.042em;
  line-height: 1.025;
  text-wrap: balance;
}

.activity-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.activity-proof {
  display: grid;
  gap: 9px;
  margin-top: 34px;
}

.activity-proof span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #59687e;
  font-size: 11px;
}

.activity-proof span::before {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #0c6d5b;
  background: rgba(84, 230, 194, 0.16);
  content: "✓";
  font-size: 9px;
  font-weight: 900;
}

.activity-proof b {
  color: #243249;
}

.activity-week {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 18, 37, 0.09);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 38px 85px rgba(7, 18, 37, 0.13);
}

.activity-week__bar {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(7, 18, 37, 0.08);
  background: rgba(255, 255, 255, 0.84);
}

.activity-week__bar small,
.activity-week__bar strong {
  display: block;
}

.activity-week__bar small {
  color: #2874dc;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.activity-week__bar strong {
  margin-top: 4px;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.activity-week__bar > span {
  padding: 7px 10px;
  border-radius: 999px;
  color: #627087;
  background: #f0f4f8;
  font-size: 8px;
  font-weight: 700;
}

.activity-days {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr)) minmax(155px, 1.18fr);
  min-height: 390px;
}

.activity-day {
  min-width: 0;
  padding: 19px 10px;
  border-right: 1px solid rgba(7, 18, 37, 0.07);
}

.activity-day:last-child {
  border-right: 0;
}

.activity-day > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px 14px;
  color: #8290a2;
}

.activity-day > div span {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.activity-day > div b {
  color: #27364d;
  font-size: 12px;
}

.activity-event {
  position: relative;
  min-height: 105px;
  margin: 9px 0 0;
  overflow: hidden;
  padding: 13px 10px 12px 13px;
  border: 1px solid rgba(7, 18, 37, 0.06);
  border-radius: 12px;
  background: #f5f8fb;
}

.activity-event::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: #8c98aa;
  content: "";
}

.activity-event time,
.activity-event strong,
.activity-event small {
  display: block;
}

.activity-event time {
  color: #7a8798;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.activity-event strong {
  margin-top: 12px;
  font-size: 9px;
  line-height: 1.2;
}

.activity-event small {
  margin-top: 5px;
  color: #738096;
  font-size: 7px;
  line-height: 1.35;
}

.activity-event--blue::before {
  background: var(--blue);
}

.activity-event--violet::before {
  background: var(--violet);
}

.activity-event--gold::before {
  background: var(--gold);
}

.activity-event--mint::before {
  background: var(--mint);
}

.activity-event--tournament {
  min-height: 220px;
  color: var(--paper);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 200, 61, 0.22), transparent 40%),
    #0b2345;
}

.activity-event--tournament::before {
  background: var(--gold);
}

.activity-event--tournament time,
.activity-event--tournament small {
  color: rgba(255, 255, 255, 0.6);
}

.activity-summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 12px 20px;
  border-top: 1px solid rgba(7, 18, 37, 0.07);
  color: #5c6a7f;
  background: #f8fafc;
  font-size: 9px;
  font-weight: 650;
}

.activity-summary span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.activity-summary i {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #0c6d5b;
  background: rgba(84, 230, 194, 0.16);
  font-size: 8px;
  font-style: normal;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 120px;
  padding-top: 170px;
  padding-bottom: 180px;
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 50px);
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 680;
  letter-spacing: -0.025em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: flex;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #627087;
  font-size: 18px;
  font-weight: 400;
  transition: transform 220ms ease, color 220ms ease, background 220ms ease;
}

.faq-list details[open] summary span {
  color: var(--paper);
  background: var(--ink);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 740px;
  margin: -3px 55px 30px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.contact-section {
  padding-bottom: 180px;
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 90px;
  overflow: hidden;
  padding: 70px;
  border-radius: 34px;
  color: var(--paper);
  background:
    radial-gradient(circle at 5% 5%, rgba(40, 124, 255, 0.28), transparent 31%),
    radial-gradient(circle at 100% 100%, rgba(139, 120, 255, 0.18), transparent 30%),
    var(--navy);
  box-shadow: 0 40px 100px rgba(7, 18, 37, 0.2);
}

.contact-copy h2 {
  color: var(--paper);
  font-size: clamp(42px, 4.3vw, 66px);
}

.contact-copy > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.53);
  font-size: 16px;
  line-height: 1.67;
}

.contact-direct {
  margin-top: 46px;
}

.contact-direct span,
.contact-direct a {
  display: block;
}

.contact-direct span {
  color: rgba(255, 255, 255, 0.36);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-direct a {
  margin-top: 6px;
  color: #9bcbff;
  font-size: 14px;
  font-weight: 650;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 680;
}

.contact-form label small {
  color: rgba(255, 255, 255, 0.29);
  font-size: 8px;
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 11px;
  outline: 0;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.065);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-form input,
.contact-form select {
  min-height: 47px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 128px;
  padding: 13px;
  resize: vertical;
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.62) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.62) 50%, transparent 50%);
  background-position:
    calc(100% - 17px) 20px,
    calc(100% - 12px) 20px;
  background-repeat: no-repeat;
  background-size: 5px 5px;
}

.contact-form option {
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(121, 182, 255, 0.6);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 4px rgba(40, 124, 255, 0.12);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.contact-hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-status {
  min-height: 18px;
  margin: -3px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  text-align: center;
}

.contact-status--error {
  color: #ff9ca5;
}

.contact-status--success {
  color: #74e6cb;
}

.closing-section {
  position: relative;
  overflow: hidden;
  padding: 180px 0;
  color: var(--paper);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    #061123;
  background-size: 70px 70px;
}

.closing-section__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 430px;
  border-radius: 50%;
  background: rgba(40, 124, 255, 0.19);
  filter: blur(90px);
  transform: translate(-50%, -50%);
}

.closing-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.closing-content .eyebrow {
  justify-content: center;
}

.closing-content h2 {
  color: var(--paper);
  font-size: clamp(60px, 7vw, 108px);
  letter-spacing: -0.045em;
  line-height: 1;
}

.closing-content > p:not(.eyebrow) {
  max-width: 680px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.53);
  font-size: 18px;
}

.site-footer {
  padding: 72px max(40px, calc((100vw - 1400px) / 2)) 30px;
  color: rgba(255, 255, 255, 0.62);
  background: #020813;
}

.site-footer__main {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  padding-bottom: 65px;
}

.brand--footer {
  align-self: start;
  gap: 15px;
  color: var(--paper);
}

.brand--footer .brand__mark {
  width: 58px;
  height: 58px;
  flex-basis: 58px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand--footer > span:last-child {
  display: grid;
  gap: 4px;
}

.brand--footer b {
  font-size: 15px;
  font-weight: 720;
  letter-spacing: -0.015em;
}

.brand--footer small {
  color: rgba(255, 255, 255, 0.36);
  font-size: 11px;
  font-weight: 500;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-nav div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-nav b {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-nav a {
  width: max-content;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  transition: color 180ms ease;
}

.footer-nav a:hover {
  color: var(--paper);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.27);
  font-size: 9px;
}

.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 850ms ease,
    transform 950ms var(--ease);
}

.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes signal-pulse {
  0% {
    opacity: 0.85;
    transform: scale(0.7);
  }
  75%,
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

@keyframes breathe {
  from {
    opacity: 0.72;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes hero-phone-float {
  from {
    transform: translateY(-5px) rotate(2.6deg);
  }
  to {
    transform: translateY(8px) rotate(1.7deg);
  }
}

@keyframes card-float {
  from {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(8px);
  }
}

@keyframes scroll-line {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(300%);
  }
}

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

@keyframes story-progress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes ai-scan {
  0%,
  18% {
    left: -32%;
  }
  50%,
  72% {
    left: 110%;
  }
  100% {
    left: 110%;
  }
}

@keyframes flow-signal {
  0% {
    left: -20px;
  }
  75%,
  100% {
    left: calc(100% + 20px);
  }
}

@media (max-width: 1320px) {
  :root {
    --shell: min(1200px, calc(100vw - 60px));
  }

  .site-nav__links {
    gap: 18px;
  }

  .launch-hero {
    min-height: 880px;
    grid-template-columns: minmax(410px, 0.85fr) minmax(560px, 1.15fr);
  }

  .launch-stage {
    width: 650px;
    height: 620px;
    transform: translate3d(calc(var(--stage-x) + 55px), var(--stage-y), 0) scale(0.92);
  }

  .audience-panel {
    gap: 45px;
    padding: 58px 50px;
  }

  .phone-frame--family {
    width: 225px;
    height: 490px;
  }

  .family-product-scene {
    min-height: 540px;
  }
}

@media (max-width: 1320px) {
  .launch-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 160px;
    padding-bottom: 110px;
  }

  .launch-hero__copy {
    max-width: 900px;
    justify-self: center;
    text-align: center;
  }

  .launch-hero h1 {
    max-width: 900px;
    margin-inline: auto;
    font-size: clamp(62px, 7vw, 88px);
  }

  .launch-hero__copy .eyebrow,
  .hero-actions {
    justify-content: center;
  }

  .launch-stage {
    width: 780px;
    max-width: 100%;
    justify-self: center;
    transform: translate3d(var(--stage-x), var(--stage-y), 0) scale(0.96);
  }

  .scroll-cue {
    display: none;
  }
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 48px, 980px);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    display: grid;
    min-height: 100dvh;
    align-content: center;
    justify-content: stretch;
    gap: 42px;
    padding: 110px max(30px, calc((100vw - 760px) / 2)) 50px;
    visibility: hidden;
    opacity: 0;
    color: var(--paper);
    background:
      radial-gradient(circle at 90% 10%, rgba(40, 124, 255, 0.25), transparent 30%),
      rgba(4, 13, 28, 0.985);
    transform: translateY(-18px);
    transition:
      visibility 260ms ease,
      opacity 260ms ease,
      transform 320ms var(--ease);
  }

  .site-header.is-menu-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav__links {
    display: grid;
    gap: 0;
  }

  .site-nav__links a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(24px, 3.2vw, 30px);
    font-weight: 590;
    letter-spacing: -0.03em;
  }

  .site-nav__links a::after {
    content: none;
  }

  .site-nav__actions {
    align-items: stretch;
    flex-direction: column-reverse;
    gap: 15px;
  }

  .site-nav__actions .text-link {
    align-self: center;
    padding: 12px;
    font-size: 13px;
  }

  .site-nav__actions .button {
    min-height: 54px;
  }

  .launch-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 160px;
    padding-bottom: 110px;
  }

  .launch-hero__copy {
    max-width: 780px;
    text-align: center;
    justify-self: center;
  }

  .launch-hero__copy .eyebrow,
  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .launch-stage {
    width: 780px;
    max-width: 100%;
    justify-self: center;
    transform: translate3d(var(--stage-x), var(--stage-y), 0) scale(0.96);
  }

  .scroll-cue {
    display: none;
  }

  .intelligence-layout,
  .identity-section,
  .store-story,
  .invoice-story,
  .trust-layout,
  .activity-layout {
    grid-template-columns: 1fr;
  }

  .intelligence-copy,
  .identity-copy,
  .commerce-copy,
  .trust-copy,
  .activity-copy {
    max-width: 760px;
  }

  .activity-week {
    width: 100%;
  }

  .intelligence-demo {
    min-height: 620px;
  }

  .audience-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .audience-panel {
    grid-template-columns: 1fr;
  }

  .audience-panel__copy {
    max-width: 720px;
  }

  .family-product-scene {
    width: 680px;
    max-width: 100%;
    justify-self: center;
  }

  .coach-product-scene {
    width: 100%;
  }

  .brand-studio {
    width: 100%;
  }

  .invoice-story__visual {
    grid-row: 2;
  }

  .commerce-copy--invoice {
    grid-column: auto;
    grid-row: 1;
  }

  .depth-card--wide,
  .depth-card--stream {
    grid-template-columns: 1fr;
  }

  .pricing-heading,
  .connected-section .section-intro {
    display: block;
  }

  .pricing-heading .eyebrow,
  .connected-section .section-intro .eyebrow {
    margin-bottom: 24px;
  }

  .pricing-heading > p:last-child,
  .connected-section .section-intro > p:last-child {
    max-width: 680px;
    margin-top: 28px;
  }

  .connection-flow {
    grid-template-columns: 1fr 55px 1fr 55px 1fr;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .faq-heading {
    position: static;
    max-width: 660px;
  }

  .contact-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  :root {
    --header-height: 70px;
    --shell: calc(100vw - 36px);
  }

  html {
    scroll-padding-top: 84px;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.is-menu-open {
    height: 70px;
  }

  .site-header__inner {
    width: calc(100vw - 36px);
  }

  .brand__name {
    gap: 3px;
  }

  .brand__name strong {
    font-size: 14.5px;
  }

  .brand__name small {
    font-size: 8.5px;
  }

  .brand--header .brand__mark {
    width: 58px;
    height: 48px;
    flex-basis: 58px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    display: grid;
    min-height: 100dvh;
    align-content: center;
    justify-content: stretch;
    gap: 42px;
    padding: 100px 30px 45px;
    visibility: hidden;
    opacity: 0;
    color: var(--paper);
    background:
      radial-gradient(circle at 90% 10%, rgba(40, 124, 255, 0.25), transparent 30%),
      rgba(4, 13, 28, 0.98);
    transform: translateY(-18px);
    transition:
      visibility 260ms ease,
      opacity 260ms ease,
      transform 320ms var(--ease);
  }

  .site-header.is-menu-open .site-nav {
    z-index: -1;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav__links {
    display: grid;
    gap: 0;
  }

  .site-nav__links a {
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 26px;
    font-weight: 590;
    letter-spacing: -0.04em;
  }

  .site-nav__links a::after {
    content: none;
  }

  .site-nav__actions {
    align-items: stretch;
    flex-direction: column-reverse;
    gap: 15px;
  }

  .site-nav__actions .text-link {
    align-self: center;
    padding: 12px;
    font-size: 13px;
  }

  .site-nav__actions .button {
    min-height: 54px;
  }

  .launch-hero {
    padding: 132px 20px 85px;
  }

  .launch-hero h1 {
    font-size: clamp(52px, 13vw, 76px);
  }

  .launch-hero__lead {
    font-size: 17px;
  }

  .launch-stage {
    width: 650px;
    max-width: 110%;
    height: 570px;
    margin-left: -5%;
    transform: scale(0.88);
    transform-origin: center top;
  }

  .story-section,
  .connected-section,
  .audience-section,
  .intelligence-section,
  .commerce-section,
  .depth-section,
  .trust-section,
  .pricing-section,
  .activity-section,
  .faq-section,
  .closing-section {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .section-intro h2,
  .intelligence-copy h2,
  .audience-heading h2,
  .identity-copy h2,
  .commerce-copy h2,
  .pricing-heading h2,
  .activity-copy h2,
  .faq-heading h2,
  .contact-copy h2,
  .trust-copy h2 {
    font-size: clamp(42px, 10vw, 60px);
  }

  .family-day {
    margin-top: 55px;
  }

  .family-day__canvas {
    grid-template-columns: 1fr;
  }

  .day-column {
    padding: 42px 38px;
    border-right: 0;
  }

  .story-moments {
    min-height: 510px;
  }

  .connection-flow {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .connection-flow article {
    min-height: 250px;
  }

  .connection-flow > i {
    width: 1px;
    height: 45px;
    justify-self: center;
  }

  .connection-flow > i::after {
    top: -20px;
    left: -1px;
    width: 3px;
    height: 20px;
    animation-name: flow-signal-vertical;
  }

  .audience-panel {
    min-height: auto;
    padding: 48px 34px;
  }

  .identity-section {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .brand-application {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .depth-card,
  .depth-card--wide,
  .depth-card--stream {
    grid-column: auto;
  }

  .depth-card {
    min-height: 430px;
  }

  .formation-board {
    min-height: 300px;
  }

  .pricing-card {
    grid-template-columns: 1fr;
  }

  .voices-track {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding-bottom: 110px;
  }

  .contact-shell {
    gap: 55px;
    padding: 48px 36px;
  }

  .site-footer {
    padding: 60px 24px 30px;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  @keyframes flow-signal-vertical {
    0% {
      top: -20px;
    }
    75%,
    100% {
      top: calc(100% + 20px);
    }
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .launch-hero {
    grid-template-columns: minmax(0, 1fr);
    padding-right: 14px;
    padding-left: 14px;
  }

  .launch-hero__copy {
    width: 100%;
    min-width: 0;
    padding: 0 8px;
  }

  .launch-hero h1 {
    max-width: 11.5ch;
    margin-inline: auto;
    font-size: clamp(42px, 12vw, 54px);
    letter-spacing: -0.03em;
    line-height: 1.06;
  }

  .launch-hero__lead {
    margin-top: 24px;
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    gap: 10px;
    font-size: 10px;
  }

  .launch-stage {
    width: 510px;
    height: 455px;
    margin-top: 10px;
    transform: scale(0.76);
    transform-origin: center top;
  }

  .desktop-shell {
    top: 84px;
    right: 60px;
    width: 610px;
  }

  .phone-frame--hero {
    right: -12px;
  }

  .float-card--weather {
    right: 195px;
  }

  .stage-note {
    display: none;
  }

  .promise-strip div {
    animation-duration: 22s;
  }

  .section-intro > p:last-child {
    font-size: 16px;
  }

  .family-day__topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 25px 22px;
  }

  .story-control {
    width: 100%;
    justify-content: center;
  }

  .day-column {
    padding: 34px 24px;
  }

  .story-moments {
    min-height: 480px;
    padding: 45px 25px;
  }

  .story-moment {
    inset: 45px 25px 80px;
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .moment-number {
    width: 40px;
    height: 40px;
  }

  .story-moment h3 {
    font-size: 34px;
  }

  .story-progress {
    right: 25px;
    bottom: 40px;
    left: 25px;
  }

  .story-progress button {
    flex: 1;
  }

  .story-progress button > span {
    width: 100%;
  }

  .placeholder-note {
    padding-right: 15px;
    padding-left: 15px;
    line-height: 1.5;
  }

  .intelligence-section {
    padding-right: 4px;
    padding-left: 4px;
  }

  .intelligence-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 65px;
  }

  .intelligence-demo {
    min-height: 610px;
    border-radius: 23px;
  }

  .intelligence-demo__bar {
    padding: 19px;
  }

  .intelligence-demo__bar .preview-pill {
    display: none;
  }

  .calendar-streams,
  .ai-answer {
    padding: 19px;
  }

  .calendar-source {
    grid-template-columns: 9px 1fr;
  }

  .calendar-source time {
    display: none;
  }

  .conflict-beam {
    right: 34px;
  }

  .suggestion-card {
    grid-template-columns: 1fr;
  }

  .suggestion-card > span {
    width: max-content;
    padding: 0 9px;
  }

  .suggestion-card .mock-action {
    display: none;
  }

  .connected-section .section-intro h2 br,
  .audience-heading h2 br,
  .pricing-heading h2 br,
  .depth-section .section-intro h2 br {
    display: none;
  }

  .audience-key {
    width: 100%;
  }

  .audience-bridge {
    width: calc(100% - 24px);
    min-height: 62px;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    padding: 0 14px;
    font-size: 8px;
  }

  .audience-panel {
    padding: 39px 23px;
    border-radius: 25px;
  }

  .audience-panel__copy h3 {
    font-size: 39px;
  }

  .family-product-scene {
    min-height: 455px;
  }

  .phone-frame--family {
    width: 190px;
    height: 414px;
  }

  .phone-frame--rear {
    left: 0;
  }

  .phone-frame--front {
    right: 0;
  }

  .scene-chip {
    min-width: 160px;
    padding: 12px;
  }

  .scene-chip--arrival {
    top: 55px;
    right: -10px;
  }

  .scene-chip--message {
    bottom: 22px;
    left: -8px;
  }

  .coach-window__body {
    grid-template-columns: 1fr;
  }

  .coach-window aside {
    display: none;
  }

  .coach-canvas {
    padding: 24px 16px;
  }

  .coach-cards {
    grid-template-columns: 1fr;
  }

  .coach-cards article:nth-child(n+3) {
    display: none;
  }

  .coach-table p {
    grid-template-columns: 30px 1fr 55px;
  }

  .coach-table p em {
    display: none;
  }

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

  .brand-tools {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .brand-tools .mock-action {
    width: 100%;
    text-align: center;
  }

  .brand-application {
    grid-template-columns: 1fr 1fr;
  }

  .brand-email {
    display: none;
  }

  .commerce-section {
    padding-right: 4px;
    padding-left: 4px;
  }

  .store-story,
  .invoice-story {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .product-grid article:last-child {
    display: none;
  }

  .invoice-story__visual {
    min-height: 480px;
  }

  .invoice-card {
    width: calc(100% - 38px);
    padding: 22px;
  }

  .payment-toast {
    right: 14px;
    bottom: 28px;
    min-width: 210px;
  }

  .depth-card {
    min-height: 440px;
    padding: 32px 25px;
  }

  .depth-card--wide,
  .depth-card--stream {
    gap: 36px;
  }

  .formation-board {
    min-height: 270px;
  }

  .trust-layout {
    gap: 65px;
  }

  .pricing-card__main,
  .pricing-card__features {
    padding: 38px 25px;
  }

  .pricing-extras {
    grid-template-columns: 1fr;
  }

  .activity-week__bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .activity-days {
    grid-template-columns: repeat(5, minmax(170px, 1fr));
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
  }

  .activity-day {
    min-height: 360px;
    scroll-snap-align: start;
  }

  .activity-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .faq-list summary {
    min-height: 84px;
    font-size: 15px;
  }

  .contact-shell {
    padding: 38px 22px;
    border-radius: 26px;
  }

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

  .contact-form {
    padding: 22px 17px;
  }

  .closing-content h2 {
    font-size: 58px;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .brand__name {
    line-height: 1;
    white-space: nowrap;
  }

  .brand__name strong {
    font-size: 14.5px;
  }

  .brand__name small {
    font-size: 8.5px;
  }

  .brand--header .brand__mark {
    width: 58px;
    height: 48px;
    flex-basis: 58px;
  }

  .nav-toggle__label {
    display: none;
  }

  .nav-toggle {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    justify-content: flex-end;
    padding: 10px 0 10px 10px;
  }

  .launch-stage {
    width: 480px;
    margin-left: -45px;
  }

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-proof__divider {
    display: none;
  }

  .day-event {
    gap: 25px;
  }

  .audience-panel__copy h3 {
    font-size: 35px;
  }

  .phone-frame--family {
    width: 174px;
    height: 378px;
  }

  .family-product-scene {
    min-height: 420px;
  }

  .scene-chip {
    transform: scale(0.9);
  }

  .scene-chip--arrival {
    transform-origin: right;
  }

  .scene-chip--message {
    transform-origin: left;
  }

  .coach-welcome > span {
    display: none;
  }

  .product-grid {
    padding: 12px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }
}

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

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

  .launch-stage {
    transform: none !important;
  }

  .brand--header:hover .brand__mark {
    transform: none;
  }

  .intelligence-demo::after {
    animation: none;
  }

  .js-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Pricing path sizing is intentionally compact at smaller viewports. */
@media (max-width: 900px) {
  .pricing-path-grid {
    grid-template-columns: 1fr;
  }

  .pricing-family-lead,
  .pricing-team-route {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .pricing-section {
    padding-top: 56px;
    padding-bottom: 96px;
  }

  .pricing-heading {
    gap: 16px;
  }

  .pricing-heading h2 {
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1.02;
  }

  .pricing-heading__summary > p {
    font-size: 14px;
    line-height: 1.5;
  }

  .pricing-path-grid {
    gap: 14px;
    margin-top: 24px;
  }

  .pricing-family-lead,
  .pricing-team-route {
    padding: 22px 20px;
    border-radius: 20px;
  }

  .pricing-family-lead__topline,
  .pricing-team-route__topline {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 18px;
  }

  .pricing-family-lead__recommended,
  .pricing-family-lead__trial,
  .pricing-team-route__label,
  .pricing-team-route__starting {
    min-height: 26px;
    padding: 6px 9px;
    font-size: 8px;
  }

  .pricing-family-lead__heading {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
  }

  .pricing-family-lead__icon,
  .pricing-team-route__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 14px;
    border-radius: 15px;
  }

  .pricing-family-lead__heading .pricing-family-lead__icon {
    margin-bottom: 0;
  }

  .pricing-family-lead__icon svg,
  .pricing-team-route__icon svg {
    width: 25px;
    height: 25px;
  }

  .pricing-family-lead h3,
  .pricing-team-route h3 {
    font-size: clamp(25px, 7.2vw, 30px);
    line-height: 1.06;
  }

  .pricing-family-lead__intro,
  .pricing-team-route > p {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.5;
  }

  .pricing-team-route > p {
    margin-top: 0;
  }

  .pricing-family-lead__price,
  .pricing-team-route__price {
    margin-top: 18px;
  }

  .pricing-family-lead__capacity {
    gap: 7px;
    margin-top: 14px;
  }

  .pricing-family-lead__capacity span {
    padding: 10px;
  }

  .pricing-family-lead__capacity b {
    font-size: 14px;
  }

  .pricing-family-lead__capacity small {
    font-size: 9px;
  }

  .pricing-path-details {
    display: block;
    margin-top: 16px;
  }

  .pricing-path-details > summary {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 850;
    list-style: none;
  }

  .pricing-path-details > summary::-webkit-details-marker {
    display: none;
  }

  .pricing-path-details > summary span {
    font-size: 18px;
    line-height: 1;
    transition: transform 160ms ease;
  }

  .pricing-path-details[open] > summary span {
    transform: rotate(45deg);
  }

  .pricing-path-details--family > summary {
    color: #dffdf7;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.07);
  }

  .pricing-path-details--team > summary {
    color: #294b65;
    border: 1px solid #d4e1ea;
    background: #f6f9fb;
  }

  .pricing-path-details:not([open]) > .pricing-family-lead__features,
  .pricing-path-details:not([open]) > .pricing-family-lead__boundary,
  .pricing-path-details:not([open]) > .pricing-team-route__boundary,
  .pricing-path-details:not([open]) > ul {
    display: none;
  }

  .pricing-family-lead__price strong {
    font-size: 44px;
  }

  .pricing-team-route__price strong {
    font-size: 29px;
  }

  .pricing-family-lead__features,
  .pricing-team-route ul {
    grid-template-columns: 1fr;
    gap: 7px;
    margin-top: 18px;
    margin-bottom: 18px;
  }

  .pricing-family-lead__features li,
  .pricing-team-route li {
    font-size: 12px;
  }

  .pricing-family-lead__boundary {
    margin-top: 18px;
    padding: 11px 12px;
    font-size: 11px;
  }

  .pricing-family-lead__cta {
    min-height: 48px;
    margin-top: 16px;
    font-size: 12px;
  }

  .pricing-team-route__cta {
    min-height: 48px;
    font-size: 12px;
  }

  .pricing-start-band {
    margin-top: 32px;
  }
}

@media (max-width: 380px) {
  .pricing-heading h2 {
    font-size: 31px;
  }

  .pricing-family-lead,
  .pricing-team-route {
    padding: 20px 17px;
  }
}
