/* ============================== FONTS (self-hosted) ================= */
/* Variable woff2 (latin + latin-ext) self-hosted from reelio.in. One file
   per family/subset covers the full weight range, so no third-party request. */
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 400 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(assets/fonts/bricolage-grotesque-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 400 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(assets/fonts/bricolage-grotesque-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url(assets/fonts/geist-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url(assets/fonts/geist-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(assets/fonts/jetbrains-mono-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(assets/fonts/jetbrains-mono-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ============================== TOKENS ============================== */
:root {
  --navy: #050671;
  --navy-2: #081D61;
  --navy-soft: #DAE0F7;
  --ink: #0E0F2C;
  --ink-soft: #4A4D6E;
  --paper: #FFFCF2;
  --canvas: #FFFFFC;
  --paper-warm: #FFF4D6;
  --yellow: #FFD344;
  --yellow-cream: #FCF6D8;
  --orange: #FE9C2E;

  --content: 1200px;
  --gutter: 156px;

  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 6px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; overflow-x: clip; }
body {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  background: var(--canvas);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }
::selection { background: var(--yellow); color: var(--ink); }

.wrap { max-width: var(--content); margin: 0 auto; padding: 0 28px; }

/* ============================== BUTTONS ============================= */
.btn-store {
  display: inline-flex; align-items: center; gap: 8px;
  height: 34px;
  padding: 0 16px;
  background: var(--navy);
  color: var(--paper);
  border-radius: 4px;
  font-family: 'Geist', system-ui, sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  border: 1px solid var(--navy);
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}
.btn-store:hover { filter: brightness(1.1); transform: translateY(-1px); box-shadow: 2px 2px 0 0 #FFD344; }
.btn-store svg { width: 18px; height: 18px; }

/* ============================== HEADER ============================== */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: var(--canvas);
  border-bottom: 1px solid var(--navy);
}
header.site .row {
  display: flex; align-items: center; justify-content: space-between;
  height: 54px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img.wordmark { height: 26px; width: auto; }
.nav-links {
  display: flex; gap: 24px; align-items: center;
}
.nav-links a {
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.btn-store { color: var(--paper); }
.nav-links a.btn-store:hover { color: var(--paper); }
@media (max-width: 900px) { .nav-links a:not(.btn-store) { display: none; } }

/* ============================== HERO ================================ */
.hero { padding: 56px 0 0; background: var(--canvas); }
.hero-grid {
  display: grid;
  grid-template-columns: 794.667fr 389.333fr;
  gap: 16px;
  position: relative;
}
.hero-card {
  background: var(--paper);
  border: 2px solid var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 0 var(--navy);
  position: relative;
  overflow: hidden;
}

/* HERO, top-left big card */
.hero-card.big {
  padding: 32px 32px 24px;
  display: flex; flex-direction: column;
  justify-content: center;
  min-height: 316px;
  position: relative;
}
.hero-card.big h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 0 0 16px;
  max-width: 720px;
}
.hero-card.big h1 .orange { color: var(--orange); }
.hero-card.big p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 460px;
  margin: 0 0 24px;
}
.hero-card.big .wave-deco {
  position: absolute;
  right: -10px; bottom: -10px;
  width: 360px;
  pointer-events: none;
  color: var(--navy);
}
.hero-grid .can-deco {
  position: absolute;
  top: -36px;
  width: 140px;
  height: auto;
  pointer-events: none;
  z-index: 2;
  left: calc(794.667 / 1184 * 100% - 110px);
}

/* HERO, top-right video card */
.hero-card.video {
  padding: 16px;
  display: flex; flex-direction: column;
  gap: 12px;
}
.hero-card.video .app-label {
  display: flex; align-items: center; gap: 6px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}
.hero-card.video .app-label img { height: 16px; width: auto; }
.video-frame {
  position: relative;
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 357 / 205;
  background: #000;
  box-shadow: 0 1px 2px rgba(10,13,18,0.16), 0 1px 3px rgba(10,13,18,0.2);
}
.video-frame .scrub-stage { position: absolute; inset: 0; overflow: hidden; }
.video-frame .scrub-stage img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 0.05s ease-out;
}
.video-frame .scrub-stage img.is-on { opacity: 1; }
.scrub-tape {
  position: absolute;
  top: 6px; left: 8px;
  background: var(--yellow);
  border: 1px solid var(--ink);
  padding: 3px 10px;
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink);
  line-height: 1.45;
  z-index: 2;
}
.scrub-segs {
  position: absolute;
  top: 8px; right: 10px;
  display: flex; gap: 3px;
  z-index: 2;
}
.scrub-segs span {
  width: 14px; height: 3px;
  background: rgba(255,255,255,0.25);
  border-radius: 1px;
}
.scrub-segs span.is-on { background: var(--yellow); }

/* Cursor hint that slides across the scrub frame */
.video-frame .scrub-cursor {
  position: absolute;
  width: 48px; height: 48px;
  pointer-events: none;
  z-index: 4;
  top: 70%;
  left: 10%;
  opacity: 0;
  transform: translate(-50%, -50%) rotate(35deg);
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.5));
}
.video-frame.show-cursor-hint .scrub-cursor {
  animation: scrub-cursor-hint 2.8s cubic-bezier(.4,0,.2,1) 0.4s infinite;
}
@keyframes scrub-cursor-hint {
  0%   { opacity: 0; left: 10%; }
  15%  { opacity: 1; }
  85%  { opacity: 1; left: 90%; }
  100% { opacity: 0; left: 90%; }
}
@media (prefers-reduced-motion: reduce) {
  .video-frame.show-cursor-hint .scrub-cursor { animation: none; opacity: 0; }
}
.video-meta {
  display: flex; flex-direction: column; gap: 4px;
  margin-top: 4px;
}
.video-meta .ttl {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--navy);
  line-height: 1;
}
.video-meta .meta-row {
  display: flex; gap: 8px; align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: #65696a;
}
.video-meta .dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: #65696a;
}

