/* ============================================================
   Oche — Landing Page styles
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg-1);
  color: var(--fg-1);
  font-family: var(--font-ui);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font: inherit; }

.muted { color: var(--smoke); }
.eyebrow {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--smoke);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  width: 18px; height: 1.5px;
  background: var(--brass);
  display: inline-block;
}

.num {
  font-feature-settings: "tnum" 1, "ss01" 1;
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   Buttons
   ============================================================ */
.oche-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius-2);
  padding: 12px 20px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--dur-ui) var(--ease-oche);
}
.oche-btn--sm { padding: 9px 16px; font-size: 13px; border-radius: var(--radius-2); }
.oche-btn--lg { padding: 15px 24px; font-size: 16px; border-radius: var(--radius-3); }
.oche-btn--xl { padding: 18px 30px; font-size: 17px; border-radius: var(--radius-3); }

.oche-btn--primary {
  background: var(--oche-gradient);
  color: var(--pitch-black);
  box-shadow: var(--glow-brass);
  border-color: rgba(232,185,72,0.4);
}
.oche-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(232,185,72,.45), 0 0 80px rgba(224,78,42,.22);
}
.oche-btn--primary:active { transform: scale(0.985); }

.oche-btn--ghost {
  background: transparent;
  color: var(--chalk);
  border-color: var(--ash);
}
.oche-btn--ghost:hover {
  background: var(--walnut);
  border-color: var(--border-2);
}

/* ============================================================
   Nav
   ============================================================ */
.oche-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all var(--dur-trans) var(--ease-oche);
}
.oche-nav.is-scrolled {
  background: rgba(20, 18, 16, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--ash);
  padding: 12px 0;
}
.oche-nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.oche-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--chalk);
}
.oche-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.oche-mark-img {
  display: block;
  border-radius: 9px;
  object-fit: cover;
}
.oche-nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.oche-nav__links a {
  color: var(--smoke);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color var(--dur-ui) var(--ease-oche);
}
.oche-nav__links a:hover { color: var(--chalk); opacity: 1; }

@media (max-width: 880px) {
  .oche-nav__links { display: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 32px 80px;
  overflow: hidden;
}
.hero__haze {
  position: absolute;
  inset: -20% -10% auto auto;
  width: 80%;
  height: 90%;
  background: radial-gradient(circle at 65% 35%, rgba(232, 185, 72, 0.16) 0%, rgba(224, 78, 42, 0.06) 30%, transparent 65%);
  pointer-events: none;
  animation: amberPulse 4s ease-in-out infinite;
}
@keyframes amberPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

.hero__inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  z-index: 2;
}

.hero__copy {
  max-width: 600px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(56px, 7.6vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 18px 0 24px;
  color: var(--chalk);
}
.hero__title .wordmark {
  display: block;
  font-size: 1em;
  line-height: 1;
}
.hero__title-line {
  display: block;
  font-size: 0.55em;
  line-height: 1.1;
  font-weight: 500;
  color: var(--chalk);
  margin-top: 14px;
  letter-spacing: -0.015em;
}
.hero__title-line em {
  font-style: italic;
  font-weight: 500;
  color: var(--chalk);
}

.hero__sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--smoke);
  max-width: 520px;
  margin: 0 0 32px;
  text-wrap: pretty;
}
.hero__cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--smoke);
  font-size: 13px;
}
.dot-sep { color: var(--dust); }
.pronounce {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.pronounce__phon {
  font-family: var(--font-ui);
  color: var(--chalk);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.pronounce__say { color: var(--smoke); }

/* hero art */
.hero__art-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 620px;
}
.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  filter: drop-shadow(0 0 60px rgba(232, 185, 72, 0.15));
}
.thrown-dart {
  position: absolute;
  top: 12%;
  right: -20px;
  width: 180px;
  height: auto;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.6));
  animation: dartThrow 1.6s var(--ease-oche) 0.4s both;
}
@keyframes dartThrow {
  0% { transform: translate(60vw, -120px) rotate(8deg); opacity: 0; }
  60% { opacity: 1; }
  85% { transform: translate(0, 0) rotate(0deg); }
  92% { transform: translate(-4px, 3px) rotate(-1deg); }
  100% { transform: translate(0, 0) rotate(0deg); opacity: 1; }
}

