:root {
  --ice: #f7fcff;
  --white: #ffffff;
  --mist: #e8f7ff;
  --mist-deep: #cdefff;
  --cobalt: #1555ff;
  --blue: #0e43d4;
  --deep: #071e58;
  --ink: #0b2047;
  --cyan: #2ad8ed;
  --coral: #ff756a;
  --muted: #5c6f90;
  --line: rgba(16, 69, 174, .15);
  --shadow: 0 28px 80px rgba(18, 67, 155, .14);
  --max: 1340px;
  --pad: clamp(20px, 5vw, 76px);
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 9%, rgba(42, 216, 237, .12), transparent 25rem),
    radial-gradient(circle at 88% 20%, rgba(21, 85, 255, .09), transparent 30rem),
    var(--ice);
  font-family: var(--sans);
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  border: 0;
}

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

::selection {
  color: var(--white);
  background: var(--cobalt);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: -80px;
  left: 20px;
  padding: 11px 18px;
  color: var(--white);
  border-radius: 999px;
  background: var(--deep);
  transition: top .2s ease;
}

.skip-link:focus {
  top: 16px;
}

.scroll-meter {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-meter span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--cobalt), var(--coral));
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 18px;
  width: min(calc(100% - 32px), 1180px);
  margin: 18px auto 0;
}

.nav-capsule {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 72px;
  padding: 8px 10px 8px 12px;
  border: 1px solid rgba(20, 77, 182, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 16px 48px rgba(16, 58, 139, .11);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--white), var(--mist));
  box-shadow: inset 0 0 0 1px rgba(21, 85, 255, .1), 0 8px 20px rgba(21, 85, 255, .1);
}

.brand-mark img {
  width: 30px;
  height: 30px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-copy strong {
  font-size: 16px;
  letter-spacing: .08em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .11em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 34px);
  flex: 1;
}

.desktop-nav a {
  position: relative;
  color: #344d75;
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--cyan);
  content: "";
  transform: scaleX(0);
  transition: transform .2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.system-pill {
  flex: 0 0 auto;
  padding: 11px 16px;
  color: var(--white);
  border-radius: 999px;
  background: var(--cobalt);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .04em;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  place-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  background: var(--cobalt);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: transform .2s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  top: 82px;
  right: 0;
  left: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, .97);
  box-shadow: var(--shadow);
}

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

.mobile-nav a {
  display: block;
  padding: 15px 18px;
  border-radius: 18px;
  color: #263f6b;
  font-size: 15px;
  font-weight: 700;
}

.mobile-nav a:hover {
  background: var(--mist);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: clamp(20px, 3vw, 54px);
  width: min(100%, 1520px);
  min-height: calc(100vh - 108px);
  margin: 0 auto;
  padding: clamp(58px, 7vw, 110px) var(--pad) 50px;
}

.hero-copy {
  position: relative;
  z-index: 5;
  max-width: 650px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 25px;
  color: var(--cobalt);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
}

.eyebrow span {
  display: block;
  width: 32px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 13px 0 0 -2px var(--coral);
}

.hero h1,
.section-heading h2,
.download h2 {
  margin: 0;
  font-weight: 760;
  letter-spacing: -.055em;
  line-height: 1.05;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(54px, 6.2vw, 94px);
}

.hero h1 em {
  color: var(--cobalt);
  font-style: normal;
}

.hero-lead {
  max-width: 610px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 18px);
}

.hero-download-panel {
  max-width: 540px;
  margin-top: 23px;
  scroll-margin-top: 120px;
}

.hero-download-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 7px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.hero-download-label span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255, 117, 106, .1);
}

.hero-afterline {
  display: flex;
  align-items: center;
  min-height: 42px;
  margin-top: 12px;
}

.hero-path {
  display: flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .66);
}

.hero-path span {
  color: #294875;
  font-size: 12px;
  font-weight: 750;
}

.hero-path i {
  width: 20px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--cobalt));
}

.hero-system {
  margin: 6px 0 0 4px;
  color: #6a7a96;
  font-size: 11px;
}

.hero-system span {
  margin-right: 5px;
  color: var(--cyan);
}

.response-engine {
  position: relative;
  width: 100%;
  min-height: 680px;
  margin: 0;
  overflow: hidden;
  isolation: isolate;
}

