/* ============================================================
   Won of One — site styles
   Translated 1:1 from the Claude Design prototype
   (Won of One - Site.dc.html). Accent is a single variable.
   ============================================================ */

:root {
  --ac: #8B7CFF;            /* brand accent (matches app purples) */
  --ink: #05191E;           /* text on accent surfaces */
  --bg: #0A0C0E;
  --bg-footer: #08090B;
  --card: #101318;
  --card-deep: #0D1014;
  --text: #F2F5F7;
  --red: #FF3B4E;
  --green: #2EE676;
  --mono: 'IBM Plex Mono', monospace;
  --gutter: clamp(20px, 4vw, 40px);
}

/* ---- base ---- */
* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Archivo, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--ac); text-decoration: none; }
a:hover { color: color-mix(in srgb, var(--ac) 70%, #fff); }
::selection { background: color-mix(in srgb, var(--ac) 35%, transparent); }
img { max-width: 100%; }
input, textarea, button { font-family: Archivo, system-ui, sans-serif; }
input::placeholder, textarea::placeholder { color: rgba(242,245,247,.35); }
:focus-visible { outline: 2px solid color-mix(in srgb, var(--ac) 70%, transparent); outline-offset: 2px; }
[hidden] { display: none !important; }

@keyframes wooPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(.8); }
}
@keyframes wooFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-enter { animation: wooFadeUp .4s ease both; }

/* ---- layout ---- */
.container { max-width: 1240px; margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.container--narrow { max-width: 860px; }
.section { padding-top: clamp(72px, 10vw, 110px); padding-bottom: clamp(72px, 10vw, 110px); }
.section--top-tight { padding-top: clamp(48px, 7vw, 80px); }
.page-wrap { padding-top: clamp(48px, 7vw, 80px); padding-bottom: clamp(72px, 10vw, 110px); }
.section--rule { border-top: 1px solid rgba(255,255,255,.07); }

/* ---- typography ---- */
.kicker {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px; letter-spacing: .16em; color: var(--ac);
}
.kicker::before { content: ""; width: 26px; height: 1px; background: var(--ac); flex: none; }

.h-hero { margin: 0; font-size: clamp(48px, 7.4vw, 96px); line-height: 1.0; font-weight: 800; letter-spacing: -.03em; }
.h-page { margin: 0; font-size: clamp(40px, 5.4vw, 68px); line-height: 1.02; font-weight: 800; letter-spacing: -.025em; }
.h-section { margin: 0; font-size: clamp(34px, 4.2vw, 54px); line-height: 1.08; font-weight: 750; letter-spacing: -.02em; }
.h-sub { margin: 0; font-size: clamp(30px, 3.6vw, 46px); line-height: 1.08; font-weight: 750; letter-spacing: -.02em; }
.ac-i { font-style: italic; color: var(--ac); }
.h-hero .ac-i { font-weight: 700; }

.lead { margin: 0; font-size: 17px; line-height: 1.6; color: rgba(242,245,247,.65); text-wrap: pretty; }
.muted { color: rgba(242,245,247,.6); }
.mono-note { font-family: var(--mono); font-size: 12px; color: rgba(242,245,247,.4); }

.page-head { display: flex; flex-direction: column; gap: 16px; max-width: 720px; }

/* ---- buttons & pills ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  border: 0; border-radius: 100px; cursor: pointer;
  font-family: Archivo, system-ui, sans-serif; text-decoration: none;
}
.btn-accent {
  padding: 16px 28px; background: var(--ac); color: var(--ink);
  font-weight: 700; font-size: 15.5px;
  transition: transform .15s, box-shadow .15s;
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--ac) 35%, transparent);
  color: var(--ink);
}
.btn-glass {
  padding: 16px 28px; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(6px);
  color: var(--text); font-weight: 600; font-size: 15.5px;
  transition: background .2s;
}
.btn-glass:hover { background: rgba(255,255,255,.16); color: var(--text); }
.btn-outline {
  padding: 12px 22px; background: transparent;
  border: 1px solid rgba(255,255,255,.18); color: rgba(242,245,247,.85);
  font-weight: 600; font-size: 13.5px;
}
.btn--sm { padding: 13px 24px; font-size: 14px; }
.btn .play-glyph { font-size: 12px; }

.link-accent { font-size: 14.5px; font-weight: 600; color: var(--ac); cursor: pointer; background: none; border: 0; padding: 0; }

/* ---- store badges (official Apple / Google Play artwork) ---- */
.store-link { display: inline-block; border-radius: 8px; transition: transform .15s, opacity .2s; }
.store-link:hover { transform: translateY(-1px); opacity: .88; }
.store-img { display: block; height: 50px; width: auto; }
.store-link--sm .store-img { height: 42px; }
.badge-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.badge-row--tight { gap: 10px; }

/* ---- nav ---- */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,12,14,.72); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.nav-logo { cursor: pointer; display: flex; align-items: center; gap: 10px; flex: none; }
.nav-logo img { height: 32px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: clamp(6px, 1.5vw, 10px); flex-wrap: wrap; }
.nav-link {
  cursor: pointer; padding: 9px 14px; border-radius: 100px;
  font-size: 13.5px; font-weight: 500; color: rgba(242,245,247,.6);
  transition: color .2s, background .2s;
}
.nav-link:hover { color: var(--text); }
.nav-link.active { color: var(--text); background: rgba(255,255,255,.09); font-weight: 700; }
.nav-cta {
  cursor: pointer; margin-left: 6px; padding: 10px 18px; border-radius: 100px;
  font-size: 13.5px; font-weight: 700; background: var(--ac); color: var(--ink);
  transition: transform .15s;
}
.nav-cta:hover { transform: translateY(-1px); color: var(--ink); }