.hero__phone {
  position: relative;
  z-index: 2;
  transform: rotate(-2deg);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
}
.hero__phone-shadow {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 280px; height: 30px;
  background: radial-gradient(ellipse at center, rgba(232, 185, 72, 0.3), transparent 70%);
  filter: blur(20px);
  z-index: 1;
}

@media (max-width: 980px) {
  .hero { padding: 120px 24px 60px; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__art-wrap { min-height: 560px; order: 2; }
}

/* ============================================================
   Phone frame
   ============================================================ */
.phone {
  position: relative;
  display: inline-block;
}
.phone__bezel {
  width: 100%; height: 100%;
  background: #0c0a08;
  border-radius: 44px;
  border: 1px solid #2A2520;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 0 0 8px #1a1614,
    0 0 0 9px #2A2520,
    0 30px 60px rgba(0,0,0,0.6);
  padding: 10px;
  position: relative;
  overflow: hidden;
}
.phone__notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 28px;
  background: #050402;
  border-radius: 999px;
  z-index: 5;
}
.phone__home {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 4px;
  background: rgba(242, 235, 224, 0.4);
  border-radius: 999px;
  z-index: 5;
}
.phone__screen {
  width: 100%; height: 100%;
  border-radius: 36px;
  background: var(--pitch-black);
  overflow: hidden;
  position: relative;
}

.phone__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ============================================================
   Screens (in-phone content)
   ============================================================ */
.screen {
  width: 100%; height: 100%;
  padding: 0;
  font-family: var(--font-ui);
  color: var(--chalk);
  display: flex;
  flex-direction: column;
  background: var(--pitch-black);
  position: relative;
}
.screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 15%, rgba(232,185,72,0.10), transparent 55%);
  pointer-events: none;
}
.screen > * { position: relative; }

.statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 26px 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--chalk);
  margin-top: 6px;
}
.statusbar__icons {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.screen__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  font-size: 13px;
}
.screen__back { color: var(--brass); font-weight: 600; }
.screen__title {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 14px;
  color: var(--chalk);
}
.screen__title--serif {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.screen__mode-strip {
  height: 4px;
  border-radius: 2px;
  margin: 4px 16px 14px;
}

/* Game screen */
.game-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 14px;
}
.player-card {
  background: var(--stout);
  border: 1px solid var(--ash);
  border-radius: 12px;
  padding: 10px 12px;
  transition: all var(--dur-ui) var(--ease-oche);
}
.player-card--active {
  background: var(--walnut);
  border-color: rgba(232,185,72,0.4);
  box-shadow: 0 0 22px rgba(232,185,72,0.15);
}
.player-card__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.avatar {
  width: 24px; height: 24px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--walnut);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pitch-black);
  font-weight: 700;
  font-size: 11px;
}
.avatar--cyan {
  background: var(--bullseye-cyan);
  box-shadow: 0 0 0 2px rgba(0,200,224,0.4);
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.player-card__name {
  font-size: 12px;
  font-weight: 600;
  color: var(--chalk);
}
.you-tag {
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--bullseye-cyan);
  margin-left: 4px;
}
.player-card__score {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  font-feature-settings: "tnum";
  color: var(--chalk);
}
.player-card__meta {
  font-size: 10px;
  color: var(--smoke);
  margin-top: 4px;
}