/* HERO, bottom row */
.hero-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.hero-bottom .hero-card { padding: 24px; min-height: 142px; }

/* Stat card */
.stat-card {
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  gap: 4px;
}
.stat-card .lbl-top {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.stat-card .big-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 52px;
  line-height: 1;
  color: var(--orange);
  letter-spacing: -0.025em;
  margin: 4px 0;
}
.stat-card .lbl-bot {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink-soft);
}

/* Sun + 100% local card */
.local-card { display: flex; align-items: center; gap: 16px; }
.local-card .sunset { width: 94px; height: 94px; flex-shrink: 0; }
.local-card .card-h {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 24px;
  margin: 0 0 4px;
  color: var(--ink);
  line-height: 1;
}
.local-card p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.35;
}

/* Organize / sidebar card */
.organize-card {
  display: grid;
  grid-template-columns: 214px 1fr;
  padding: 0 !important;
  align-items: stretch;
  overflow: hidden;
}
.organize-card .sidebar-mock {
  background: #F9F9F9;
  border-right: 1px solid #E5E5E5;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.organize-card .sidebar-mock .sidebar-illu {
  display: block;
  width: 100%;
  height: auto;
}
.organize-card .sidebar-mock .sidebar-star {
  position: absolute;
  left: 26px;
  top: 14px;
  width: 16px;
  height: 16px;
}
.sidebar-mock .item {
  display: flex; align-items: center; gap: 8px;
  height: 30px;
  padding: 0 10px;
  border-radius: 4px;
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  color: rgba(0,0,0,0.9);
}
.sidebar-mock .item.indent { padding-left: 32px; position: relative; }
.sidebar-mock .item.indent::before {
  content: '';
  position: absolute; left: 16px; top: 50%;
  width: 8px; height: 8px;
  transform: translateY(-50%);
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'><path d='M0.5 0.5 L4 4 L0.5 7.5' fill='none' stroke='rgba(0,0,0,0.6)' stroke-width='1.3'/></svg>") no-repeat center / contain;
}
.sidebar-mock .item.tag-row .swatch {
  width: 8px; height: 8px; border-radius: 50%;
  background: #FCD668;
  flex-shrink: 0;
  margin-right: 6px;
}
.sidebar-mock .item.tag-row .plus {
  font-family: 'Geist', sans-serif;
  margin-right: 6px;
  color: rgba(0,0,0,0.6);
}
.sidebar-mock .item img { width: 16px; height: 16px; }
.organize-card .text {
  padding: 24px;
  display: flex; flex-direction: column; justify-content: center;
  gap: 4px;
}
.organize-card .text .card-h {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 24px; color: var(--ink);
  margin: 0; line-height: 1;
}
.organize-card .text p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--ink-soft);
  margin: 0; line-height: 1.35;
}