/* ---- status lights ---- */
.lights {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 12px; letter-spacing: .18em;
  color: rgba(242,245,247,.75);
}
.light { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.light--red { background: var(--red); box-shadow: 0 0 14px rgba(255,59,78,.9); animation: wooPulse 2.4s ease infinite; }
.light--green { background: var(--green); box-shadow: 0 0 14px rgba(46,230,118,.9); animation: wooPulse 2.4s ease .5s infinite; }

/* ---- hero (home) ---- */
.hero { position: relative; min-height: 88vh; display: flex; align-items: flex-end; overflow: hidden; }
/* compound selector: must beat .media-slot's position:relative regardless of order */
.hero-media.media-slot, .hero-media { position: absolute; inset: 0; }
.hero-media img, .media-slot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-fallback {
  position: absolute; inset: 0;
  background:
    radial-gradient(1100px 620px at 72% 18%, color-mix(in srgb, var(--ac) 16%, transparent), transparent 62%),
    radial-gradient(800px 500px at 12% 85%, color-mix(in srgb, var(--ac) 8%, transparent), transparent 58%),
    repeating-linear-gradient(45deg, #101318, #101318 12px, #0D1014 12px, #0D1014 24px);
}
.hero-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,12,14,.55) 0%, rgba(10,12,14,.15) 40%, rgba(10,12,14,.88) 82%, #0A0C0E 100%);
}
.hero-inner {
  position: relative; width: 100%; max-width: 1240px; margin: 0 auto;
  padding: 110px var(--gutter) clamp(48px, 7vh, 80px);
  pointer-events: none;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px, 4vw, 56px); align-items: end;
}
.hero-copy { display: flex; flex-direction: column; gap: 24px; max-width: 640px; }
.hero-lead { margin: 0; font-size: clamp(16px, 1.6vw, 19px); line-height: 1.6; color: rgba(242,245,247,.72); max-width: 560px; text-wrap: pretty; }
.hero-actions, .hero-badges { pointer-events: auto; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 4px; }
.hero-phone-wrap { display: flex; justify-content: center; pointer-events: auto; }

/* ---- phone mockup ---- */
.phone {
  width: min(280px, 78vw); background: var(--card-deep);
  border: 1px solid rgba(255,255,255,.14); border-radius: 44px; padding: 10px;
  box-shadow: 0 50px 100px rgba(0,0,0,.6);
}
.phone-screen { position: relative; border-radius: 35px; overflow: hidden; background: #101318; aspect-ratio: 9 / 19; }
.phone-screen video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.phone-notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 84px; height: 22px; border-radius: 100px;
  background: var(--bg); border: 1px solid rgba(255,255,255,.06);
}
.phone-caption {
  position: absolute; left: 14px; bottom: 12px;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .1em;
  color: rgba(242,245,247,.65); background: rgba(10,12,14,.55);
  backdrop-filter: blur(4px); padding: 4px 10px; border-radius: 100px;
}

