/* ============================================================
   KOPLAY SPORTS — WEBSITE
   Clean, effortless. Inter throughout.
   ============================================================ */

:root {
  --ink:      #0A0A0B;
  --ink-2:    #131316;
  --ink-3:    #1C1C20;
  --line:     rgba(255,255,255,.08);
  --line-2:   rgba(255,255,255,.14);

  --cream:    #F1EDE4;
  --paper:    #FFFFFF;

  --acid:     #C6F53F;
  --acid-2:   #A5DE2E;
  --acid-glow:rgba(198,245,63,.28);

  --stone:    #6E6E70;
  --stone-2:  #8E8E8F;
  --ink-fg:   #EEEDEB;

  --f-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --wrap: 1240px;
  --wrap-wide: 1440px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 18px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; background: var(--ink); }
body {
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-fg);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'ss01', 'cv11';
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

::selection { background: var(--acid); color: var(--ink); }

/* ---------- cursor spotlight (desktop only) ---------- */
.cursor-glow {
  position: fixed; left: 0; top: 0;
  width: 380px; height: 380px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,245,63,.18) 0%, transparent 60%);
  filter: blur(24px);
  transform: translate(-50%, -50%);
  z-index: 1;
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .cursor-glow.is-on { opacity: .55; }
}
@media (prefers-reduced-motion: reduce) {
  .cursor-glow { display: none; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  transition: background .35s var(--ease), backdrop-filter .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10,10,11,.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav__progress {
  position: absolute; left: 0; bottom: -1px;
  height: 1px;
  width: 100%;
  transform-origin: left;
  transform: scaleX(var(--sp, 0));
  background: var(--acid);
  transition: transform .1s linear;
  will-change: transform;
}
.nav__brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 700; letter-spacing: -.02em;
  font-size: 18px;
}
.nav__logo {
  width: 34px; height: 34px; border-radius: 8px;
  overflow: hidden;
  display: grid; place-items: center;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08);
}
.nav__logo img { width: 100%; height: 100%; object-fit: cover; }
.nav__wordmark { color: var(--ink-fg); }

.nav__links {
  display: flex; gap: 32px;
  font-size: 14px; font-weight: 500;
  color: rgba(238,237,235,.72);
}
.nav__links a {
  position: relative; padding: 4px 0;
  transition: color .2s var(--ease);
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1px; background: var(--acid);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav__links a:hover { color: var(--ink-fg); }
.nav__links a:hover::after { transform: scaleX(1); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
  letter-spacing: -.005em;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn--pill {
  background: var(--ink-fg); color: var(--ink);
  border: 1px solid var(--ink-fg);
}
.btn--pill:hover {
  background: var(--acid); border-color: var(--acid);
  transform: translateY(-1px);
}
.btn--acid {
  background: var(--acid); color: var(--ink);
  padding: 15px 26px; font-size: 14.5px; font-weight: 600;
}
.btn--acid:hover { transform: translateY(-1px); background: #d3ff56; box-shadow: 0 14px 40px -18px var(--acid-glow); }
.btn--ghost {
  background: transparent; color: var(--ink-fg);
  border: 1px solid var(--line-2);
  padding: 15px 26px; font-size: 14.5px;
}
.btn--ghost:hover { border-color: var(--ink-fg); background: rgba(255,255,255,.04); }

@media (max-width: 780px) {
  .nav__links { display: none; }
  .nav { padding: 14px var(--gutter); }
  .btn--pill { padding: 10px 16px; font-size: 13px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}
.hero__top    { padding: 100px var(--gutter) 0; }
.hero__content { padding: 40px var(--gutter); }
.hero__count  { padding: 24px var(--gutter) 32px; }
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;            /* show the full video — never crop */
  object-position: center;
  z-index: 0;
  pointer-events: none;
  background: var(--ink);         /* fill the letterbox bars with the hero background */
  filter: saturate(.55) contrast(1.05);
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,10,11,.55) 0%, rgba(10,10,11,.15) 30%, rgba(10,10,11,.15) 60%, rgba(10,10,11,.7) 100%),
    linear-gradient(90deg, rgba(10,10,11,.45) 0%, rgba(10,10,11,0) 55%, rgba(10,10,11,.05) 100%);
  pointer-events: none;
}
.hero > *:not(.hero__video):not(.hero__scrim) { position: relative; z-index: 3; }
@media (prefers-reduced-motion: reduce) {
  .hero__video { animation: none; }
}

.hero__top {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11.5px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(238,237,235,.85);
}
.hero__meta { display: flex; align-items: center; gap: 10px; }
.hero__meta--right { color: rgba(238,237,235,.55); }
.hero__content {
  display: flex; flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  text-align: right;
  padding: 0 clamp(0px, 3vw, 40px);
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 4px rgba(198,245,63,.15);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 4px rgba(198,245,63,.15); }
  50%     { box-shadow: 0 0 0 8px rgba(198,245,63,.05); }
}

