@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-display: swap;
}

:root {
  --navy-950: #06111f;
  --navy-900: #0d1c32;
  --navy-800: #10233d;
  --navy-700: #1d3555;
  --gold: #c5a059;
  --gold-light: #c5a059;
  --gold-dark: #785a1a;
  --champagne: #d8c9a3;
  --silver: #b9c2d0;
  --silver-light: #eef1f5;
  --silver-dark: #7c8798;
  --ivory: #f7f1e4;
  --paper: #fffdf8;
  --paper-cool: #f5f6f8;
  --ink: #111820;
  --ink-soft: #48515d;
  --rule: rgba(13, 28, 50, 0.14);
  --shadow: 0 28px 70px rgba(4, 12, 24, 0.18);
  --shell: 1220px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

a {
  color: inherit;
}

button {
  color: inherit;
}

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

h1,
h2,
h3 {
  font-family: "Montserrat", "Inter", sans-serif;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(3.8rem, 7.6vw, 7.4rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 5vw, 4.65rem);
  font-weight: 700;
}

h3 {
  margin-bottom: 15px;
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
  font-weight: 700;
}

p {
  color: var(--ink-soft);
}

::selection {
  color: var(--navy-950);
  background: var(--gold-light);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 16px;
  color: var(--navy-950);
  background: var(--gold-light);
  border-radius: 8px;
  font-weight: 700;
  transform: translateY(-160%);
}

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

.eyebrow {
  margin-bottom: 17px;
  color: var(--gold-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 7px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button:focus-visible,
.site-nav a:focus-visible,
.screen-tabs button:focus-visible,
.film-poster:focus-visible,
.menu-button:focus-visible {
  outline: 3px solid rgba(254, 212, 136, 0.76);
  outline-offset: 4px;
}

.button-gold {
  color: var(--navy-950);
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.button-gold:hover {
  background: var(--ivory);
  border-color: var(--ivory);
}

.button-ghost {
  color: var(--ivory);
  background: rgba(6, 17, 31, 0.3);
  border-color: rgba(238, 241, 245, 0.36);
}

.button-ghost:hover {
  border-color: var(--gold);
  background: rgba(6, 17, 31, 0.62);
}

.button-dark {
  color: var(--gold-light);
  background: var(--navy-950);
  border-color: var(--navy-950);
}

.button-dark:hover {
  color: var(--ivory);
  background: var(--navy-800);
}

.play-mark,
.poster-play {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.site-header.scrolled {
  background: rgba(6, 17, 31, 0.92);
  border-color: rgba(185, 194, 208, 0.18);
  backdrop-filter: blur(18px) saturate(130%);
}

.nav-shell {
  width: min(calc(100% - 48px), 1320px);
  min-height: 80px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 215px;
  height: auto;
  filter: brightness(0) invert(1);
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover {
  color: var(--ivory);
}

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

.site-nav .nav-cta {
  padding: 11px 15px;
  color: var(--gold-light);
  border: 1px solid rgba(197, 160, 89, 0.66);
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.site-nav .nav-cta:hover {
  color: var(--navy-950);
  background: var(--gold-light);
}

.menu-button {
  width: 45px;
  height: 45px;
  margin-left: auto;
  display: none;
  place-items: center;
  padding: 10px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
}

.menu-button span {
  width: 19px;
  height: 1px;
  display: block;
  margin: 3px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.hero {
  min-height: 900px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 150px 0 102px;
  color: white;
  background: var(--navy-950);
  isolation: isolate;
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -5;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.65) contrast(1.08);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-balou .hero-media img {
  object-position: center 24%;
  filter: saturate(1.08) contrast(1.16) brightness(0.9);
  animation: hero-balou-drift 16s ease-in-out infinite alternate;
}

.hero-scrim {
  z-index: -4;
  background:
    radial-gradient(900px 680px at 76% 47%, rgba(197, 160, 89, 0.18), transparent 66%),
    linear-gradient(90deg, rgba(6, 17, 31, 0.98) 0%, rgba(6, 17, 31, 0.92) 42%, rgba(6, 17, 31, 0.64) 74%, rgba(6, 17, 31, 0.78) 100%),
    linear-gradient(0deg, rgba(6, 17, 31, 0.96), rgba(6, 17, 31, 0.22));
}

.hero-balou .hero-scrim {
  background:
    radial-gradient(760px 640px at 50% 42%, rgba(230, 176, 83, 0.2), transparent 68%),
    linear-gradient(90deg, rgba(4, 13, 25, 0.99) 0%, rgba(4, 13, 25, 0.91) 34%, rgba(5, 15, 28, 0.55) 58%, rgba(5, 15, 28, 0.4) 76%, rgba(5, 15, 28, 0.7) 100%),
    linear-gradient(0deg, rgba(4, 13, 25, 0.94) 0%, rgba(4, 13, 25, 0.12) 56%, rgba(4, 13, 25, 0.38) 100%);
}

.hero-horses {
  position: absolute;
  right: -105px;
  bottom: -165px;
  z-index: -2;
  width: min(56vw, 800px);
  opacity: 0.08;
  filter: brightness(0) invert(1);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 0.9fr);
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 700px;
}

.hero-copy .eyebrow {
  color: var(--gold-light);
}

.hero h1 span {
  color: var(--gold-light);
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.04rem, 1.55vw, 1.28rem);
  line-height: 1.75;
}

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

.hero-proof {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-proof span {
  display: flex;
  align-items: center;
}

.hero-proof span:not(:last-child)::after {
  content: "";
  width: 3px;
  height: 3px;
  margin: 0 12px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-edge {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.7;
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(197, 160, 89, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 760px;
  height: 760px;
  right: -240px;
  top: 60px;
  animation: orbit-pulse 7s ease-in-out infinite;
}

.orbit-two {
  width: 520px;
  height: 520px;
  right: -110px;
  top: 185px;
  animation: orbit-pulse 7s 1.4s ease-in-out infinite;
}

.device-stage {
  min-height: 660px;
  position: relative;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.stage-glow {
  position: absolute;
  inset: 15% 5% 5% 12%;
  background: radial-gradient(circle, rgba(254, 212, 136, 0.25), transparent 65%);
  filter: blur(26px);
}

.phone {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 8px;
  background: linear-gradient(145deg, #ebe8de 0%, #6f7885 22%, #111722 52%, #939ba6 82%, #d8d2c3 100%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 48px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.48), inset 0 0 0 2px rgba(0, 0, 0, 0.72);
}

.phone::after {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 40px;
  pointer-events: none;
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}

.phone-speaker {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 4;
  width: 31%;
  height: 22px;
  background: #030507;
  border-radius: 999px;
  transform: translateX(-50%);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.18);
}

.phone-primary {
  width: 306px;
  height: 664px;
  position: absolute;
  right: 20px;
  top: 0;
  z-index: 3;
  transform: rotateY(-7deg) rotateZ(2deg);
  animation: phone-float 5.5s ease-in-out infinite;
}

.phone-secondary {
  width: 218px;
  height: 473px;
  position: absolute;
  left: 4px;
  bottom: 8px;
  z-index: 1;
  opacity: 0.88;
  transform: rotateY(10deg) rotateZ(-5deg);
  filter: saturate(0.9) brightness(0.86);
  animation: phone-float-secondary 6.5s ease-in-out infinite;
}

.phone-secondary .phone-speaker {
  top: 14px;
  height: 16px;
}

.floating-note {
  min-width: 175px;
  position: absolute;
  z-index: 5;
  padding: 13px 15px;
  color: var(--ivory);
  background: rgba(6, 17, 31, 0.9);
  border: 1px solid rgba(197, 160, 89, 0.46);
  border-radius: 9px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}

.floating-note span {
  display: block;
  margin-bottom: 3px;
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.floating-note strong {
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
}

.note-one {
  right: -16px;
  top: 150px;
  animation: note-drift 5s 0.8s ease-in-out infinite;
}

.note-two {
  left: -24px;
  bottom: 106px;
  animation: note-drift 6s ease-in-out infinite;
}

.feature-ribbon {
  overflow: hidden;
  color: var(--silver);
  background: var(--navy-950);
  border-bottom: 1px solid rgba(185, 194, 208, 0.15);
}

.ribbon-track {
  width: max-content;
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding-left: 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  animation: ribbon 36s linear infinite;
}

.ribbon-track i {
  width: 4px;
  height: 4px;
  display: block;
  background: var(--gold);
  border-radius: 50%;
}

.product-section,
.features-section,
.pricing-section,
.faq-section {
  padding: 132px 0;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 76px;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 1.05rem;
  line-height: 1.8;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.6fr);
  align-items: end;
  gap: 70px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.product-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(13, 28, 50, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(13, 28, 50, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
}

.product-showcase {
  min-height: 750px;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 0.72fr);
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
}

.screen-copy {
  max-width: 620px;
}

.screen-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}

.screen-tabs button {
  padding: 10px 13px;
  color: var(--silver-dark);
  background: transparent;
  border: 1px solid rgba(13, 28, 50, 0.15);
  border-radius: 999px;
  font-size: 0.69rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.screen-tabs button[aria-selected="true"] {
  color: var(--gold-light);
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.screen-text h3 {
  max-width: 590px;
  margin-bottom: 21px;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.screen-text > p {
  max-width: 570px;
  font-size: 1.03rem;
  line-height: 1.8;
}

.screen-text ul {
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.screen-text li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-800);
  font-size: 0.88rem;
  font-weight: 650;
}

.screen-text li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: none;
  background: var(--gold);
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
}

.screen-stage {
  min-height: 700px;
  position: relative;
  display: grid;
  place-items: center;
}

.screen-backdrop {
  width: min(100%, 530px);
  aspect-ratio: 1;
  position: absolute;
  border: 1px solid rgba(197, 160, 89, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(197, 160, 89, 0.12) 0 31%, transparent 31.5% 47%, rgba(13, 28, 50, 0.05) 47.5% 48%, transparent 48.5%),
    var(--paper-cool);
  box-shadow: inset 0 0 80px rgba(13, 28, 50, 0.05);
}

.product-phone {
  width: 310px;
  height: 673px;
  z-index: 2;
  transform: rotate(1deg);
  transition: opacity 160ms ease, transform 260ms ease;
}

.product-phone.changing {
  opacity: 0.1;
  transform: translateY(14px) rotate(1deg);
}

.screen-caption {
  min-width: 235px;
  position: absolute;
  right: -10px;
  bottom: 96px;
  z-index: 4;
  padding: 15px 18px;
  color: var(--ivory);
  background: var(--navy-900);
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow);
}

.screen-caption span {
  display: block;
  margin-bottom: 3px;
  color: var(--gold-light);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.screen-caption strong {
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
}

.show-rider-band {
  min-height: 760px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  color: white;
  background: var(--navy-950);
}

.show-rider-band > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 60% 47%;
  filter: saturate(0.76) contrast(1.05);
}

.show-rider-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 17, 31, 0.98) 0%, rgba(6, 17, 31, 0.9) 44%, rgba(6, 17, 31, 0.25) 76%, rgba(6, 17, 31, 0.48) 100%),
    linear-gradient(0deg, rgba(6, 17, 31, 0.7), transparent);
}

.show-rider-content {
  position: relative;
  z-index: 2;
  padding-block: 110px;
}

.show-rider-content .eyebrow {
  color: var(--gold-light);
}

.show-rider-content h2 {
  max-width: 680px;
}

.show-rider-content > p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  line-height: 1.8;
}

.show-rider-points {
  max-width: 660px;
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(197, 160, 89, 0.34);
  border: 1px solid rgba(197, 160, 89, 0.34);
}

.show-rider-points span {
  min-height: 105px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 19px;
  color: rgba(255, 255, 255, 0.64);
  background: rgba(6, 17, 31, 0.76);
  font-size: 0.76rem;
}

.show-rider-points strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-light);
  font-family: "Montserrat", sans-serif;
  font-size: 0.92rem;
}

.features-section {
  background: var(--paper-cool);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.bento {
  min-height: 440px;
  position: relative;
  overflow: hidden;
  color: var(--navy-900);
  background: white;
  border: 1px solid rgba(13, 28, 50, 0.1);
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(13, 28, 50, 0.08);
}

.bento-copy {
  position: relative;
  z-index: 4;
  padding: clamp(28px, 4vw, 52px);
}

.bento-copy p {
  max-width: 620px;
  margin-bottom: 0;
  line-height: 1.75;
}

.bento-horses {
  grid-column: span 7;
  min-height: 620px;
  color: white;
  background:
    radial-gradient(circle at 80% 90%, rgba(197, 160, 89, 0.18), transparent 35%),
    var(--navy-900);
}

.bento-horses .bento-copy {
  max-width: 65%;
}

.bento-horses .bento-copy p:not(.bento-label) {
  color: rgba(255, 255, 255, 0.68);
}

.bento-horses .bento-label {
  color: var(--gold-light) !important;
}

.bento-phone-crop {
  width: 44%;
  position: absolute;
  right: 4%;
  bottom: -115px;
  overflow: hidden;
  padding: 7px;
  background: linear-gradient(145deg, var(--silver-light), #5d6875, #101721);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 42px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.38);
  transform: rotate(4deg);
}

.bento-phone-crop img {
  border-radius: 35px;
}

.bento-journal {
  grid-column: span 5;
  min-height: 620px;
  background: var(--ivory);
}

.bento-journal .bento-copy {
  padding-bottom: 20px;
}

.journal-screen {
  width: 75%;
  position: absolute;
  right: -2%;
  bottom: -55%;
  border: 8px solid var(--navy-950);
  border-radius: 36px;
  box-shadow: 0 28px 55px rgba(13, 28, 50, 0.2);
  transform: rotate(-3deg);
}

.bento-share {
  grid-column: span 12;
  min-height: 650px;
  color: white;
  background:
    radial-gradient(circle at 12% 110%, rgba(197, 160, 89, 0.17), transparent 35%),
    var(--navy-950);
}

.bento-share .bento-copy {
  width: 48%;
  padding-top: 100px;
}

.bento-share .bento-copy p:not(.bento-label) {
  color: rgba(255, 255, 255, 0.68);
}

.bento-share .bento-label {
  color: var(--gold-light) !important;
}

.share-screens {
  width: 49%;
  position: absolute;
  top: 54px;
  right: 4%;
  bottom: 0;
}

.share-screens img {
  width: 244px;
  position: absolute;
  border: 7px solid #131b28;
  border-radius: 37px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

.share-screens img:first-child {
  left: 2%;
  bottom: -40%;
  transform: rotate(-6deg);
}

.share-screens img:last-child {
  right: 2%;
  bottom: -30%;
  transform: rotate(5deg);
}

.bento-health {
  grid-column: span 7;
  min-height: 680px;
  color: white;
  background: var(--navy-900);
}

.health-photo {
  height: 42%;
  position: absolute;
  inset: 0 0 auto;
}

.health-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--navy-900), transparent 75%);
}

.health-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.45);
}

.bento-health .bento-copy {
  max-width: 71%;
  padding-top: 300px;
}

.bento-health .bento-copy p:not(.bento-label, .disclaimer) {
  color: rgba(255, 255, 255, 0.7);
}

.bento-health .bento-label {
  color: var(--gold-light) !important;
}

.disclaimer {
  margin-top: 18px !important;
  color: var(--silver) !important;
  font-size: 0.72rem;
  line-height: 1.55 !important;
}

.health-screen {
  width: 210px;
  position: absolute;
  right: -42px;
  bottom: -52px;
  z-index: 5;
  border: 6px solid #111824;
  border-radius: 32px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.36);
  transform: rotate(5deg);
}

.bento-video {
  grid-column: span 5;
  min-height: 680px;
  color: white;
  background: var(--navy-950);
}

.video-still {
  height: 58%;
  position: relative;
  overflow: hidden;
}

.video-still::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--navy-950), transparent 60%);
}