.checkout {
  margin: 12px 14px 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--walnut);
  border: 1px solid rgba(0,200,224,0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.checkout .label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.keypad {
  margin: 14px 14px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.key {
  padding: 10px 0;
  border-radius: 10px;
  background: var(--stout);
  color: var(--chalk);
  border: 1px solid var(--ash);
  font-weight: 700;
  font-size: 16px;
  font-feature-settings: "tnum";
  cursor: pointer;
}

.recent {
  margin: 14px 14px 0;
}
.recent .label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  color: var(--smoke);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.recent__row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.chip {
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  background: var(--walnut);
  color: var(--chalk);
  border: 1px solid var(--ash);
  font-feature-settings: "tnum";
}
.chip--you {
  background: rgba(0,200,224,0.12);
  color: var(--bullseye-cyan);
  border-color: rgba(0,200,224,0.30);
}
.chip--cyan {
  background: rgba(0,200,224,0.12);
  color: var(--bullseye-cyan);
  border-color: rgba(0,200,224,0.30);
}

/* Stats screen */
.stats-hero {
  margin: 4px 16px 12px;
  padding: 16px;
  border-radius: 14px;
  background: var(--stout);
  border: 1px solid var(--ash);
}
.stats-hero .label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  color: var(--smoke);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.stats-hero__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stats-hero__row .stat-xl {
  font-size: 38px;
  line-height: 1;
}
.stats-hero__row .small { color: var(--smoke); margin-top: 4px; font-size: 11px; }
.spark {
  margin: 0 16px 14px;
  height: 90px;
  background: var(--stout);
  border: 1px solid var(--ash);
  border-radius: 12px;
  padding: 8px;
  overflow: hidden;
}
.spark svg { width: 100%; height: 100%; }
.stats-rows {
  margin: 0 16px;
  border: 1px solid var(--ash);
  border-radius: 12px;
  background: var(--stout);
  overflow: hidden;
}
.stats-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 14px;
  border-bottom: 1px solid var(--ash);
  font-size: 13px;
}
.stats-row:last-child { border-bottom: 0; }
.stats-row__k { color: var(--smoke); font-weight: 500; }
.stats-row__v { font-weight: 700; }

/* Coach screen */
.coach-card {
  margin: 6px 16px 14px;
  padding: 14px;
  border-radius: 14px;
  background: var(--stout);
  border: 1px solid var(--ash);
}
.coach-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.coach-card__head .label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.coach-card__head .small { color: var(--smoke); font-size: 11px; }
.coach-card__body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--chalk);
  margin-bottom: 12px;
  text-wrap: pretty;
}
.coach-card__chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.coach-suggest {
  margin: 0 16px;
}
.coach-suggest .label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  color: var(--smoke);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.coach-suggest__item {
  display: flex;
  gap: 12px;
  padding: 12px 14px;
  background: var(--stout);
  border: 1px solid var(--ash);
  border-radius: 12px;
  margin-bottom: 8px;
  align-items: flex-start;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  flex: 0 0 auto;
  margin-top: 6px;
}
.dot--brass { background: var(--brass); box-shadow: 0 0 10px rgba(232,185,72,0.4); }
.dot--cyan { background: var(--bullseye-cyan); box-shadow: 0 0 10px rgba(0,200,224,0.4); }
.dot--green { background: var(--treble-green); box-shadow: 0 0 10px rgba(63,174,106,0.4); }
.suggest__t { font-weight: 600; color: var(--chalk); font-size: 13px; }
.suggest__d { color: var(--smoke); font-size: 11px; margin-top: 2px; }

/* Hub screen */
.hub-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 0 18px;
}
.hub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 14px;
}
.hub-card {
  background: var(--stout);
  border: 1px solid var(--ash);
  border-radius: 12px;
  padding: 12px;
}
.hub-card__strip {
  height: 4px;
  border-radius: 2px;
  margin-bottom: 10px;
}
.hub-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hub-card__t {
  font-size: 14px;
  font-weight: 700;
  color: var(--chalk);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hub-card__d { font-size: 11px; color: var(--smoke); margin-top: 2px; }
.hub-card__chev { color: var(--dust); font-size: 16px; }

.pro-badge {
  display: inline-block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 999px;
  background: var(--oche-gradient);
  color: var(--pitch-black);
}

/* ============================================================
   Generic section
   ============================================================ */
.section {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 96px 32px;
}
.section__head {
  margin-bottom: 56px;
  max-width: 760px;
}
.section__head .display-l {
  margin: 14px 0 16px;
  text-wrap: balance;
}
.section__sub {
  color: var(--smoke);
  font-size: 18px;
  line-height: 1.55;
  max-width: 620px;
  text-wrap: pretty;
  margin: 0;
}
.display-l {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--chalk);
  margin: 0;
}