.hero__title {
  font-weight: 700;
  font-size: clamp(52px, 8.6vw, 128px);
  line-height: .95;
  letter-spacing: -.04em;
  margin: 0 0 24px;
  color: var(--ink-fg);
  text-shadow: 0 4px 40px rgba(0,0,0,.4);
}
.hero__title--acid { color: var(--acid); }
.hero__title .line {
  display: block;
  overflow: hidden;
  padding-bottom: .04em;
}
.hero__title .word {
  display: inline-block;
  transform: translateY(105%);
  animation: word-rise .95s cubic-bezier(.22,.9,.28,1) forwards;
}
.hero__title .line:nth-child(1) .word:nth-child(1) { animation-delay: .05s; }
.hero__title .line:nth-child(1) .word:nth-child(2) { animation-delay: .12s; }
.hero__title .line:nth-child(1) .word:nth-child(3) { animation-delay: .19s; }
.hero__title .line:nth-child(2) .word:nth-child(1) { animation-delay: .28s; }
.hero__title .line:nth-child(2) .word:nth-child(2) { animation-delay: .36s; }
@keyframes word-rise { to { transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .hero__title .word { transform: none; animation: none; }
}

.hero__sub {
  font-size: clamp(16px, 1.25vw, 19px);
  color: rgba(238,237,235,.85);
  max-width: 46ch;
  margin-bottom: 28px;
  font-weight: 400;
  text-shadow: 0 2px 20px rgba(0,0,0,.6);
}

.hero__cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: flex-end;
}

/* countdown */
.hero__count {
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.16);
}
.count__label {
  font-size: 13px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--acid);
  white-space: nowrap;
}
.count__grid {
  display: flex; align-items: center; gap: clamp(14px, 2.4vw, 28px);
  flex: 1; justify-content: flex-end;
}
.count__colon {
  font-weight: 300; font-size: clamp(28px, 3.6vw, 44px);
  color: rgba(238,237,235,.4);
  transform: translateY(-6px);
}
.count__cell {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  min-width: 68px;
}
.count__cell b {
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--ink-fg);
  font-variant-numeric: tabular-nums;
  display: inline-block;
  transition: transform .35s var(--ease);
}
.count__cell b.is-tick {
  animation: tickFlash .5s var(--ease);
}
@keyframes tickFlash {
  0% { opacity: .35; transform: translateY(-4px); }
  100% { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .count__cell b.is-tick { animation: none; }
}
.count__cell span {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--stone-2); font-weight: 500;
}
@media (max-width: 640px) {
  .hero__meta--right { display: none; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__count { gap: 20px; }
  .count__grid { gap: 12px; flex-wrap: nowrap; }
  .count__colon { font-size: 22px; }
  .count__cell { min-width: 46px; }
  .count__cell b { font-size: 30px; }
  .hero__content {
    align-items: flex-start;
    text-align: left;
    padding: 0 var(--gutter);
  }
  .hero__cta { justify-content: flex-start; }
  .hero__title { font-size: clamp(40px, 12vw, 60px); }
  .hero__sub { max-width: 100%; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 22px 0;
  background: var(--ink);
}
.marquee__track {
  display: flex; gap: 60px;
  animation: marquee 45s linear infinite;
  width: max-content;
}
.marquee__group {
  display: flex; align-items: center; gap: 60px;
  font-weight: 700; font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -.03em;
  color: rgba(238,237,235,.7);
  padding-right: 60px;
  white-space: nowrap;
}
.marquee__group span:not(.marquee__dot) {
  transition: color .2s var(--ease);
}
.marquee__group span:not(.marquee__dot):hover { color: var(--acid); }
.marquee__dot {
  color: var(--acid);
  font-weight: 700;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ============================================================
   Shared
   ============================================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase;
  color: #3B3A36; font-weight: 500;
  margin-bottom: 28px;
}
.eyebrow__num {
  display: inline-grid; place-items: center;
  min-width: 28px; height: 22px; padding: 0 8px;
  border: 1px solid currentColor; border-radius: 3px;
  font-weight: 700; letter-spacing: 0;
  color: var(--acid-2);
  background: rgba(198,245,63,.10);
}
.eyebrow--light { color: rgba(238,237,235,.65); }
.eyebrow--light .eyebrow__num {
  color: var(--acid);
  border-color: rgba(198,245,63,.4);
  background: rgba(198,245,63,.06);
}

.section-title {
  font-weight: 700;
  font-size: clamp(36px, 5.4vw, 76px);
  line-height: 1;
  letter-spacing: -.035em;
  color: var(--ink);
}
.section-title--light { color: var(--ink-fg); }

/* ============================================================
   MANIFESTO (cream)
   ============================================================ */
.manifesto {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(90px, 12vw, 160px) var(--gutter);
}
.manifesto__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) {
  .manifesto__inner {
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    align-items: start;
    gap: 80px;
  }
  .manifesto .eyebrow { grid-column: 1; margin-bottom: 0; }
  .manifesto__quote {
    grid-column: 1; margin: 0;
    position: sticky; top: 22vh;
  }
  .manifesto__body {
    grid-column: 2; margin: 0;
    padding-top: 40px;
  }
  .manifesto { min-height: 90vh; }
}
.manifesto__quote {
  font-weight: 700;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -.04em;
  max-width: 18ch;
}
.manifesto__body {
  max-width: 42ch;
  font-size: clamp(16px, 1.1vw, 17.5px);
  line-height: 1.6;
  color: #33322F;
}
.manifesto__body p + p { margin-top: 16px; }
.manifesto__body strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  background: var(--ink);
  padding: clamp(90px, 12vw, 150px) var(--gutter);
}
.features__head { max-width: var(--wrap); margin: 0 auto 56px; }