.video-still img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 36%;
  filter: saturate(0.52) contrast(1.1);
}

.bento-video .bento-copy {
  padding-top: 15px;
}

.bento-video .bento-copy p:not(.bento-label) {
  color: rgba(255, 255, 255, 0.68);
}

.bento-video .bento-label {
  color: var(--gold-light) !important;
}

.motion-line {
  height: 1px;
  position: absolute;
  z-index: 3;
  background: var(--gold-light);
  transform-origin: left;
  animation: scan-line 2.4s ease-in-out infinite alternate;
}

.line-a {
  width: 170px;
  left: 20%;
  top: 48%;
  transform: rotate(-16deg);
}

.line-b {
  width: 110px;
  right: 8%;
  top: 31%;
  transform: rotate(24deg);
}

.motion-dot {
  width: 9px;
  height: 9px;
  position: absolute;
  z-index: 4;
  background: var(--gold-light);
  border: 2px solid var(--navy-950);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(254, 212, 136, 0.2);
}

.dot-a {
  left: 39%;
  top: 41%;
}

.dot-b {
  right: 18%;
  top: 39%;
}

.bento-prospects {
  grid-column: span 12;
  min-height: 570px;
  background:
    linear-gradient(100deg, white 0 52%, rgba(255, 255, 255, 0.35) 72%),
    linear-gradient(135deg, #e5dfd0, #d7c39a);
}

.bento-prospects::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image: radial-gradient(rgba(13, 28, 50, 0.28) 0.6px, transparent 0.6px);
  background-size: 7px 7px;
  pointer-events: none;
}

