:root {
  color-scheme: dark;
  --bg: #070a14;
  --bg-soft: #0b1020;
  --surface: #11182a;
  --surface-2: #161e33;
  --line: rgba(155, 178, 220, 0.18);
  --line-strong: rgba(155, 178, 220, 0.32);
  --text: #f7f9ff;
  --muted: #aeb9d1;
  --blue: #6bc7ff;
  --red: #ff607e;
  --gold: #ffd36a;
  --green: #54db9b;
  --purple: #b38cff;
  --max: 1100px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

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

::selection {
  background: rgba(107, 199, 255, 0.28);
  color: #fff;
}

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

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

button {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: clip;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.section-band {
  position: relative;
  padding: 68px 0;
  border-top: 1px solid var(--line);
}

.section-band::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107, 199, 255, 0.72), rgba(179, 140, 255, 0.58), transparent);
  transform: translateX(-50%);
  transition: width 900ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.section-band.is-motion-active::after {
  width: min(640px, 72vw);
}

.section-band .eyebrow {
  transition: color 400ms ease, text-shadow 400ms ease;
}

.section-band.is-motion-active .eyebrow {
  text-shadow: 0 0 18px rgba(107, 199, 255, 0.2);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(3.2rem, 14vw, 6.8rem);
  line-height: 0.9;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 8vw, 4.2rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.18;
}

p {
  color: var(--muted);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 38px;
}

.section-heading > p:last-child {
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 0;
  font-size: 1.05rem;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.topnav {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(147, 170, 213, 0.12);
  background: rgba(5, 8, 17, 0.84);
  backdrop-filter: blur(18px);
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.topnav.is-scrolled {
  border-bottom-color: rgba(107, 199, 255, 0.2);
  background: rgba(5, 8, 17, 0.94);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
}

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  overflow: hidden;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--red));
}

.nav-inner {
  display: flex;
  align-items: center;
  min-height: 66px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 9px;
  font-size: 0.95rem;
  font-weight: 800;
  white-space: nowrap;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  transition: filter 260ms ease, transform 260ms ease;
}

.brand:hover img,
.brand:focus-visible img {
  filter: drop-shadow(0 0 10px rgba(107, 199, 255, 0.52));
  transform: translateY(-1px) scale(1.035);
}

.nav-links,
.nav-stores {
  display: none;
}

.menu-toggle {
  display: grid;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 11px;
  place-content: center;
  gap: 4px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: rgba(17, 24, 42, 0.9);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
}

.mobile-menu {
  width: min(360px, calc(100% - 24px));
  margin: 0 12px 12px auto;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0c1221;
  box-shadow: var(--shadow);
}

.mobile-menu > a {
  display: block;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.mobile-stores,
.hero-actions,
.download-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.mobile-stores {
  padding-top: 14px;
}

.store-badge {
  position: relative;
  display: block;
  width: 144px;
  height: 43px;
  overflow: hidden;
  line-height: 0;
  transition: transform 180ms ease, filter 180ms ease;
}

.store-badge::after {
  content: "";
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -55%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  pointer-events: none;
  transform: skewX(-18deg);
  transition: left 520ms ease;
}

.store-badge:hover,
.store-badge:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.store-badge:hover::after,
.store-badge:focus-visible::after {
  left: 128%;
}

.store-badge:active {
  transform: translateY(0) scale(0.98);
}

.store-badge img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: 0;
  padding-top: 118px;
  padding-bottom: 64px;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-home {
  background: radial-gradient(circle at 50% 54%, rgba(42, 86, 160, 0.2), transparent 48%);
}

.hero-lightfield {
  position: absolute;
  z-index: 0;
  inset: 76px -16vw 0;
  overflow: hidden;
  opacity: 0.62;
  pointer-events: none;
}

.hero-lightfield span {
  position: absolute;
  left: 50%;
  width: min(1040px, 112vw);
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(107, 199, 255, 0.2) 34%, rgba(179, 140, 255, 0.22) 62%, transparent 95%);
  transform-origin: center;
  transition: transform 700ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.hero-lightfield span:nth-child(1) {
  top: 24%;
  transform: translateX(calc(-50% + var(--hero-x, 0px))) rotate(-7deg);
}

.hero-lightfield span:nth-child(2) {
  top: 53%;
  transform: translateX(calc(-50% + var(--hero-x-soft, 0px))) rotate(5deg);
}

.hero-lightfield span:nth-child(3) {
  top: 78%;
  transform: translateX(calc(-50% - var(--hero-x-soft, 0px))) rotate(-2deg);
  opacity: 0.64;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 900px);
  min-width: 0;
  margin-inline: auto;
  text-align: center;
}