/* ---- placeholder pattern + play badge ---- */
.ph-pattern { background: repeating-linear-gradient(45deg, #12161B, #12161B 12px, #0E1216 12px, #0E1216 24px); }
.ph-center { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; padding: 20px; text-align: center; }
.play-badge {
  width: 50px; height: 50px; border-radius: 50%; flex: none;
  border: 1px solid var(--ac); background: color-mix(in srgb, var(--ac) 12%, transparent);
  display: flex; align-items: center; justify-content: center;
  color: var(--ac); font-size: 16px;
}
.play-badge--sm { width: 44px; height: 44px; font-size: 14px; }
.play-badge--lg { width: 56px; height: 56px; font-size: 18px; }
.ph-label { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; color: rgba(242,245,247,.5); line-height: 1.8; }
.caption-pill {
  position: absolute; left: 12px; bottom: 10px;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .1em;
  color: rgba(242,245,247,.65); background: rgba(10,12,14,.6);
  padding: 4px 10px; border-radius: 100px;
}

/* ---- generic cards ---- */
.card { background: var(--card); border: 1px solid rgba(255,255,255,.08); border-radius: 24px; }
.card--pad { padding: 28px; }
.card-kicker { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; color: var(--ac); }
.card-title { font-size: 19px; font-weight: 700; }
.card-desc { font-size: 14.5px; line-height: 1.6; color: rgba(242,245,247,.6); text-wrap: pretty; }
.stack-10 { display: flex; flex-direction: column; gap: 10px; }
.stack-12 { display: flex; flex-direction: column; gap: 12px; }
.stack-16 { display: flex; flex-direction: column; gap: 16px; }
.stack-18 { display: flex; flex-direction: column; gap: 18px; }

/* ---- grids ---- */
.grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.grid-cards--260 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-split { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(32px, 5vw, 64px); }
.grid-split--center { align-items: center; }
.grid-split--340 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }

/* ---- home: latest video split ---- */
.latest-split {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(36px, 5vw, 72px); align-items: center;
  padding-top: clamp(72px, 10vw, 120px); padding-bottom: clamp(72px, 10vw, 120px);
}
.latest-title { margin: 0; font-size: 20px; font-weight: 650; line-height: 1.35; }
.latest-desc { margin: 0; font-size: 16px; line-height: 1.6; color: rgba(242,245,247,.65); max-width: 460px; text-wrap: pretty; }

/* ---- instagram embed frames ---- */
.embed-frame {
  width: min(360px, 100%); background: #101318;
  border: 1px solid rgba(255,255,255,.12); border-radius: 40px; padding: 10px;
  box-shadow: 0 40px 90px rgba(0,0,0,.55);
}
.embed-screen { border-radius: 32px; overflow: hidden; background: var(--card-deep); position: relative; }
.embed-screen iframe { display: block; width: 100%; height: 600px; border: 0; background: var(--card-deep); }

/* uploaded (self-hosted) weekly-video files, played inline */
.uploaded-video { display: block; width: 100%; background: var(--card-deep); }
.embed-screen .uploaded-video, .featured-embed .uploaded-video { height: 600px; object-fit: contain; }
.featured-embed .uploaded-video { height: 580px; }
.video-thumb--file { display: block; position: relative; aspect-ratio: 16 / 10; background: var(--card-deep); }
.video-thumb--file .uploaded-video { height: 100%; object-fit: cover; position: absolute; inset: 0; }
.embed-empty { height: 600px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 14px; }

/* ---- feature pillar cards ---- */
.pillar {
  background: var(--card); border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .2s, transform .2s;
}
.pillar:hover { border-color: color-mix(in srgb, var(--ac) 40%, transparent); transform: translateY(-3px); }
.pillar-media { position: relative; aspect-ratio: 16 / 10; border-bottom: 1px solid rgba(255,255,255,.07); }
.pillar-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pillar-body { padding: 26px 28px 30px; display: flex; flex-direction: column; gap: 12px; }
.pillar-title { font-size: 23px; font-weight: 700; letter-spacing: -.01em; }
.pillar-desc { font-size: 15px; line-height: 1.6; color: rgba(242,245,247,.6); text-wrap: pretty; }

/* ---- section head row ---- */
.section-head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; }