/* ============================================================
   Features grid
   ============================================================ */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ash);
  border: 1px solid var(--ash);
  border-radius: var(--radius-3);
  overflow: hidden;
}
.feature {
  background: var(--stout);
  padding: 32px 28px;
  transition: background var(--dur-ui) var(--ease-oche);
}
.feature:hover { background: var(--walnut); }
.feature__icon {
  color: var(--brass);
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(232, 185, 72, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(232,185,72,0.18);
}
.feature__t {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 600;
  color: var(--chalk);
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.feature__d {
  font-size: 14px;
  line-height: 1.55;
  color: var(--smoke);
  margin: 0;
}
@media (max-width: 880px) {
  .features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .features { grid-template-columns: 1fr; }
}

/* ============================================================
   Modes
   ============================================================ */
.section--modes { padding-top: 32px; }
.modes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.mode {
  position: relative;
  background: var(--stout);
  border: 1px solid var(--ash);
  border-radius: var(--radius-3);
  padding: 24px 20px 22px;
  overflow: hidden;
  transition: all var(--dur-ui) var(--ease-oche);
}
.mode:hover {
  background: var(--walnut);
  border-color: var(--border-2);
  transform: translateY(-2px);
}
.mode__strip {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--mode-g, var(--oche-gradient));
}
.mode__num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--smoke);
  font-feature-settings: "tnum";
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  margin-top: 8px;
}
.mode__n {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--chalk);
  margin-bottom: 6px;
  line-height: 1.1;
}
.mode__d {
  font-size: 13px;
  color: var(--smoke);
  line-height: 1.5;
}
.mode--ghost {
  background: transparent;
  border-style: dashed;
  border-color: var(--ash);
}
.mode--ghost .mode__num { color: var(--brass); font-size: 22px; margin-bottom: 16px; }
.mode--ghost .mode__n { color: var(--smoke); font-style: italic; }
@media (max-width: 980px) { .modes { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .modes { grid-template-columns: 1fr; } }

/* ============================================================
   Split sections (coach, stats)
   ============================================================ */
.section--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.section--split-rev .split__art { order: 1; }
.section--split-rev .split__copy { order: 2; }
.split__art {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.split__art::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(232,185,72,0.10), transparent 60%);
  pointer-events: none;
}
.split__art--stack {
  min-height: 660px;
}
.split__art-primary {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
}
.split__art-secondary {
  position: absolute;
  top: 8%;
  left: 4%;
  z-index: 1;
  transform: rotate(-7deg);
  opacity: 0.85;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.55));
}
@media (max-width: 980px) {
  .split__art--stack { min-height: 600px; }
  .split__art-secondary { top: 4%; left: 2%; transform: rotate(-6deg) scale(0.9); }
}
.split__copy { max-width: 520px; }
.split__copy .display-l { margin: 14px 0 18px; }
.coach-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.coach-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.coach-list__t { font-weight: 600; color: var(--chalk); font-size: 15px; margin-bottom: 2px; }
.coach-list__d { color: var(--smoke); font-size: 14px; line-height: 1.5; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 28px 0 16px;
}
.stat-cell {
  background: var(--stout);
  border: 1px solid var(--ash);
  border-radius: var(--radius-3);
  padding: 18px 16px;
}
.stat-cell .stat-xl {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.02em;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  color: var(--chalk);
}
.stat-cell .small { color: var(--smoke); }
.hint { color: var(--dust); font-size: 13px; margin-top: 8px; }

@media (max-width: 980px) {
  .section--split { grid-template-columns: 1fr; gap: 48px; }
  .section--split-rev .split__art { order: 0; }
  .section--split-rev .split__copy { order: 1; }
}

/* ============================================================
   Beta section
   ============================================================ */
.eyebrow--brass {
  color: var(--brass);
}
.eyebrow--brass::before {
  background: var(--brass);
}

.beta__pulse {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--treble-green);
  box-shadow: 0 0 0 0 rgba(63, 174, 106, 0.6);
  animation: betaPulse 2s ease-out infinite;
  flex: 0 0 auto;
}
@keyframes betaPulse {
  0% { box-shadow: 0 0 0 0 rgba(63, 174, 106, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(63, 174, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(63, 174, 106, 0); }
}

.oche-nav__link--beta {
  color: var(--brass) !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.oche-nav__link--beta::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--treble-green);
  box-shadow: 0 0 8px rgba(63, 174, 106, 0.6);
}

.section--beta {
  position: relative;
  padding: 80px 32px 96px;
  border-top: 1px solid var(--ash);
  border-bottom: 1px solid var(--ash);
  background: linear-gradient(180deg, var(--pitch-black) 0%, #100D0A 50%, var(--pitch-black) 100%);
  overflow: hidden;
}
.beta__haze {
  position: absolute;
  inset: -10% -5% auto auto;
  width: 60%; height: 80%;
  background: radial-gradient(circle at 70% 40%, rgba(232, 185, 72, 0.14) 0%, rgba(63, 174, 106, 0.05) 40%, transparent 65%);
  pointer-events: none;
  animation: amberPulse 4s ease-in-out infinite;
}
.beta__inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  z-index: 2;
}
.beta__copy {
  max-width: 720px;
  margin-bottom: 48px;
}
.beta__title {
  margin: 18px 0 18px !important;
  font-size: clamp(40px, 5.2vw, 60px) !important;
  text-wrap: balance;
}
.beta__sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--smoke);
  max-width: 620px;
  margin: 0 0 28px;
  text-wrap: pretty;
}
.beta__cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.beta__meta-inline {
  font-size: 13px;
  color: var(--smoke);
}
.beta__meta-inline .num {
  color: var(--brass);
  font-weight: 700;
}