.features__grid {
  max-width: var(--wrap); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.card {
  position: relative;
  grid-column: span 3;
  padding: 28px;
  min-height: 320px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
  --mx: 50%; --my: 50%;
}
.card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle 260px at var(--mx) var(--my), rgba(198,245,63,.10), transparent 60%);
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
  z-index: 0;
}
.card:hover::before { opacity: 1; }
.card > * { position: relative; z-index: 1; }
.card:hover {
  transform: translateY(-3px);
  border-color: var(--line-2);
  background: var(--ink-3);
}
.card--hero {
  grid-column: span 3; grid-row: span 2;
  min-height: 480px;
  padding: 36px;
}
.card--wide { grid-column: span 6; min-height: 280px; }
@media (max-width: 900px) {
  .features__grid { grid-template-columns: 1fr; }
  .card, .card--hero, .card--wide { grid-column: span 1; grid-row: auto; min-height: 280px; }
}
.card--acid {
  background: linear-gradient(160deg, #16170F 0%, #0F1108 100%);
  border-color: rgba(198,245,63,.18);
}
.card__glow {
  position: absolute; top: -30%; right: -20%;
  width: 60%; height: 60%;
  background: radial-gradient(circle, var(--acid-glow), transparent 60%);
  filter: blur(40px);
  opacity: .5;
  pointer-events: none;
}
.card__meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--stone-2); font-weight: 500;
}
.card__meta span:first-child {
  color: var(--acid);
  font-weight: 700; letter-spacing: 0;
}
.card__title {
  font-weight: 700;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--ink-fg);
  margin: 18px 0 12px;
}
.card--hero .card__title {
  font-size: clamp(28px, 2.8vw, 40px);
  max-width: 12ch;
}
.card__body {
  color: rgba(238,237,235,.65);
  font-size: 14.5px;
  max-width: 40ch;
}
.card__viz { margin-top: auto; padding-top: 28px; }

/* skill bars */
.skill-bars { display: flex; flex-direction: column; gap: 10px; }
.skill-bar {
  display: grid; grid-template-columns: 140px 1fr; gap: 16px;
  align-items: center;
  font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(238,237,235,.5); font-weight: 500;
}
.skill-bar i {
  display: block; height: 6px; border-radius: 999px;
  background: rgba(255,255,255,.08);
  position: relative; overflow: hidden;
}
.skill-bar i::after {
  content: ''; position: absolute; inset: 0;
  width: var(--w); background: rgba(255,255,255,.22);
  border-radius: inherit;
}
.skill-bar.is-you span { color: var(--acid); font-weight: 600; }
.skill-bar.is-you i::after {
  background: var(--acid);
  box-shadow: 0 0 20px var(--acid-glow);
}

