:root {
  --bg: #1a1710;
  --bg-2: #211e14;
  --bg-3: #2a2618;
  --ink: #e8dfc8;
  --ink-strong: #fff6dc;
  --muted: #9a8d79;
  --muted-2: #706654;
  --line: rgba(232, 223, 200, 0.16);
  --line-strong: rgba(232, 223, 200, 0.28);
  --accent: #e04820;
  --accent-deep: #a52f1b;
  --accent-soft: rgba(224, 72, 32, 0.16);
  --olive: #8a9e4a;
  --olive-soft: rgba(138, 158, 74, 0.18);
  --panel: rgba(33, 30, 20, 0.88);
  --shadow: 0 22px 56px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(224, 72, 32, 0.05), transparent 260px),
    var(--bg);
  font-family: "Barlow Condensed", "Avenir Next Condensed", "Arial Narrow", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.045;
  background-image:
    linear-gradient(rgba(232, 223, 200, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 223, 200, 0.5) 1px, transparent 1px);
  background-size: 56px 56px;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 2px solid var(--line);
  background: rgba(26, 23, 16, 0.94);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  border-left: 2px solid var(--line);
  border-right: 2px solid var(--line);
  padding: 0 22px;
  text-decoration: none;
  color: var(--ink-strong);
  font-family: "Bebas Neue", "Impact", "Arial Narrow", sans-serif;
  font-size: 26px;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-logo {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
  filter: invert(1) sepia(0.25) saturate(0.8);
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: var(--bg);
  background: var(--accent);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.1;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: stretch;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  border-left: 2px solid var(--line);
  padding: 0 18px;
  text-decoration: none;
}

.nav-links a:last-child {
  border-right: 2px solid var(--line);
}

.nav-links a:hover {
  color: var(--ink);
  background: var(--bg-2);
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  gap: 0;
  align-items: stretch;
  min-height: 620px;
  padding-top: 0;
  padding-bottom: 0;
  border-left: 2px solid var(--line);
  border-right: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
}

.hero > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: 54px 48px 48px;
  border-right: 2px solid var(--line);
}

.hero h1,
.page-title h1 {
  margin: 0;
  max-width: 820px;
  color: var(--ink-strong);
  font-family: "Bebas Neue", "Impact", "Arial Narrow", sans-serif;
  font-size: clamp(58px, 9vw, 122px);
  font-weight: 400;
  letter-spacing: 0.035em;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero h1 em,
.page-title h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero p,
.page-title p {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.page-title p.pricing-note {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  border-left: 4px solid var(--accent);
  padding: 8px 12px;
  background: rgba(232, 72, 32, 0.08);
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent);
  border-radius: 2px;
  padding: 0 18px;
  background: var(--accent);
  color: var(--bg);
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s;
}

.button:hover {
  transform: translateY(-1px);
  background: #f15a2d;
  border-color: #f15a2d;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.button.secondary:hover {
  color: var(--ink-strong);
  border-color: var(--accent);
}

.button.small {
  min-height: 38px;
  padding: 0 13px;
  font-size: 11px;
}

.hero-visual {
  position: relative;
  min-height: 430px;
  background: var(--bg-2);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background:
    linear-gradient(90deg, transparent 0 48px, rgba(232, 223, 200, 0.08) 48px 50px, transparent 50px 100%),
    linear-gradient(0deg, transparent 0 48px, rgba(232, 223, 200, 0.08) 48px 50px, transparent 50px 100%);
  background-size: 50px 50px;
}

.studio-panel,
.release-dossier {
  position: absolute;
  inset: 30px;
  display: grid;
  align-content: start;
  gap: 22px;
  border: 2px solid var(--line-strong);
  border-radius: 2px;
  background: rgba(26, 23, 16, 0.74);
  box-shadow: var(--shadow);
}

.studio-panel {
  justify-items: center;
  padding: 34px;
  text-align: center;
}

.release-dossier {
  padding: 20px;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 14px;
  overflow: hidden;
}

.dossier-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 2px solid var(--line);
  padding-bottom: 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dossier-status {
  color: var(--accent);
}

.dossier-apps {
  display: grid;
  gap: 6px;
  min-height: 0;
}

.dossier-app {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 4px 0 6px;
  text-decoration: none;
}

.dossier-app:hover .dossier-app-name {
  color: var(--ink-strong);
}

.dossier-app img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 9px 18px rgba(0, 0, 0, 0.3);
}