.beta__panels {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}
.beta-panel {
  background: var(--stout);
  border: 1px solid var(--ash);
  border-radius: var(--radius-4);
  padding: 28px;
}
.beta-panel--get { border-color: rgba(232, 185, 72, 0.20); }
.beta-panel__head {
  margin-bottom: 22px;
}
.beta-panel__chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(232, 185, 72, 0.12);
  color: var(--brass);
  border: 1px solid rgba(232, 185, 72, 0.30);
}
.beta-panel__chip--alt {
  background: rgba(255, 255, 255, 0.04);
  color: var(--chalk);
  border-color: var(--ash);
}
.beta-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.beta-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.beta-list__icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  opacity: 0.95;
}
.beta-list__num {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--smoke);
  width: 30px;
  flex: 0 0 auto;
  padding-top: 1px;
}
.beta-list__t {
  font-weight: 600;
  color: var(--chalk);
  font-size: 15px;
  margin-bottom: 2px;
}
.beta-list__d { color: var(--smoke); }

.beta-form {
  margin-top: 32px;
  background: var(--walnut);
  border: 1px solid var(--ash);
  border-radius: var(--radius-4);
  padding: 24px 28px;
  border-color: rgba(232, 185, 72, 0.25);
  box-shadow: 0 0 32px rgba(232, 185, 72, 0.08);
}
.beta-form__row {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 0.9fr auto;
  gap: 14px;
  align-items: end;
}
.beta-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.beta-form__field .label {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--smoke);
}
.beta-form__field input,
.beta-form__field select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--stout);
  color: var(--chalk);
  border: 1px solid var(--ash);
  border-radius: var(--radius-2);
  padding: 11px 14px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  outline: none;
  transition: border-color var(--dur-ui) var(--ease-oche), box-shadow var(--dur-ui) var(--ease-oche);
}
.beta-form__field input::placeholder {
  color: var(--dust);
}
.beta-form__field input:focus,
.beta-form__field select:focus {
  border-color: rgba(232, 185, 72, 0.5);
  box-shadow: 0 0 0 3px rgba(232, 185, 72, 0.10);
}
.beta-form__field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23A39B8E' stroke-width='1.5'><path d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.beta-form__small {
  margin: 14px 0 0;
  color: var(--smoke);
}

@media (max-width: 980px) {
  .beta__panels { grid-template-columns: 1fr; }
  .beta-form__row { grid-template-columns: 1fr; }
  .beta-form__row > button { width: 100%; }
}


.section--achievements {
  padding: 96px 32px;
}
.achievements__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.achievements__art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 620px;
}
.achievements__glow {
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle at 50% 50%, rgba(63, 174, 106, 0.18) 0%, rgba(232, 185, 72, 0.08) 35%, transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}
.achievements__copy { max-width: 520px; }
.achievements__copy .display-l { margin: 14px 0 18px; }
.ach-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}
.ach-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: var(--stout);
  border: 1px solid var(--ash);
  border-radius: var(--radius-3);
  transition: all var(--dur-ui) var(--ease-oche);
}
.ach-item:hover {
  background: var(--walnut);
  border-color: var(--border-2);
}
.ach-item__icon {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: rgba(232, 185, 72, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid currentColor;
}
.ach-item__icon[style*="treble-green"] { background: rgba(63, 174, 106, 0.12); }
.ach-item__icon[style*="bullseye-cyan"] { background: rgba(0, 200, 224, 0.10); }
.ach-item__t { font-weight: 600; color: var(--chalk); font-size: 15px; }
.ach-item__d { color: var(--smoke); margin-top: 2px; }
@media (max-width: 980px) {
  .achievements__inner { grid-template-columns: 1fr; gap: 48px; }
  .achievements__art { min-height: 560px; order: 0; }
}

/* ============================================================
   Quote
   ============================================================ */
.section--quote {
  padding: 72px 32px;
  text-align: center;
}
.quote {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  padding: 24px 0;
}
.quote__mark {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 600;
  line-height: 0.6;
  color: var(--brass);
  opacity: 0.4;
  margin-bottom: -30px;
}
.quote__body {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--chalk);
  margin: 0 auto 24px;
  max-width: 720px;
  text-wrap: balance;
}
.quote__cite {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-style: normal;
}
.quote__name { font-weight: 600; color: var(--chalk); font-size: 14px; }
.quote__meta { color: var(--smoke); font-size: 13px; font-feature-settings: "tnum"; }