.bento-prospects .bento-copy {
  width: 56%;
  padding-top: 100px;
}

.bento-prospects > img {
  width: 265px;
  position: absolute;
  right: 9%;
  bottom: -25%;
  z-index: 3;
  border: 7px solid var(--navy-950);
  border-radius: 38px;
  box-shadow: var(--shadow);
  transform: rotate(3deg);
}

.feature-list {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--rule);
  border-radius: 14px;
  background: white;
}

.feature-list > div {
  min-height: 185px;
  padding: 29px;
}

.feature-list > div:not(:last-child) {
  border-right: 1px solid var(--rule);
}

.feature-list strong {
  display: block;
  margin-bottom: 11px;
  color: var(--navy-900);
  font-family: "Montserrat", sans-serif;
  font-size: 0.94rem;
}

.feature-list span {
  color: var(--ink-soft);
  font-size: 0.79rem;
  line-height: 1.65;
}

.image-story {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--navy-950);
}

.image-panel {
  min-height: 700px;
  position: relative;
  overflow: hidden;
  margin: 0;
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 17, 31, 0.96) 0%, rgba(6, 17, 31, 0.5) 30%, transparent 68%);
  transition: background 320ms ease;
}

.image-panel:not(:last-child) {
  border-right: 1px solid rgba(197, 160, 89, 0.28);
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.54);
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1), filter 500ms ease;
}

.image-panel:nth-child(1) img {
  object-position: center;
}

.image-panel:nth-child(2) img {
  object-position: 53% center;
}

.image-panel:nth-child(3) img {
  object-position: 48% 34%;
}

.image-panel:hover img {
  transform: scale(1.045);
  filter: saturate(0.82);
}

.image-panel:hover::after {
  background: linear-gradient(0deg, rgba(6, 17, 31, 0.96), rgba(6, 17, 31, 0.08) 70%);
}

.image-panel figcaption {
  position: absolute;
  right: clamp(30px, 4vw, 64px);
  bottom: clamp(38px, 5vw, 74px);
  left: clamp(30px, 4vw, 64px);
  z-index: 2;
  padding-top: 22px;
  color: white;
  border-top: 1px solid rgba(197, 160, 89, 0.7);
}

.image-panel figcaption span {
  display: block;
  margin-bottom: 13px;
  color: var(--gold-light);
  font-size: clamp(0.72rem, 0.8vw, 0.86rem);
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.image-panel figcaption strong {
  display: block;
  max-width: 390px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.8rem, 2.25vw, 2.7rem);
  line-height: 1.13;
}

.film-section {
  padding: 132px 0;
  color: white;
  background:
    radial-gradient(circle at 20% 80%, rgba(197, 160, 89, 0.14), transparent 32%),
    var(--navy-950);
}

.film-grid {
  display: grid;
  grid-template-columns: 0.68fr 1.3fr;
  align-items: center;
  gap: 75px;
}

.film-copy .eyebrow {
  color: var(--gold-light);
}

.film-copy h2 {
  font-size: clamp(2.5rem, 4.4vw, 4.4rem);
}

.film-copy > p:not(.eyebrow, .film-length) {
  margin-bottom: 31px;
  color: rgba(255, 255, 255, 0.69);
  line-height: 1.8;
}

.film-length {
  margin: 15px 0 0;
  color: var(--silver-dark);
  font-size: 0.69rem;
}

.film-poster {
  aspect-ratio: 1200 / 630;
  position: relative;
  overflow: hidden;
  padding: 0;
  color: white;
  background: var(--navy-900);
  border: 1px solid rgba(197, 160, 89, 0.52);
  border-radius: 13px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  cursor: pointer;
}

.film-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 17, 31, 0.58), transparent 48%);
}

.film-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.film-poster:hover img {
  transform: scale(1.025);
}

.poster-play {
  width: 70px;
  height: 70px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  background: var(--gold-light);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
}

.poster-play::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--navy-950);
}

.poster-label {
  position: absolute;
  right: 24px;
  bottom: 21px;
  z-index: 2;
  font-family: "Montserrat", sans-serif;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.disciplines-section {
  padding: 105px 0;
  color: white;
  background:
    linear-gradient(90deg, rgba(197, 160, 89, 0.07) 1px, transparent 1px),
    var(--navy-950);
  background-size: 120px 100%;
  border-top: 1px solid rgba(197, 160, 89, 0.3);
  border-bottom: 1px solid rgba(197, 160, 89, 0.3);
}

.disciplines-section .shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(70px, 9vw, 140px);
}

.disciplines-section .eyebrow {
  color: var(--gold-light);
}

.discipline-intro h2 {
  margin-bottom: 0;
  color: white;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.discipline-field > p {
  max-width: 610px;
  margin: 0 0 29px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.75;
}

.discipline-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(197, 160, 89, 0.38);
}

.discipline-list span {
  padding: 21px 18px 21px 0;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(185, 194, 208, 0.17);
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.045em;
}

.pricing-section {
  background:
    radial-gradient(circle at 12% 22%, rgba(197, 160, 89, 0.13), transparent 24%),
    var(--paper);
}

.pricing-copy > p:not(.eyebrow) {
  max-width: 720px;
  font-size: 0.92rem;
  line-height: 1.8;
}

.navigator-quote {
  max-width: 700px;
  margin: 38px 0 0;
  padding: 4px 0 4px 28px;
  border-left: 3px solid var(--gold);
}

.navigator-quote p {
  margin: 0;
  color: var(--navy-900);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.1rem, 1.7vw, 1.42rem);
  font-weight: 750;
  line-height: 1.5;
}

.navigator-quote cite {
  margin-top: 13px;
  display: block;
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.68fr);
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
}

.pricing-copy p:not(.eyebrow) {
  max-width: 600px;
  font-size: 1.02rem;
  line-height: 1.8;
}

.price-card {
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.48);
  border-radius: 16px;
  background: white;
  box-shadow: var(--shadow);
}

.price-card-top {
  padding: 38px 42px 32px;
  color: white;
  background:
    radial-gradient(circle at 100% 0%, rgba(197, 160, 89, 0.22), transparent 38%),
    var(--navy-900);
  border-bottom: 2px solid var(--gold);
}

.price-card-top > span {
  display: block;
  margin-bottom: 20px;
  color: var(--gold-light);
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.price-card-top > strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  letter-spacing: -0.06em;
}

.price-card-top sup {
  margin-right: 3px;
  font-size: 0.42em;
  vertical-align: super;
}

.price-card-top small {
  margin-left: 5px;
  color: var(--silver);
  font-size: 0.25em;
  letter-spacing: 0;
}

.price-card-top p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.price-card ul {
  margin: 0;
  padding: 31px 42px 15px;
  display: grid;
  gap: 15px;
  list-style: none;
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.price-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: none;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.15);
}

.price-card .button {
  margin: 22px 42px 42px;
  display: flex;
}

.founder-section {
  padding: 130px 0;
  color: white;
  background:
    radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.14), transparent 30%),
    var(--navy-900);
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.68fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(55px, 9vw, 125px);
}

.founder-photo {
  min-height: 660px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.45);
  border-radius: 12px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.06);
}

.founder-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 17, 31, 0.82), transparent 48%);
}

.founder-plaque {
  position: absolute;
  right: 25px;
  bottom: 24px;
  left: 25px;
  z-index: 2;
  color: white;
}

.founder-plaque strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.18rem;
}