/* rating */
.card__viz--rating { display: flex; flex-direction: column; gap: 10px; }
.card__viz--rating svg { width: 100%; height: 70px; }
.rating-nums {
  display: flex; justify-content: space-between;
  font-weight: 600; font-size: 13px;
  color: rgba(238,237,235,.45);
  font-variant-numeric: tabular-nums;
}
.rating-nums .is-active { color: var(--acid); font-size: 15px; }

/* score */
.score-row {
  display: grid; grid-template-columns: 1fr 40px 40px;
  gap: 12px; padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px; color: rgba(238,237,235,.7);
}
.score-row:last-child { border-bottom: 0; }
.score-row span:first-child {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--stone-2);
}
.score-row span:not(:first-child) {
  font-weight: 700;
  text-align: right; font-size: 16px; color: var(--ink-fg);
  font-variant-numeric: tabular-nums;
}
.score-row.is-final span:nth-child(2) { color: var(--acid); }

/* chat */
.card__viz--chat { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.chat-bubble {
  background: rgba(255,255,255,.04); border: 1px solid var(--line);
  padding: 12px 14px; border-radius: 12px; font-size: 13.5px;
}
.chat-bubble b {
  display: block; font-size: 11px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--stone-2); margin-bottom: 4px; font-weight: 600;
}
.chat-bubble p { color: rgba(238,237,235,.85); line-height: 1.4; }
.chat-bubble--you { background: var(--acid); border-color: var(--acid); color: var(--ink); }
.chat-bubble--you b { color: rgba(10,10,11,.55); }
.chat-bubble--you p { color: var(--ink); font-weight: 500; }
@media (max-width: 720px) { .card__viz--chat { grid-template-columns: 1fr; } }