/* ============================================================
   Pro
   ============================================================ */
.section--pro { padding: 96px 32px; }
.pro-card {
  position: relative;
  background: var(--stout);
  border: 1px solid var(--ash);
  border-radius: var(--radius-5);
  padding: 56px 56px 48px;
  overflow: hidden;
}
.pro-card::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 70%; height: 120%;
  background: radial-gradient(circle, rgba(232, 185, 72, 0.15), transparent 60%);
  pointer-events: none;
}
.pro-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  position: relative;
}
.pro-badge--lg {
  font-size: 11px;
  padding: 6px 12px;
  letter-spacing: 0.10em;
  box-shadow: var(--glow-brass);
}
.pro-card__price {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pro-card__price .num {
  font-family: var(--font-ui);
  font-size: 32px;
  font-weight: 700;
  color: var(--chalk);
  letter-spacing: -0.02em;
}
.pro-card__title {
  margin: 0 0 36px !important;
  position: relative;
  text-wrap: balance;
}
.pro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 32px;
  margin-bottom: 36px;
  position: relative;
}
.pro-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.pro-item__check {
  width: 24px; height: 24px;
  border-radius: 999px;
  background: rgba(63, 174, 106, 0.15);
  color: var(--treble-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-top: 1px;
}
.pro-item__t { font-weight: 600; color: var(--chalk); font-size: 15px; margin-bottom: 2px; }
.pro-item__d { color: var(--smoke); }
.pro-card__foot {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  flex-wrap: wrap;
}
@media (max-width: 880px) {
  .pro-card { padding: 36px 28px; }
  .pro-grid { grid-template-columns: 1fr 1fr; gap: 18px 24px; }
}
@media (max-width: 580px) {
  .pro-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Download
   ============================================================ */
.section--download {
  position: relative;
  text-align: center;
  padding: 120px 32px 96px;
  overflow: hidden;
}
.download__haze {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(232,185,72,0.18) 0%, rgba(224,78,42,0.06) 30%, transparent 60%);
  pointer-events: none;
  animation: amberPulse 4s ease-in-out infinite;
}
.download__inner { position: relative; max-width: 720px; margin: 0 auto; }
.download__title {
  font-size: clamp(48px, 6vw, 72px) !important;
  margin: 18px 0 14px !important;
}
.download__title em { font-style: italic; }
.download__sub {
  font-size: 18px !important;
  margin: 0 auto 36px !important;
}
.download__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.download__alt {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  border-left: 1px solid var(--ash);
  padding-left: 20px;
}
.download__alt .label { color: var(--brass); }
.download__alt .small { color: var(--smoke); }
@media (max-width: 580px) {
  .download__alt { border-left: 0; padding-left: 0; text-align: center; align-items: center; }
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  border-top: 1px solid var(--ash);
  background: linear-gradient(180deg, var(--pitch-black) 0%, #06050300 100%);
  padding: 72px 32px 24px;
}
.footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
  padding-bottom: 56px;
}
.footer__brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer__pron {
  color: var(--smoke);
  font-size: 14px;
  margin: 0 0 12px;
  max-width: 320px;
  line-height: 1.55;
}
.footer__sign {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--chalk);
  font-size: 15px;
  margin: 0;
  opacity: 0.85;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__cols > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__cols .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  color: var(--smoke);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer__cols a {
  color: var(--chalk);
  font-size: 14px;
  text-decoration: none;
  transition: color var(--dur-ui) var(--ease-oche);
}
.footer__cols a:hover { color: var(--brass); opacity: 1; }
.footer__line {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--ash);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--dust);
}
.footer__phon-small { font-family: var(--font-ui); font-feature-settings: "tnum"; }
@media (max-width: 880px) {
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 32px; }
}