.motion-ready .hero-content > * {
  animation: heroContentEnter 760ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.motion-ready .hero-content > :nth-child(2) { animation-delay: 70ms; }
.motion-ready .hero-content > :nth-child(3) { animation-delay: 125ms; }
.motion-ready .hero-content > :nth-child(4) { animation-delay: 180ms; }
.motion-ready .hero-content > :nth-child(5) { animation-delay: 225ms; }
.motion-ready .hero-content > :nth-child(6) { animation-delay: 270ms; }

.hero-title {
  max-width: 620px;
  margin: 0 auto 16px;
  color: var(--text);
  font-size: clamp(1.35rem, 3.6vw, 2.25rem);
  font-weight: 750;
  line-height: 1.12;
}

.hero-content h1.hero-expression {
  max-width: 900px;
  margin: 8px auto 20px;
  color: #eaf1ff;
  font-size: clamp(2.35rem, 6.5vw, 4.9rem);
  font-weight: 780;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-input-line {
  display: flex;
  min-height: 1.08em;
  margin-top: 0.1em;
  align-items: center;
  justify-content: center;
  gap: 0.15em;
  white-space: nowrap;
}

.drawn-word {
  display: inline-block;
  flex: 0 0 3.45em;
  width: 3.45em;
  height: 1.02em;
  vertical-align: -0.18em;
  transform: rotate(-2deg);
  filter: drop-shadow(0 0 9px rgba(107, 199, 255, 0.45)) drop-shadow(0 0 22px rgba(107, 199, 255, 0.22));
}

.drawn-word canvas {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.tap-sequence-word {
  position: relative;
  display: inline-flex;
  padding: 0.02em 0.25em 0.09em;
  isolation: isolate;
  border: 1px solid rgba(255, 96, 126, 0.46);
  border-radius: 7px;
  background: rgba(255, 96, 126, 0.08);
  color: var(--red);
  animation: heroTapSequence 3.4s ease-in-out 1.25s infinite;
}

.tap-sequence-word > span {
  position: relative;
  z-index: 1;
}

.tap-sequence-word > i {
  position: absolute;
  top: var(--tap-y);
  left: var(--tap-x);
  z-index: 2;
  width: 0.23em;
  aspect-ratio: 1;
  border: 0.04em solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0.24em rgba(255, 96, 126, 0.8);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.45);
  animation: heroTapPoint 3.4s ease-out calc(1.25s + var(--tap-order) * 0.28s) infinite;
}

.hero-copy {
  max-width: 600px;
  margin: 0 auto 26px;
  font-size: 1.02rem;
}

.hero-actions {
  margin-bottom: 20px;
  justify-content: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-size: 0.94rem;
  font-weight: 750;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.hero-product {
  display: block;
  width: min(100%, 1120px);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(107, 199, 255, 0.28);
  border-radius: 8px;
  background: #050918;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42), 0 0 52px rgba(74, 150, 255, 0.11);
  transition: border-color 420ms ease, box-shadow 420ms ease, transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-product img {
  width: 100%;
  height: auto;
}

.product-spotlight {
  position: relative;
  padding: 28px 0 112px;
  background: #070a14;
  overflow: clip;
}

.product-spotlight::before {
  content: "";
  position: absolute;
  top: 34%;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107, 199, 255, 0.26), transparent);
}

.product-spotlight-inner {
  position: relative;
  display: grid;
  min-height: clamp(380px, 48vw, 570px);
  place-items: center;
  isolation: isolate;
  --stage-x: 0px;
  --stage-y: 0px;
  --stage-x-soft: 0px;
  --stage-x-inverse: 0px;
  --stage-y-inverse: 0px;
}

.product-stage-grid {
  position: absolute;
  z-index: -1;
  inset: -60px -14vw -46px;
  opacity: 0.52;
  background-image: linear-gradient(rgba(107, 199, 255, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(107, 199, 255, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 80%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 80%, transparent);
}

.product-stage-grid::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107, 199, 255, 0.34), rgba(179, 140, 255, 0.3), transparent);
}

.product-satellite {
  display: none;
  position: absolute;
  z-index: 3;
  width: 150px;
  height: 320px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(183, 205, 244, 0.28);
  border-radius: 18px;
  background-color: #050918;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5), 0 0 34px rgba(74, 150, 255, 0.1);
  opacity: 0;
  transition: opacity 700ms ease, transform 900ms cubic-bezier(0.2, 0.72, 0.2, 1), border-color 360ms ease, box-shadow 360ms ease;
}

.product-satellite-board {
  top: 6%;
  left: -8px;
  transform: translate3d(calc(-28px + var(--stage-x-inverse)), calc(20px + var(--stage-y-inverse)), 0) rotate(-4deg);
}

.product-satellite-gesture {
  top: -3%;
  right: -4px;
  transform: translate3d(calc(30px + var(--stage-x)), calc(6px + var(--stage-y-inverse)), 0) rotate(4deg);
}

.product-satellite-keyboard {
  right: 86px;
  bottom: -14%;
  width: 132px;
  height: 280px;
  transform: translate3d(calc(18px + var(--stage-x-soft)), calc(30px + var(--stage-y)), 0) rotate(2deg);
}

.product-spotlight-inner.is-stage-active .product-satellite {
  opacity: 0.92;
}

.product-spotlight-inner.is-stage-active .product-satellite-board {
  transform: translate3d(var(--stage-x-inverse), var(--stage-y-inverse), 0) rotate(-4deg);
}

.product-spotlight-inner.is-stage-active .product-satellite-gesture {
  transform: translate3d(var(--stage-x), var(--stage-y-inverse), 0) rotate(4deg);
}

.product-spotlight-inner.is-stage-active .product-satellite-keyboard {
  transform: translate3d(var(--stage-x-soft), var(--stage-y), 0) rotate(2deg);
}

.product-satellite:hover {
  z-index: 5;
  border-color: rgba(107, 199, 255, 0.52);
  box-shadow: 0 34px 82px rgba(0, 0, 0, 0.56), 0 0 46px rgba(74, 150, 255, 0.18);
}

.product-stage-legend {
  position: absolute;
  z-index: 6;
  bottom: -48px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8f9bb2;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.product-stage-legend i {
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(107, 199, 255, 0.28), rgba(179, 140, 255, 0.6));
}

.product-spotlight-inner .hero-product {
  position: relative;
  z-index: 2;
  width: min(84%, 930px);
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.product-spotlight-inner:hover .hero-product {
  border-color: transparent;
  box-shadow: none;
  transform: translateY(-2px);
}

.product-spotlight-inner .hero-product img {
  filter: drop-shadow(0 30px 54px rgba(0, 0, 0, 0.42));
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 7%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 7%, #000 90%, transparent 100%);
}

.method-band {
  background: #090d19;
}

.method-band .eyebrow {
  color: var(--blue);
}

.method-band p {
  color: var(--muted);
}

.method-grid {
  display: grid;
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.method-item {
  position: relative;
  min-width: 0;
  padding: 32px 4px 28px;
  background: #090d19;
  text-align: center;
  transition: background-color 240ms ease, transform 240ms ease;
}

.method-item:hover {
  background: #0d1424;
  transform: translateY(-3px);
}

.method-number {
  position: absolute;
  top: 12px;
  right: 4px;
  color: #6f7e99;
  font-size: 0.72rem;
  font-weight: 800;
}

.method-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 8px;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.method-item:hover .method-icon {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.method-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.method-blue { color: var(--blue); background: rgba(107, 199, 255, 0.11); }
.method-red { color: var(--red); background: rgba(255, 96, 126, 0.11); }
.method-gold { color: var(--gold); background: rgba(255, 211, 106, 0.11); }

.coach-band {
  background: #090d19;
}

.coach-layout,
.keyboard-layout,
.trust-layout,
.input-lab-layout,
.practice-layout,
.quick-layout,
.coach-guide-layout {
  display: grid;
  gap: 42px;
  align-items: center;
}

.coach-copy > p:not(.eyebrow),
.keyboard-copy > p:not(.eyebrow),
.coach-guide-copy > p:not(.eyebrow) {
  max-width: 560px;
  font-size: 1.03rem;
}

.coach-copy {
  text-align: center;
}

.coach-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  justify-content: center;
}

.coach-product {
  display: block;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(107, 199, 255, 0.22);
  border-radius: 8px;
  background: #050918;
  box-shadow: var(--shadow);
}

.coach-product img {
  width: 100%;
  height: auto;
  transition: transform 520ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 520ms ease;
}

.coach-product:hover img {
  transform: scale(1.012);
  filter: brightness(1.05);
}

.coach-facts span,
.hero-chips span,
.hero-chips a {
  padding: 8px 11px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: #d8e1f4;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-chips a {
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.hero-chips a:hover,
.hero-chips a:focus-visible {
  border-color: var(--blue);
  background: rgba(107, 199, 255, 0.1);
  color: var(--blue);
  transform: translateY(-2px);
}

.keyboard-band,
.keyboard-guide {
  background: #0c1221;
}

.keyboard-band .keyboard-layout,
.keyboard-guide .keyboard-layout {
  display: block;
  max-width: 940px;
  text-align: center;
}

.keyboard-band .keyboard-copy,
.keyboard-guide .keyboard-copy {
  max-width: 720px;
  margin-inline: auto;
}

.keyboard-band .keyboard-copy > p:not(.eyebrow),
.keyboard-guide .keyboard-copy > p:not(.eyebrow) {
  margin-inline: auto;
}

.keyboard-band .clean-list {
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  text-align: left;
}

.keyboard-band .keyboard-phones,
.keyboard-guide .keyboard-phones {
  margin-top: 30px;
}

.keyboard-phones {
  display: flex;
  min-height: 390px;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
}

.keyboard-phones img {
  width: min(45%, 250px);
  max-height: 500px;
  border-radius: 8px;
  object-fit: cover;
  object-position: top;
  box-shadow: var(--shadow);
  transition: transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 420ms ease;
}

.keyboard-phones img:nth-child(1) {
  transform: translateY(20px) rotate(-2deg);
}

.keyboard-phones img:nth-child(2) {
  transform: translateY(-6px) rotate(2deg);
}

.keyboard-phones img:nth-child(1):hover {
  transform: translateY(12px) rotate(-1deg) scale(1.018);
  filter: brightness(1.04);
}

.keyboard-phones img:nth-child(2):hover {
  transform: translateY(-12px) rotate(1deg) scale(1.018);
  filter: brightness(1.04);
}

.clean-list {
  display: grid;
  margin: 24px 0 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 24px;
  color: #d6dff1;
}

.clean-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 10px;
  height: 2px;
  background: var(--blue);
}

.trust-band {
  background: #090d19;
}

.trust-band .eyebrow { color: var(--blue); }
.trust-band p { color: var(--muted); }

.trust-list {
  display: grid;
  gap: 28px;
}

.trust-layout,
.practice-layout,
.quick-layout {
  display: block;
}

.trust-copy {
  max-width: 700px;
  margin: 0 auto 34px;
  text-align: center;
}

.trust-list article {
  padding-top: 22px;
  border-top: 1px solid rgba(23, 39, 66, 0.18);
  text-align: center;
}

.trust-list article > span {
  display: grid;
  width: 38px;
  height: 38px;
  margin: 0 auto 15px;
  place-items: center;
  border-radius: 7px;
  background: rgba(107, 199, 255, 0.1);
  color: var(--blue);
  font-weight: 800;
}

.download-band {
  padding: 70px 0;
  border-top: 1px solid rgba(140, 175, 239, 0.24);
  background: linear-gradient(120deg, #10224b, #24284f 60%, #3a2445);
}

.download-inner {
  display: grid;
  gap: 28px;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.download-inner h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 8vw, 3.7rem);
}

.download-inner p:last-child {
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 0;
  color: #d4dcef;
}

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

.footer {
  border-top: 1px solid var(--line);
  background: #050812;
}

.footer-inner {
  display: grid;
  padding: 34px 0;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.footer-brand {
  justify-self: center;
}

.footer nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: #cbd5e8;
  font-size: 0.86rem;
  font-weight: 700;
}

.footer p {
  margin: 0;
  font-size: 0.76rem;
}

/* Tips */
.tips-hero {
  padding-top: 126px;
  background: radial-gradient(circle at 50% 10%, rgba(58, 97, 170, 0.25), transparent 42%), #080c18;
  text-align: center;
}

.tips-hero-inner {
  max-width: 930px;
}

.tips-hero h1 {
  font-size: clamp(2.65rem, 9vw, 5.5rem);
  line-height: 0.96;
}

.tips-hero-inner > p:not(.eyebrow) {
  max-width: 700px;
  margin-inline: auto;
  font-size: 1.06rem;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
  gap: 8px;
}

.learning-path {
  background: #090d19;
}

.learning-path .eyebrow { color: var(--blue); }
.learning-path p { color: var(--muted); }

.path-steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.path-steps li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  padding: 24px 0;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  transition: border-color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.path-steps li:hover {
  border-bottom-color: rgba(107, 199, 255, 0.4);
  background: rgba(107, 199, 255, 0.035);
  transform: translateX(4px);
}

.path-steps li > span {
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 850;
}

.path-steps p,
.path-steps h3 {
  margin-bottom: 0;
}

.input-lab-band {
  background: #080c18;
}

.input-lab-copy {
  text-align: center;
}

.input-lab-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin-inline: auto;
}

.lab-options {
  display: flex;
  flex-wrap: wrap;
  margin: 26px 0 20px;
  gap: 7px;
  justify-content: center;
}

.lab-options button {
  padding: 9px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: #11182a;
  color: #dce5f7;
  font-size: 0.78rem;
  font-weight: 750;
  cursor: pointer;
}

.lab-options button:hover,
.lab-options button:focus-visible,
.lab-options button.is-active {
  border-color: var(--blue);
  background: rgba(107, 199, 255, 0.12);
  color: var(--blue);
}

.lab-explanation strong {
  display: block;
  margin-bottom: 3px;
}

.lab-explanation {
  text-align: center;
}

.lab-explanation p {
  margin: 0;
  font-size: 0.9rem;
}

.input-lab {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(107, 199, 255, 0.26);
  border-radius: 8px;
  background-color: #071126;
  background-image: linear-gradient(rgba(103, 144, 201, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(103, 144, 201, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  box-shadow: var(--shadow);
  transition: border-color 260ms ease, box-shadow 260ms ease;
}

.input-lab-band.is-playing .input-lab {
  animation: labSignal 620ms ease-out;
}

.motion-ready .method-item:nth-child(2),
.motion-ready .trust-list article:nth-child(2),
.motion-ready .quick-grid article:nth-child(2) {
  transition-delay: 70ms;
}

.motion-ready .method-item:nth-child(3),
.motion-ready .trust-list article:nth-child(3),
.motion-ready .quick-grid article:nth-child(3) {
  transition-delay: 140ms;
}

.lab-topline {
  display: grid;
  padding: 14px 16px;
  gap: 2px;
  border-bottom: 1px solid rgba(115, 156, 211, 0.17);
  background: rgba(6, 14, 31, 0.9);
}

.lab-topline span {
  color: var(--blue);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
}

.input-lab canvas {
  width: 100%;
  height: clamp(280px, 60vw, 430px);
}

.pause-meter {
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr) auto;
  padding: 12px 16px 16px;
  align-items: center;
  gap: 10px;
  color: #8fa0bd;
  font-size: 0.68rem;
}

.pause-meter > div {
  height: 4px;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(150, 174, 218, 0.15);
}

.pause-meter i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold);
  box-shadow: 0 0 9px var(--gold);
}

.practice-band {
  background: #090d19;
}

.practice-band .eyebrow { color: var(--blue); }
.practice-band p { color: var(--muted); }

.practice-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.practice-list article {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  padding: 22px 0;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.practice-list article > span {
  color: var(--blue);
  font-weight: 850;
}

.practice-list h3,
.practice-list p {
  margin-bottom: 0;
}

.coach-guide {
  background: #080c18;
}

.coach-guide-media {
  display: block;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(107, 199, 255, 0.22);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.coach-guide-media img {
  width: 100%;
}

.quick-actions {
  background: #0c1221;
}

.quick-grid {
  display: grid;
  gap: 20px;
  text-align: center;
}

.quick-grid article {
  padding-top: 22px;
  border-top: 1px solid var(--line-strong);
}

.quick-grid article > span {
  display: grid;
  width: 38px;
  height: 38px;
  margin: 0 auto 15px;
  place-items: center;
  border-radius: 7px;
  background: rgba(107, 199, 255, 0.1);
  color: var(--blue);
  font-size: 1.2rem;
  font-weight: 800;
}

.keyboard-steps {
  display: grid;
  margin: 26px 0 0;
  padding: 0;
  gap: 12px;
  counter-reset: keyboard-step;
  list-style: none;
}

.keyboard-steps li {
  position: relative;
  padding-left: 42px;
  color: #d8e1f2;
  counter-increment: keyboard-step;
}

.keyboard-steps li::before {
  content: counter(keyboard-step);
  position: absolute;
  top: -2px;
  left: 0;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
}

.eye-free-band {
  padding: 68px 0;
  border-top: 1px solid rgba(255, 96, 126, 0.22);
  background: linear-gradient(120deg, #1b1026, #11172a 55%, #0b2130);
}

.eye-free-inner {
  display: grid;
  max-width: 840px;
  gap: 24px;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.eye-icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid rgba(255, 96, 126, 0.46);
  border-radius: 8px;
  background: rgba(255, 96, 126, 0.1);
  color: var(--red);
}

.eye-icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eye-free-inner p:last-child {
  max-width: 740px;
  margin-inline: auto;
  margin-bottom: 0;
}

@media (min-width: 620px) {
  .container { width: min(var(--max), calc(100% - 56px)); }
  .method-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .method-item { padding: 34px 24px; }
  .method-number { right: 24px; }
  .trust-list,
  .quick-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .practice-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .practice-list article:nth-child(odd) { padding-right: 24px; }
  .practice-list article:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--line); }
  .footer-inner { grid-template-columns: 1fr auto 1fr; text-align: left; }
  .footer-brand { justify-self: start; }
  .footer p { justify-self: end; }
}

@media (min-width: 760px) {
  .section-band { padding: 84px 0; }
  .nav-inner { min-height: 72px; }
  .nav-links { display: flex; margin-left: auto; gap: 26px; }
  .nav-links a { position: relative; color: #c2cce0; font-size: 0.86rem; font-weight: 750; }
  .nav-links a::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; transform: scaleX(0); background: var(--blue); transition: transform 180ms ease; }
  .nav-links a:hover::after,
  .nav-links a.is-current::after { transform: scaleX(1); }
  .nav-stores { display: flex; margin-left: 10px; gap: 8px; }
  .nav-stores .store-badge { width: 114px; height: 34px; }
  .menu-toggle,
  .mobile-menu { display: none; }
  .hero { min-height: 0; padding-top: 118px; padding-bottom: 64px; }
  .coach-layout,
  .input-lab-layout { grid-template-columns: minmax(280px, 0.74fr) minmax(440px, 1.26fr); }
  .tips-hero { padding-top: 180px; }
  .path-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .path-steps li:nth-child(odd) { padding-right: 24px; }
  .path-steps li:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--line); }
  .coach-guide-layout { grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr); }
  .coach-guide-media { order: 0; }
  .coach-guide-copy { order: 1; }
}