.response-engine::before {
  position: absolute;
  z-index: -4;
  top: 50%;
  left: 50%;
  width: min(92%, 650px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.92) 0 32%, rgba(210,241,255,.64) 33% 53%, rgba(21,85,255,.05) 54% 69%, transparent 70%);
  content: "";
  transform: translate(-50%, -50%);
}

.engine-halo,
.engine-track {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.engine-halo {
  z-index: -2;
  border: 1px solid rgba(21, 85, 255, .13);
}

.halo-one {
  width: min(83%, 560px);
  aspect-ratio: 1;
  border-top-color: var(--cyan);
  border-right-color: rgba(21, 85, 255, .5);
  animation: ring-turn 24s linear infinite;
}

.halo-two {
  width: min(59%, 400px);
  aspect-ratio: 1;
  border-width: 2px;
  border-style: dashed;
  border-color: rgba(21, 85, 255, .16);
  animation: ring-turn-reverse 30s linear infinite;
}

.engine-track {
  z-index: -1;
  width: min(72%, 490px);
  aspect-ratio: 1;
  border: 14px solid rgba(255, 255, 255, .82);
  box-shadow: 0 0 0 1px rgba(21, 85, 255, .12), inset 0 0 45px rgba(42, 216, 237, .11), 0 22px 70px rgba(21, 85, 255, .1);
}

.track-dot {
  position: absolute;
  width: 13px;
  height: 13px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--cobalt);
  box-shadow: 0 4px 14px rgba(21, 85, 255, .35);
}

.dot-one { top: 2%; left: 36%; }
.dot-two { top: 56%; right: -3%; background: var(--cyan); }
.dot-three { bottom: 6%; left: 24%; background: var(--coral); }

.engine-core {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: clamp(150px, 26%, 190px);
  aspect-ratio: 1;
  color: var(--white);
  border: 9px solid rgba(255,255,255,.86);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--cobalt), #0832a0);
  box-shadow: 0 22px 45px rgba(21, 85, 255, .25);
  transform: translate(-50%, -50%);
}

.engine-core::after {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: inherit;
  content: "";
}

.engine-core span {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .23em;
}

.engine-core strong {
  margin: 2px 0;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -.05em;
}

.engine-core small {
  color: rgba(255,255,255,.7);
  font-size: 9px;
}

.orbit-card {
  position: absolute;
  z-index: 8;
  margin: 0;
  padding: 17px 18px;
  border: 1px solid rgba(21, 85, 255, .12);
  border-radius: 24px;
  background: rgba(255,255,255,.93);
  box-shadow: 0 18px 50px rgba(18, 64, 145, .13);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.orbit-card small {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--cobalt);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
}

.orbit-card p {
  margin: 8px 0 0;
  color: #253e66;
  font-size: 12px;
  line-height: 1.65;
}

.question-card {
  top: 10%;
  left: 2%;
  width: min(38%, 235px);
  border-radius: 25px 25px 25px 7px;
  animation: card-arrive-left .62s .25s both;
}

.question-card small i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255,117,106,.12);
}

.matching-card {
  top: 38%;
  right: 0;
  width: min(36%, 220px);
  animation: card-arrive-right .62s 1.05s both;
}

.matching-card p {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.matching-card p span {
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--blue);
  font-size: 9px;
  font-weight: 750;
}

.matching-card b {
  display: block;
  margin-top: 8px;
  color: #71809a;
  font-size: 8px;
  font-weight: 650;
  text-align: right;
}

.answer-card {
  bottom: 7%;
  left: 8%;
  width: min(52%, 320px);
  border-color: rgba(42, 216, 237, .4);
  border-radius: 25px 25px 7px 25px;
  animation: card-arrive-left .68s 1.85s both;
}

.answer-card small i {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: var(--deep);
  border-radius: 50%;
  background: var(--cyan);
  font-size: 10px;
  font-style: normal;
}

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

.wave-bridge {
  position: relative;
  z-index: 2;
  width: 100%;
  line-height: 0;
  pointer-events: none;
}

.wave-bridge svg {
  width: 100%;
  height: clamp(130px, 15vw, 220px);
}

.wave-into-blue {
  margin-top: -45px;
  margin-bottom: -1px;
}