/* ============================== MARQUEE ============================= */
.marquee {
  background: var(--canvas);
  border-top: 1px solid var(--yellow);
  border-bottom: 1px solid var(--yellow);
  margin-top: 56px;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex; align-items: center;
  gap: 40px;
  padding: 10px 24px;
  animation: marq 40s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex; align-items: baseline; gap: 8px;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.marquee-item .lead {
  font-weight: 700; font-size: 15px; color: var(--navy);
}
.marquee-item .sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--ink-soft);
}
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================== SECTIONS ============================ */
section { padding: 56px 0; }

.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}
.section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 8px 0 0;
}
.section-sub {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  color: var(--ink-soft);
  margin: 8px 0 0;
  line-height: 1.5;
  text-wrap: pretty;
}

/* WALK THROUGH */
.walk-shot {
  position: relative;
  border: 1px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 6px 6px 0 var(--ink);
}
.walk-shot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius-lg) - 1px);
}

/* Hotspots on the walk-through screenshot */
.walk-hotspots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.walk-spot {
  position: absolute;
  width: 14px; height: 14px;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  cursor: pointer;
  background: none; border: 0; padding: 0;
  z-index: 2;
}
.walk-spot::before,
.walk-spot::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.walk-spot::before {
  width: 10px; height: 10px;
  background: var(--navy);
  box-shadow: 0 0 0 2px var(--paper);
  z-index: 2;
}
.walk-spot::after {
  width: 10px; height: 10px;
  background: var(--navy);
  opacity: 0.55;
  animation: walk-pulse 1.8s ease-out infinite;
  z-index: 1;
}
@keyframes walk-pulse {
  0%   { transform: translate(-50%, -50%) scale(1);   opacity: 0.55; }
  80%  { transform: translate(-50%, -50%) scale(3.4); opacity: 0;    }
  100% { transform: translate(-50%, -50%) scale(3.4); opacity: 0;    }
}
.walk-tooltip {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-100% - 18px));
  background: var(--paper);
  border: 2px solid var(--navy);
  color: var(--navy);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  filter: blur(2px);
  transition: opacity 0.4s ease-out, filter 0.4s ease-out;
  z-index: 3;
  box-shadow: 0 3px 0 var(--navy);
}
.walk-spot.is-active .walk-tooltip,
.walk-spot:hover .walk-tooltip,
.walk-spot:focus-visible .walk-tooltip { opacity: 1; filter: blur(0); }
.walk-spot:hover::after { animation-play-state: paused; opacity: 0; }
.walk-spot.flip-down .walk-tooltip { transform: translate(-50%, 28px); }
.walk-spot.align-left .walk-tooltip { left: 0; transform: translate(0, calc(-100% - 18px)); }
.walk-spot.align-left.flip-down .walk-tooltip { transform: translate(0, 28px); }
.walk-spot.align-right .walk-tooltip { left: auto; right: 0; transform: translate(0, calc(-100% - 18px)); }
.walk-spot.align-right.flip-down .walk-tooltip { transform: translate(0, 28px); }
@media (prefers-reduced-motion: reduce) {
  .walk-spot::after { animation: none; opacity: 0; }
}