/* gear */
.card__viz--gear { display: flex; flex-direction: column; gap: 6px; }
.gear-item {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0; border-bottom: 1px solid var(--line);
  font-size: 13.5px; color: rgba(238,237,235,.85);
}
.gear-item:last-child { border-bottom: 0; }
.gear-item b {
  font-weight: 700;
  color: var(--acid); font-size: 14px;
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   SHOWCASE
   ============================================================ */
.showcase-wrap {
  position: relative;
  padding: clamp(80px, 12vw, 150px) 0;
  background:
    radial-gradient(circle 700px at 78% 50%, rgba(198,245,63,.30) 0%, rgba(198,245,63,.05) 40%, transparent 68%),
    radial-gradient(circle 460px at 12% 90%, rgba(198,245,63,.12) 0%, transparent 60%),
    linear-gradient(180deg, #060606 0%, #0A0B04 55%, #060606 100%);
  overflow: hidden;
  isolation: isolate;
}
.showcase-wrap::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle 260px at 78% 42%, rgba(198,245,63,.24), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.showcase {
  position: relative; z-index: 1;
  max-width: var(--wrap-wide); margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.showcase__copy { position: relative; }
.showcase__lede {
  color: rgba(238,237,235,.7);
  font-size: clamp(16px, 1.15vw, 18px);
  max-width: 42ch;
  margin: 20px 0 30px;
}
.showcase__list {
  list-style: none; display: flex; flex-direction: column; gap: 12px;
  font-size: 14.5px;
  color: rgba(238,237,235,.85);
}
.showcase__list li {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.showcase__list li i {
  display: block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--acid); flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(198,245,63,.15);
}
.showcase__list li strong {
  color: var(--acid); font-weight: 600; margin-right: 4px;
}

/* phone image mockup — cropped to just the device body, no black bezel */
.showcase__phone {
  position: relative;
  display: grid; place-items: center;
  perspective: 1400px;
}
.phone-shot {
  position: relative;
  width: 100%;
  max-width: 380px;
  transform: rotateY(-4deg) rotateX(2deg);
  transition: transform .6s var(--ease);
  filter: drop-shadow(0 40px 60px rgba(0,0,0,.5));
}
.showcase__phone:hover .phone-shot { transform: rotateY(-1deg) rotateX(0deg); }
.phone-shot img {
  width: 100%;
  height: auto;
  display: block;
}
.phone-shot__glow {
  position: absolute; inset: -20%;
  background: radial-gradient(circle, rgba(198,245,63,.28), transparent 60%);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .phone-shot { transform: none; }
}
.phone {
  width: 300px; height: 700px;
  background: #0E0E10;
  border-radius: 40px;
  box-shadow:
    0 0 0 3px #1B1B1F,
    0 40px 100px -30px rgba(0,0,0,.6),
    0 0 60px -20px var(--acid-glow);
  position: relative;
  overflow: hidden;
  transform: rotateY(-6deg) rotateX(3deg);
  transition: transform .6s var(--ease);
}
.showcase__phone:hover .phone { transform: rotateY(-3deg) rotateX(1deg); }
.phone__notch {
  position: absolute; top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 95px; height: 22px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
}
.phone__screen {
  position: absolute; inset: 8px;
  border-radius: 32px;
  background: linear-gradient(180deg, #E9E9EA 0%, #DEDEDE 100%);
  padding: 38px 12px 12px;
  overflow: hidden;
  color: #111;
}
.ph-status {
  display: flex; justify-content: space-between;
  font-size: 11.5px; font-weight: 600; color: #111;
  padding: 0 6px 10px;
}
.ph-status__right { font-size: 11px; }

.ph-card {
  background: #EAEAEB;
  border-radius: 20px;
  padding: 13px;
  margin-bottom: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,.04), inset 0 0 0 1px rgba(255,255,255,.6);
}
.ph-card--sm { padding: 11px 13px; }

.ph-card__row { display: flex; gap: 12px; align-items: flex-start; }
.ph-avatar {
  position: relative; width: 54px; height: 54px; flex-shrink: 0;
}
.ph-avatar__ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #C29F5F, #E9CE94, #C29F5F);
  padding: 3px;
}
.ph-avatar__inner {
  position: absolute; inset: 3px;
  border-radius: 50%;
  background: #333;
  display: grid; place-items: center;
  color: #C6F53F; font-weight: 700; font-size: 20px;
}
.ph-card__id { flex: 1; padding-top: 2px; }
.ph-name {
  font-weight: 700;
  font-size: 19px; letter-spacing: -.02em; color: #111;
}
.ph-tags {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; margin-top: 3px;
}
.ph-tag { padding: 3px 8px; border-radius: 999px; font-weight: 600; }
.ph-tag--acid { background: #C6F53F; color: #111; }
.ph-tag-txt { color: #555; }
.ph-sep { color: #999; }
.ph-badge {
  display: inline-block;
  margin-top: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #D2A76A, #F1D68F, #D2A76A);
  color: #4A2E12;
  font-size: 9px; font-weight: 700; letter-spacing: .1em;
}

.ph-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  margin: 10px 0 8px;
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
  padding: 9px 0;
}
.ph-stats > div { text-align: center; }
.ph-stats small { display: block; font-size: 10px; color: #555; margin-bottom: 2px; }
.ph-stats b {
  font-weight: 700;
  font-size: 18px; color: #111; letter-spacing: -.02em;
}

.ph-btn {
  background: #F3F3F4; border-radius: 999px;
  padding: 9px; text-align: center;
  font-size: 12px; font-weight: 600; color: #111;
  border: 1px solid rgba(0,0,0,.06);
}

.ph-sub {
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  color: #666; font-weight: 600;
  display: flex; justify-content: space-between;
  margin-bottom: 8px;
}
.ph-sub__right { color: #111; font-weight: 600; }

.ph-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.ph-chip {
  padding: 6px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 600;
  background: #F3F3F4; color: #111;
}
.ph-chip--acid {
  background: #C6F53F; color: #111;
  box-shadow: 0 4px 10px -4px rgba(198,245,63,.6);
}
.ph-chip--plus {
  background: transparent; border: 1px dashed #999; color: #666;
}
.ph-chip--ico {
  display: inline-flex; align-items: center; gap: 6px;
  font-variant-numeric: tabular-nums;
}
.ph-chip--ico svg { flex-shrink: 0; }

.ph-skill {
  display: grid; grid-template-columns: 42px 1fr auto;
  gap: 12px; align-items: center; margin-top: 4px;
}
.ph-skill__score {
  background: #F5D563; border-radius: 8px;
  padding: 8px; text-align: center;
  font-weight: 700; font-size: 17px; color: #111;
}
.ph-skill__meta b { display: block; font-size: 12.5px; color: #111; font-weight: 600; }
.ph-skill__meta small { font-size: 10px; color: #666; }
.ph-skill__delta {
  background: #FBD7D7; color: #B00020;
  padding: 3px 8px; border-radius: 999px;
  font-size: 10px; font-weight: 700;
}

@media (max-width: 900px) {
  .showcase { grid-template-columns: 1fr; }
  .showcase__phone { margin-top: 20px; }
  .phone { transform: none; }
}

/* ============================================================
   MISSION / VISION
   ============================================================ */
.mission {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 56vh;
}
.mission__panel {
  padding: clamp(60px, 9vw, 110px) var(--gutter);
  display: flex; flex-direction: column; justify-content: center;
}
.mission__panel--dark { background: var(--ink); color: var(--ink-fg); }
.mission__panel--cream { background: var(--cream); color: var(--ink); }
.mission__body {
  font-weight: 500;
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1.3;
  letter-spacing: -.015em;
  color: rgba(238,237,235,.92);
  max-width: 26ch;
}
.mission__body b { font-weight: 700; color: var(--acid); }
.mission__body--dark { color: var(--ink); }
.mission__body--dark b { color: var(--ink); }
@media (max-width: 780px) {
  .mission { grid-template-columns: 1fr; }
}

/* ============================================================
   DOWNLOAD / LAUNCH
   ============================================================ */
.download {
  position: relative;
  background: linear-gradient(160deg, #0F1108 0%, #0A0A0B 100%);
  color: var(--ink-fg);
  padding: clamp(90px, 14vw, 170px) var(--gutter);
  text-align: center;
  overflow: hidden;
}
.download__spot {
  position: absolute; top: -20%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, var(--acid-glow) 0%, transparent 60%);
  filter: blur(30px);
  pointer-events: none;
}
.download__inner {
  position: relative;
  max-width: 780px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
}
.download__title {
  font-weight: 700;
  font-size: clamp(44px, 6vw, 92px);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--ink-fg);
  margin: 12px 0 20px;
}
.download__sub {
  font-size: clamp(15px, 1.1vw, 17px);
  color: rgba(238,237,235,.7);
  max-width: 44ch;
  margin-bottom: 32px;
}

/* signup form */
.signup {
  display: flex; gap: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 6px;
  width: 100%;
  max-width: 480px;
  transition: border-color .2s var(--ease);
}
.signup:focus-within { border-color: var(--acid); }
.signup input {
  flex: 1; min-width: 0;
  background: transparent; border: 0; outline: 0;
  color: var(--ink-fg);
  padding: 0 18px;
  font-family: inherit; font-size: 14.5px;
  caret-color: var(--acid);
}
.signup input::placeholder { color: rgba(238,237,235,.4); }
/* Neutralize browser autofill's white background on the pill */
.signup input:-webkit-autofill,
.signup input:-webkit-autofill:hover,
.signup input:-webkit-autofill:focus,
.signup input:-webkit-autofill:active {
  -webkit-text-fill-color: var(--ink-fg) !important;
  -webkit-box-shadow: 0 0 0 1000px #131309 inset !important;
  box-shadow: 0 0 0 1000px #131309 inset !important;
  caret-color: var(--acid);
  transition: background-color 9999s ease-out, color 9999s ease-out;
}
.signup input:-webkit-autofill::first-line {
  font-family: inherit; font-size: 14.5px; color: var(--ink-fg);
}
.signup .btn { padding: 12px 22px; }
.signup__msg {
  min-height: 20px;
  font-size: 13px; color: var(--acid);
  margin-top: 12px;
}
@media (max-width: 560px) {
  .signup { flex-direction: column; border-radius: 20px; padding: 12px; gap: 12px; }
  .signup input { padding: 12px 14px; }
}

.download__stores {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  margin-top: 40px;
}
.store {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: transparent;
  color: rgba(238,237,235,.6);
  border-radius: 999px;
  border: 1px solid var(--line-2);
  font-size: 13px;
  font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  background: var(--ink);
  padding: 80px var(--gutter) 20px;
  border-top: 1px solid var(--line);
}
.foot__top {
  max-width: var(--wrap); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr; gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}
.foot__brand { display: flex; align-items: center; gap: 14px; }
.foot__wm {
  font-weight: 700;
  font-size: 20px; letter-spacing: -.02em; color: var(--ink-fg);
}
.foot__tag { font-size: 13px; color: var(--stone-2); margin-top: 2px; }

.foot__cols {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 32px;
}
.foot__col h4 {
  font-weight: 600;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--acid); margin-bottom: 16px;
}
.foot__col a, .foot__col span {
  display: block; padding: 6px 0;
  font-size: 14px; color: rgba(238,237,235,.72);
  transition: color .2s var(--ease);
}
.foot__col a:hover { color: var(--acid); }

.foot__bottom {
  max-width: var(--wrap); margin: 24px auto 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 12px; color: var(--stone-2);
  padding-top: 18px;
}

@media (max-width: 900px) {
  .foot__top { grid-template-columns: 1fr; gap: 40px; }
  .foot__cols { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .dot { animation: none; }
}