/* ---- roadmap preview cards (home) ---- */
.rp-card { border-radius: 24px; padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.rp-meter { display: flex; align-items: center; margin-bottom: 2px; }
.rp-dot { width: 12px; height: 12px; border-radius: 50%; flex: none; }
.rp-line { flex: 1; height: 2px; }
.rp-meta { display: flex; align-items: center; gap: 10px; }
.rp-eta { font-family: var(--mono); font-size: 11px; color: rgba(242,245,247,.4); }
.rp-title { font-size: 21px; font-weight: 700; letter-spacing: -.01em; }
.rp-desc { font-size: 14.5px; line-height: 1.55; color: rgba(242,245,247,.6); text-wrap: pretty; }

.pill-tag {
  font-family: var(--mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: .12em; padding: 4px 10px; border-radius: 100px;
  display: inline-block;
}

.rp-card--now {
  background: linear-gradient(180deg, color-mix(in srgb, var(--ac) 8%, transparent), color-mix(in srgb, var(--ac) 1.5%, transparent)), var(--card);
  border: 1px solid color-mix(in srgb, var(--ac) 40%, transparent);
}
.rp-card--now .rp-dot { background: var(--ac); border: 2px solid var(--ac); }
.rp-card--now .rp-line { background: linear-gradient(90deg, color-mix(in srgb, var(--ac) 50%, transparent), transparent); }
.rp-card--now .pill-tag { background: var(--ac); color: var(--ink); }

.rp-card--next { background: var(--card); border: 1px solid rgba(255,255,255,.1); }
.rp-card--next .rp-dot { background: transparent; border: 2px solid var(--ac); }
.rp-card--next .rp-line { background: linear-gradient(90deg, rgba(255,255,255,.22), transparent); }
.rp-card--next .pill-tag { background: rgba(255,255,255,.09); color: rgba(242,245,247,.8); }

.rp-card--later { background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.09); }
.rp-card--later .rp-dot { background: transparent; border: 2px dashed rgba(242,245,247,.4); }
.rp-card--later .rp-line { background: linear-gradient(90deg, rgba(255,255,255,.14), transparent); }
.rp-card--later .pill-tag { background: rgba(255,255,255,.06); color: rgba(242,245,247,.55); }

/* ---- updates preview (home) ---- */
.up-row { display: flex; flex-direction: column; gap: 8px; padding: 22px 4px; border-bottom: 1px solid rgba(255,255,255,.08); }
.up-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.up-date { font-family: var(--mono); font-size: 11.5px; color: rgba(242,245,247,.4); }
.up-title { font-size: 17.5px; font-weight: 650; }
.up-desc { font-size: 14px; line-height: 1.55; color: rgba(242,245,247,.58); text-wrap: pretty; }

.tag--new { background: color-mix(in srgb, var(--ac) 15%, transparent); color: var(--ac); }
.tag--announcement { background: rgba(46,230,118,.14); color: var(--green); }
.tag--neutral { background: rgba(255,255,255,.08); color: rgba(242,245,247,.75); }
.pill-tag--sm { font-size: 10.5px; letter-spacing: .1em; padding: 3px 9px; }

/* ---- big CTA (home) ---- */
.cta-banner {
  position: relative; border-radius: 32px; overflow: hidden; min-height: 420px;
  display: flex; align-items: flex-end; border: 1px solid rgba(255,255,255,.1);
}
.cta-banner .media-slot { position: absolute; inset: 0; }
.cta-overlay { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(10,12,14,.2), rgba(10,12,14,.88) 78%); }
.cta-content { position: relative; width: 100%; padding: clamp(32px, 5vw, 56px); display: flex; flex-direction: column; gap: 18px; }
.cta-title { margin: 0; font-size: clamp(32px, 4vw, 52px); line-height: 1.06; font-weight: 800; letter-spacing: -.02em; }
.cta-sub { margin: 0; font-size: 16px; color: rgba(242,245,247,.7); max-width: 440px; }
.or-app { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; color: rgba(242,245,247,.55); }