/* ============================== THREE THINGS ======================== */
.three { padding-top: 56px; }
.three-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 43px;
  margin-top: 40px;
}
.three-col { display: flex; flex-direction: column; align-items: center; }
.three-deco {
  width: 340px;
  height: 88px;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0 0 0 16px;
}
.three-deco .palm {
  width: 75px; height: 88px;
  flex-shrink: 0;
  display: block;
  transform: translateY(1px);
}
.three-deco .wave-bumps {
  display: block;
  height: 42px;
  width: auto;
  flex-shrink: 0;
}
.three-deco .bump {
  fill: currentColor;
}
.three-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex; flex-direction: column;
  gap: 24px;
  width: 100%;
  min-height: 356px;
}
.three-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0 0 8px;
  line-height: 1;
}
.three-card p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.35;
}
.three-card.navy { border: 1px solid var(--navy); box-shadow: 0 4px 0 var(--navy); color: var(--navy); }
.three-card.yellow { border: 1px solid var(--yellow); box-shadow: 0 4px 0 var(--yellow); }
.three-card.orange { border: 1px solid var(--orange); box-shadow: 0 4px 0 var(--orange); }
.three-col.navy { color: var(--navy); }
.three-col.yellow { color: var(--yellow); }
.three-col.orange { color: var(--orange); }

/* Card 1, Hover-scrub previews thumbnails strip */
.thumbs-strip {
  display: flex; gap: 2px;
  padding: 2px;
  border-radius: var(--radius-md);
  border: 1px solid var(--yellow);
  overflow: hidden;
  height: 188px;
}
.thumbs-strip > div {
  flex: 1; background-size: cover; background-position: center;
  border-radius: 2px;
}

/* Card 2, Color tags sidebar mock (reuses the Organize illustration) */
.tags-mock {
  position: relative;
  background: #F9F9F9;
  border: 2px solid var(--navy);
  border-radius: 8px;
  height: 188px;
  overflow: hidden;
  display: flex; align-items: stretch; justify-content: stretch;
}
.tags-mock .tags-illu {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left top;
}
.tags-mock .tags-star {
  position: absolute;
  /* SVG is 214×142, rendered at 188px tall → scale ×1.324.
     Star sits at SVG (26,14) sized 16×16. */
  left: 34px;
  top: 18px;
  width: 21px;
  height: 21px;
  pointer-events: none;
}

/* Card 3, Drag into editor: composite bleeds to bottom-right card edge */
.three-card.orange { overflow: hidden; }
.editor-vis {
  position: relative;
  height: 220px;
  overflow: visible;
}
.editor-vis .premiere {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: auto;
  height: auto;
  max-width: calc(100% + 48px);
  max-height: calc(100% + 24px);
  display: block;
}

/* ============================== ARCADE ============================== */
.arcade {
  background: var(--navy);
  color: var(--paper);
  padding: 56px 0;
}
.arcade .section-eyebrow { color: var(--yellow); }
.arcade .section-title { color: var(--paper); }
.arcade .section-sub { color: var(--navy-soft); }
.arcade-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 40px;
}
.arcade-card { display: flex; flex-direction: column; gap: 8px; }
.arcade-card .video-frame {
  aspect-ratio: 369 / 205;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(10,13,18,0.16), 0 1px 3px rgba(10,13,18,0.2);
}
.arcade-card .video-meta .ttl { color: var(--paper); }
.arcade-card .video-meta .meta-row,
.arcade-card .video-meta .dot { color: var(--navy-soft); background-color: var(--navy-soft); }
.arcade-card .video-meta .meta-row { background: transparent; }
.arcade-card .video-meta .meta-row .dot { background: var(--navy-soft); }

/* ============================== WORKFLOW ============================ */
.workflow {
  background: var(--navy);
  color: var(--paper);
  padding: 0 0 56px;
}
.workflow .section-eyebrow { color: var(--yellow); }
.workflow .section-title { color: var(--paper); }
.workflow .section-sub { color: var(--navy-soft); }
.workflow-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 40px;
}
.editor-card {
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 24px;
  display: flex; flex-direction: column; align-items: center;
  gap: 16px;
  position: relative;
  min-height: 164px;
}
.editor-card .pill {
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  background: var(--yellow);
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 4px 8px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.editor-card .logo {
  height: 57px;
  display: flex; align-items: center; justify-content: center;
}
.editor-card .logo img { height: 100%; width: auto; }
.editor-card .name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--paper);
  text-align: center;
}
.editor-card .sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--navy-soft);
  text-align: center;
  margin-top: 6px;
}