.founder-plaque span {
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.founder-copy .eyebrow {
  color: var(--gold-light);
}

.founder-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.85;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 16px;
  color: var(--gold-light);
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

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

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

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

.faq-heading h2 {
  font-size: clamp(2.3rem, 4.3vw, 4rem);
}

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

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

.faq-list summary {
  min-height: 84px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 21px 52px 21px 0;
  color: var(--navy-900);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  position: absolute;
  right: 2px;
  display: grid;
  place-items: center;
  color: var(--gold-dark);
  border: 1px solid rgba(132, 103, 40, 0.35);
  border-radius: 50%;
}

.faq-list details[open] summary::after {
  content: "x";
}

.faq-list details p {
  max-width: 700px;
  padding: 0 50px 27px 0;
  line-height: 1.78;
}

.final-cta {
  min-height: 650px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: white;
  text-align: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(197, 160, 89, 0.18), transparent 42%),
    var(--navy-950);
}

.final-cta > img {
  width: min(62vw, 880px);
  position: absolute;
  right: -80px;
  bottom: -240px;
  opacity: 0.06;
  filter: brightness(0) invert(1);
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  padding: 90px 0;
}

.cta-crest {
  width: 72px;
  height: auto;
  margin: 0 auto 25px;
}

.final-cta .eyebrow {
  color: var(--gold-light);
}

.final-cta h2 {
  max-width: 900px;
  margin-inline: auto;
}

.final-cta p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.app-store-link {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  color: var(--navy-950);
  background: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: 7px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.app-store-link:hover {
  background: white;
  transform: translateY(-2px);
}

.site-footer {
  padding: 80px 0 30px;
  color: white;
  background: #040c16;
  border-top: 1px solid rgba(197, 160, 89, 0.25);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.1fr;
  gap: 80px;
}

.footer-brand img {
  width: 220px;
}

.footer-grid > div:first-child p {
  max-width: 340px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.8rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-links strong {
  margin-bottom: 7px;
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.78rem;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 65px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(185, 194, 208, 0.14);
}

.footer-bottom small {
  max-width: 920px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.64rem;
  line-height: 1.7;
}

.footer-bottom > span {
  flex: none;
  color: var(--gold-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.video-dialog {
  width: min(calc(100% - 32px), 1100px);
  max-height: calc(100vh - 32px);
  padding: 0;
  color: white;
  background: var(--navy-950);
  border: 1px solid rgba(197, 160, 89, 0.55);
  border-radius: 12px;
  box-shadow: 0 45px 120px rgba(0, 0, 0, 0.72);
}

.video-dialog::backdrop {
  background: rgba(1, 5, 11, 0.88);
  backdrop-filter: blur(9px);
}

.dialog-bar {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid rgba(185, 194, 208, 0.18);
}

.dialog-bar strong {
  color: var(--gold-light);
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.dialog-bar button {
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  font-size: 0.7rem;
  cursor: pointer;
}

.video-dialog video {
  width: 100%;
  max-height: calc(100vh - 110px);
  display: block;
  background: black;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.inner-hero {
  min-height: 620px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 170px 0 90px;
  color: white;
  background: var(--navy-950);
}

.inner-hero > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  filter: saturate(0.58);
}

.inner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 17, 31, 0.96), rgba(6, 17, 31, 0.5)), linear-gradient(0deg, rgba(6, 17, 31, 0.88), transparent);
}

.inner-hero .shell {
  position: relative;
  z-index: 2;
}

.inner-hero .eyebrow {
  color: var(--gold-light);
}

.inner-hero h1 {
  max-width: 900px;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
}

.inner-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
}

.article-shell {
  width: min(calc(100% - 48px), 900px);
  margin-inline: auto;
  padding: 110px 0 130px;
}

.article-shell h2 {
  margin: 68px 0 21px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.article-shell h3 {
  margin: 38px 0 14px;
  font-size: 1.35rem;
}

.article-shell p,
.article-shell li {
  font-size: 1.01rem;
  line-height: 1.85;
}

.article-shell ul {
  padding-left: 22px;
}

.article-lead::first-letter {
  float: left;
  margin: 8px 10px 0 0;
  color: var(--gold-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 0.7;
}

.pull-quote {
  margin: 55px 0;
  padding: 8px 0 8px 26px;
  color: var(--navy-900);
  border-left: 3px solid var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.35;
}

.support-main {
  padding: 140px 0 120px;
  background: var(--paper-cool);
}

.support-head {
  max-width: 780px;
  margin-bottom: 55px;
}

.support-head h1 {
  color: var(--navy-900);
  font-size: clamp(3.3rem, 6vw, 6rem);
}

.support-card {
  overflow: hidden;
  background: white;
  border: 1px solid var(--rule);
  border-radius: 17px;
  box-shadow: var(--shadow);
}

.support-card-head {
  padding: 38px;
  color: white;
  background:
    radial-gradient(circle at 100% 0%, rgba(197, 160, 89, 0.18), transparent 38%),
    var(--navy-900);
  border-bottom: 2px solid var(--gold);
}

.support-card-head h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.support-card-head p {
  max-width: 730px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.support-card-head a {
  color: var(--gold-light);
}

.support-form {
  padding: 38px;
}

.support-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.support-form legend,
.form-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-900);
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.kind-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.kind-option {
  position: relative;
  cursor: pointer;
}

.kind-option input {
  width: 1px;
  height: 1px;
  position: absolute;
  opacity: 0;
}

.kind-choice {
  min-height: 82px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px 17px;
  background: var(--paper-cool);
  border: 1px solid var(--rule);
  border-radius: 10px;
}

.kind-choice strong {
  color: var(--navy-900);
}

.kind-choice small {
  margin-top: 4px;
  color: var(--ink-soft);
}

.kind-option input:checked + .kind-choice {
  color: white;
  background: var(--navy-900);
  border-color: var(--gold);
  box-shadow: inset 4px 0 0 var(--gold);
}

.kind-option input:checked + .kind-choice strong {
  color: var(--gold-light);
}

.kind-option input:checked + .kind-choice small {
  color: var(--silver);
}

.kind-option input:focus-visible + .kind-choice {
  outline: 3px solid rgba(197, 160, 89, 0.35);
  outline-offset: 2px;
}

.form-grid {
  margin-top: 27px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 21px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: white;
  border: 1px solid rgba(13, 28, 50, 0.23);
  border-radius: 8px;
  appearance: none;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.17);
}

.field-note {
  display: block;
  margin-top: 7px;
  color: var(--silver-dark);
  font-size: 0.69rem;
}

.form-honeypot {
  width: 1px;
  height: 1px;
  position: absolute;
  left: -10000px;
  overflow: hidden;
}

.support-privacy {
  margin-top: 22px;
  padding: 15px 17px;
  color: var(--ink-soft);
  background: var(--ivory);
  border-left: 2px solid var(--gold);
  font-size: 0.75rem;
}

.support-privacy a {
  color: var(--gold-dark);
}

.form-actions {
  margin-top: 26px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-top: 1px solid var(--rule);
}

.form-status {
  margin: 0;
  font-size: 0.78rem;
}

.form-status[data-state="success"] {
  color: #256b38;
  font-weight: 700;
}

.form-status[data-state="error"] {
  color: #a12626;
  font-weight: 700;
}

.support-faq {
  margin-top: 90px;
}

.urgent-callout {
  margin-top: 55px;
  padding: 24px;
  color: white;
  background: var(--navy-900);
  border-left: 3px solid var(--gold);
}

.urgent-callout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

@keyframes hero-drift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}

@keyframes hero-balou-drift {
  from { transform: scale(1.06) translate3d(3%, 0, 0); }
  to { transform: scale(1.12) translate3d(1.5%, -1%, 0); }
}

@keyframes orbit-pulse {
  0%, 100% { opacity: 0.35; transform: scale(0.98); }
  50% { opacity: 0.75; transform: scale(1.025); }
}

@keyframes phone-float {
  0%, 100% { transform: translateY(0) rotateY(-7deg) rotateZ(2deg); }
  50% { transform: translateY(-13px) rotateY(-4deg) rotateZ(1deg); }
}

@keyframes phone-float-secondary {
  0%, 100% { transform: translateY(0) rotateY(10deg) rotateZ(-5deg); }
  50% { transform: translateY(11px) rotateY(8deg) rotateZ(-4deg); }
}

@keyframes note-drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes ribbon {
  to { transform: translateX(-50%); }
}

@keyframes scan-line {
  from { opacity: 0.45; transform: scaleX(0.72) rotate(-16deg); }
  to { opacity: 1; transform: scaleX(1) rotate(-16deg); }
}

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

  .site-nav a {
    font-size: 0.7rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.75fr);
    gap: 30px;
  }

  .device-stage {
    transform: scale(0.91);
    transform-origin: center right;
  }

  .screen-caption {
    right: 0;
  }

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

  .feature-list > div:nth-child(2) {
    border-right: 0;
  }

  .feature-list > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--rule);
  }

  .film-grid {
    grid-template-columns: 0.78fr 1.22fr;
    gap: 45px;
  }
}