/* ---- signup ---- */
.signup-row { display: flex; gap: 10px; flex-wrap: wrap; max-width: 480px; }
.signup-input {
  flex: 1; min-width: 220px; padding: 15px 20px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.07);
  backdrop-filter: blur(8px); color: var(--text); font-size: 15px; outline: none;
}
.signup-btn { padding: 15px 26px; background: var(--ac); color: var(--ink); border-radius: 100px; font-weight: 700; font-size: 15px; border: 0; cursor: pointer; transition: transform .15s; }
.signup-btn:hover { transform: translateY(-2px); }
.signup-row--sm .signup-input { min-width: 180px; padding: 13px 17px; font-size: 14px; background: rgba(255,255,255,.05); backdrop-filter: none; }
.signup-row--sm .signup-btn { padding: 13px 20px; font-size: 14px; }
.signup-done {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 100px;
  background: rgba(46,230,118,.12); border: 1px solid rgba(46,230,118,.4);
  color: var(--green); font-weight: 600; font-size: 15px;
  animation: wooFadeUp .3s ease both;
}
.input-error { border-color: var(--red) !important; }
.form-error { font-size: 13px; color: var(--red); font-weight: 600; }

/* ---- chips ---- */
.chip-row { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  cursor: pointer; padding: 9px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 600;
  background: rgba(255,255,255,.05); color: rgba(242,245,247,.7);
  border: 1px solid rgba(255,255,255,.12);
  transition: background .2s; font-family: Archivo, system-ui, sans-serif;
}
.chip.active { background: var(--ac); color: var(--ink); border-color: var(--ac); }
.chip--soft.active {
  background: color-mix(in srgb, var(--ac) 15%, transparent);
  color: var(--ac);
  border-color: color-mix(in srgb, var(--ac) 55%, transparent);
}