/* Premiere SVG logo */
.pr-logo {
  width: 57px; height: 57px;
  background: linear-gradient(135deg, #2A0634 0%, #2A0634 100%);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 26px;
  color: #EA77FF;
  letter-spacing: -0.02em;
}

/* ============================== PACKS =============================== */
.packs { padding: 56px 0; }
.packs-list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 39px;
  row-gap: 0;
}
.pack-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(14,15,44,0.15);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink);
}
.pack-item .check,
.price-list .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--yellow);
  border: 2px solid var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-sizing: border-box;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  color: var(--navy);
  padding-bottom: 1px;
}
.pack-item b { font-weight: 700; }
.pack-item .meta { font-weight: 400; color: var(--ink); }

/* ============================== FAQ ================================= */
.faq {
  background: var(--paper-warm);
  border-top: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
  padding: 56px 0;
}
.faq .section-title { color: var(--navy); }
.faq-grid {
  margin-top: 25px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.faq-col { display: flex; flex-direction: column; gap: 16px; }
details.qa {
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 12px;
  box-shadow: 0 4px 0 var(--ink);
  padding: 16px 24px;
}
details.qa[open] { background: var(--yellow); }
details.qa summary {
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.2;
}
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary::after {
  content: '+';
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  color: var(--ink);
}
details.qa[open] summary::after { content: '–'; }
details.qa p {
  font-size: 16px;
  color: var(--ink);
  margin: 12px 0 0;
  line-height: 1.3;
}

/* ============================== CTA ================================= */
.cta {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--navy);
  background: radial-gradient(circle at center, #FFDC85 0%, var(--yellow) 100%);
  padding: 56px 0 64px;
  text-align: center;
}
.cta-inner {
  position: relative;
  max-width: 665px;
  margin: 0 auto;
  padding: 0 28px;
  z-index: 2;
}
.cta h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 88px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 8px;
}
.cta p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  color: var(--ink);
  margin: 0 auto 24px;
  max-width: 540px;
  line-height: 1.2;
}
.cta .can {
  position: absolute;
  width: 200px; height: 200px;
  background-image: url("assets/reelio-logo.svg");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}
/* Left logo: tucked into the bottom-left corner, tilted out, rising from below */
.cta .can-1 { left: 22%; margin-left: -130px; bottom: -90px; transform: rotate(20deg); }
/* Right logo: mirror of the left, bottom-right corner */
.cta .can-2 { left: 78%; margin-left: -130px; bottom: -90px; transform: rotate(-31deg); }
/* Center logo: bottom-anchored, only the top peeks up */
.cta .can-3 { left: 50%; margin-left: -130px; bottom: -145px; transform: rotate(-10deg); }

/* ============================== FOOTER ============================== */
footer.site {
  background: var(--navy);
  color: #FFFFFF;
  padding: 28px 0;
  position: relative;
  z-index: 2;
}
footer.site .row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
footer .brand-line {
  display: flex; align-items: center; gap: 18px;
}
footer .brand-line img.wordmark {
  height: 22px;
  width: auto;
  display: block;
  filter: none;
}
footer .brand-line a {
  display: inline-flex;
  transition: opacity 0.15s ease;
}
footer .brand-line a:hover { opacity: 0.82; }
footer .brand-line span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: #FFFFFF;
  letter-spacing: 0.02em;
}
footer .links {
  display: flex; gap: 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
}
footer .links a { color: #FFFFFF; }
footer .links a:hover { color: var(--yellow); }

/* ============================== RESPONSIVE ========================== */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-bottom { grid-template-columns: 1fr; }
  .three-grid { grid-template-columns: 1fr; gap: 60px; }
  .workflow-grid { grid-template-columns: 1fr; }
  .packs-list { grid-template-columns: 1fr; }
  .arcade-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .cta h2 { font-size: 56px; }
  .section-title { font-size: 38px; }
  .hero-card.big h1 { font-size: 42px; }
}

/* ===================== PRODUCTION A11Y ENHANCEMENTS ===================== */
/* Visually neutral: the default resting render is unchanged. These rules only
   take effect for users who request reduced motion or navigate by keyboard. */

