:root {
  --paper: #f2f0e9;
  --paper-deep: #e7e3d8;
  --ink: #142d27;
  --ink-soft: #425b54;
  --green: #123f32;
  --green-deep: #082b23;
  --blue: #5f8fa2;
  --blue-deep: #3f7288;
  --yellow: #e9f56a;
  --white: #fffef9;
  --line: rgba(20, 45, 39, 0.16);
  --shadow: 0 24px 70px rgba(14, 38, 32, 0.15);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  content: "";
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

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

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

button,
select {
  cursor: pointer;
}

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

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

.section-pad {
  padding-block: 120px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  color: var(--white);
  background: var(--green-deep);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(242, 240, 233, 0.88);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  font-size: 0.88rem;
  font-weight: 850;
  letter-spacing: 0.09em;
}

.brand-name span {
  color: var(--blue-deep);
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 30px;
  height: 30px;
  border: 2px solid currentColor;
  border-radius: 4px;
  place-items: center;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span::before {
  position: absolute;
  content: "";
  background: currentColor;
}

.brand-mark::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.brand-mark::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.brand-mark span::before {
  top: 7px;
  bottom: 7px;
  left: 7px;
  width: 12px;
  background: transparent;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.82rem;
  font-weight: 720;
}

.desktop-nav a,
.footer-links a {
  position: relative;
}

.desktop-nav a::after,
.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-shell > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  min-height: 56px;
  padding: 0 22px;
  border: 0;
  border-radius: 9px;
  font-size: 0.85rem;
  font-weight: 820;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button span:last-child {
  font-size: 1rem;
}

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

.button-small {
  min-height: 43px;
  gap: 18px;
  padding-inline: 17px;
  font-size: 0.76rem;
}

.button-dark {
  color: var(--white);
  background: var(--green-deep);
  box-shadow: 0 8px 25px rgba(8, 43, 35, 0.14);
}

.button-primary {
  color: var(--green-deep);
  background: var(--yellow);
  box-shadow: 0 12px 32px rgba(156, 174, 37, 0.17);
}

.button-primary:hover {
  background: #f2fb82;
  box-shadow: 0 16px 40px rgba(156, 174, 37, 0.23);
}

.button-full {
  width: 100%;
  justify-content: space-between;
}

.hero {
  position: relative;
  min-height: 820px;
  padding: 152px 0 92px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--line);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(63, 114, 136, 0.14);
  border-radius: 50%;
}

.hero-orbit-one {
  top: -270px;
  right: -140px;
  width: 760px;
  height: 760px;
}

.hero-orbit-two {
  right: 90px;
  bottom: -420px;
  width: 680px;
  height: 680px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(470px, 1.05fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--blue-deep);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border: 2px solid var(--green-deep);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(233, 245, 106, 0.45);
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(3.6rem, 6.2vw, 6.3rem);
  font-weight: 800;
  letter-spacing: -0.068em;
  line-height: 0.91;
}

.hero h1 em {
  display: block;
  color: var(--blue-deep);
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero-lead {
  max-width: 625px;
  margin: 32px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 36px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 800;
}

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

.text-link:hover span {
  transform: translateY(3px);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 600px;
  margin: 48px 0 0;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.hero-facts div {
  padding-inline: 20px;
  border-left: 1px solid var(--line);
}

.hero-facts div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-facts dt {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  line-height: 1;
}

.hero-facts dd {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-product {
  position: relative;
  width: 100%;
  max-width: 570px;
  margin-inline: auto;
  perspective: 1200px;
}

.product-shadow {
  position: absolute;
  right: -5%;
  bottom: -8%;
  left: 5%;
  height: 25%;
  background: rgba(18, 63, 50, 0.23);
  filter: blur(35px);
  border-radius: 50%;
  transform: rotate(-4deg);
}

.match-console {
  position: relative;
  z-index: 2;
  overflow: hidden;
  color: var(--white);
  background: var(--green-deep);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 25px;
  box-shadow: var(--shadow);
  transform: rotateY(-4deg) rotateX(1deg) rotateZ(1deg);
}

.console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
}

.console-header p,
.console-header strong {
  margin: 0;
}

.console-header p {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.57rem;
  font-weight: 850;
  letter-spacing: 0.17em;
}

.console-header strong {
  font-size: 0.76rem;
}

.recording-pill,
.camera-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.recording-pill {
  padding: 7px 9px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 99px;
}

.recording-pill > span:first-child,
.camera-label > span {
  width: 6px;
  height: 6px;
  background: #ff654d;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255, 101, 77, 0.18);
  animation: pulse 1.7s ease-in-out infinite;
}

.court-view {
  position: relative;
  height: 360px;
  margin: 0 10px;
  overflow: hidden;
  background: linear-gradient(160deg, #80a9b7, #47798d 72%);
  border-radius: 17px;
}

.court-view::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(4, 27, 23, 0.24));
}

.court-glow {
  position: absolute;
  top: -100px;
  left: 10%;
  width: 80%;
  height: 190px;
  background: rgba(255, 255, 255, 0.28);
  filter: blur(55px);
}

.court {
  position: absolute;
  top: 46%;
  left: 50%;
  width: 54%;
  height: 84%;
  border: 3px solid rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 35px rgba(7, 43, 35, 0.11);
  transform: translate(-50%, -50%) perspective(700px) rotateX(46deg) scaleY(1.1);
  transform-origin: bottom;
}

.court::before,
.court::after,
.court-line,
.net-line {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.9);
}

.court::before {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
}

.court-line-center,
.net-line {
  top: 50%;
  left: -7%;
  width: 114%;
  height: 2px;
}

.net-line {
  z-index: 5;
  height: 5px;
  background: rgba(16, 48, 41, 0.78);
  box-shadow: 0 7px 9px rgba(8, 43, 35, 0.3);
}

.court-line-service {
  right: 0;
  left: 0;
  height: 2px;
}

.court-line-service-top {
  top: 28%;
}

.court-line-service-bottom {
  bottom: 28%;
}

.player {
  position: absolute;
  z-index: 6;
  width: 14px;
  height: 14px;
  background: var(--yellow);
  border: 3px solid var(--green-deep);
  border-radius: 50%;
  box-shadow: 0 5px 9px rgba(8, 43, 35, 0.34), 0 0 0 5px rgba(233, 245, 106, 0.15);
}

.player-one { top: 18%; left: 27%; }
.player-two { top: 27%; right: 22%; }
.player-three { right: 31%; bottom: 19%; }
.player-four { bottom: 25%; left: 20%; }

.ball {
  position: absolute;
  z-index: 8;
  top: 25%;
  left: 35%;
  width: 9px;
  height: 9px;
  background: #fff78c;
  border: 1px solid rgba(8, 43, 35, 0.55);
  border-radius: 50%;
  box-shadow: 0 0 10px #fff78c;
  animation: rally 4.2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.heat {
  position: absolute;
  width: 80px;
  height: 52px;
  background: rgba(233, 245, 106, 0.19);
  filter: blur(13px);
  border-radius: 50%;
  animation: heat-pulse 3.2s ease-in-out infinite;
}

.heat-one { top: 20%; left: 14%; }
.heat-two { right: 11%; bottom: 17%; animation-delay: -1.6s; }

.camera-label {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 4;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(8, 43, 35, 0.76);
  border-radius: 7px;
  backdrop-filter: blur(8px);
}

.match-toggle {
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: 5;
  display: grid;
  width: 39px;
  height: 39px;
  color: var(--green-deep);
  background: var(--yellow);
  border: 0;
  border-radius: 50%;
  place-items: center;
}

.pause-icon,
.pause-icon::after {
  display: block;
  width: 3px;
  height: 12px;
  content: "";
  background: currentColor;
  border-radius: 2px;
}

.pause-icon {
  position: relative;
  margin-left: -6px;
}

.pause-icon::after {
  position: absolute;
  left: 6px;
}

.is-paused .pause-icon {
  width: 0;
  height: 0;
  margin: 0 0 0 3px;
  background: transparent;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid currentColor;
  border-radius: 0;
}

.is-paused .pause-icon::after {
  display: none;
}

.is-paused .ball,
.is-paused .heat,
.is-paused .recording-pill > span:first-child {
  animation-play-state: paused;
}

.console-timeline {
  position: relative;
  height: 3px;
  margin: 20px;
  background: rgba(255, 255, 255, 0.13);
}

.timeline-played {
  display: block;
  width: 43%;
  height: 100%;
  background: var(--yellow);
}

.moment {
  position: absolute;
  top: -3px;
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
}

.moment-one { left: 18%; }
.moment-two { left: 34%; }
.moment-three { left: 71%; background: rgba(255, 255, 255, 0.45); }

.console-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 20px 22px;
}

.console-stats div {
  padding-left: 17px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.console-stats div:first-child {
  padding-left: 0;
  border-left: 0;
}

.console-stats span,
.console-stats strong {
  display: block;
}

.console-stats span {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.console-stats strong {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.insight-card {
  position: absolute;
  right: -24px;
  bottom: -32px;
  z-index: 4;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 13px;
  width: min(78%, 390px);
  padding: 17px;
  background: var(--white);
  border: 1px solid rgba(20, 45, 39, 0.12);
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(8, 43, 35, 0.19);
  transition: opacity 180ms ease, transform 180ms ease;
}

.insight-card.is-changing {
  opacity: 0;
  transform: translateY(5px);
}

.insight-icon {
  display: grid;
  width: 37px;
  height: 37px;
  color: var(--green-deep);
  background: var(--yellow);
  border-radius: 8px;
  font-size: 0.64rem;
  font-weight: 900;
  place-items: center;
}

.insight-card p {
  margin: 1px 0 5px;
  color: var(--blue-deep);
  font-size: 0.5rem;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.insight-card strong {
  display: block;
  font-size: 0.75rem;
  line-height: 1.45;
}

.prototype-note {
  position: absolute;
  top: -20px;
  right: -18px;
  z-index: 6;
  padding: 7px 10px;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(3deg);
}

.signal-strip {
  color: var(--white);
  background: var(--green);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.signal-grid p {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 88px;
  margin: 0;
  padding: 0 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.8rem;
  font-weight: 760;
}

.signal-grid p:first-child {
  padding-left: 0;
  border-left: 0;
}

.signal-grid span,
.card-number,
.step-number,
.price-topline > span {
  color: var(--yellow);
  font-family: var(--font-serif);
  font-size: 0.78rem;
  font-style: italic;
}

.section-intro {
  display: grid;
  grid-template-columns: 1fr 1.6fr 0.8fr;
  align-items: end;
  gap: 44px;
  margin-bottom: 64px;
}

.section-intro .section-kicker {
  align-self: start;
}

.section-intro h2,
.how-heading h2,
.offers-heading h2,
.pilot-copy h2,
.privacy-heading h2,
.faq-heading h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.5vw, 4.6rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-intro > p:last-child,
.how-heading > p,
.offers-heading > p,
.privacy-heading > p,
.contact-copy > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.7;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.value-card {
  position: relative;
  min-height: 430px;
  padding: 25px;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.value-card-blue { color: var(--white); background: var(--blue-deep); }
.value-card-yellow { color: var(--green-deep); background: var(--yellow); }
.value-card-green { color: var(--white); background: var(--green); }

.card-number {
  color: inherit;
  opacity: 0.62;
}

.value-card h3 {
  position: absolute;
  right: 25px;
  bottom: 74px;
  left: 25px;
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.value-card > p {
  position: absolute;
  right: 25px;
  bottom: 24px;
  left: 25px;
  margin: 0;
  opacity: 0.76;
  font-size: 0.78rem;
  line-height: 1.55;
}

.value-graphic {
  position: absolute;
  top: 55px;
  right: 25px;
  left: 25px;
  height: 205px;
}

.return-graphic {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50% 50% 8px 8px;
}

.return-graphic::before,
.return-graphic::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.return-graphic::before { inset: 25px 45px; }
.return-graphic::after { inset: 48px 80px; }

.return-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 76px;
  height: 76px;
  color: var(--green-deep);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 1.8rem;
  transform: translate(-50%, -50%);
  place-items: center;
}

.return-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
}

.dot-one { top: 17%; left: 14%; }
.dot-two { top: 31%; right: 12%; }
.dot-three { bottom: 9%; left: 30%; }

.scan-graphic {
  display: grid;
  place-items: center;
}

.scan-graphic strong {
  font-family: var(--font-serif);
  font-size: 3.7rem;
  font-style: italic;
  font-weight: 400;
}

.scan-corner {
  position: absolute;
  width: 38px;
  height: 38px;
  border-color: var(--green-deep);
  border-style: solid;
}

.corner-one { top: 18px; left: 42px; border-width: 3px 0 0 3px; }
.corner-two { top: 18px; right: 42px; border-width: 3px 3px 0 0; }
.corner-three { bottom: 18px; left: 42px; border-width: 0 0 3px 3px; }
.corner-four { right: 42px; bottom: 18px; border-width: 0 3px 3px 0; }

.scan-line {
  position: absolute;
  right: 45px;
  left: 45px;
  height: 2px;
  background: var(--green-deep);
  box-shadow: 0 0 11px rgba(8, 43, 35, 0.4);
  animation: scanning 2.8s ease-in-out infinite;
}

.share-graphic {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.share-graphic > span {
  display: grid;
  width: 58px;
  height: 58px;
  color: var(--green-deep);
  background: var(--yellow);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  place-items: center;
}

.share-graphic strong {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 400;
}

.share-graphic i {
  position: absolute;
  bottom: 42px;
  left: 4px;
  width: 78%;
  height: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  transform: skewX(-45deg);
}

.how {
  color: var(--white);
  background: var(--green-deep);
}

.section-kicker.light {
  color: var(--yellow);
}

.how-heading,
.offers-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: 80px;
  padding-bottom: 66px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.how-heading > p {
  color: rgba(255, 255, 255, 0.62);
}

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

.steps-list > li {
  display: grid;
  grid-template-columns: 70px 0.75fr 1.25fr;
  align-items: center;
  gap: 28px;
  min-height: 240px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.step-number {
  align-self: start;
  padding-top: 42px;
}

.step-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 2.2vw, 2.15rem);
  letter-spacing: -0.035em;
}

.step-copy p {
  max-width: 400px;
  margin: 0;
  color: rgba(255, 255, 255, 0.59);
  font-size: 0.84rem;
  line-height: 1.65;
}

.step-device {
  justify-self: end;
  width: min(100%, 420px);
  color: var(--green-deep);
  background: var(--paper);
  border-radius: 13px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.consent-device {
  padding: 0 19px 18px;
}

.mini-browser-bar {
  display: flex;
  gap: 4px;
  margin: 0 -19px 18px;
  padding: 9px 12px;
  background: var(--paper-deep);
  border-radius: 13px 13px 0 0;
}

.mini-browser-bar span {
  width: 5px;
  height: 5px;
  background: var(--blue);
  border-radius: 50%;
}

.consent-device > p,
.record-device > p,
.delivery-device p {
  margin: 0 0 5px;
  color: var(--blue-deep);
  font-size: 0.52rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.consent-device > strong {
  display: block;
  font-size: 0.9rem;
}

.avatars {
  display: flex;
  margin-top: 15px;
}

.avatars i {
  display: grid;
  width: 32px;
  height: 32px;
  margin-right: -5px;
  background: var(--yellow);
  border: 2px solid var(--paper);
  border-radius: 50%;
  font-size: 0.5rem;
  font-style: normal;
  font-weight: 900;
  place-items: center;
}

.mini-action {
  float: right;
  margin-top: -30px;
  padding: 8px 10px;
  color: var(--white);
  background: var(--green);
  border-radius: 6px;
  font-size: 0.57rem;
  font-weight: 800;
}

.mini-action b {
  margin-left: 13px;
}

.record-device {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 144px;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-deep);
}

.record-device > p,
.record-device > strong {
  position: absolute;
  z-index: 2;
  color: var(--white);
}

.record-device > p { top: 46px; opacity: 0.65; }
.record-device > strong { top: 65px; font-family: var(--font-serif); font-size: 1.65rem; font-weight: 400; }

.record-rings,
.record-rings span,
.record-rings i {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.record-rings { width: 95px; height: 95px; }
.record-rings span:first-child { inset: -30px; }
.record-rings span:nth-child(2) { inset: -62px; }
.record-rings i { inset: -95px; }

.delivery-device {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 100px;
  padding: 18px;
}

.delivery-check {
  display: grid;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  background: var(--yellow);
  border-radius: 50%;
  font-size: 1.2rem;
  place-items: center;
}

.delivery-device strong {
  display: block;
  font-size: 0.85rem;
}

.offers {
  background: var(--paper-deep);
}

.offers-heading {
  border-bottom-color: var(--line);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.price-card {
  position: relative;
  min-height: 520px;
  padding: 27px;
  background: rgba(255, 254, 249, 0.62);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.price-card-featured {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-12px);
}

.popular-label {
  position: absolute;
  top: -12px;
  right: 20px;
  padding: 7px 10px;
  color: var(--green-deep);
  background: var(--yellow);
  border-radius: 99px;
  font-size: 0.52rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.price-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.price-card-featured .price-topline {
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.price-topline > span {
  color: var(--blue-deep);
}

.price-card-featured .price-topline > span {
  color: var(--yellow);
}

.price-topline p {
  margin: 0;
  color: var(--blue-deep);
  font-size: 0.57rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.price-card-featured .price-topline p {
  color: rgba(255, 255, 255, 0.58);
}

.price-card h3 {
  margin: 30px 0 12px;
  font-size: 1.25rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 0;
}

.price strong {
  font-family: var(--font-serif);
  font-size: 3.7rem;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.price span {
  color: var(--ink-soft);
  font-size: 0.68rem;
}

.price-card-featured .price span,
.price-card-featured .price-description,
.price-card-featured li {
  color: rgba(255, 255, 255, 0.65);
}

.price-description {
  min-height: 72px;
  margin: 13px 0 28px;
  color: var(--ink-soft);
  font-size: 0.79rem;
  line-height: 1.55;
}

.price-card ul {
  margin: 0;
  padding: 23px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.price-card-featured ul {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.price-card li {
  position: relative;
  margin: 13px 0;
  padding-left: 21px;
  color: var(--ink-soft);
  font-size: 0.74rem;
}

.price-card li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  color: var(--blue-deep);
  content: "↗";
  font-weight: 900;
}

.price-card-featured li::before {
  color: var(--yellow);
}

.split-price-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.split-price-note span {
  color: var(--blue-deep);
  font-size: 1.1rem;
}

.pilot {
  color: var(--white);
  background: var(--blue-deep);
}

.pilot-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  align-items: center;
  gap: clamp(60px, 10vw, 130px);
}

.pilot-lead {
  max-width: 610px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1rem;
  line-height: 1.7;
}

.included-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
  margin: 44px 0 0;
  padding: 31px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.included-list li {
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.74rem;
  line-height: 1.45;
}

.included-list span {
  color: var(--yellow);
  font-weight: 900;
}

.pilot-card {
  padding: 31px;
  color: var(--green-deep);
  background: var(--paper);
  border-radius: var(--radius-md);
  box-shadow: 0 25px 70px rgba(21, 48, 61, 0.25);
}

.pilot-card-label {
  margin: 0 0 22px;
  color: var(--blue-deep);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.pilot-cost {
  display: flex;
  align-items: flex-start;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.pilot-cost > span {
  margin-top: 10px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
}

.pilot-cost strong {
  font-family: var(--font-serif);
  font-size: 6.3rem;
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.pilot-cost p {
  align-self: flex-end;
  margin: 0 0 1px 13px;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.pilot-details {
  margin: 13px 0 22px;
}

.pilot-details div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.pilot-details span {
  color: var(--ink-soft);
  font-size: 0.55rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.pilot-details strong {
  font-size: 0.72rem;
}

.pilot-fineprint {
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: 0.61rem;
  text-align: center;
}

.privacy {
  background: var(--yellow);
}

.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(60px, 10vw, 140px);
}

.privacy-heading > p:last-child {
  max-width: 540px;
  margin-top: 28px;
  color: rgba(8, 43, 35, 0.69);
}

.privacy-rules {
  border-top: 1px solid rgba(8, 43, 35, 0.25);
}

.privacy-rules article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 27px 0;
  border-bottom: 1px solid rgba(8, 43, 35, 0.25);
}

.privacy-rules article > span {
  display: grid;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(8, 43, 35, 0.3);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 1rem;
  place-items: center;
}

.privacy-rules h3 {
  margin: 3px 0 7px;
  font-size: 1rem;
}

.privacy-rules p {
  margin: 0;
  color: rgba(8, 43, 35, 0.68);
  font-size: 0.76rem;
  line-height: 1.55;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: 100px;
}

.faq-heading {
  position: sticky;
  top: 125px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  font-size: 0.9rem;
  font-weight: 780;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

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

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

.faq-list details > p {
  max-width: 650px;
  margin: -6px 0 27px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.7;
}

.contact {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--green-deep);
}

.contact-orbit {
  position: absolute;
  bottom: -420px;
  left: -280px;
  width: 750px;
  height: 750px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 110px rgba(255, 255, 255, 0.025), 0 0 0 220px rgba(255, 255, 255, 0.018);
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: clamp(60px, 10vw, 130px);
}

.contact-copy > p {
  max-width: 500px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.62);
}

.contact-callout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  max-width: 480px;
  margin-top: 45px;
  padding-top: 27px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-callout > span {
  display: grid;
  width: 40px;
  height: 40px;
  color: var(--green-deep);
  background: var(--yellow);
  border-radius: 50%;
  place-items: center;
}

.contact-callout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.59);
  font-size: 0.75rem;
  line-height: 1.6;
}

.contact-callout strong {
  color: var(--white);
}

.lead-form {
  padding: 32px;
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius-md);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.21);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 29px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.form-heading p {
  margin: 0;
  color: var(--blue-deep);
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.form-heading > span {
  color: var(--ink-soft);
  font-size: 0.63rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 21px 16px;
}

.form-grid label {
  display: grid;
  gap: 8px;
}

.form-grid label > span {
  font-size: 0.67rem;
  font-weight: 780;
}

.form-grid label em {
  color: var(--ink-soft);
  font-size: 0.59rem;
  font-style: normal;
  font-weight: 500;
}

.field-wide {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 49px;
  padding: 0 13px;
  background: var(--white);
  border: 1px solid rgba(20, 45, 39, 0.18);
  border-radius: 7px;
  font-size: 0.77rem;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-grid textarea {
  min-height: 94px;
  padding-block: 12px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--blue-deep);
  box-shadow: 0 0 0 3px rgba(63, 114, 136, 0.13);
}

.form-grid input:user-invalid,
.form-grid select:user-invalid,
.consent-check input:user-invalid {
  border-color: #a33c2f;
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
  color: var(--ink-soft);
  font-size: 0.65rem;
  line-height: 1.5;
}

.consent-check input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--green);
}

.submit-button[disabled] {
  cursor: wait;
  opacity: 0.66;
  transform: none;
}

.demo-notice,
.form-status {
  margin: 12px 0 0;
  font-size: 0.62rem;
  line-height: 1.5;
  text-align: center;
}

.demo-notice {
  color: #755e19;
}

.form-status {
  min-height: 0;
  color: var(--ink-soft);
}

.form-status.is-success { color: #1f684d; }
.form-status.is-error { color: #9e342a; }
.form-status.is-demo { color: #755e19; }

.site-footer {
  color: rgba(255, 255, 255, 0.6);
  background: #061f1a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 120px;
  font-size: 0.68rem;
}

.brand-footer {
  color: var(--white);
}

.footer-links {
  display: flex;
  gap: 25px;
}

.copyright {
  grid-column: 1 / -1;
  margin: -26px 0 20px;
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.58rem;
}

.reveal {
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(20px);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.72); }
}

@keyframes rally {
  0% { top: 25%; left: 35%; }
  24% { top: 66%; left: 71%; }
  49% { top: 76%; left: 33%; }
  73% { top: 22%; left: 69%; }
  100% { top: 25%; left: 35%; }
}

@keyframes heat-pulse {
  0%, 100% { opacity: 0.45; transform: scale(0.86); }
  50% { opacity: 1; transform: scale(1.14); }
}

@keyframes scanning {
  0%, 100% { top: 26%; opacity: 0.3; }
  50% { top: 73%; opacity: 1; }
}

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

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

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

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

  .hero-product {
    max-width: 650px;
    margin-top: 35px;
  }

  .section-intro {
    grid-template-columns: 1fr 2fr;
  }

  .section-intro > p:last-child {
    grid-column: 2;
  }

  .value-card {
    min-height: 390px;
  }

  .how-heading,
  .offers-heading {
    gap: 40px;
  }

  .steps-list > li {
    grid-template-columns: 45px 0.9fr 1.1fr;
  }

  .pilot-grid,
  .contact-grid {
    gap: 55px;
  }

  .faq-grid {
    gap: 60px;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section-pad {
    padding-block: 82px;
  }

  .site-header {
    background: rgba(242, 240, 233, 0.9);
    box-shadow: 0 1px 0 var(--line);
    backdrop-filter: blur(16px);
  }

  .nav-shell {
    min-height: 68px;
  }

  .brand-name {
    font-size: 0.75rem;
  }

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

  .button-small {
    min-height: 40px;
    padding-inline: 13px;
  }

  .button-small span:first-child {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 82px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 14.5vw, 5.4rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .hero-facts {
    margin-top: 38px;
  }

  .hero-facts div {
    padding-inline: 10px;
  }

  .hero-facts dt {
    font-size: 1.35rem;
  }

  .hero-facts dd {
    font-size: 0.58rem;
  }

  .hero-product {
    width: calc(100% - 6px);
    margin-top: 30px;
  }

  .match-console {
    transform: none;
  }

  .court-view {
    height: 290px;
  }

  .insight-card {
    right: -8px;
    bottom: -40px;
    width: 88%;
  }

  .prototype-note {
    top: -14px;
    right: -6px;
  }

  .signal-grid {
    grid-template-columns: 1fr;
    padding-block: 9px;
  }

  .signal-grid p,
  .signal-grid p:first-child {
    min-height: 52px;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    border-left: 0;
  }

  .signal-grid p:first-child {
    border-top: 0;
  }

  .section-intro,
  .how-heading,
  .offers-heading,
  .pilot-grid,
  .privacy-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-intro {
    margin-bottom: 42px;
  }

  .section-intro > p:last-child {
    grid-column: auto;
  }

  .value-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: 410px;
  }

  .how-heading,
  .offers-heading {
    padding-bottom: 42px;
  }

  .steps-list > li {
    grid-template-columns: 38px 1fr;
    gap: 14px;
    padding: 38px 0;
  }

  .step-number {
    padding-top: 4px;
  }

  .step-device {
    grid-column: 2;
    justify-self: stretch;
    width: 100%;
    margin-top: 14px;
  }

  .price-card,
  .price-card-featured {
    min-height: auto;
    transform: none;
  }

  .split-price-note {
    align-items: flex-start;
    text-align: left;
  }

  .pilot-card {
    padding: 25px;
  }

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

  .privacy-grid {
    gap: 50px;
  }

  .faq-heading {
    position: static;
  }

  .lead-form {
    padding: 24px 20px;
  }

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

  .field-wide {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-block: 40px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .copyright {
    grid-column: auto;
    margin: 10px 0 0;
  }
}

@media (max-width: 440px) {
  .nav-shell > .button {
    width: 40px;
    padding: 0;
    gap: 0;
  }

  .nav-shell > .button::before {
    content: "↗";
    font-size: 1rem;
  }

  .nav-shell > .button > span {
    display: none;
  }

  .hero h1 {
    font-size: 3.28rem;
  }

  .hero-lead {
    font-size: 0.95rem;
  }

  .console-header {
    padding: 14px;
  }

  .court-view {
    height: 235px;
  }

  .console-stats {
    padding-inline: 14px;
  }

  .console-stats strong {
    font-size: 1.05rem;
  }

  .insight-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 24px);
    margin: -1px auto 0;
    border-radius: 0 0 13px 13px;
  }

  .prototype-note {
    display: none;
  }

  .hero-facts dd {
    max-width: 70px;
  }

  .privacy-rules article {
    grid-template-columns: 58px 1fr;
    gap: 15px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

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

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