.wave-soft { fill: #dff5ff; }
.wave-cyan { fill: #58ddee; }
.wave-blue { fill: var(--deep); }

.rhythm {
  position: relative;
  margin-top: -1px;
  padding: clamp(72px, 8vw, 120px) var(--pad) clamp(70px, 9vw, 140px);
  color: var(--white);
  background: var(--deep);
}

.section-heading {
  width: min(100%, var(--max));
  margin: 0 auto clamp(55px, 7vw, 96px);
}

.section-heading > p:first-child,
.download-copy > p:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--cobalt);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-heading > p:first-child span,
.download-copy > p:first-child span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 24px;
  border-radius: 999px;
  color: var(--white);
  background: var(--cobalt);
  font-size: 9px;
  letter-spacing: 0;
}

.section-heading.light > p:first-child {
  color: var(--cyan);
}

.section-heading.light > p:first-child span {
  color: var(--deep);
  background: var(--cyan);
}

.section-heading h2,
.download h2 {
  max-width: 1050px;
  font-size: clamp(42px, 5.4vw, 78px);
}

.heading-note {
  max-width: 560px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.section-heading.light .heading-note {
  color: rgba(255,255,255,.57);
}

.rhythm-layout {
  display: grid;
  grid-template-columns: minmax(360px, .85fr) minmax(450px, 1.15fr);
  gap: clamp(50px, 9vw, 150px);
  width: min(100%, 1220px);
  margin: 0 auto;
}

.flow-sticky {
  position: sticky;
  top: 150px;
  align-self: start;
}

.flow-dial {
  position: relative;
  width: min(100%, 470px);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,216,237,.08), transparent 62%);
  transition: filter .4s ease;
}

.dial-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.dial-outer {
  width: 94%;
  aspect-ratio: 1;
  border: 1px solid rgba(96, 223, 244, .24);
  border-top-color: var(--cyan);
}

.dial-middle {
  width: 72%;
  aspect-ratio: 1;
  border: 8px solid rgba(255,255,255,.05);
  box-shadow: 0 0 0 1px rgba(255,255,255,.12), inset 0 0 50px rgba(42,216,237,.06);
}

.dial-route {
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(255,255,255,.15);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.dial-route i {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 4px solid var(--deep);
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  transition: background .35s ease, box-shadow .35s ease, transform .35s ease;
}

.dial-route i:nth-child(1) { top: 3%; left: 29%; }
.dial-route i:nth-child(2) { top: 48%; right: -2%; }
.dial-route i:nth-child(3) { bottom: 5%; left: 19%; }

.flow-dial[data-stage="1"] .dial-route i:nth-child(1),
.flow-dial[data-stage="2"] .dial-route i:nth-child(-n+2),
.flow-dial[data-stage="3"] .dial-route i {
  background: var(--cyan);
  box-shadow: 0 0 0 7px rgba(42,216,237,.12), 0 0 25px rgba(42,216,237,.5);
  transform: scale(1.15);
}

.dial-label {
  position: absolute;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.04);
  font-size: 10px;
  letter-spacing: .12em;
}

.label-question { top: 3%; left: 25%; }
.label-search { top: 47%; right: -1%; }
.label-ready { bottom: 3%; left: 17%; }

.dial-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 47%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(24,84,238,.9), rgba(8,40,125,.88));
  box-shadow: 0 25px 70px rgba(0,0,0,.25), inset 0 0 35px rgba(42,216,237,.09);
  transform: translate(-50%, -50%);
}

.dial-core small {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
}

.dial-core strong {
  max-width: 80%;
  margin: 10px 0;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.15;
  text-align: center;
}

.dial-core > span {
  color: rgba(255,255,255,.55);
  font-size: 10px;
  letter-spacing: .15em;
}

.dial-core > span i {
  color: var(--white);
  font-style: normal;
}

.dial-progress {
  width: min(70%, 310px);
  height: 4px;
  margin: 22px auto 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
}

.dial-progress span {
  display: block;
  width: 33.333%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--cobalt));
  transition: width .4s ease;
}

.rhythm-story {
  margin: 0;
  padding: 0;
  list-style: none;
}

.story-step {
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-height: 76vh;
  margin-bottom: 8vh;
  padding: clamp(34px, 5vw, 62px);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 80px 30px 80px 30px;
  background: rgba(247,252,255,.94);
  box-shadow: 0 34px 90px rgba(0,0,0,.17);
  opacity: .48;
  transform: scale(.96);
  transition: opacity .45s ease, transform .45s ease, background .45s ease;
}