/* Pause the decorative marquee for reduced-motion users (WCAG 2.2.2). */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* Keyboard focus ring. :focus-visible does not fire on mouse clicks, so
   resting/hover visuals are untouched; the outline follows each element's
   own border-radius. */
:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}
.arcade :focus-visible,
.workflow :focus-visible,
footer.site :focus-visible {
  outline-color: var(--yellow);
}

/* ============================== LEGAL / PROSE ====================== */
.legal {
  background: var(--canvas);
  padding: 56px 0 88px;
}
.legal .wrap { max-width: 760px; }
.legal-back {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.legal-back:hover { color: var(--navy); }
.legal-head {
  border-bottom: 1px solid var(--navy);
  padding-bottom: 28px;
}
.legal-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 52px;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 10px 0 0;
}
.legal-updated {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--ink-soft);
  margin: 16px 0 0;
}
.legal-lede {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 18px 0 0;
  max-width: 62ch;
  text-wrap: pretty;
}
.legal-body h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 23px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 40px 0 0;
}
.legal-body p,
.legal-body li {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  max-width: 68ch;
  text-wrap: pretty;
}
.legal-body p { margin: 12px 0 0; }
.legal-body ul { margin: 12px 0 0; padding-left: 22px; }
.legal-body li { margin-top: 6px; }
.legal-body li::marker { color: var(--orange); }
.legal-body strong { color: var(--navy); font-weight: 700; }
.legal-body a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}
.legal-body a:hover { text-decoration-color: var(--navy); }

@media (max-width: 1100px) {
  .legal-title { font-size: 38px; }
}

/* Feature cards embedded inside a guide/article: break out wider than the 760px prose */
.guide-features {
  width: min(92vw, 980px);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin: 36px 0 12px;
}
.guide-features .three-grid { gap: 28px; margin-top: 0; align-items: start; }
@media (max-width: 1100px) {
  .guide-features .three-grid { gap: 40px; }
}
/* CTA button inside the guide prose: undo the .legal-body link styling, center it */
.legal-body a.btn-store { color: var(--paper); text-decoration: none; }
.legal-body a.btn-store:hover { color: var(--paper); }
.guide-cta { text-align: center; margin: 32px 0 4px; }

/* ============================== PRICING =========================== */
.pricing { background: var(--canvas); padding: 56px 0 64px; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: var(--paper);
  border: 2px solid var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 0 var(--navy);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.price-card.unlimited { border-color: var(--orange); box-shadow: 0 8px 0 var(--orange); }
.price-badge {
  position: absolute; top: -14px; right: 24px;
  background: var(--yellow); border: 2px solid var(--navy); border-radius: 999px;
  padding: 4px 12px;
  font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 11px;
  letter-spacing: 0.08em; color: var(--navy);
  transform: rotate(-2deg);
}
.price-eyebrow {
  font-family: 'JetBrains Mono', monospace; font-weight: 500; font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft);
}
.price-card.unlimited .price-eyebrow { color: var(--orange); }
.price-amount { display: flex; align-items: baseline; gap: 8px; margin-top: 10px; }
.price-num {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 56px;
  line-height: 1; letter-spacing: -0.025em; color: var(--navy);
}
.price-per { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--ink-soft); }
.price-note {
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 14px; line-height: 1.4;
  color: var(--ink-soft); margin: 10px 0 0;
}
.price-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.price-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 15px; line-height: 1.4; color: var(--ink);
}
.price-list li b { font-weight: 700; color: var(--navy); }
.price-card .btn-store { width: 100%; justify-content: center; height: 42px; font-size: 15px; }
.price-card .btn-store:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; }
.price-fineprint {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--ink-soft);
  text-align: center; margin: 28px 0 0;
}

@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .price-card { padding: 28px 22px; }
  /* Let the store button wrap so it can't force a min-content overflow on narrow phones */
  .price-card .btn-store {
    white-space: normal;
    height: auto;
    min-height: 42px;
    padding-top: 9px;
    padding-bottom: 9px;
    line-height: 1.25;
  }
}