@media (min-width: 960px) {
  .product-satellite { display: block; }
  .product-satellite-keyboard { background-position: bottom; }
  .product-spotlight-inner .hero-product { width: min(78%, 900px); }
}

@media (max-width: 380px) {
  .container { width: min(var(--max), calc(100% - 24px)); }
  .brand span { font-size: 0.84rem; }
  .hero-actions .store-badge,
  .download-actions .store-badge { width: calc((100% - 8px) / 2); height: 40px; }
}

@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .hero-product img {
      animation: productFocus 1ms linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 34%;
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .motion-ready .reveal { opacity: 1; transform: none; }
  .product-spotlight-inner .product-satellite { opacity: 0.92; }
}

@media (prefers-contrast: more) {
  :root {
    --muted: #d6deef;
    --line: rgba(205, 219, 244, 0.34);
    --line-strong: rgba(220, 231, 250, 0.58);
  }

  .topnav {
    background: #050811;
  }
}

@keyframes productFocus {
  from { opacity: 0.72; transform: scale(0.975); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes heroContentEnter {
  from { opacity: 0; transform: translateY(13px); }
  to { opacity: 1; transform: none; }
}

@keyframes labSignal {
  0% { border-color: rgba(107, 199, 255, 0.26); box-shadow: var(--shadow); }
  38% { border-color: rgba(107, 199, 255, 0.62); box-shadow: var(--shadow), 0 0 38px rgba(107, 199, 255, 0.13); }
  100% { border-color: rgba(107, 199, 255, 0.26); box-shadow: var(--shadow); }
}

@keyframes heroTapSequence {
  0%, 13%, 38%, 100% { transform: translateY(0) scale(1); }
  18%, 28% { transform: translateY(0.015em) scale(0.985); }
  23%, 33% { transform: translateY(-0.01em) scale(1.012); }
}

@keyframes heroTapPoint {
  0%, 12% { opacity: 0; transform: translate(-50%, -50%) scale(0.42); }
  18% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  30% { opacity: 0; transform: translate(-50%, -50%) scale(1.9); }
  100% { opacity: 0; }
}