/* ---- videos page ---- */
.featured-panel {
  background: linear-gradient(135deg, color-mix(in srgb, var(--ac) 8%, transparent), color-mix(in srgb, var(--ac) 2%, transparent) 55%), var(--card);
  border: 1px solid color-mix(in srgb, var(--ac) 35%, transparent);
  border-radius: 32px; padding: clamp(20px, 3vw, 32px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(24px, 3vw, 40px); align-items: center;
}
.featured-embed { width: min(340px, 100%); border-radius: 28px; overflow: hidden; background: var(--card-deep); border: 1px solid rgba(255,255,255,.1); }
.featured-embed iframe { display: block; width: 100%; height: 580px; border: 0; background: var(--card-deep); }
.featured-title { font-size: clamp(24px, 2.6vw, 32px); font-weight: 750; line-height: 1.15; letter-spacing: -.015em; text-wrap: pretty; }
.featured-desc { font-size: 15.5px; line-height: 1.6; color: rgba(242,245,247,.65); max-width: 480px; text-wrap: pretty; }
.tag-soft {
  font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 100px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  color: rgba(242,245,247,.75); display: inline-block;
}
.pill-latest { font-family: var(--mono); font-size: 10.5px; font-weight: 600; letter-spacing: .12em; padding: 4px 11px; border-radius: 100px; background: var(--ac); color: var(--ink); }
.featured-week { font-family: var(--mono); font-size: 11.5px; color: rgba(242,245,247,.45); }

.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.video-card {
  background: var(--card); border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px; overflow: hidden; display: flex; flex-direction: column;
  transition: border-color .2s, transform .2s;
}
.video-card:hover { border-color: color-mix(in srgb, var(--ac) 35%, transparent); transform: translateY(-3px); }
.video-thumb { display: block; position: relative; aspect-ratio: 16 / 10; }
.video-week { position: absolute; top: 14px; left: 14px; font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; color: rgba(242,245,247,.55); }
.video-thumb .play-badge { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 48px; height: 48px; font-size: 15px; }
.video-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.video-tags { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.tag-xs { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 100px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); color: rgba(242,245,247,.7); }
.video-date { font-family: var(--mono); font-size: 11px; color: rgba(242,245,247,.4); }
.video-title { font-size: 17.5px; font-weight: 650; line-height: 1.3; text-wrap: pretty; }
.video-desc { font-size: 13.5px; line-height: 1.55; color: rgba(242,245,247,.55); text-wrap: pretty; flex: 1; }
.video-watch { font-size: 13px; font-weight: 600; color: var(--ac); margin-top: 2px; }
.videos-foot { font-family: var(--mono); font-size: 12px; color: rgba(242,245,247,.4); text-align: center; padding-top: 8px; }

/* ---- roadmap page ---- */
.stats-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
.stat-card { background: var(--card); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 16px 18px; display: flex; flex-direction: column; gap: 8px; }
.stat-bar { height: 3px; border-radius: 100px; width: 36px; }
.stat-num-row { display: flex; align-items: baseline; gap: 8px; }
.stat-num { font-size: 24px; font-weight: 800; }
.stat-label { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; color: rgba(242,245,247,.55); }
.stat--now .stat-bar { background: var(--ac); }
.stat--now .stat-num { color: var(--ac); }
.stat--next .stat-bar { background: rgba(242,245,247,.5); }
.stat--next .stat-num { color: var(--text); }
.stat--later .stat-bar { background: rgba(242,245,247,.25); }
.stat--later .stat-num { color: rgba(242,245,247,.7); }
.stat--shipped .stat-bar { background: var(--green); }
.stat--shipped .stat-num { color: var(--green); }

.timeline { position: relative; }
.timeline-rail {
  position: absolute; left: 22px; top: 10px; bottom: 10px; width: 2px; border-radius: 2px;
  background: linear-gradient(180deg, var(--ac) 0%, color-mix(in srgb, var(--ac) 35%, transparent) 32%, rgba(255,255,255,.14) 62%, rgba(46,230,118,.45) 100%);
}
.phases { display: flex; flex-direction: column; gap: 48px; }
.phase { display: flex; flex-direction: column; gap: 16px; }
.phase-head { position: relative; padding-left: 64px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; min-height: 26px; }
.phase-node {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  width: 22px; height: 22px; border-radius: 50%; box-sizing: border-box;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}
.phase--now .phase-node { background: var(--ac); border: 2px solid var(--ac); color: var(--ink); box-shadow: 0 0 18px color-mix(in srgb, var(--ac) 70%, transparent); animation: wooPulse 2.2s ease infinite; }
.phase--next .phase-node { background: var(--bg); border: 2px solid var(--ac); color: var(--ac); }
.phase--later .phase-node { background: var(--bg); border: 2px dashed rgba(242,245,247,.45); color: rgba(242,245,247,.5); }
.phase--completed .phase-node { background: var(--green); border: 2px solid var(--green); color: #05191E; box-shadow: 0 0 14px rgba(46,230,118,.5); }
.phase-title { font-size: 24px; font-weight: 750; letter-spacing: -.01em; }
.phase-sub { font-size: 14px; color: rgba(242,245,247,.5); }
.phase-items { display: flex; flex-direction: column; gap: 12px; }

.road-item { position: relative; padding-left: 64px; }
.road-dot { position: absolute; left: 16px; top: 30px; width: 14px; height: 14px; border-radius: 50%; box-sizing: border-box; }
.road-tick { position: absolute; left: 30px; top: 36px; width: 34px; height: 1px; background: rgba(255,255,255,.12); }
.road-card { max-width: 780px; border-radius: 20px; padding: 22px 26px; display: flex; flex-direction: column; gap: 9px; }
.road-meta { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }
.road-eta { font-family: var(--mono); font-size: 11px; color: rgba(242,245,247,.45); }
.road-title { font-size: 19px; font-weight: 700; letter-spacing: -.01em; }
.road-desc { font-size: 14px; line-height: 1.55; text-wrap: pretty; }

.road-item--now .road-dot { background: var(--ac); border: 2px solid var(--ac); }
.road-item--now .road-card {
  background: linear-gradient(180deg, color-mix(in srgb, var(--ac) 7%, transparent), color-mix(in srgb, var(--ac) 1.5%, transparent)), var(--card);
  border: 1px solid color-mix(in srgb, var(--ac) 35%, transparent);
}
.road-item--now .pill-tag { background: var(--ac); color: var(--ink); border: 1px solid transparent; }
.road-item--now .road-title { color: var(--text); }
.road-item--now .road-desc { color: rgba(242,245,247,.62); }

.road-item--next .road-dot { background: var(--bg); border: 2px solid var(--ac); }
.road-item--next .road-card { background: var(--card); border: 1px solid rgba(255,255,255,.1); }
.road-item--next .pill-tag { background: transparent; color: var(--ac); border: 1px solid color-mix(in srgb, var(--ac) 50%, transparent); }
.road-item--next .road-title { color: var(--text); }
.road-item--next .road-desc { color: rgba(242,245,247,.62); }

.road-item--later .road-dot { background: var(--bg); border: 2px dashed rgba(242,245,247,.45); }
.road-item--later .road-card { background: rgba(255,255,255,.02); border: 1px dashed rgba(255,255,255,.16); }
.road-item--later .pill-tag { background: transparent; color: rgba(242,245,247,.6); border: 1px solid rgba(255,255,255,.2); }
.road-item--later .road-title { color: rgba(242,245,247,.85); }
.road-item--later .road-desc { color: rgba(242,245,247,.55); }

.road-item--completed .road-dot { background: var(--green); border: 2px solid var(--green); }
.road-item--completed .road-card { background: rgba(46,230,118,.04); border: 1px solid rgba(46,230,118,.25); }
.road-item--completed .pill-tag { background: rgba(46,230,118,.15); color: var(--green); border: 1px solid transparent; }
.road-item--completed .road-title { color: rgba(242,245,247,.8); }
.road-item--completed .road-desc { color: rgba(242,245,247,.5); }

.suggest-bar {
  background: var(--card); border: 1px solid rgba(255,255,255,.08); border-radius: 22px;
  padding: 26px; display: flex; justify-content: space-between; align-items: center;
  gap: 18px; flex-wrap: wrap;
}
.suggest-bar .btn-accent { padding: 13px 24px; font-size: 14px; flex: none; }

/* ---- updates page ---- */
.feed-row {
  display: grid; grid-template-columns: minmax(110px, 140px) 1fr;
  gap: clamp(14px, 3vw, 28px); padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.feed-date { font-family: var(--mono); font-size: 12px; color: rgba(242,245,247,.45); padding-top: 4px; }
.feed-body { display: flex; flex-direction: column; gap: 9px; align-items: flex-start; }
.feed-title { font-size: 19px; font-weight: 700; letter-spacing: -.01em; }
.feed-desc { font-size: 14.5px; line-height: 1.6; color: rgba(242,245,247,.6); text-wrap: pretty; }

/* ---- about page ---- */
.about-photo { width: min(440px, 100%); aspect-ratio: 4 / 5; border-radius: 32px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); position: relative; }
.about-body { margin: 0; font-size: 17px; line-height: 1.65; color: rgba(242,245,247,.7); max-width: 520px; text-wrap: pretty; }
.about-sub { margin: 0; font-size: 15.5px; line-height: 1.65; color: rgba(242,245,247,.55); max-width: 520px; text-wrap: pretty; }

/* ---- faq ---- */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--card); border: 1px solid rgba(255,255,255,.09); border-radius: 18px; overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: color-mix(in srgb, var(--ac) 40%, transparent); }
.faq-q {
  cursor: pointer; padding: 20px 24px; width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  background: none; border: 0; color: var(--text);
}
.faq-q span:first-child { font-size: 16px; font-weight: 650; }
.faq-chev {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: rgba(242,245,247,.6);
  transform: rotate(0deg); transition: transform .25s;
}
.faq-item.open .faq-chev { color: var(--ac); transform: rotate(180deg); }
.faq-a { display: none; padding: 0 24px 22px; font-size: 14.5px; line-height: 1.65; color: rgba(242,245,247,.65); text-wrap: pretty; }
.faq-item.open .faq-a { display: block; animation: wooFadeUp .25s ease both; }