.story-step:nth-child(2) {
  border-radius: 30px 90px 30px 90px;
  background: #e7f9ff;
}

.story-step:nth-child(3) {
  margin-bottom: 0;
  background: #f8fbff;
}

.story-step.is-active {
  opacity: 1;
  transform: scale(1);
}

.step-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 46px;
  color: var(--cobalt);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .16em;
}

.step-topline i {
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--deep);
  background: var(--cyan);
  font-style: normal;
  letter-spacing: .08em;
}

.story-step h3 {
  max-width: 570px;
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: -.045em;
  line-height: 1.08;
}

.story-step > p {
  max-width: 590px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.story-step blockquote {
  position: relative;
  max-width: 540px;
  margin: 42px 0 0;
  padding: 20px 23px;
  border-radius: 23px 23px 23px 6px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(18,67,155,.1);
  color: #29446f;
  font-size: 13px;
  line-height: 1.75;
}

.story-step blockquote span {
  display: block;
  margin-bottom: 6px;
  color: var(--coral);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
}

.story-step .answer-bubble {
  border-radius: 23px 23px 6px 23px;
  background: var(--cobalt);
  color: var(--white);
}

.answer-bubble span {
  color: var(--cyan) !important;
}

.keyword-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 42px;
}

.keyword-flow span,
.keyword-flow b {
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(21,85,255,.1);
  color: var(--blue);
  font-size: 11px;
}

.keyword-flow b {
  color: var(--deep);
  background: var(--cyan);
  box-shadow: none;
}

.wave-into-ice {
  margin-top: -1px;
  margin-bottom: -25px;
  background: var(--deep);
}

.wave-deep { fill: var(--deep); }
.wave-mist { fill: var(--ice); }

.abilities {
  position: relative;
  padding: clamp(90px, 10vw, 160px) var(--pad) clamp(80px, 9vw, 140px);
  overflow: hidden;
}

.abilities::before {
  position: absolute;
  z-index: -1;
  top: 15%;
  right: -13rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(21,85,255,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(42,216,237,.025), 0 0 0 140px rgba(21,85,255,.02);
  content: "";
}

.ability-stream {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: min(100%, 1220px);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.ability-stream::before {
  position: absolute;
  z-index: -1;
  top: -28px;
  bottom: -28px;
  left: 50%;
  width: 2px;
  background: linear-gradient(var(--cyan), var(--cobalt), transparent);
  content: "";
  transform: translateX(-50%);
}

.ability-stream li {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(230px, .85fr) minmax(280px, 1fr) 72px;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  width: 91%;
  min-height: 168px;
  padding: 27px 31px;
  border: 1px solid rgba(21,85,255,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 22px 58px rgba(21,85,255,.08);
}

.ability-stream li:nth-child(2) {
  align-self: flex-end;
  background: rgba(229,248,255,.9);
}

.ability-index {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--white);
  background: var(--cobalt);
  font-size: 11px;
  font-weight: 850;
}

.ability-stream li:nth-child(2) .ability-index {
  color: var(--deep);
  background: var(--cyan);
}

.ability-stream li:nth-child(3) .ability-index {
  background: var(--coral);
}

.ability-stream small {
  color: var(--cobalt);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .18em;
}

.ability-stream h3 {
  margin: 5px 0 0;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: -.04em;
  line-height: 1.15;
}

.ability-stream p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.ability-stream li > i {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px dashed rgba(21,85,255,.28);
  border-radius: 50%;
  color: var(--cobalt);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.pace-statement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 7vw, 90px);
  width: min(100%, 1050px);
  margin: clamp(80px, 10vw, 145px) auto 0;
}

.pace-orbit {
  position: relative;
  flex: 0 0 clamp(150px, 20vw, 240px);
  aspect-ratio: 1;
  border: 1px solid rgba(21,85,255,.2);
  border-radius: 50%;
  box-shadow: inset 0 0 0 25px rgba(42,216,237,.05), inset 0 0 0 26px rgba(21,85,255,.08);
}

.pace-orbit::before {
  position: absolute;
  inset: 27%;
  border-radius: 50%;
  background: var(--cobalt);
  box-shadow: 0 16px 38px rgba(21,85,255,.24);
  content: "";
}

.pace-orbit span,
.pace-orbit i {
  position: absolute;
  border-radius: 50%;
  background: var(--cyan);
}

.pace-orbit span {
  top: 12%;
  left: 20%;
  width: 17px;
  height: 17px;
}

.pace-orbit i {
  right: 9%;
  bottom: 26%;
  width: 11px;
  height: 11px;
  background: var(--coral);
}

.pace-statement p {
  margin: 0;
  font-size: clamp(30px, 4.2vw, 58px);
  font-weight: 690;
  letter-spacing: -.05em;
  line-height: 1.17;
}

.pace-statement strong {
  color: var(--cobalt);
}

.download {
  position: relative;
  padding: clamp(92px, 11vw, 165px) var(--pad) clamp(80px, 9vw, 130px);
  color: var(--white);
  border-radius: 50% 50% 0 0 / 90px 90px 0 0;
  background:
    radial-gradient(circle at 50% 0, rgba(42,216,237,.3), transparent 25rem),
    linear-gradient(145deg, #174ff2, #06236c 72%);
  overflow: hidden;
}

.download-orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-a {
  top: -21rem;
  left: -12rem;
  width: 48rem;
  height: 48rem;
  box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.018);
}

.orbit-b {
  right: -15rem;
  bottom: -23rem;
  width: 42rem;
  height: 42rem;
  border-color: rgba(42,216,237,.22);
  box-shadow: inset 0 0 0 60px rgba(42,216,237,.025);
}

.download-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 1100px);
  margin: 0 auto 65px;
  text-align: center;
}

