/* Fit Push homepage — production stylesheet */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/homepage/fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range:
    U+0400-045F,
    U+0490-0491,
    U+04B0-04B1,
    U+2116;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/homepage/fonts/manrope-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF,
    U+0131,
    U+0152-0153,
    U+02BB-02BC,
    U+02C6,
    U+02DA,
    U+02DC,
    U+0304,
    U+0308,
    U+0329,
    U+2000-206F,
    U+20AC,
    U+2122,
    U+2191,
    U+2193,
    U+2212,
    U+2215,
    U+FEFF,
    U+FFFD;
}

@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/homepage/fonts/unbounded-bold.woff") format("woff");
}

:root {
  --blue: #0b6fff;
  --blue-strong: #0062ed;
  --blue-soft: #e9f4ff;
  --cyan: #41dbe4;
  --navy: #17385f;
  --navy-deep: #102d50;
  --ink: #15304f;
  --muted: #67788c;
  --line: #d7e5f2;
  --surface: #ffffff;
  --ice: #eef7ff;
  --ice-2: #e6f2ff;
  --green: #24b86a;
  --shadow-sm: 0 12px 34px rgba(23, 56, 95, 0.09);
  --shadow-md: 0 24px 64px rgba(23, 56, 95, 0.14);
  --shadow-blue: 0 20px 38px rgba(11, 111, 255, 0.24);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 30px;
  --shell: 1260px;
  --sans: Manrope, Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: Unbounded, Manrope, sans-serif;
  --serif: var(--display);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #fff;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

:focus-visible {
  outline: 3px solid rgba(11, 111, 255, 0.42);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  inset: 12px auto auto 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 12px;
  color: #fff;
  background: var(--navy);
}

.skip-link:focus {
  transform: none;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 11px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #69dcff;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(11, 111, 255, 0.18);
  font-weight: 800;
  line-height: 1.2;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--blue-strong);
  box-shadow: var(--shadow-blue);
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button--large {
  min-height: 58px;
  padding: 16px 28px;
}

.button--ghost {
  border-color: #bdd3e7;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.button--ghost:hover {
  border-color: #98b8d5;
  color: var(--navy);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.button--white {
  border-color: #fff;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.15);
}

.button--white:hover {
  color: var(--navy);
  background: #f5fbff;
}

.button--dark {
  border-color: var(--navy);
  background: var(--navy);
  box-shadow: 0 16px 30px rgba(23, 56, 95, 0.22);
}

.button--dark:hover {
  background: var(--navy-deep);
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: transparent;
  box-shadow: none;
}

.button--outline-light:hover {
  color: var(--navy);
  background: #fff;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(247, 251, 255, 0.82);
  backdrop-filter: blur(18px);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(185, 209, 231, 0.8);
  box-shadow: 0 8px 28px rgba(23, 56, 95, 0.06);
}

.header__inner {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 21px;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(11, 111, 255, 0.2);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 32px);
  color: #49647f;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a,
.header__login {
  position: relative;
}

.main-nav a::after,
.header__login::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  border-radius: 4px;
  background: var(--blue);
  content: "";
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.header__login:hover::after {
  transform: scaleX(1);
}

.header__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 18px;
}

.header__login {
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 24px;
  background:
    radial-gradient(circle at 74% 8%, rgba(120, 196, 255, 0.3), transparent 28%),
    linear-gradient(120deg, #e9f6ff 0%, #f8fbff 50%, #e8f3ff 100%);
}

.hero::after {
  position: absolute;
  right: -12%;
  bottom: -32%;
  width: 52vw;
  height: 52vw;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  filter: blur(30px);
  content: "";
  pointer-events: none;
}

.hero__glow {
  display: none;
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero__glow--one {
  top: 120px;
  left: 6%;
  width: 90px;
  height: 90px;
  background: rgba(79, 212, 236, 0.17);
}

.hero__glow--two {
  right: 42%;
  bottom: 22%;
  width: 24px;
  height: 24px;
  background: rgba(11, 111, 255, 0.42);
  box-shadow: 0 0 50px rgba(11, 111, 255, 0.42);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 500px;
  align-items: center;
  grid-template-columns: minmax(420px, 0.86fr) minmax(560px, 1.14fr);
  gap: clamp(24px, 3vw, 46px);
}

.hero__copy {
  position: relative;
  z-index: 3;
  padding-block: 0;
}

.hero h1 {
  max-width: 640px;
  margin: 0;
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.hero__lead {
  max-width: 570px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.55;
}

.platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.platform-row span {
  padding: 8px 13px;
  border: 1px solid rgba(176, 205, 228, 0.9);
  border-radius: 999px;
  color: #49647f;
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero__note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  color: #5c7188;
  font-size: 13px;
  font-weight: 650;
}

.hero__note-icon {
  display: inline-grid;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  align-self: flex-start;
  margin-top: 1px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 12px;
  line-height: 1;
}

.hero__note-text {
  min-width: 0;
  line-height: 1.45;
}

.hero__visual {
  position: relative;
  min-width: 0;
  align-self: center;
}

.hero__image-wrap {
  position: relative;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero__image-wrap::after {
  display: none;
}

.hero__image-wrap img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: contain;
  filter: drop-shadow(0 24px 38px rgba(23, 56, 95, 0.13));
}

.hero__metrics {
  position: relative;
  z-index: 3;
  display: grid;
  padding: 18px 28px;
  border: 1px solid rgba(190, 214, 234, 0.88);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-sm);
  grid-template-columns: repeat(4, 1fr);
  backdrop-filter: blur(14px);
}

.hero__metrics div {
  display: grid;
  gap: 2px;
  padding-inline: 26px;
  border-right: 1px solid var(--line);
}

.hero__metrics div:first-child {
  padding-left: 0;
}

.hero__metrics div:last-child {
  padding-right: 0;
  border-right: 0;
}

.hero__metrics strong {
  color: var(--navy);
  font-family: var(--sans);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.1;
}

.hero__metrics span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.section {
  padding: clamp(64px, 7vw, 96px) 0;
}

.section--features,
.section--route,
.section--faq {
  background: #fff;
}

.section-heading {
  display: grid;
  align-items: end;
  margin-bottom: 34px;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.7fr);
  gap: 54px;
}

.section-heading h2,
.voice-card h2,
.services-panel h2,
.faq-intro h2,
.final-cta h2 {
  margin: 0;
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-heading > p,
.section-heading > div > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.section-heading--center {
  display: flex;
  max-width: 790px;
  align-items: center;
  margin-inline: auto;
  text-align: center;
  flex-direction: column;
  gap: 0;
}

.section-heading--center > p:last-child {
  max-width: 660px;
  margin-top: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  position: relative;
  display: flex;
  min-height: 270px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  flex-direction: column;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #bad4ea;
  box-shadow: var(--shadow-md);
}

.feature-card::after {
  position: absolute;
  top: -90px;
  right: -90px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(218, 238, 255, 0.52);
  content: "";
}

.feature-card--wide {
  display: grid;
  align-items: center;
  grid-column: span 2;
  grid-template-columns: 112px 1fr;
  gap: 24px;
}

.feature-card--accent {
  border-color: transparent;
  color: #dcecff;
  background:
    radial-gradient(circle at 92% 10%, rgba(53, 201, 255, 0.2), transparent 30%),
    linear-gradient(145deg, #143b69, #0f2d51);
}

.feature-card--accent h3,
.feature-card--accent a {
  color: #fff;
}

.feature-card--accent p {
  color: #c3d5e8;
}

.feature-card--accent::after {
  background: rgba(42, 160, 255, 0.14);
}

.icon-tile {
  position: relative;
  z-index: 1;
  display: grid;
  width: 78px;
  height: 78px;
  margin-bottom: 16px;
  place-items: center;
  border: 1px solid #d5e5f3;
  border-radius: 20px;
  background: linear-gradient(145deg, #fff, #eef7ff);
  box-shadow: 0 14px 24px rgba(23, 56, 95, 0.1);
}

.icon-tile img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.feature-card--wide .icon-tile {
  width: 104px;
  height: 104px;
  margin: 0;
  border-radius: 30px;
}

.feature-card--wide .icon-tile img {
  width: 84px;
  height: 84px;
}

.feature-card:last-child {
  display: grid;
  min-height: 190px;
  align-items: center;
  grid-column: 1 / -1;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  grid-template-areas:
    "icon title link"
    "icon copy link";
  column-gap: 24px;
}

.feature-card:last-child .icon-tile {
  grid-area: icon;
  margin: 0;
}

.feature-card:last-child h3 {
  grid-area: title;
  align-self: end;
}

.feature-card:last-child p {
  grid-area: copy;
  align-self: start;
  max-width: 720px;
  margin-bottom: 0;
}

.feature-card:last-child a {
  grid-area: link;
  margin: 0;
}

.feature-card h3,
.route-list h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.feature-card.feature-card--accent h3,
.feature-card.feature-card--accent a {
  color: #fff;
}

.feature-card p,
.route-list p {
  position: relative;
  z-index: 1;
  margin: 10px 0 16px;
  color: var(--muted);
  line-height: 1.62;
}

.feature-card.feature-card--accent p {
  color: #c3d5e8;
}

.feature-card a,
.route-list a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.feature-card a span,
.route-list a span {
  transition: transform 180ms ease;
}

.feature-card a:hover span,
.route-list a:hover span {
  transform: translateX(4px);
}

.voice-section {
  padding: 0 0 clamp(64px, 7vw, 96px);
  background: #fff;
}

.voice-card {
  position: relative;
  display: grid;
  min-height: 400px;
  overflow: hidden;
  padding: clamp(38px, 5vw, 70px);
  border-radius: var(--radius-lg);
  color: #d5e5f5;
  background:
    radial-gradient(circle at 84% 20%, rgba(33, 195, 255, 0.19), transparent 30%),
    linear-gradient(140deg, #183f6d, #102d50);
  box-shadow: 0 34px 72px rgba(16, 45, 80, 0.25);
  grid-template-columns: 1.08fr 0.72fr;
  gap: 40px;
}

.voice-card::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000);
}

.voice-card__copy {
  position: relative;
  z-index: 2;
}

.voice-card h2 {
  max-width: 700px;
  color: #fff;
}

.voice-card__copy > p:not(.eyebrow) {
  max-width: 690px;
  margin: 24px 0;
  color: #bed1e5;
  font-size: 16px;
}

.voice-command {
  max-width: 640px;
  margin: 28px 0 24px;
  padding: 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  font-size: 18px;
  font-weight: 850;
  text-align: center;
  backdrop-filter: blur(12px);
}

.voice-card__visual {
  position: relative;
  display: grid;
  min-height: 300px;
  place-items: center;
}

.voice-icon {
  position: relative;
  z-index: 3;
  display: grid;
  width: 190px;
  height: 190px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 26%, rgba(255, 255, 255, 0.55), transparent 24%),
    linear-gradient(145deg, rgba(39, 184, 255, 0.92), rgba(11, 111, 255, 0.3));
  box-shadow:
    0 0 70px rgba(45, 187, 255, 0.38),
    inset 0 0 28px rgba(255, 255, 255, 0.2);
}

.voice-icon img {
  width: 128px;
  height: 128px;
  object-fit: contain;
  filter: drop-shadow(0 14px 16px rgba(1, 20, 43, 0.25));
}

.voice-orbit {
  position: absolute;
  border: 1px solid rgba(92, 213, 255, 0.36);
  border-radius: 50%;
}

.voice-orbit--one {
  width: 270px;
  height: 270px;
  animation: orbit 18s linear infinite;
}

.voice-orbit--two {
  width: 350px;
  height: 350px;
  border-style: dashed;
  animation: orbit 28s linear infinite reverse;
}

.voice-wave {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.voice-wave i {
  width: 5px;
  border-radius: 99px;
  background: linear-gradient(#4ae3ff, #2c8dff);
  animation: wave 1.2s ease-in-out infinite alternate;
}

.voice-wave i:nth-child(1),
.voice-wave i:nth-child(7) { height: 14px; }
.voice-wave i:nth-child(2),
.voice-wave i:nth-child(6) { height: 24px; animation-delay: 100ms; }
.voice-wave i:nth-child(3),
.voice-wave i:nth-child(5) { height: 38px; animation-delay: 200ms; }
.voice-wave i:nth-child(4) { height: 48px; animation-delay: 300ms; }

@keyframes orbit {
  to { transform: rotate(360deg); }
}

@keyframes wave {
  to { transform: scaleY(0.45); opacity: 0.65; }
}

.section--route {
  background:
    radial-gradient(circle at 12% 12%, rgba(77, 210, 236, 0.14), transparent 24%),
    var(--ice);
}

.route-list {
  position: relative;
  display: grid;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.route-list::before {
  position: absolute;
  z-index: 0;
  top: 78px;
  right: 20%;
  left: 20%;
  height: 2px;
  background-image: linear-gradient(90deg, var(--blue) 42%, transparent 42%);
  background-size: 14px 2px;
  content: "";
  opacity: 0.3;
}

.route-list li {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 320px;
  padding: 24px;
  border: 1px solid #cfdfed;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
  flex-direction: column;
  backdrop-filter: blur(10px);
}

.route-list__number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #b5cce0;
  font-family: var(--serif);
  font-size: 32px;
}

.section--services {
  background: #fff;
}

.services-panel {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(38px, 7vw, 100px);
}

.services-panel__intro {
  position: sticky;
  top: 112px;
}

.services-panel__intro > p:not(.eyebrow) {
  margin: 24px 0 28px;
  color: var(--muted);
  font-size: 15px;
}

.service-links {
  display: grid;
  border-top: 1px solid var(--line);
}

.service-links a {
  display: grid;
  min-height: 76px;
  align-items: center;
  padding: 17px 6px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(180px, 0.8fr) minmax(220px, 1.2fr) 40px;
  gap: 20px;
  transition:
    padding 180ms ease,
    background 180ms ease;
}

.service-links a:hover {
  padding-right: 14px;
  padding-left: 14px;
  background: var(--ice);
}

.service-links span {
  color: var(--navy);
  font-size: 16px;
  font-weight: 850;
}

.service-links small {
  color: var(--muted);
  font-size: 14px;
}

.service-links b {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid #b9cee0;
  border-radius: 50%;
  color: var(--blue);
  font-size: 18px;
  font-weight: 500;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.service-links a:hover b {
  color: #fff;
  background: var(--blue);
}

.section--faq {
  background: var(--ice);
}

.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.62fr 1.38fr;
  gap: clamp(40px, 7vw, 100px);
}

.faq-intro p:not(.eyebrow) {
  margin: 22px 0 20px;
  color: var(--muted);
}

.faq-intro a {
  color: var(--blue);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid #cddfed;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
}

.faq-list summary {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  color: var(--navy);
  cursor: pointer;
  font-size: 16px;
  font-weight: 850;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border: 1px solid #b8cfe1;
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  transform: translate(-50%, -50%);
  border-radius: 3px;
  background: var(--blue);
  content: "";
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.final-cta {
  padding: 82px 0;
  color: #d8e8f8;
  background:
    radial-gradient(circle at 86% 20%, rgba(44, 199, 255, 0.21), transparent 26%),
    linear-gradient(135deg, #173e6b, #102d50);
}

.final-cta__inner {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 56px;
}

.final-cta h2 {
  max-width: 760px;
  color: #fff;
}

.final-cta p:not(.eyebrow) {
  max-width: 720px;
  margin: 20px 0 0;
  color: #bed2e7;
  font-size: 15px;
}

.final-cta__actions {
  display: grid;
  min-width: 245px;
  gap: 12px;
}

.site-footer {
  padding: 54px 0 26px;
  color: #577089;
  background: #f8fbfe;
}

.footer__top {
  display: grid;
  align-items: center;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: auto minmax(220px, 1fr) auto;
  gap: 34px;
}

.brand--footer {
  font-size: 22px;
}

.footer__top p {
  max-width: 390px;
  margin: 0;
  font-size: 14px;
}

.footer__top nav,
.footer__bottom > div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer__top nav a,
.footer__bottom a {
  font-size: 13px;
  font-weight: 700;
}

.footer__top nav a:hover,
.footer__bottom a:hover {
  color: var(--blue);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 22px;
  font-size: 12px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .main-nav {
    display: none;
  }

  .menu-button {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 10px;
    place-content: center;
    border: 1px solid #bdd2e4;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.8);
    gap: 5px;
  }

  .menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 4px;
    background: var(--navy);
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    z-index: 99;
    top: 68px;
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    padding: 18px 20px 28px;
    border-top: 1px solid var(--line);
    background: rgba(248, 252, 255, 0.98);
    box-shadow: var(--shadow-md);
    gap: 4px;
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav > a:not(.button) {
    min-height: 50px;
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    font-weight: 800;
  }

  .mobile-nav .button {
    margin-top: 12px;
  }

  .hero__grid {
    min-height: auto;
    grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
    gap: 22px;
  }

  .hero h1 {
    font-size: clamp(46px, 6vw, 64px);
  }

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

  .feature-card--wide {
    grid-column: span 2;
  }
}

@media (max-width: 860px) {
  .shell {
    width: min(calc(100% - 30px), var(--shell));
  }

  .header__login {
    display: none;
  }

  .hero {
    padding-top: 26px;
  }

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

  .hero__copy {
    text-align: center;
  }

  .hero h1,
  .hero__lead {
    margin-inline: auto;
  }

  .platform-row,
  .hero__actions,
  .hero__note {
    justify-content: center;
  }

  .hero__visual {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .hero__metrics {
    margin-top: 22px;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 0;
  }

  .hero__metrics div:nth-child(2) {
    border-right: 0;
  }

  .hero__metrics div:nth-child(3),
  .hero__metrics div:nth-child(4) {
    padding-top: 18px;
    border-top: 1px solid var(--line);
  }

  .section-heading,
  .services-panel,
  .faq-layout,
  .final-cta__inner {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    gap: 20px;
  }

  .voice-card {
    grid-template-columns: 1fr;
  }

  .voice-card__copy {
    text-align: center;
  }

  .voice-card__copy > p:not(.eyebrow),
  .voice-command {
    margin-inline: auto;
  }

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

  .route-list::before {
    display: none;
  }

  .route-list li {
    min-height: auto;
  }

  .services-panel__intro {
    position: static;
  }

  .final-cta__actions {
    width: min(100%, 380px);
    min-width: 0;
  }

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

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .header__inner {
    min-height: 64px;
  }

  .brand {
    font-size: 20px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .header__actions > .button {
    display: none;
  }

  .mobile-nav {
    top: 64px;
    max-height: calc(100vh - 64px);
  }

  .hero {
    padding-top: 20px;
  }

  .hero__grid {
    display: grid;
    gap: 12px;
  }

  .hero__copy {
    display: contents;
  }

  .hero__copy > .eyebrow {
    order: 1;
    margin: 0;
  }

  .hero h1 {
    order: 2;
    margin: 0;
    font-size: clamp(34px, 9.5vw, 39px);
    line-height: 1.04;
  }

  .hero__lead {
    order: 3;
    margin: 4px 0 0;
    font-size: 15px;
  }

  .hero__visual {
    order: 4;
    margin: 8px 0 4px;
  }

  .platform-row span {
    font-size: 11px;
  }

  .platform-row {
    order: 5;
    margin-top: 0;
  }

  .hero__actions {
    order: 7;
    display: grid;
    margin-top: 8px;
  }

  .hero__start-label {
    order: 6;
    margin: 2px 0 0;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__note {
    order: 8;
    margin-top: 2px;
  }

  .hero__image-wrap {
    border-radius: 0;
  }

  .hero__image-wrap img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    border-radius: 18px;
    object-fit: contain;
    object-position: center;
  }

  .hero__metrics {
    padding: 22px 18px;
  }

  .hero__metrics div {
    padding-inline: 14px;
  }

  .hero__metrics strong {
    font-size: 24px;
  }

  .hero__metrics span {
    font-size: 11px;
  }

  .section {
    padding-block: 58px;
  }

  .section-heading h2,
  .voice-card h2,
  .services-panel h2,
  .faq-intro h2,
  .final-cta h2 {
    font-size: clamp(31px, 8.5vw, 40px);
  }

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

  .feature-card,
  .feature-card--wide,
  .feature-card:last-child {
    display: flex;
    min-height: 0;
    padding: 22px;
    grid-column: auto;
  }

  .feature-card--wide .icon-tile,
  .icon-tile {
    width: 84px;
    height: 84px;
    margin: 0 0 18px;
    border-radius: 22px;
  }

  .feature-card--wide .icon-tile img,
  .icon-tile img {
    width: 68px;
    height: 68px;
  }

  .voice-section {
    padding-bottom: 58px;
  }

  .voice-card {
    width: min(calc(100% - 20px), var(--shell));
    min-height: auto;
    padding: 34px 22px;
    border-radius: 28px;
  }

  .voice-command {
    border-radius: 18px;
    font-size: 15px;
  }

  .voice-card__visual {
    min-height: 260px;
  }

  .voice-icon {
    width: 150px;
    height: 150px;
  }

  .voice-icon img {
    width: 104px;
    height: 104px;
  }

  .voice-orbit--one {
    width: 210px;
    height: 210px;
  }

  .voice-orbit--two {
    width: 260px;
    height: 260px;
  }

  .service-links a {
    min-height: 0;
    padding: 18px 4px;
    grid-template-columns: 1fr 36px;
    gap: 4px 14px;
  }

  .service-links span {
    font-size: 16px;
  }

  .service-links small {
    grid-row: 2;
    font-size: 12px;
  }

  .service-links b {
    grid-row: 1 / 3;
    grid-column: 2;
  }

  .faq-list summary {
    min-height: 68px;
    padding: 18px;
    font-size: 16px;
  }

  .faq-list details p {
    padding: 0 18px 18px;
  }

  .final-cta {
    padding: 70px 0;
  }

  .final-cta__actions {
    width: 100%;
  }

  .footer__top nav,
  .footer__bottom > div {
    display: grid;
    gap: 10px;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

.hero__image-wrap.fp-scroll-video {
  display: grid;
  aspect-ratio: 3 / 2;
  isolation: isolate;
}

.fp-scroll-video__poster,
.fp-scroll-video__media {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 24px 38px rgba(23, 56, 95, 0.13));
}

.fp-scroll-video__poster {
  position: relative;
  z-index: 1;
  opacity: 1;
  will-change: opacity;
  transition: opacity 420ms cubic-bezier(.22,.61,.36,1);
}

.fp-scroll-video__media {
  position: relative;
  z-index: 2;
  display: block;
  background: #eef7ff;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
  transition: opacity 420ms cubic-bezier(.22,.61,.36,1);
}

.fp-scroll-video.is-video-ready .fp-scroll-video__poster {
  opacity: 0;
}

.fp-scroll-video.is-video-ready .fp-scroll-video__media {
  opacity: 1;
}

.fp-scroll-video.is-video-fallback .fp-scroll-video__poster {
  opacity: 1;
}

.fp-scroll-video.is-video-fallback .fp-scroll-video__media {
  display: none;
}

@media (max-width: 720px) {
  .fp-scroll-video__poster,
  .fp-scroll-video__media {
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fp-scroll-video__poster {
    opacity: 1 !important;
    transition: none;
  }

  .fp-scroll-video__media {
    display: none !important;
  }
}

/* Homepage ecosystem hierarchy: keep the existing tokens and video surface, but make the two generators the primary entry points. */
.hero h1 { font-family: var(--display); font-weight: 700; letter-spacing: 0; }
.hero__actions--equal { align-items: stretch; }
.hero__actions--equal .button { flex: 1 1 250px; min-height: 58px; }
.hero__start-label { margin: 22px 0 -12px; color: var(--ink); font-size: 14px; font-weight: 750; }
.intro-section { padding-top: 34px; padding-bottom: 28px; }
.how-card { overflow: hidden; padding: clamp(30px,4.5vw,54px); border: 1px solid #c9e0f5; border-radius: 26px; background: linear-gradient(135deg,#f1f9ff 0%,#e4f3ff 52%,#f8fcff 100%); box-shadow: 0 18px 48px rgba(23,56,95,.09); }
.how-card__head { max-width: 980px; }
.how-card__head .eyebrow { margin-bottom: 14px; }
.how-card__head h2 { max-width: 1000px; margin: 0; color: var(--navy-deep); font-size: clamp(28px,3.5vw,46px); line-height: 1.14; text-wrap: balance; }
.how-card__head h2 span { background: linear-gradient(transparent 67%,rgba(255,216,77,.68) 67%); }
.how-card__head > p:last-child { max-width: 850px; margin: 20px 0 0; color: #526b84; font-size: clamp(15px,1.5vw,18px); line-height: 1.65; }
.how-steps { display: grid; margin: 34px 0 0; padding: 28px 0 0; border-top: 1px solid rgba(123,172,213,.42); list-style: none; grid-template-columns: repeat(3,minmax(0,1fr)); }
.how-step { min-width: 0; padding: 0 clamp(22px,3vw,40px); }
.how-step:first-child { padding-left: 0; }
.how-step:last-child { padding-right: 0; }
.how-step + .how-step { border-left: 1px solid rgba(123,172,213,.42); }
.how-step__top { display: flex; min-height: 54px; align-items: center; justify-content: space-between; gap: 16px; }
.how-step__top span { color: var(--blue); font-family: var(--display); font-size: 20px; font-weight: 700; }
.how-step__top img { width: 48px; height: 48px; object-fit: contain; filter: drop-shadow(0 8px 14px rgba(23,56,95,.12)); }
.how-step h3 { margin: 16px 0 8px; color: var(--navy-deep); font-size: clamp(17px,1.7vw,22px); line-height: 1.25; }
.how-step p { margin: 0; color: var(--muted); line-height: 1.55; }
.primary-services { padding-top: 34px; padding-bottom: 42px; }
.primary-services__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; max-width: 1040px; margin: 0 auto; }
.service-card-main { display: flex; flex-direction: column; align-items: flex-start; min-height: 320px; padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); box-shadow: 0 16px 42px rgba(23,56,95,.09); }
.service-card-main--accent { background: linear-gradient(145deg, #eff8ff, #fff); border-color: rgba(0,132,255,.3); }
.service-card-main .icon-tile { margin-bottom: 8px; }
.service-card-main__kicker { margin: 0 0 4px; color: var(--blue); font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0; }
.service-card-main h3 { margin: 0 0 12px; color: var(--navy-deep); font-family: var(--display); font-size: clamp(1.25rem, 2.2vw, 1.8rem); font-weight: 700; line-height: 1.25; letter-spacing: 0; }
.service-card-main > p:not(.service-card-main__kicker) { margin: 0 0 22px; color: var(--muted); }
.service-card-main .button { margin-top: auto; width: 100%; }
.secondary-services { padding-top: 26px; padding-bottom: 26px; }
.secondary-services__grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0 18px; border-top: 1px solid var(--line); }
.service-list-link { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 68px; padding: 13px 4px; border-bottom: 1px solid var(--line); color: inherit; text-decoration: none; transition: color .2s ease, padding .2s ease; }
.service-list-link:hover { padding-inline: 10px; color: var(--blue); }
.service-list-link strong { color: var(--ink); font-size: .98rem; line-height: 1.25; }
.service-list-link span { flex: 0 1 auto; color: var(--muted); font-size: .82rem; text-align: right; }
.service-list-link b { margin-left: 7px; color: var(--blue); font-size: 1rem; }
.app-section { padding-top: 28px; padding-bottom: 28px; }
.app-section__panel { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 30px; align-items: center; padding: 30px 34px; border-radius: 24px; background: linear-gradient(135deg, var(--navy-deep), var(--navy)); color: #fff; box-shadow: 0 20px 54px rgba(23,56,95,.18); }
.app-section__copy h2 { color: #fff; }
.app-section__copy > p:not(.eyebrow) { max-width: 580px; color: rgba(255,255,255,.75); }
.app-section__copy .button { margin-top: 10px; }
.app-features { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.app-features li { position: relative; padding: 14px 16px 14px 44px; border: 1px solid rgba(255,255,255,.13); border-radius: 14px; color: rgba(255,255,255,.82); background: rgba(255,255,255,.06); }
.app-features li::before { content: "✓"; position: absolute; left: 16px; top: 14px; color: #7dd3fc; font-weight: 900; }
.app-features__small { font-size: .9rem; color: rgba(255,255,255,.62) !important; }
.course-section { padding-top: 18px; padding-bottom: 28px; }
.course-section__panel { position: relative; display: grid; overflow: hidden; min-height: 300px; align-items: center; grid-template-columns: minmax(0,1fr) minmax(210px,280px); gap: 34px; padding: 34px 42px; border: 0; border-radius: 24px; background: linear-gradient(118deg,#0d4f91 0%,#0875cc 68%,#ffd84d 68%,#ffe990 100%); box-shadow: 0 22px 56px rgba(13,79,145,.24); }
.course-section__copy { position: relative; z-index: 2; max-width: 720px; }
.course-section__copy .eyebrow { margin-bottom: 12px; color: #ffe166; }
.course-section__panel h2 { max-width: 720px; margin: 0 0 12px; color: #fff; font-size: clamp(28px,3vw,42px); line-height: 1.15; }
.course-section__panel p:not(.eyebrow) { max-width: 680px; margin: 0; color: rgba(255,255,255,.82); font-size: 1rem; line-height: 1.65; }
.course-section__button { margin-top: 24px; border-color: #fff; color: var(--navy-deep); background: #fff; box-shadow: 0 12px 28px rgba(4,37,72,.2); }
.course-section__button:hover { border-color: #ffe166; color: var(--navy-deep); background: #ffe166; }
.course-section__visual { position: relative; z-index: 1; display: grid; min-width: 0; place-items: center; }
.course-section__visual img { display: block; width: min(250px,100%); height: auto; filter: drop-shadow(0 22px 25px rgba(72,51,0,.22)); animation: course-float 4.8s ease-in-out infinite; }
@keyframes course-float { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-10px) rotate(1deg); } }
.trainer-section { padding-top: 20px; padding-bottom: 26px; }
.trainer-section__panel { display: block; max-width: 860px; padding: 22px 26px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.trainer-section__panel h2 { margin-bottom: 8px; }
.trainer-section__panel p:not(.eyebrow) { margin: 0 0 12px; color: var(--muted); }
.section--faq { padding-top: 28px; padding-bottom: 34px; }
.faq-intro p:not(.eyebrow) { color: var(--muted); }

.service-list-link { transition: color .2s ease, padding .2s ease, background-color .2s ease; }
.service-list-link:hover { background: var(--blue-soft); }
@media (max-width: 900px) {
  .primary-services__grid, .app-section__panel { grid-template-columns: 1fr; }
  .secondary-services__grid { grid-template-columns: 1fr 1fr; }
  .course-section__panel { grid-template-columns: minmax(0,1fr) 210px; padding: 30px; }
}
@media (max-width: 760px) {
  .how-card { padding: 26px 22px; border-radius: 22px; }
  .how-card__head h2 br { display: none; }
  .how-steps { grid-template-columns: 1fr; gap: 0; margin-top: 26px; padding-top: 4px; border-top: 0; }
  .how-step, .how-step:first-child, .how-step:last-child { padding: 22px 0; }
  .how-step + .how-step { border-top: 1px solid rgba(123,172,213,.42); border-left: 0; }
  .how-step__top { min-height: 44px; }
  .how-step__top img { width: 44px; height: 44px; }
}
@media (max-width: 640px) {
  .hero__actions--equal .button { flex-basis: 100%; }
  .secondary-services__grid { grid-template-columns: 1fr; }
  .service-card-main { min-height: 0; padding: 24px; }
  .app-section__panel { padding: 24px; }
  .course-section__panel { min-height: 0; grid-template-columns: 1fr; gap: 18px; padding: 28px 22px 20px; background: linear-gradient(160deg,#0d4f91 0%,#0875cc 72%,#ffd84d 72%,#ffe990 100%); }
  .course-section__panel h2 { font-size: 28px; }
  .course-section__button { width: 100%; }
  .course-section__visual { min-height: 150px; }
  .course-section__visual img { width: 176px; }
  .trainer-section__panel { padding: 22px; }
}