/* ---- contact page ---- */
.form-card { background: var(--card); border: 1px solid rgba(255,255,255,.09); border-radius: 28px; padding: clamp(24px, 3vw, 36px); }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 12.5px; font-weight: 600; letter-spacing: .04em; color: rgba(242,245,247,.6); }
.field input, .field textarea {
  padding: 14px 18px; border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.04);
  color: var(--text); font-size: 15px; outline: none;
}
.field input:focus, .field textarea:focus { border-color: color-mix(in srgb, var(--ac) 55%, transparent); }
.field textarea { resize: vertical; min-height: 120px; }
.form-submit { align-self: flex-start; padding: 15px 30px; background: var(--ac); color: var(--ink); border-radius: 100px; font-weight: 700; font-size: 15px; border: 0; cursor: pointer; transition: transform .15s; }
.form-submit:hover { transform: translateY(-2px); }
.form-submit[disabled] { opacity: .6; cursor: default; transform: none; }
.form-success { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; padding: 12px 0; animation: wooFadeUp .3s ease both; }
.success-check {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(46,230,118,.14); border: 1px solid rgba(46,230,118,.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 20px;
}
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 24px; align-items: start; }
.aside-card { background: var(--card); border: 1px solid rgba(255,255,255,.09); border-radius: 24px; padding: 28px; display: flex; flex-direction: column; gap: 10px; }
.contact-email-link { font-size: 16px; font-weight: 650; color: var(--text); }
.contact-email-link:hover { color: var(--ac); }