.download-copy > p:first-child {
  justify-content: center;
  color: var(--cyan);
}

.download-copy > p:first-child span {
  color: var(--deep);
  background: var(--cyan);
}

.download h2 {
  margin: 0 auto;
}

.download-copy > p:last-child {
  max-width: 610px;
  margin: 25px auto 0;
  color: rgba(255,255,255,.68);
  font-size: 14px;
}

.download-options {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  width: 100%;
  padding: 5px;
  margin: 0;
  border: 1px solid rgba(21, 85, 255, .11);
  border-radius: 17px;
  background: rgba(255,255,255,.66);
  box-shadow: 0 13px 34px rgba(18, 67, 155, .07), inset 0 1px 0 rgba(255,255,255,.82);
}

.download-choice {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 26px;
  align-items: center;
  gap: 9px;
  min-height: 58px;
  padding: 7px 9px;
  border: 1px solid rgba(21, 85, 255, .18);
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, #2368e8, #0d4fce);
  box-shadow: 0 9px 22px rgba(21, 85, 255, .18), inset 0 1px 0 rgba(255,255,255,.2);
  cursor: pointer;
  text-align: left;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.download-choice:hover {
  border-color: rgba(21, 85, 255, .4);
  background: linear-gradient(135deg, #2a72f2, #1257d9);
  box-shadow: 0 12px 26px rgba(21, 85, 255, .24), inset 0 1px 0 rgba(255,255,255,.24);
  transform: translateY(-2px);
}

.android-choice {
  border-color: rgba(18, 165, 187, .2);
  color: var(--deep);
  background: linear-gradient(135deg, rgba(226,250,255,.98), rgba(241,248,255,.99));
  box-shadow: 0 8px 20px rgba(22, 116, 153, .1), inset 0 1px 0 rgba(255,255,255,.9);
}

.android-choice:hover {
  border-color: rgba(18, 165, 187, .38);
  background: linear-gradient(135deg, #d7f8ff, #edf6ff);
  box-shadow: 0 11px 24px rgba(22, 116, 153, .15), inset 0 1px 0 rgba(255,255,255,.96);
}

.platform-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  color: var(--white);
  background: rgba(255,255,255,.14);
}

.platform-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.android-choice .platform-icon {
  border-color: rgba(21,85,255,.1);
  color: var(--cobalt);
  background: rgba(21,85,255,.07);
}

.android-choice .platform-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.choice-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.choice-copy small {
  color: rgba(255,255,255,.68);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .13em;
}

.choice-copy strong {
  margin: 1px 0 0;
  font-size: 13px;
  letter-spacing: -.03em;
  line-height: 1.2;
  white-space: nowrap;
}

.android-choice .choice-copy small {
  color: #6580a5;
}

.choice-arrow {
  display: grid;
  place-items: center;
  width: 26px;
  height: 28px;
  border: 1px solid rgba(255,255,255,.17);
  color: var(--white);
  border-radius: 8px;
  background: rgba(1, 34, 103, .18);
}

.choice-arrow svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.android-choice .choice-arrow {
  border-color: rgba(21,85,255,.11);
  color: var(--cobalt);
  background: rgba(21,85,255,.06);
}

.system-continuum {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px minmax(0, 1fr);
  align-items: center;
  width: min(100%, 1120px);
  margin: 0 auto;
}

.continuum-stop {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 170px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 70px 26px 70px 26px;
  background: rgba(255,255,255,.09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 25px 55px rgba(0,0,0,.12);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.continuum-stop:last-child {
  border-radius: 26px 70px 26px 70px;
  background: rgba(3,25,82,.24);
}

.stop-number {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--deep);
  background: var(--cyan);
  font-size: 10px;
  font-weight: 850;
}

.continuum-stop > div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.continuum-stop small {
  color: var(--cyan);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .17em;
}

.continuum-stop strong {
  margin-top: 3px;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.15;
}

.continuum-stop p {
  margin: 7px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 11px;
  line-height: 1.6;
}

.continuum-stop > i {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 999px;
  color: rgba(255,255,255,.7);
  font-size: 8px;
  font-style: normal;
  white-space: nowrap;
}

.continuum-bridge {
  position: relative;
  height: 2px;
  background: linear-gradient(90deg, rgba(42,216,237,.25), var(--cyan), rgba(42,216,237,.25));
}

.continuum-bridge::before,
.continuum-bridge::after {
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  border: 3px solid var(--deep);
  border-radius: 50%;
  background: var(--cyan);
  content: "";
  transform: translateY(-50%);
}

.continuum-bridge::before { left: -2px; }
.continuum-bridge::after { right: -2px; }

.continuum-bridge span {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--deep);
  background: var(--cyan);
  font-size: 8px;
  font-weight: 800;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

.site-route-note {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 30px;
  width: min(100%, 900px);
  margin: 35px auto 0;
  color: rgba(255,255,255,.58);
  font-size: 9px;
}

.site-route-note span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.site-route-note i {
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  color: var(--deep);
  background: var(--cyan);
  font-size: 9px;
  font-style: normal;
  font-weight: 850;
}

.faq {
  padding: clamp(90px, 10vw, 155px) var(--pad);
  background:
    radial-gradient(circle at 87% 55%, rgba(42,216,237,.13), transparent 24rem),
    var(--ice);
}

.faq .section-heading {
  margin-bottom: 55px;
}

.faq-list {
  width: min(100%, 1120px);
  margin: 0 auto;
  border-top: 1px solid rgba(21,85,255,.18);
}

.faq-list details {
  border-bottom: 1px solid rgba(21,85,255,.18);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 55px 1fr 44px;
  align-items: center;
  gap: 18px;
  padding: 28px 5px;
  cursor: pointer;
  font-size: clamp(17px, 2vw, 23px);
  font-weight: 700;
  letter-spacing: -.02em;
  list-style: none;
}

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

.faq-list summary > span {
  color: var(--cobalt);
  font-size: 10px;
  letter-spacing: .12em;
}

.faq-list summary > i {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.faq-list summary > i::before,
.faq-list summary > i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--cobalt);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform .2s ease;
}

.faq-list summary > i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

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

.faq-list details > p {
  max-width: 820px;
  margin: -2px 0 28px 73px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 34px var(--pad);
  color: rgba(255,255,255,.64);
  background: var(--deep);
  font-size: 11px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand .brand-mark {
  width: 44px;
  height: 44px;
}

.footer-brand > span:last-child {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  color: var(--white);
  font-size: 16px;
}

.footer-brand small {
  margin-top: 2px;
  color: rgba(255,255,255,.48);
}

.site-footer > p {
  margin: 0;
  text-align: center;
}

.site-footer > a {
  justify-self: end;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  color: var(--white);
}

.toast {
  position: fixed;
  z-index: 500;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 11px;
  max-width: min(360px, calc(100vw - 44px));
  padding: 15px 19px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: var(--deep);
  box-shadow: 0 20px 50px rgba(5,24,72,.25);
}

.toast[hidden] {
  display: none;
}

.toast-dot {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(42,216,237,.12);
}

.toast p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
}

.noscript-note {
  position: fixed;
  z-index: 450;
  right: 16px;
  bottom: 16px;
  left: 16px;
  margin: 0;
  padding: 12px 16px;
  color: var(--white);
  border-radius: 16px;
  background: var(--deep);
  font-size: 12px;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.72,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes ring-turn {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes ring-turn-reverse {
  from { transform: translate(-50%, -50%) rotate(360deg); }
  to { transform: translate(-50%, -50%) rotate(0deg); }
}

@keyframes card-arrive-left {
  from { opacity: 0; transform: translate(-24px, 14px) scale(.92); }
  to { opacity: 1; transform: none; }
}

@keyframes card-arrive-right {
  from { opacity: 0; transform: translate(24px, 14px) scale(.92); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 16px;
  }

  .hero {
    grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr);
  }

  .response-engine {
    min-height: 610px;
  }

  .rhythm-layout {
    grid-template-columns: minmax(320px, .8fr) minmax(410px, 1.2fr);
    gap: 55px;
  }

  .ability-stream li {
    grid-template-columns: 58px minmax(220px, .9fr) 1fr 64px;
    width: 96%;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 100px;
  }

  .site-header {
    top: 10px;
    margin-top: 10px;
  }

  .desktop-nav,
  .system-pill {
    display: none;
  }

  .nav-capsule {
    min-height: 64px;
  }

  .brand {
    margin-right: auto;
  }

  .nav-toggle {
    display: grid;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
    padding-top: 90px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(55px, 10vw, 86px);
  }

  .hero-lead {
    max-width: 700px;
  }

  .response-engine {
    width: min(100%, 680px);
    min-height: 650px;
    margin: 0 auto;
  }

  .wave-into-blue {
    margin-top: -20px;
  }

  .rhythm-layout {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .flow-sticky {
    position: relative;
    top: 0;
    width: min(100%, 480px);
    margin: 0 auto;
  }

  .story-step {
    min-height: 600px;
    margin-bottom: 45px;
    opacity: 1;
    transform: none;
  }

  .ability-stream li {
    grid-template-columns: 60px 1fr 68px;
    width: 100%;
    border-radius: 55px;
  }

  .ability-stream li > p {
    grid-column: 2 / 3;
  }

  .ability-stream li > i {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .download {
    border-radius: 50% 50% 0 0 / 55px 55px 0 0;
  }

  .system-continuum {
    grid-template-columns: 1fr;
    gap: 0;
    width: min(100%, 620px);
  }

  .continuum-bridge {
    justify-self: center;
    width: 2px;
    height: 76px;
    background: linear-gradient(rgba(42,216,237,.25), var(--cyan), rgba(42,216,237,.25));
  }

  .continuum-bridge::before {
    top: -2px;
    left: 50%;
    transform: translate(-50%, 0);
  }

  .continuum-bridge::after {
    top: auto;
    right: auto;
    bottom: -2px;
    left: 50%;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 620px) {
  :root {
    --pad: 20px;
  }

  .site-header {
    width: calc(100% - 20px);
  }

  .nav-capsule {
    min-height: 60px;
    padding: 6px 7px 6px 10px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .brand-copy small {
    font-size: 9px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .mobile-nav {
    top: 70px;
  }

  .hero {
    padding-top: 54px;
    padding-bottom: 30px;
  }

  .eyebrow {
    margin-bottom: 19px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 60px);
    letter-spacing: -.065em;
  }

  .hero-lead {
    margin-top: 19px;
    font-size: 14px;
  }

  .hero-download-panel {
    margin-top: 16px;
  }

  .hero-download-label {
    margin-bottom: 7px;
    font-size: 9px;
  }

  .hero-download-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 4px;
    gap: 4px;
    border-radius: 14px;
  }

  .hero-download-options .download-choice {
    grid-template-columns: 29px minmax(0, 1fr) 21px;
    gap: 5px;
    min-height: 50px;
    padding: 5px 6px;
    border-radius: 10px;
  }

  .hero-download-options .platform-icon {
    width: 29px;
    height: 29px;
    border-radius: 8px;
  }

  .hero-download-options .platform-icon svg {
    width: 14px;
    height: 14px;
  }

  .hero-download-options .choice-copy small {
    font-size: 6px;
    letter-spacing: .04em;
  }

  .hero-download-options .choice-copy strong {
    margin-top: 1px;
    font-size: 10px;
    white-space: nowrap;
  }

  .hero-download-options .choice-arrow {
    width: 21px;
    height: 25px;
    border-radius: 7px;
  }

  .hero-download-options .choice-arrow svg {
    width: 11px;
    height: 11px;
  }

  .hero-system {
    margin-top: 7px;
    font-size: 9px;
  }

  .hero-afterline {
    display: none;
  }

  .response-engine {
    min-height: 540px;
  }

  .response-engine::before {
    width: 105%;
  }

  .halo-one {
    width: min(92%, 370px);
  }

  .halo-two {
    width: min(67%, 270px);
  }

  .engine-track {
    width: min(80%, 320px);
    border-width: 10px;
  }

  .engine-core {
    width: 132px;
    border-width: 7px;
  }

  .engine-core strong {
    font-size: 28px;
  }

  .question-card {
    top: 5%;
    left: 0;
    width: min(56%, 205px);
  }

  .matching-card {
    top: 36%;
    right: 0;
    width: min(51%, 190px);
  }

  .answer-card {
    bottom: 4%;
    left: 1%;
    width: min(72%, 270px);
  }

  .orbit-card {
    padding: 14px 15px;
  }

  .orbit-card p {
    font-size: 11px;
  }

  .wave-bridge svg {
    height: 118px;
  }

  .wave-into-blue {
    margin-top: -28px;
  }

  .section-heading {
    margin-bottom: 50px;
  }

  .section-heading h2,
  .download h2 {
    font-size: clamp(39px, 11.5vw, 54px);
  }

  .heading-note {
    font-size: 13px;
  }

  .rhythm {
    padding-top: 60px;
  }

  .rhythm-layout {
    gap: 62px;
  }

  .flow-dial {
    width: min(100%, 360px);
  }

  .dial-core strong {
    font-size: 21px;
  }

  .dial-label {
    padding: 5px 9px;
    font-size: 8px;
  }

  .story-step,
  .story-step:nth-child(2) {
    min-height: 0;
    margin-bottom: 30px;
    padding: 36px 25px;
    border-radius: 45px 20px 45px 20px;
  }

  .story-step:nth-child(2) {
    border-radius: 20px 45px 20px 45px;
  }

  .step-topline {
    margin-bottom: 30px;
  }

  .story-step h3 {
    font-size: 34px;
  }

  .story-step > p {
    font-size: 13px;
  }

  .story-step blockquote,
  .keyword-flow {
    margin-top: 30px;
  }

  .wave-into-ice {
    margin-bottom: -15px;
  }

  .abilities {
    padding-top: 80px;
  }

  .ability-stream {
    gap: 16px;
  }

  .ability-stream::before {
    display: none;
  }

  .ability-stream li {
    grid-template-columns: 52px 1fr;
    gap: 15px;
    min-height: 0;
    padding: 25px 23px;
    border-radius: 38px;
  }

  .ability-index {
    width: 48px;
    height: 48px;
  }

  .ability-stream li > p {
    grid-column: 1 / -1;
    padding: 0 3px;
  }

  .ability-stream li > i {
    display: none;
  }

  .ability-stream h3 {
    font-size: 23px;
  }

  .pace-statement {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
    margin-top: 80px;
  }

  .pace-orbit {
    width: 145px;
    flex-basis: 145px;
  }

  .pace-statement p {
    font-size: 34px;
  }

  .download {
    padding-top: 100px;
    border-radius: 50% 50% 0 0 / 35px 35px 0 0;
  }

  .download-copy {
    margin-bottom: 45px;
  }

  .continuum-stop,
  .continuum-stop:last-child {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 15px;
    min-height: 0;
    padding: 26px 23px;
    border-radius: 42px 18px 42px 18px;
  }

  .continuum-stop:last-child {
    border-radius: 18px 42px 18px 42px;
  }

  .stop-number {
    width: 46px;
    height: 46px;
  }

  .continuum-stop > i {
    display: none;
  }

  .site-route-note {
    align-items: flex-start;
    flex-direction: column;
    width: fit-content;
    margin-top: 30px;
  }

  .faq-list summary {
    grid-template-columns: 32px 1fr 38px;
    gap: 10px;
    padding: 23px 0;
    font-size: 16px;
  }

  .faq-list summary > i {
    width: 36px;
    height: 36px;
  }

  .faq-list details > p {
    margin: -2px 0 24px 42px;
    font-size: 13px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 24px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .site-footer > p {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