.dossier-app-name {
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.05;
}

.dossier-app-note,
.dossier-app-platform {
  color: var(--muted-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dossier-footer {
  display: none;
}

.hero-logo {
  width: min(190px, 56%);
  height: auto;
  display: block;
  filter: invert(1) sepia(0.25) saturate(0.8);
}

.studio-panel h2 {
  margin: 0 0 8px;
  color: var(--ink-strong);
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.studio-panel p {
  margin: 0;
  color: var(--muted);
}

.signal-list {
  display: flex;
  max-width: 360px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.signal-list span {
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--bg-2);
  padding: 7px 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.device-stack {
  position: absolute;
  inset: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 18px;
}

.device {
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101820;
  padding: 18px;
  box-shadow: 0 26px 42px rgba(0, 0, 0, 0.24);
}

.device:nth-child(2) {
  transform: translateY(34px);
}

.screen {
  height: 100%;
  min-height: 264px;
  border-radius: 6px;
  background: var(--bg-2);
  padding: 18px;
}

.app-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: block;
  object-fit: cover;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}

.screen h2 {
  margin: 18px 0 8px;
  font-size: 20px;
  line-height: 1.1;
}

.screen p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.line-list {
  margin-top: 24px;
  display: grid;
  gap: 9px;
}

.line-list span {
  display: block;
  height: 9px;
  border-radius: 2px;
  background: var(--line);
}

.line-list span:nth-child(2) {
  width: 72%;
  background: var(--olive-soft);
}

.line-list span:nth-child(3) {
  width: 48%;
  background: var(--accent-soft);
}

.band {
  background: var(--bg-2);
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink-strong);
  font-family: "Bebas Neue", "Impact", "Arial Narrow", sans-serif;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 0.95;
  text-transform: uppercase;
}

.section-heading p {
  margin: 0;
  max-width: 560px;
  color: var(--muted);
}

.app-grid,
.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.app-card,
.legal-card,
.note-panel {
  border: 2px solid var(--line);
  border-radius: 2px;
  background: var(--panel);
  padding: 22px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.app-card {
  display: flex;
  min-height: 282px;
  flex-direction: column;
  gap: 18px;
  text-decoration: none;
  transition: border-color 0.18s, transform 0.18s, background 0.18s;
}

.app-card:hover,
.legal-card:hover {
  border-color: var(--accent);
  background: rgba(42, 38, 24, 0.94);
}

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

.app-card h3,
.legal-card h3 {
  margin: 0;
  color: var(--ink-strong);
  font-size: 25px;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.app-card h3 a,
.legal-card h3 a {
  color: inherit;
  text-decoration: none;
}

.app-card h3 a:hover,
.legal-card h3 a:hover {
  color: var(--ink-strong);
}

.app-card p,
.legal-card p,
.note-panel p,
.legal-body p,
.legal-body li {
  color: var(--muted);
}

.app-card .meta {
  margin-top: auto;
  color: var(--olive);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.future-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.future-card {
  min-height: 304px;
  border-color: rgba(224, 72, 32, 0.34);
}

.future-card .meta {
  color: var(--accent);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  border: 2px solid var(--line);
  border-radius: 2px;
  background: rgba(26, 23, 16, 0.72);
  padding: 22px;
}

.feature-card h3 {
  margin: 0 0 8px;
  color: var(--ink-strong);
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.status-strip,
.cross-sell {
  border: 2px solid var(--line);
  background:
    linear-gradient(135deg, rgba(224, 72, 32, 0.12), transparent 44%),
    rgba(33, 30, 20, 0.78);
  box-shadow: var(--shadow);
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.status-item {
  padding: 22px;
  border-right: 2px solid var(--line);
}

.status-item:last-child {
  border-right: 0;
}

.status-item span,
.cross-sell-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.status-item strong {
  display: block;
  color: var(--ink-strong);
  font-size: 26px;
  line-height: 1.05;
  text-transform: uppercase;
}

.status-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.cross-sell {
  padding: 26px;
}

.cross-sell-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.cross-sell-card {
  display: grid;
  min-height: 190px;
  align-content: start;
  border: 2px solid var(--line);
  border-radius: 2px;
  background: rgba(26, 23, 16, 0.72);
  padding: 20px;
  text-decoration: none;
  transition: border-color 0.18s, transform 0.18s, background 0.18s;
}

.cross-sell-card:hover {
  border-color: var(--accent);
  background: rgba(42, 38, 24, 0.94);
  transform: translateY(-1px);
}

.cross-sell-card h3 {
  margin: 0;
  color: var(--ink-strong);
  font-size: 25px;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.cross-sell-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.wide-art {
  width: 100%;
  max-height: 360px;
  border: 2px solid var(--line);
  border-radius: 2px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.page-title {
  padding-top: 64px;
  padding-bottom: 44px;
}

.page-title h1 {
  font-size: clamp(56px, 8vw, 112px);
}

.legal-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 48px;
  align-items: start;
}

.legal-body h2 {
  margin: 48px 0 12px;
  color: var(--ink-strong);
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body ul {
  padding-left: 22px;
}

.side-nav {
  position: sticky;
  top: 96px;
  border-left: 4px solid var(--accent);
  padding-left: 18px;
}

.side-nav a {
  display: block;
  margin: 10px 0;
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
}

.side-nav a:hover {
  color: var(--ink);
}

.app-detail {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.app-detail .app-icon {
  width: 160px;
  height: 160px;
  border-radius: 34px;
}

.app-detail-featured {
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  align-items: center;
}

.app-showcase {
  margin: 0;
}

.app-showcase img {
  display: block;
  width: 100%;
  border: 2px solid var(--line);
  border-radius: 2px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.app-showcase.is-icon {
  display: grid;
  place-items: center;
  padding: 28px;
  border: 2px solid var(--line);
  background: rgba(15, 17, 24, 0.7);
  box-shadow: var(--shadow);
}

.app-showcase.is-icon img {
  width: min(100%, 220px);
  aspect-ratio: 1;
  border: 0;
  border-radius: 44px;
  object-fit: contain;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.goodcue-showcase {
  margin: 0;
}

.goodcue-stage {
  display: grid;
  gap: 20px;
  width: 100%;
  border: 2px solid #1e293b;
  background:
    linear-gradient(145deg, rgba(249, 115, 22, 0.18), transparent 34%),
    linear-gradient(180deg, #0b0f17 0%, #111827 100%);
  color: #f8fafc;
  box-shadow: var(--shadow);
  padding: 24px;
}

.goodcue-logo-card {
  display: block;
  border: 1px solid rgba(148, 163, 184, 0.34);
  background: #020617;
  padding: 0;
}

.goodcue-logo-card img {
  display: block;
  width: 100%;
  height: auto;
}

.goodcue-stage p {
  margin: 0;
  max-width: 15ch;
  color: #e5e7eb;
  font-size: 28px;
  line-height: 1.08;
  font-weight: 900;
  text-transform: uppercase;
}

.goodcue-proof-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.goodcue-proof-points li,
.goodcue-proof-points span {
  display: block;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(2, 6, 23, 0.58);
  color: #cbd5e1;
  padding: 13px 14px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.goodcue-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.goodcue-gallery figure {
  margin: 0;
  border: 2px solid var(--line);
  background: var(--panel);
}

.goodcue-gallery img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.goodcue-gallery figcaption {
  border-top: 2px solid var(--line);
  padding: 14px 16px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.marketing-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 0;
  overflow: hidden;
  border: 2px solid var(--line);
  background:
    linear-gradient(135deg, rgba(138, 158, 74, 0.12), transparent 42%),
    rgba(33, 30, 20, 0.72);
  box-shadow: var(--shadow);
}

.marketing-lead-media {
  min-height: 320px;
  background: #0f1118;
}

.marketing-lead-media img {
  display: block;
  width: 100%;
  height: min(52vh, 520px);
  min-height: 320px;
  object-fit: cover;
}

.marketing-lead-media.is-phone {
  display: grid;
  min-height: 360px;
  place-items: center;
  padding: 16px;
}

.marketing-lead-media.is-phone img {
  width: auto;
  max-width: min(100%, 360px);
  height: min(58vh, 520px);
  min-height: 0;
  object-fit: contain;
}

.marketing-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  border-left: 2px solid var(--line);
  padding: 34px;
}

.marketing-kicker,
.shot-label {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.marketing-copy h2 {
  margin: 10px 0 14px;
  color: var(--ink-strong);
  font-family: "Bebas Neue", "Impact", "Arial Narrow", sans-serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 0.92;
  text-transform: uppercase;
}

.marketing-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.marketing-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 360px));
  justify-content: center;
  gap: 16px;
}

.marketing-gallery-grid.is-single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 680px;
  margin-inline: auto;
}

.marketing-shot {
  margin: 0;
  border: 2px solid var(--line);
  background: rgba(15, 17, 24, 0.72);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.marketing-shot img {
  display: block;
  width: 100%;
  max-height: min(54vh, 460px);
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.marketing-gallery-grid.is-single .marketing-shot img {
  max-height: min(50vh, 420px);
}

.marketing-shot.is-phone {
  display: grid;
  grid-template-rows: auto min-content;
}

.marketing-shot.is-phone img {
  height: clamp(340px, 48vw, 500px);
  max-height: none;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  padding: 10px;
  background: #0f1118;
}

.marketing-shot figcaption {
  border-top: 2px solid var(--line);
  padding: 13px 15px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.marketing-note {
  max-width: 780px;
  margin: 22px 0 0;
  border-left: 4px solid var(--olive);
  padding: 10px 14px;
  background: var(--olive-soft);
  color: var(--ink);
  font-weight: 800;
}

.spec-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
}

.spec-list div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.spec-list dt {
  color: var(--muted);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spec-list dd {
  margin: 0;
}

.footer {
  border-top: 2px solid var(--line);
  padding: 34px 0;
  color: var(--muted);
}

.footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
}

.footer a:hover {
  color: var(--ink);
}

@media (max-width: 920px) {
  .nav {
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    width: 100%;
    min-height: 62px;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    border-top: 2px solid var(--line);
    padding-bottom: 4px;
  }

  .nav-links a {
    min-height: 44px;
  }

  .hero,
  .legal-body,
  .app-detail {
    grid-template-columns: 1fr;
  }

  .app-detail-featured {
    grid-template-columns: 1fr;
  }

  .app-showcase {
    max-width: 360px;
  }

  .goodcue-showcase {
    max-width: 420px;
  }

  .hero > div:first-child {
    border-right: 0;
    border-bottom: 2px solid var(--line);
    padding: 42px 28px 36px;
  }

  .hero h1,
  .page-title h1 {
    font-size: 56px;
  }

  .hero {
    min-height: auto;
  }

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

  .release-dossier,
  .studio-panel {
    inset: 18px;
  }

  .device-stack,
  .app-grid,
  .future-grid,
  .feature-grid,
  .status-strip,
  .cross-sell-grid,
  .goodcue-gallery-grid,
  .marketing-lead,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .status-item {
    border-right: 0;
    border-bottom: 2px solid var(--line);
  }

  .status-item:last-child {
    border-bottom: 0;
  }

  .marketing-copy {
    border-left: 0;
    border-top: 2px solid var(--line);
    padding: 26px;
  }

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

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .device:nth-child(2) {
    transform: none;
  }

  .side-nav {
    position: static;
  }

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

@media (max-width: 560px) {
  .section {
    width: min(100% - 24px, 1160px);
    padding: 54px 0;
  }

  .brand {
    padding: 0 14px;
    font-size: 22px;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

  .hero {
    width: calc(100% - 24px);
  }

  .hero > div:first-child {
    padding: 34px 20px 30px;
  }

  .hero h1,
  .page-title h1 {
    font-size: 46px;
  }

  .hero p,
  .page-title p {
    font-size: 18px;
  }

  .hero-visual {
    min-height: auto;
  }

  .release-dossier {
    position: relative;
    inset: auto;
    overflow: visible;
  }

  .dossier-app {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .dossier-app-platform {
    grid-column: 2;
  }

  .app-detail .app-icon {
    width: 132px;
    height: 132px;
    border-radius: 28px;
  }

  .app-showcase {
    max-width: 280px;
  }

  .goodcue-stage {
    padding: 18px;
  }

  .marketing-gallery-grid {
    grid-template-columns: 1fr;
  }

  .marketing-lead-media {
    min-height: 220px;
  }

  .marketing-lead-media img {
    min-height: 220px;
  }

  .marketing-lead-media.is-phone,
  .marketing-lead-media.is-phone img {
    min-height: 0;
  }

  .marketing-lead-media.is-phone img {
    width: auto;
    max-width: 100%;
    height: min(56vh, 420px);
  }

  .marketing-shot.is-phone img {
    height: clamp(300px, 92vw, 440px);
  }

  .marketing-copy {
    padding: 22px;
  }

  .goodcue-stage p {
    font-size: 22px;
  }
}
/* ============================================================
   SO GOOD, LTD. CO. — V3 "CALL SHEET" REDESIGN LAYER
   Appended after the legacy stylesheet. Same palette, more teeth.
   Loads real brand fonts + adds tape chips, call sheet, feature
   reels, proof band, store buttons. Legacy classes still work;
   this layer upgrades the primitives underneath them.
   ============================================================ */


:root {
  --mono: "Courier Prime", "Courier New", monospace;
  --display: "Bebas Neue", "Impact", "Arial Narrow", sans-serif;
  --body-face: "Barlow Condensed", "Avenir Next Condensed", "Arial Narrow", ui-sans-serif, system-ui, sans-serif;
  --tape-olive: #8a9e4a;
  --tape-cream: #e8dfc8;
  --tape-verm: #e04820;
}

body {
  font-family: var(--body-face);
}

/* Global focus + selection quality floor */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

::selection {
  background: var(--accent);
  color: var(--bg);
}

img {
  max-width: 100%;
}

a.legal-card,
a.deck-card,
a.callsheet-row {
  text-decoration: none;
}

/* ---------- Header upgrade: CTA in the nav ---------- */

.nav-cta {
  display: inline-flex;
  align-items: center;
  align-self: center;
  margin-left: 8px;
  border: 2px solid var(--accent);
  background: var(--accent);
  color: var(--bg) !important;
  padding: 9px 16px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-cta:hover {
  background: #f15a2d;
  border-color: #f15a2d;
  color: var(--bg);
}

.nav-links .nav-cta {
  border-left: 2px solid var(--accent);
}

/* ---------- Gaffer-tape status chips (signature) ---------- */

.tape {
  display: inline-block;
  padding: 4px 12px 3px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
  transform: rotate(-1.2deg);
  clip-path: polygon(1.5% 8%, 98% 0%, 100% 86%, 2.5% 100%, 0% 55%);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
}

.tape.live {
  background: var(--tape-olive);
  color: #14160a;
}

.tape.review {
  background: var(--tape-cream);
  color: #2a2618;
}

.tape.rolling {
  background: var(--tape-verm);
  color: #fff6dc;
}

.tape.bench {
  background: #3a3424;
  color: var(--tape-cream);
}

a:hover .tape,
.app-card:hover .tape {
  transform: rotate(0.6deg);
}

/* ---------- Hero v3 ---------- */

.hero-v3 {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: stretch;
  border-left: 2px solid var(--line);
  border-right: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  padding: 0;
}

.hero-v3-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  min-width: 0;
  padding: 56px 48px 0;
  border-right: 2px solid var(--line);
}

.hero-v3 h1 {
  margin: 0;
  color: var(--ink-strong);
  font-family: var(--display);
  font-size: clamp(60px, 9.5vw, 128px);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.86;
  text-transform: uppercase;
}

.hero-v3 h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero-v3-sub {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.45;
}

.hero-v3-sub strong {
  color: var(--ink);
}

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0 22px;
  margin: 36px -48px 0;
  border-top: 2px solid var(--line);
  padding: 14px 48px;
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-strip span b {
  color: var(--olive);
  font-weight: 700;
}

/* ---------- Call sheet panel (signature element) ---------- */

.callsheet-wrap {
  position: relative;
  display: grid;
  background: var(--bg-2);
  padding: 26px;
  overflow: hidden;
}

.callsheet-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background:
    linear-gradient(90deg, transparent 0 48px, rgba(232, 223, 200, 0.08) 48px 50px, transparent 50px 100%),
    linear-gradient(0deg, transparent 0 48px, rgba(232, 223, 200, 0.08) 48px 50px, transparent 50px 100%);
  background-size: 50px 50px;
  pointer-events: none;
}

.callsheet {
  position: relative;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  border: 2px solid var(--line-strong);
  background: rgba(26, 23, 16, 0.9);
  box-shadow: var(--shadow);
  font-family: var(--mono);
}

.callsheet-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  border-bottom: 2px solid var(--line-strong);
  padding: 14px 18px 10px;
}

.callsheet-top h2 {
  margin: 0;
  color: var(--ink-strong);
  font-family: var(--mono);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.callsheet-top span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.callsheet-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  border-bottom: 1px solid var(--line);
  padding: 8px 18px;
  color: var(--muted-2);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.callsheet-rows {
  display: grid;
  align-content: space-evenly;
  min-height: 0;
  padding: 8px 0;
}

.callsheet-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 6px 18px;
  border-bottom: 1px dashed var(--line);
  text-decoration: none;
  transition: background 0.15s;
}

.callsheet-row:last-child {
  border-bottom: 0;
}

.callsheet-row:hover {
  background: rgba(224, 72, 32, 0.08);
}

.callsheet-row img {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  object-fit: cover;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

.callsheet-name {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
}

.callsheet-row:hover .callsheet-name {
  color: var(--ink-strong);
}

.callsheet-plat {
  display: block;
  color: var(--muted-2);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.callsheet-foot {
  border-top: 2px solid var(--line-strong);
  padding: 10px 18px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.callsheet-foot b {
  color: var(--olive);
}

/* ---------- Proof band ---------- */

.proof-band {
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  background:
    linear-gradient(135deg, rgba(224, 72, 32, 0.1), transparent 46%),
    var(--bg-2);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(3, minmax(0, 0.63fr));
  gap: 0;
  border-left: 2px solid var(--line);
  border-right: 2px solid var(--line);
}

.proof-lede {
  border-right: 2px solid var(--line);
  padding: 34px 30px;
}

.proof-lede h2 {
  margin: 0 0 10px;
  color: var(--ink-strong);
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 0.95;
  text-transform: uppercase;
}

.proof-lede p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.proof-stat {
  display: grid;
  align-content: center;
  gap: 6px;
  border-right: 2px solid var(--line);
  padding: 30px 26px;
}

.proof-stat:last-child {
  border-right: 0;
}

.proof-stat strong {
  color: var(--ink-strong);
  font-family: var(--display);
  font-size: 62px;
  line-height: 0.9;
}

.proof-stat strong em {
  color: var(--accent);
  font-style: normal;
}

.proof-stat span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---------- Feature reels (live apps with screenshots) ---------- */

.reel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  margin-top: 28px;
  border: 2px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.reel.flip {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.reel.flip .reel-media {
  order: 2;
  border-right: 0;
  border-left: 2px solid var(--line);
}

.reel-media {
  position: relative;
  min-height: 380px;
  border-right: 2px solid var(--line);
  background: #0f1118;
}

.reel-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-media.is-phone img {
  object-fit: contain;
  padding: 22px;
}

.reel-media.is-wide img {
  object-fit: contain;
  background: #0f1118;
}

.reel-media .tape {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}

.reel-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  min-width: 0;
  padding: 38px 36px;
}

.reel-kicker {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reel-copy h3 {
  margin: 0;
  color: var(--ink-strong);
  font-family: var(--display);
  font-size: clamp(38px, 4.6vw, 62px);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.9;
  text-transform: uppercase;
}

.reel-copy > p {
  margin: 0;
  max-width: 56ch;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.45;
}

.reel-points {
  display: grid;
  gap: 7px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
}

.reel-points li {
  padding-left: 20px;
  position: relative;
}

.reel-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 10px;
  height: 4px;
  background: var(--olive);
}

.reel-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.reel-price {
  color: var(--olive);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* App Store button */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--ink-strong);
  background: var(--ink-strong);
  color: var(--bg);
  border-radius: 2px;
  min-height: 46px;
  padding: 0 18px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.18s, background 0.18s, border-color 0.18s;
}

.store-btn::before {
  content: "";
  width: 16px;
  height: 19px;
  background: currentColor;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M318.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C63.3 141.2 4 184.8 4 273.5q0 39.3 14.4 81.2c12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z"/></svg>') center / contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M318.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C63.3 141.2 4 184.8 4 273.5q0 39.3 14.4 81.2c12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z"/></svg>') center / contain no-repeat;
  flex: 0 0 auto;
}

.store-btn:hover {
  transform: translateY(-1px);
  background: #fff;
  border-color: #fff;
}

.store-btn.small {
  min-height: 38px;
  padding: 0 13px;
  font-size: 11px;
}

/* Sibling app mini-row inside a reel (Formulator family) */
.reel-family {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  border-top: 1px dashed var(--line-strong);
  padding-top: 14px;
}

.reel-family-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.reel-family-row img {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  object-fit: cover;
}

.reel-family-row .name {
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
}

.reel-family-row .name small {
  display: block;
  color: var(--olive);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- GoodCue spotlight ---------- */

.spotlight {
  position: relative;
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  background: #0c0a07;
  overflow: hidden;
}

.spotlight-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.spotlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 10, 7, 0.94) 0%, rgba(12, 10, 7, 0.72) 52%, rgba(12, 10, 7, 0.3) 100%);
}

.spotlight-inner {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
  max-width: 1160px;
}

.spotlight-inner > * {
  max-width: 640px;
}

.spotlight .reel-kicker {
  display: inline-block;
  margin-bottom: 14px;
}

.spotlight h2 {
  margin: 0 0 16px;
  color: var(--ink-strong);
  font-family: var(--display);
  font-size: clamp(46px, 6.5vw, 88px);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.88;
  text-transform: uppercase;
}

.spotlight h2 em {
  color: var(--accent);
  font-style: normal;
}

.spotlight p {
  margin: 0 0 26px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.5;
}

.spotlight p b {
  color: var(--ink-strong);
}

/* ---------- On-deck compact cards ---------- */

.deck-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.deck-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 12px;
  border: 2px solid var(--line);
  background: var(--panel);
  padding: 20px;
  text-decoration: none;
  transition: border-color 0.18s, transform 0.18s, background 0.18s;
}

.deck-card:hover {
  border-color: var(--accent);
  background: rgba(42, 38, 24, 0.94);
  transform: translateY(-2px);
}

.deck-card img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
}

.deck-card h3 {
  margin: 0;
  color: var(--ink-strong);
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.deck-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.deck-card .tape {
  justify-self: start;
}

/* ---------- Apps directory upgrades ---------- */

.app-card .card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.app-card .card-actions + .meta {
  margin-top: 12px;
}

.app-card .tape {
  align-self: start;
}

/* ---------- Whole-site call-sheet polish ---------- */

.pricing-note {
  font-family: var(--mono);
  border-left: 0;
  border: 2px dashed var(--line-strong);
  background:
    linear-gradient(90deg, rgba(224, 72, 32, 0.12), transparent 56%),
    rgba(33, 30, 20, 0.88);
}

.status-strip {
  background:
    linear-gradient(135deg, rgba(224, 72, 32, 0.12), transparent 42%),
    rgba(26, 23, 16, 0.92);
}

.status-item span,
.spec-list dt,
.side-nav a,
.legal-card h3 {
  font-family: var(--mono);
}

.status-item span {
  color: var(--olive);
}

.status-item strong {
  font-family: var(--display);
  letter-spacing: 0.04em;
}

.spec-list {
  border: 2px solid var(--line);
  background: rgba(26, 23, 16, 0.64);
}

.spec-list div {
  display: grid;
  grid-template-columns: minmax(130px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  padding: 16px 18px;
  border-bottom: 1px dashed var(--line);
}

.spec-list div:last-child {
  border-bottom: 0;
}

.spec-list dt {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spec-list dd {
  margin: 0;
  color: var(--muted);
}

.legal-card,
.feature-card,
.note-panel {
  background:
    linear-gradient(145deg, rgba(224, 72, 32, 0.06), transparent 44%),
    var(--panel);
}

.legal-body h2 {
  font-family: var(--display);
  letter-spacing: 0.04em;
}

/* ---------- Reduced motion + responsive ---------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 980px) {
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }
  .proof-lede {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 2px solid var(--line);
  }
  .proof-stat {
    border-bottom: 2px solid var(--line);
  }
  .proof-stat:nth-child(odd) {
    border-right: 0;
  }
  .proof-stat:nth-last-child(-n+2) {
    border-bottom: 0;
  }
  .deck-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .hero-v3 {
    grid-template-columns: 1fr;
  }
  .hero-v3-copy {
    border-right: 0;
    border-bottom: 2px solid var(--line);
    padding: 42px 26px 0;
  }
  .hero-strip {
    margin: 30px -26px 0;
    padding: 12px 26px;
  }
  .nav-links {
    flex-wrap: wrap;
    overflow-x: visible;
  }
  .nav-links a:not(.nav-cta) {
    flex: 1 1 auto;
    justify-content: center;
  }
  .nav-links .nav-cta {
    flex: 1 0 100%;
    margin: 8px 0 0;
    border-right: 2px solid var(--accent);
  }
  .reel,
  .reel.flip {
    grid-template-columns: 1fr;
  }
  .reel.flip .reel-media {
    order: 0;
    border-left: 0;
  }
  .reel-media {
    min-height: 300px;
    border-right: 0;
    border-bottom: 2px solid var(--line);
  }
  .reel-media.is-phone {
    min-height: 420px;
  }
  .reel-copy {
    padding: 28px 24px;
  }
}

@media (max-width: 560px) {
  .deck-grid {
    grid-template-columns: 1fr;
  }
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .proof-stat {
    border-right: 0;
  }
  .proof-stat:nth-last-child(-n+2) {
    border-bottom: 2px solid var(--line);
  }
  .proof-stat:last-child {
    border-bottom: 0;
  }
  .spotlight-inner {
    padding: 64px 0;
  }
  .callsheet-wrap {
    padding: 14px;
  }
  .callsheet-row {
    grid-template-columns: 30px minmax(0, 1fr);
  }
  .callsheet-row .tape {
    grid-column: 2;
    justify-self: start;
  }
  .spec-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