@media (max-width: 920px) {
  .menu-button {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    padding: 20px;
    background: rgba(6, 17, 31, 0.98);
    border: 1px solid rgba(197, 160, 89, 0.32);
    border-radius: 10px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    padding: 9px 4px;
    font-size: 0.8rem;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .nav-cta {
    padding: 12px;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-bottom: 50px;
  }

  .hero-balou .hero-media img {
    object-position: 18% 28%;
    animation: none;
    transform: scale(1.04);
  }

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

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

  .device-stage {
    width: min(100%, 560px);
    min-height: 650px;
    margin: 5px auto 0;
    transform: none;
  }

  .product-showcase {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .screen-stage {
    min-height: 720px;
  }

  .screen-stage,
  .screen-copy {
    max-width: 650px;
    margin-inline: auto;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .bento-horses,
  .bento-journal,
  .bento-share,
  .bento-health,
  .bento-video,
  .bento-prospects {
    grid-column: span 12;
  }

  .bento-journal {
    min-height: 680px;
  }

  .bento-share .bento-copy {
    width: 50%;
  }

  .image-story {
    grid-template-columns: 1fr;
  }

  .image-panel {
    min-height: 500px;
  }

  .image-panel:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.28);
  }

  .film-grid,
  .pricing-grid,
  .founder-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .film-copy,
  .pricing-copy,
  .founder-copy,
  .faq-heading {
    max-width: 720px;
  }

  .faq-heading {
    position: static;
  }

  .disciplines-section .shell {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 35px;
  }

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

  .founder-photo {
    min-height: 740px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .inner-hero {
    min-height: 560px;
  }
}

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

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

  .brand img {
    width: 174px;
  }

  .hero {
    padding: 125px 0 30px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
  }

  .hero-proof span:not(:last-child)::after {
    display: none;
  }

  .device-stage {
    min-height: 590px;
    transform: scale(0.84);
    transform-origin: top center;
    margin-bottom: -90px;
  }

  .phone-primary {
    right: 28px;
  }

  .phone-secondary {
    left: 10px;
  }

  .note-one {
    right: -5px;
  }

  .note-two {
    left: 0;
  }

  .product-section,
  .features-section,
  .pricing-section,
  .faq-section,
  .film-section,
  .founder-section {
    padding: 92px 0;
  }

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

  .screen-tabs {
    margin-bottom: 35px;
  }

  .screen-tabs button {
    flex: 1 1 45%;
  }

  .screen-stage {
    min-height: 625px;
    transform: scale(0.9);
    transform-origin: top center;
    margin-bottom: -58px;
  }

  .product-phone {
    width: 270px;
    height: 586px;
  }

  .screen-caption {
    right: -15px;
    bottom: 80px;
  }

  .show-rider-band {
    min-height: 790px;
  }

  .show-rider-band > img {
    object-position: 61% center;
  }

  .show-rider-overlay {
    background: linear-gradient(0deg, rgba(6, 17, 31, 0.98) 0%, rgba(6, 17, 31, 0.78) 66%, rgba(6, 17, 31, 0.28) 100%);
  }

  .show-rider-content {
    align-self: end;
    padding-block: 80px;
  }

  .show-rider-points {
    grid-template-columns: 1fr;
  }

  .show-rider-points span {
    min-height: 78px;
  }

  .bento {
    min-height: 560px;
  }

  .bento-horses {
    min-height: 760px;
  }

  .bento-horses .bento-copy {
    max-width: none;
  }

  .bento-phone-crop {
    width: 68%;
    right: 8%;
    bottom: -185px;
  }

  .bento-journal {
    min-height: 680px;
  }

  .journal-screen {
    width: 82%;
    right: -12%;
    bottom: -38%;
  }

  .bento-share {
    min-height: 900px;
  }

  .bento-share .bento-copy {
    width: auto;
    padding-top: 45px;
  }

  .share-screens {
    width: 100%;
    top: auto;
    right: 0;
    bottom: 0;
    height: 540px;
  }

  .share-screens img {
    width: 200px;
  }

  .share-screens img:first-child {
    left: -4%;
    bottom: -22%;
  }

  .share-screens img:last-child {
    right: -2%;
    bottom: -17%;
  }

  .bento-health {
    min-height: 900px;
  }

  .bento-health .bento-copy {
    max-width: none;
    padding-top: 320px;
  }

  .health-screen {
    width: 205px;
    right: -31px;
    bottom: -115px;
  }

  .bento-video {
    min-height: 720px;
  }

  .bento-prospects {
    min-height: 800px;
  }

  .bento-prospects .bento-copy {
    width: auto;
    padding-top: 45px;
  }

  .bento-prospects > img {
    width: 220px;
    right: 7%;
    bottom: -18%;
  }

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

  .feature-list > div {
    min-height: 0;
  }

  .feature-list > div:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .image-panel {
    min-height: 430px;
  }

  .film-grid {
    gap: 42px;
  }

  .film-poster {
    border-radius: 8px;
  }

  .poster-play {
    width: 55px;
    height: 55px;
  }

  .poster-label {
    right: 14px;
    bottom: 13px;
    font-size: 0.56rem;
  }

  .price-card-top,
  .price-card ul {
    padding-right: 25px;
    padding-left: 25px;
  }

  .price-card .button {
    margin-right: 25px;
    margin-left: 25px;
  }

  .founder-photo {
    min-height: 570px;
  }

  .faq-list summary {
    min-height: 76px;
    font-size: 0.9rem;
  }

  .final-cta {
    min-height: 590px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 38px;
  }

  .footer-bottom {
    display: grid;
  }

  .inner-hero {
    min-height: 540px;
    padding-top: 135px;
  }

  .article-shell {
    width: min(calc(100% - 32px), 900px);
    padding: 85px 0 100px;
  }

  .support-main {
    padding: 110px 0 90px;
  }

  .support-card-head,
  .support-form {
    padding: 25px 21px;
  }

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

  .form-field.full {
    grid-column: auto;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Refined brand and app presentation */

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

.site-header,
.site-header.scrolled {
  background: rgba(255, 253, 248, 0.96);
  border-color: rgba(13, 28, 50, 0.12);
  box-shadow: 0 10px 35px rgba(6, 17, 31, 0.08);
  backdrop-filter: blur(18px) saturate(130%);
}

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

.brand {
  width: 224px;
  position: relative;
  display: inline-grid;
  align-items: center;
}

.brand img,
.footer-brand img {
  width: 100%;
  height: auto;
  filter: none;
}

.brand-edition {
  width: 75.5%;
  margin-top: -2px;
  margin-left: 24.5%;
  padding: 0;
  color: var(--gold-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.brand-trademark {
  position: absolute;
  top: 12px;
  right: -17px;
  color: var(--navy-900);
  font-family: "Montserrat", sans-serif;
  font-size: 0.43rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
}

.site-footer .brand-trademark {
  top: 24px;
  right: -7px;
}

.site-nav a {
  color: rgba(13, 28, 50, 0.76);
}

.site-nav a:hover {
  color: var(--navy-950);
}

.site-nav .nav-cta {
  color: var(--navy-950);
  background: var(--gold-light);
  border-color: var(--gold);
}

.menu-button {
  color: var(--ivory);
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.site-footer .brand {
  padding: 11px 13px 10px;
  background: var(--paper);
  border: 1px solid rgba(197, 160, 89, 0.42);
  border-radius: 8px;
}

.footer-brand img {
  width: 100%;
}

.bento {
  isolation: isolate;
}

.bento h3 {
  max-width: 640px;
  font-size: clamp(1.65rem, 2.4vw, 2.5rem);
}

.bento-copy {
  min-width: 0;
}

.bento-horses {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(245px, 0.62fr);
  align-items: start;
}

.bento-horses .bento-copy {
  max-width: none;
  align-self: start;
  padding-top: 60px;
}

.bento-phone-crop {
  width: min(100%, 290px);
  height: 540px;
  position: relative;
  right: auto;
  bottom: auto;
  align-self: end;
  margin: 34px auto 0;
  padding: 7px;
  border-radius: 34px 34px 0 0;
  transform: none;
}

.bento-phone-crop img {
  width: 100%;
  height: auto;
  border-radius: 27px 27px 0 0;
}

.bento-journal {
  min-height: 620px;
  display: flex;
  flex-direction: column;
}

.bento-journal .bento-copy {
  padding-bottom: 18px;
}

.journal-screen {
  width: min(66%, 225px);
  height: auto;
  position: relative;
  right: auto;
  bottom: auto;
  margin: 0 auto 28px;
  border-width: 7px;
  border-radius: 30px;
  transform: none;
}

.bento-share {
  min-height: 600px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
  align-items: center;
}

.bento-share .bento-copy {
  width: auto;
  padding-top: clamp(40px, 6vw, 78px);
}

.share-screens {
  width: auto;
  height: 570px;
  position: relative;
  inset: auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  overflow: hidden;
  padding: 42px 34px 0;
}

.share-screens img,
.share-screens img:first-child,
.share-screens img:last-child {
  width: min(43%, 238px);
  height: auto;
  position: relative;
  inset: auto;
  border-radius: 30px 30px 0 0;
  transform: none;
}

.bento-health {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 235px 1fr;
}

.health-photo {
  height: 235px;
  position: relative;
  inset: auto;
  grid-column: 1 / -1;
}

.bento-health .bento-copy {
  max-width: 780px;
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: start;
  padding-top: 52px;
}

.health-screen {
  width: 215px;
  height: auto;
  position: relative;
  right: auto;
  bottom: auto;
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  justify-self: center;
  margin-bottom: 34px;
  border-radius: 28px;
  transform: none;
}

.bento-video {
  min-height: 760px;
  display: flex;
  flex-direction: column;
}

.soundness-app-preview {
  height: 420px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex: none;
  padding-top: 22px;
  background:
    radial-gradient(circle at 50% 92%, rgba(197, 160, 89, 0.22), transparent 42%),
    var(--navy-950);
  border-bottom: 1px solid rgba(197, 160, 89, 0.42);
}

.soundness-app-preview img {
  width: 210px;
  height: auto;
  display: block;
  border: 6px solid #070f1b;
  border-top: 0;
  border-radius: 0 0 26px 26px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.38);
}

.motion-line,
.motion-dot {
  display: none;
}

.bento-video .bento-copy {
  padding-top: 36px;
}

.bento-prospects {
  min-height: 600px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  background:
    linear-gradient(100deg, white 0 58%, rgba(255, 255, 255, 0.4) 78%),
    linear-gradient(135deg, #e5dfd0, #d7c39a);
}

.bento-prospects .bento-copy {
  width: auto;
  padding-top: clamp(40px, 6vw, 78px);
}

.bento-prospects > img {
  width: 245px;
  height: auto;
  position: relative;
  right: auto;
  bottom: auto;
  align-self: end;
  justify-self: center;
  margin-top: 42px;
  border-radius: 30px 30px 0 0;
  transform: none;
}

.bento-navigator-showcase {
  background:
    linear-gradient(100deg, white 0 58%, rgba(255, 255, 255, 0.28) 80%),
    linear-gradient(135deg, #e9edf2, #d7c39a);
}

.bento-navigator-showcase > img {
  margin-top: 30px;
}

.founder-photo {
  width: min(100%, 500px);
  min-height: 0;
  aspect-ratio: 1000 / 1503;
  margin-inline: auto;
  background: var(--navy-950);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  position: static;
  object-fit: contain;
}

.inner-hero > img {
  object-position: center 18%;
}

/* Keep the app presentation precise, quiet, and undistorted. */

.device-stage {
  perspective: none;
  transform-style: flat;
}

.phone::after {
  display: none;
}

.phone-primary {
  transform: rotate(1deg);
  animation: none;
}

.phone-secondary {
  transform: rotate(-2deg);
  animation: none;
}

/* Content remains readable while the small entrance motion runs. */

.motion-ready .reveal {
  opacity: 1;
  transform: translateY(10px);
}

.motion-ready .reveal.in-view {
  transform: none;
}

@media (max-width: 1080px) {
  .bento-horses,
  .bento-journal,
  .bento-share,
  .bento-health,
  .bento-video,
  .bento-prospects {
    grid-column: span 12;
  }

  .bento-journal {
    min-height: 690px;
  }

  .journal-screen {
    width: 250px;
  }
}

@media (max-width: 920px) {
  .site-nav a {
    color: rgba(255, 255, 255, 0.78);
  }

  .site-nav a:hover {
    color: white;
  }

  .site-nav .nav-cta {
    color: var(--navy-950);
  }

  .founder-photo {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .bento-horses,
  .bento-share,
  .bento-health,
  .bento-prospects {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
  }

  .bento-horses {
    min-height: 0;
  }

  .bento-phone-crop {
    width: min(72%, 280px);
    height: 500px;
    margin-top: 0;
  }

  .bento-journal {
    min-height: 720px;
  }

  .bento-share {
    min-height: 0;
  }

  .bento-share .bento-copy {
    padding-top: 42px;
  }

  .share-screens {
    width: 100%;
    height: auto;
    min-height: 540px;
    padding: 18px 24px 0;
  }

  .share-screens img,
  .share-screens img:first-child,
  .share-screens img:last-child {
    width: min(44%, 220px);
  }

  .bento-health {
    min-height: 0;
  }

  .health-photo,
  .bento-health .bento-copy,
  .health-screen {
    grid-column: 1;
    grid-row: auto;
  }

  .bento-health .bento-copy {
    padding-top: 44px;
  }

  .health-screen {
    width: min(54%, 220px);
    margin: 0 auto 36px;
  }

  .bento-video {
    min-height: 0;
  }

  .video-still {
    height: 330px;
  }

  .bento-prospects {
    min-height: 0;
  }

  .bento-prospects .bento-copy {
    padding-top: 42px;
  }

  .bento-prospects > img {
    width: min(58%, 235px);
    margin: 0 auto;
  }
}

@media (max-width: 660px) {
  .brand {
    width: 190px;
  }

  .brand img {
    width: 100%;
  }

  .brand-edition {
    font-size: 0.43rem;
  }

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

  .bento-copy {
    padding: 34px 28px;
  }

  .bento h3 {
    font-size: clamp(1.55rem, 8vw, 2.15rem);
  }

  .founder-photo {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .device-stage {
    width: 100%;
    max-width: 420px;
    min-height: 610px;
    margin: 12px auto 0;
    transform: none;
  }

  .phone-primary {
    width: min(78vw, 290px);
    height: auto;
    aspect-ratio: 660 / 1434;
    position: relative;
    top: auto;
    right: auto;
    margin: 0 auto;
    transform: none;
  }

  .phone-secondary,
  .floating-note {
    display: none;
  }

  .stage-glow {
    inset: 10% 0 0;
  }
}

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

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

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

/* BarnPilot product stories */

.product-highlights {
  position: relative;
  overflow: hidden;
  padding: 132px 0;
  color: white;
  background:
    radial-gradient(circle at 85% 10%, rgba(197, 160, 89, 0.17), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 68%, #142b49);
}

.product-highlights::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(185, 194, 208, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(185, 194, 208, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
}

.product-highlights .shell {
  position: relative;
}

.product-highlights-heading h2,
.v2-story h3 {
  color: white;
}

.product-highlights-heading .eyebrow,
.v2-label {
  color: var(--gold-light);
}

.product-highlights-heading > p,
.v2-story-copy > p {
  color: rgba(255, 255, 255, 0.7);
}

.product-highlights-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
}

.v2-story {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.28);
  border-radius: 18px;
  background: rgba(13, 28, 50, 0.74);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.v2-story::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.82;
}

.v2-story-copy {
  padding: clamp(34px, 5vw, 62px);
}

.v2-label {
  display: block;
  margin-bottom: 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.v2-story h3 {
  max-width: 660px;
  font-size: clamp(1.8rem, 3.1vw, 3.25rem);
}

.v2-story-copy > p {
  max-width: 670px;
  margin-bottom: 0;
  line-height: 1.78;
}

.v2-details {
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
  list-style: none;
}

.v2-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 600;
}

.v2-details li::before {
  content: "";
  width: 20px;
  height: 1px;
  flex: none;
  background: var(--gold);
}

.v2-boundary {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(185, 194, 208, 0.18);
  color: var(--silver) !important;
  font-size: 0.78rem;
}

.v2-ride {
  min-height: 610px;
  grid-column: span 12;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(440px, 1.05fr);
  align-items: center;
}

.ride-memory {
  min-width: 0;
  margin: 42px 42px 42px 0;
  overflow: hidden;
  color: var(--navy-950);
  background: var(--paper);
  border: 1px solid rgba(254, 212, 136, 0.7);
  border-radius: 14px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
}

.ride-experience {
  min-width: 0;
  margin: 34px 34px 34px 0;
  display: grid;
  grid-template-columns: minmax(180px, 205px) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.ride-experience .ride-memory {
  margin: 0;
}

.ride-navigator-preview {
  width: 100%;
  height: 445px;
  overflow: hidden;
  background: #071323;
  border: 6px solid #07111d;
  border-radius: 30px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.42);
}

.ride-navigator-preview img {
  width: 100%;
  height: auto;
  display: block;
}

.ride-map {
  height: 300px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(185, 194, 208, 0.22) 1px, transparent 1px),
    linear-gradient(rgba(185, 194, 208, 0.22) 1px, transparent 1px),
    #e8ecec;
  background-size: 34px 34px;
}

.ride-map svg {
  width: 100%;
  height: 100%;
}

.map-road {
  fill: none;
  stroke: rgba(13, 28, 50, 0.18);
  stroke-width: 18;
  stroke-linecap: round;
}

.map-road-secondary {
  stroke-width: 10;
}

.ride-route {
  fill: none;
  stroke: var(--navy-800);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-start {
  fill: var(--paper);
  stroke: var(--navy-800);
  stroke-width: 5;
}

.route-finish {
  fill: var(--gold-light);
  stroke: var(--navy-800);
  stroke-width: 5;
}

.ride-photo-hint {
  width: 88px;
  height: 88px;
  position: absolute;
  right: 25px;
  bottom: 24px;
  background: url("../img/show-jumping.jpg") center 38% / cover;
  border: 4px solid white;
  border-radius: 9px;
  box-shadow: 0 12px 30px rgba(6, 17, 31, 0.28);
}

.ride-memory-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 27px 20px;
  border-bottom: 1px solid var(--rule);
}

.ride-memory-title span {
  font-family: "Montserrat", sans-serif;
  font-size: 1.08rem;
  font-weight: 750;
}

.ride-memory-title strong {
  color: var(--gold-dark);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ride-stats {
  margin: 0;
  padding: 22px 27px 25px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.ride-stats div:not(:last-child) {
  border-right: 1px solid var(--rule);
}

.ride-stats dt {
  margin-bottom: 4px;
  color: var(--silver-dark);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ride-stats dd {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.v2-bill,
.v2-soundness {
  min-height: 730px;
  grid-column: span 6;
  display: flex;
  flex-direction: column;
}

.v2-bill .v2-story-copy,
.v2-soundness .v2-story-copy {
  flex: 1;
}

.bill-review {
  margin: 0 38px 38px;
  padding: 24px;
  color: var(--navy-950);
  background: var(--paper);
  border-radius: 12px;
}

.bill-review-top,
.bill-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.bill-review-top {
  padding-bottom: 18px;
  border-bottom: 2px solid var(--navy-900);
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bill-review-top strong {
  color: var(--gold-dark);
}

.bill-line {
  padding: 15px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.72rem;
}

.bill-line b {
  color: var(--silver-dark);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bill-line-check b {
  color: var(--gold-dark);
}

.bill-question {
  margin-top: 19px;
  padding: 17px;
  color: var(--navy-800);
  background: rgba(197, 160, 89, 0.14);
  border-left: 3px solid var(--gold);
  font-size: 0.75rem;
  line-height: 1.6;
}

.soundness-views {
  margin: 0 38px 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.soundness-views span {
  min-height: 76px;
  display: grid;
  place-items: end start;
  padding: 13px;
  color: rgba(255, 255, 255, 0.84);
  background:
    linear-gradient(145deg, rgba(197, 160, 89, 0.16), transparent 60%),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(185, 194, 208, 0.16);
  border-radius: 8px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.feature-screen-crop {
  height: 430px;
  margin: 0 38px 38px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 110%, rgba(197, 160, 89, 0.2), transparent 48%),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(185, 194, 208, 0.16);
  border-radius: 14px;
}

.feature-screen-crop::after,
.navigator-screen-crop::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 46px;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(13, 28, 50, 0.88));
}

.feature-screen-crop img {
  width: 250px;
  height: auto;
  display: block;
  border: 6px solid #0a1422;
  border-top: 0;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.34);
}

.v2-navigator {
  min-height: 700px;
  grid-column: span 12;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(285px, 0.42fr);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(13, 28, 50, 0.99), rgba(13, 28, 50, 0.74)),
    linear-gradient(135deg, rgba(197, 160, 89, 0.2), transparent);
}

.v2-navigator .v2-story-copy {
  display: block;
}

.v2-navigator .v2-label {
  margin-top: 0;
}

.v2-navigator h3,
.v2-navigator p {
  max-width: 850px;
}

.navigator-screen-crop {
  width: min(100%, 300px);
  height: 650px;
  position: relative;
  align-self: end;
  justify-self: center;
  overflow: hidden;
  margin: 42px 42px 0 0;
  background: #071323;
  border: 7px solid #07111d;
  border-bottom: 0;
  border-radius: 34px 34px 0 0;
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.42);
}

.navigator-screen-crop img {
  width: 100%;
  height: auto;
  display: block;
}

.membership-cards {
  overflow: hidden;
  background: white;
  border: 1px solid rgba(197, 160, 89, 0.48);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.membership-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) minmax(0, 1fr);
}

.membership-card > div {
  padding: 27px 30px;
}

.membership-card > div > span {
  display: block;
  margin-bottom: 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.membership-card > div > strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 2.75rem;
  letter-spacing: -0.05em;
}

.membership-card > div > p {
  margin: 3px 0 0;
  font-size: 0.78rem;
  line-height: 1.55;
}

.membership-card sup {
  margin-right: 2px;
  font-size: 0.45em;
  vertical-align: super;
}

.membership-card small {
  margin-left: 4px;
  font-size: 0.28em;
  letter-spacing: 0;
}

.membership-card ul {
  margin: 0;
  padding: 26px 30px;
  display: grid;
  align-content: center;
  gap: 10px;
  list-style: none;
}

.membership-card li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.55;
}

.membership-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  top: 0.62em;
  left: 0;
  background: var(--gold);
  border-radius: 50%;
}

.membership-free {
  border-bottom: 1px solid var(--rule);
}

.membership-free > div {
  color: var(--navy-950);
  background: var(--silver-light);
}

.membership-pro > div {
  color: white;
  background: var(--navy-900);
  border-bottom: 2px solid var(--gold);
}

.membership-pro > div > span {
  color: var(--gold-light);
}

.membership-pro > div > p {
  color: rgba(255, 255, 255, 0.62);
}

.membership-note {
  margin: 0;
  padding: 20px 30px 0;
  color: var(--silver-dark);
  font-size: 0.74rem;
  line-height: 1.55;
}

.membership-cards .button {
  margin: 20px 30px 30px;
  display: flex;
}

@media (max-width: 1080px) {
  .v2-ride {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1fr);
  }

  .ride-memory {
    margin: 32px 32px 32px 0;
  }
}

@media (max-width: 920px) {
  .product-highlights {
    padding: 100px 0;
  }

  .v2-ride {
    grid-template-columns: 1fr;
  }

  .ride-memory {
    margin: 0 34px 34px;
  }

  .ride-experience {
    margin: 0 34px 34px;
  }

  .v2-bill,
  .v2-soundness {
    min-height: 0;
    grid-column: span 12;
  }

  .v2-navigator .v2-story-copy {
    padding-bottom: 24px;
  }

  .v2-navigator .v2-label {
    grid-row: auto;
  }

  .v2-navigator {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .navigator-screen-crop {
    width: min(72%, 300px);
    height: auto;
    max-height: 620px;
    margin: 0 auto;
  }

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

@media (max-width: 660px) {
  .product-highlights {
    padding: 78px 0;
  }

  .product-highlights-grid {
    gap: 14px;
  }

  .v2-story-copy {
    padding: 32px 25px;
  }

  .ride-memory,
  .bill-review,
  .soundness-views {
    margin-right: 20px;
    margin-bottom: 20px;
    margin-left: 20px;
  }

  .ride-experience {
    margin: 0 20px 20px;
    grid-template-columns: 1fr;
  }

  .ride-navigator-preview {
    width: min(74%, 220px);
    height: 480px;
    margin: 0 auto;
  }

  .feature-screen-crop {
    height: 370px;
    margin: 0 20px 20px;
  }

  .feature-screen-crop img {
    width: 220px;
  }

  .ride-map {
    height: 220px;
  }

  .ride-photo-hint {
    width: 68px;
    height: 68px;
  }

  .ride-memory-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .ride-stats {
    padding-right: 18px;
    padding-left: 18px;
  }

  .ride-stats dd {
    font-size: 0.82rem;
  }

  .soundness-views {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .membership-card ul {
    padding-top: 21px;
    padding-bottom: 21px;
  }
}

/* Homepage hierarchy and worldwide presentation */

.site-nav {
  gap: 34px;
}

.site-nav a {
  font-size: 0.96rem;
  font-weight: 650;
  letter-spacing: 0.025em;
}

.site-nav .nav-cta {
  padding: 13px 18px;
  color: var(--gold-light);
  background: var(--navy-950);
  border-color: var(--gold);
  box-shadow: 0 7px 18px rgba(13, 28, 50, 0.14);
}

.site-nav .nav-cta:hover {
  color: var(--navy-950);
  background: var(--gold-light);
}

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

.hero-copy .eyebrow {
  margin-bottom: 28px;
  font-size: clamp(0.9rem, 1.1vw, 1.1rem);
  letter-spacing: 0.18em;
}

.hero h1 {
  display: grid;
  gap: 0.1em;
  margin-bottom: 34px;
  font-size: clamp(4rem, 5.4vw, 5.8rem);
  line-height: 1;
}

.hero h1 .hero-line {
  display: block;
  color: white;
  white-space: nowrap;
}

.hero h1 .hero-line-accent {
  color: var(--gold-light);
}

.hero-feature-list {
  max-width: 700px;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  color: rgba(255, 255, 255, 0.82);
  list-style: none;
  border-top: 1px solid rgba(197, 160, 89, 0.32);
}

.hero-feature-list li {
  min-width: 0;
  padding: 11px 18px 11px 0;
  border-bottom: 1px solid rgba(197, 160, 89, 0.22);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.hero-feature-list li:nth-child(even) {
  padding-right: 0;
  padding-left: 18px;
  border-left: 1px solid rgba(197, 160, 89, 0.22);
}

.bento-share {
  grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1.22fr);
}

.global-app-showcase {
  min-width: 0;
  height: 570px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(190px, 0.92fr) minmax(135px, 0.56fr);
  align-items: end;
  gap: 28px;
  padding: 38px 38px 0;
}

.world-map-field {
  width: 112%;
  height: auto;
  position: absolute;
  top: 56px;
  left: -6%;
  z-index: -1;
  opacity: 0.24;
  filter: saturate(0.6) brightness(1.1);
}

.translator-phone {
  width: min(100%, 240px);
  height: 515px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  justify-self: center;
  margin: 0;
  padding: 7px 7px 0;
  background: #111b29;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 32px 32px 0 0;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.42);
}

.translator-phone img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 25px 25px 0 0;
}

.language-board {
  position: relative;
  z-index: 1;
  align-self: center;
  margin-bottom: 58px;
  color: white;
  border-top: 1px solid rgba(197, 160, 89, 0.68);
}

.language-board::before {
  content: "BarnPilot languages";
  display: block;
  padding: 0 0 13px;
  color: var(--gold-light);
  font-family: "Montserrat", sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateY(-25px);
}

.language-board span {
  display: block;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

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

  .site-nav a {
    font-size: 0.84rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.7fr);
  }

  .hero h1 {
    font-size: clamp(3.8rem, 7vw, 5.2rem);
  }
}

@media (max-width: 920px) {
  .site-nav {
    gap: 0;
  }

  .site-nav a {
    font-size: 0.92rem;
  }

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

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

  .hero h1 {
    font-size: clamp(3.7rem, 10vw, 5.2rem);
  }
}

@media (max-width: 760px) {
  .hero-copy .eyebrow {
    margin-bottom: 22px;
    font-size: 0.76rem;
  }

  .hero h1 {
    gap: 0.07em;
    margin-bottom: 28px;
    font-size: clamp(2.72rem, 13vw, 4rem);
  }

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

  .hero-feature-list li,
  .hero-feature-list li:nth-child(even) {
    padding: 10px 0;
    border-left: 0;
    font-size: 0.78rem;
  }

  .bento-share {
    grid-template-columns: minmax(0, 1fr);
  }

  .global-app-showcase {
    width: 100%;
    height: 520px;
    grid-template-columns: minmax(165px, 0.9fr) minmax(105px, 0.55fr);
    gap: 18px;
    padding: 24px 22px 0;
  }

  .world-map-field {
    width: 142%;
    top: 72px;
    left: -21%;
  }

  .translator-phone {
    width: min(100%, 215px);
    height: 480px;
  }

  .language-board {
    margin-bottom: 42px;
  }

  .language-board span {
    font-size: 0.68rem;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: clamp(2.55rem, 12.8vw, 3.35rem);
  }

  .global-app-showcase {
    height: 480px;
    grid-template-columns: minmax(145px, 0.88fr) minmax(95px, 0.52fr);
    padding-right: 17px;
    padding-left: 17px;
  }

  .translator-phone {
    height: 445px;
  }

  .language-board::before {
    font-size: 0.54rem;
  }

  .language-board span {
    padding: 9px 0;
    font-size: 0.62rem;
  }
}

/* Connected product storytelling */

.product-section > .shell {
  position: relative;
  z-index: 2;
}

.product-section {
  padding-top: 108px;
  padding-bottom: 104px;
}

.product-section .section-heading {
  margin-bottom: 54px;
}

.product-horse-silhouette {
  width: min(52vw, 760px);
  position: absolute;
  right: -150px;
  bottom: -80px;
  z-index: 0;
  opacity: 0.045;
  transform: rotate(-4deg);
}

.product-showcase {
  min-height: 680px;
}

.screen-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 38px;
}

.screen-tabs button {
  min-height: 54px;
  padding: 13px 16px;
  color: var(--navy-700);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(13, 28, 50, 0.18);
  border-radius: 9px;
  box-shadow: 0 9px 24px rgba(13, 28, 50, 0.055);
  font-size: 0.8rem;
  letter-spacing: 0.01em;
  line-height: 1.25;
  text-align: left;
}

.screen-tabs button:hover {
  color: var(--navy-950);
  border-color: rgba(197, 160, 89, 0.9);
  transform: translateY(-1px);
}

.screen-tabs button[aria-selected="true"] {
  color: var(--gold);
  background: var(--navy-900);
  border-color: var(--gold);
  box-shadow: 0 12px 26px rgba(13, 28, 50, 0.16);
}

.screen-text > p {
  max-width: 570px;
  font-size: 1.03rem;
  line-height: 1.8;
}

.screen-stage {
  min-height: 650px;
}

.feature-structure {
  margin: -8px 0 62px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(13, 28, 50, 0.22);
  border-bottom: 1px solid rgba(13, 28, 50, 0.22);
}

.feature-structure > div {
  min-height: 175px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px clamp(30px, 4vw, 58px);
}

.feature-structure > div + div {
  border-left: 1px solid rgba(13, 28, 50, 0.18);
}

.feature-structure span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.feature-structure strong {
  max-width: 500px;
  display: block;
  color: var(--navy-900);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1.32;
}

.bento-copy .bento-label {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px !important;
  color: var(--gold-dark) !important;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.bento-copy .bento-label::after {
  content: "";
  width: 38px;
  height: 1px;
  display: block;
  background: currentColor;
  opacity: 0.7;
}

.bento-horses .bento-label,
.bento-share .bento-label,
.bento-health .bento-label,
.bento-video .bento-label {
  color: var(--gold) !important;
}

@media (max-width: 920px) {
  .product-horse-silhouette {
    width: 620px;
    right: -260px;
    opacity: 0.035;
  }

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

}

@media (max-width: 660px) {
  .product-section {
    padding-top: 88px;
    padding-bottom: 82px;
  }

  .screen-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 32px;
  }

  .screen-tabs button {
    min-height: 58px;
    padding: 13px 14px;
    font-size: 0.76rem;
  }

  .feature-structure {
    grid-template-columns: 1fr;
    margin-bottom: 46px;
  }

  .feature-structure > div {
    min-height: 0;
    padding: 27px 4px;
  }

  .feature-structure > div + div {
    border-top: 1px solid rgba(13, 28, 50, 0.18);
    border-left: 0;
  }

  .feature-structure strong {
    font-size: 1.22rem;
  }
}