/* ---- footer ---- */
.site-footer { border-top: 1px solid rgba(255,255,255,.08); background: var(--bg-footer); }
.footer-inner { max-width: 1240px; margin: 0 auto; padding: clamp(48px, 6vw, 72px) var(--gutter) 36px; display: flex; flex-direction: column; gap: 44px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 36px; }
.footer-brand { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.footer-brand img { height: 36px; width: auto; }
.footer-tagline { font-size: 14px; line-height: 1.6; color: rgba(242,245,247,.5); max-width: 280px; text-wrap: pretty; }
.footer-lights { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; color: rgba(242,245,247,.35); }
.footer-lights .dot { width: 7px; height: 7px; border-radius: 50%; flex: none; }
.dot--red { background: var(--red); }
.dot--green { background: var(--green); }
.footer-col { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer-col-title { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; color: rgba(242,245,247,.4); }
.footer-link { cursor: pointer; font-size: 14.5px; color: rgba(242,245,247,.75); }
.footer-link:hover { color: var(--ac); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-copy { font-size: 12.5px; color: rgba(242,245,247,.35); }
.footer-weekly { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; color: rgba(242,245,247,.3); }

/* ---- media slots (photo or fallback) ---- */
.media-slot { position: relative; width: 100%; height: 100%; }
.media-slot .media-fallback { position: absolute; inset: 0; }

/* ---- hero duel (3D fencing mini-game) ---- */
.duel-canvas { position: absolute; inset: 0; width: 100% !important; height: 100% !important; display: block; }
/* phones: the hero grows tall with stacked copy — pin the duel to its top band */
@media (max-width: 700px) {
  #duel-mount { bottom: auto; height: min(60vh, 540px); }
  .duel-status { top: 205px; }
  .duel-hint { top: 330px; }
}
.duel-status {
  position: absolute; top: 15%; left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: clamp(13px, 1.5vw, 18px);
  letter-spacing: .34em; color: var(--text); white-space: nowrap;
  text-shadow: 0 0 26px color-mix(in srgb, var(--ac) 65%, transparent);
  opacity: 0; transition: opacity .25s; pointer-events: none; z-index: 3;
}
.duel-status.show { opacity: 1; }
.duel-hint {
  position: absolute; top: 23%; left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .22em;
  color: rgba(242,245,247,.6);
  padding: 8px 15px; border-radius: 100px;
  background: rgba(10,12,14,.4); border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(6px);
  opacity: 0; transition: opacity .4s; pointer-events: none; z-index: 3;
}
.duel-hint.show { opacity: 1; animation: wooPulse 2.6s ease infinite; }
.duel-hint.gone { opacity: 0 !important; animation: none; }
.duel-sound {
  position: absolute; top: 18px; right: 18px; z-index: 4;
  font-family: var(--mono); font-size: 10px; letter-spacing: .18em;
  padding: 9px 14px; border-radius: 100px; cursor: pointer;
  color: rgba(242,245,247,.7); background: rgba(10,12,14,.45);
  border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(8px);
  transition: color .2s, border-color .2s;
}
.duel-sound:hover { color: var(--text); }
.duel-sound.on { color: var(--ac); border-color: color-mix(in srgb, var(--ac) 55%, transparent); }
.duel-score { font-family: var(--mono); letter-spacing: .1em; }
.duel-score b { font-weight: 600; }
.duel-score .ds-red { color: var(--red); }
.duel-score .ds-green { color: var(--green); }
.duel-move {
  display: none; position: absolute; z-index: 4; top: min(38%, 220px);
  width: 46px; height: 46px; border-radius: 50%;
  align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 15px; color: rgba(242,245,247,.8);
  background: rgba(10,12,14,.5); border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px); cursor: pointer;
  touch-action: none; user-select: none; -webkit-user-select: none;
}
#duel-back { left: 14px; }
#duel-fwd { right: 14px; }
.duel-move:active { background: color-mix(in srgb, var(--ac) 25%, rgba(10,12,14,.5)); border-color: var(--ac); }
@media (pointer: coarse), (max-width: 700px) {
  .duel-move { display: flex; }
}
.light.flash { animation: lightFlash .9s ease both; }
@keyframes lightFlash {
  0%, 100% { transform: scale(1); }
  18% { transform: scale(2.3); filter: brightness(2); }
  55% { transform: scale(1.5); filter: brightness(1.6); }
}
