/* ============================================================
   Screen Dolly — screendolly.com
   Aesthetic: indie film studio call-sheet. Warm paper, ink rules,
   one hot terracotta accent (the record dot), Fraunces serif
   headlines, Geist body, Geist Mono for slate labels.
   ============================================================ */

@font-face {
  font-family: "Fraunces";
  src: url("assets/fraunces-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("assets/fraunces-600-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Geist";
  src: url("assets/geist.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Geist Mono";
  src: url("assets/geist-mono.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --paper: #faf7ef;
  --paper-deep: #f1ebdc;
  --white: #fffefa;
  --ink: #27241f;
  --ink-black: #1e1d1a;
  --terracotta: #c65a3a;
  --terracotta-dark: #a9472f;
  --sage: #78856a;
  --brass: #c79a4b;
  --pine: #1e4a3c;
  --pine-line: #3d6353;
  --muted: #625e55;
  --hairline: #d4cec1;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Geist", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Geist Mono", "SF Mono", Menlo, monospace;
  --shadow-ink: 5px 5px 0 var(--ink);
  --shadow-brass: 10px 10px 0 var(--brass);
  --gutter: max(28px, calc((100vw - 1220px) / 2));
}

/* ---------- base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; background: var(--paper); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
/* paper grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}
body, h1, h2, h3, p, figure, dl, dd { margin: 0; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a, summary { -webkit-tap-highlight-color: transparent; }
img, svg, video { display: block; max-width: 100%; }
::selection { background: var(--terracotta); color: var(--white); }

h1, h2 { font-family: var(--font-display); font-weight: 600; line-height: .96; letter-spacing: -.015em; }
h1 { margin-bottom: 28px; font-size: clamp(3.1rem, 4.9vw, 5rem); }
h2 { margin-bottom: 22px; font-size: clamp(2.5rem, 4vw, 4rem); }
h1 em, h2 em { font-style: italic; color: var(--terracotta); }
h3 { margin-bottom: 10px; font-size: 1.15rem; line-height: 1.2; }
p { color: var(--muted); line-height: 1.65; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 14px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  font: 650 .8rem var(--font-mono);
  text-transform: uppercase;
}
.skip-link:focus-visible { left: 14px; }

a:focus-visible, .button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 3px;
}

/* ---------- slate stripe ---------- */
.slate-stripe {
  height: 12px;
  background: repeating-linear-gradient(135deg, var(--ink) 0 11px, var(--paper) 11px 22px);
  border-bottom: 1.5px solid var(--ink);
}

/* ---------- header ---------- */
.site-header {
  min-height: 78px;
  padding: 10px var(--gutter);
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1.5px solid var(--ink);
  background: rgba(250, 247, 239, .96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font: 700 1.02rem var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.logo-mark { width: 44px; height: 44px; flex: 0 0 auto; }
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font: 650 .8rem var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.desktop-nav > a:not(.button) { padding: 9px 1px; border-bottom: 2px solid transparent; }
.desktop-nav > a:not(.button):hover { border-color: var(--terracotta); color: var(--terracotta-dark); }

/* ---------- buttons ---------- */
.button {
  min-height: 54px;
  padding: 14px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid var(--ink);
  border-radius: 3px;
  background: var(--terracotta);
  color: var(--white);
  font: 700 .9rem var(--font-mono);
  letter-spacing: .04em;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}
.button:hover {
  background: var(--terracotta-dark);
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}
.button:active { transform: translate(0, 0); box-shadow: 3px 3px 0 var(--ink); }
.button-small { min-height: 44px; padding: 10px 18px; box-shadow: 3px 3px 0 var(--ink); }
.button-invert { background: var(--ink); box-shadow: 4px 4px 0 rgba(30, 29, 26, .35); }
.button-invert:hover { background: var(--ink-black); box-shadow: 7px 7px 0 rgba(30, 29, 26, .35); }
.text-link {
  color: var(--pine);
  font: 650 .85rem var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .05em;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}
.text-link:hover { color: var(--terracotta-dark); }

/* ---------- mobile nav ---------- */
.mobile-nav { display: none; position: relative; font-family: var(--font-mono); text-transform: uppercase; }
.mobile-nav summary {
  padding: 10px 14px;
  border: 1.5px solid var(--ink);
  border-radius: 3px;
  cursor: pointer;
  list-style: none;
  font-weight: 650;
  font-size: .8rem;
  background: var(--white);
}
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav[open] summary { background: var(--ink); color: var(--white); }
.mobile-nav nav {
  width: 230px;
  position: absolute;
  right: 0;
  top: 52px;
  border: 2px solid var(--ink);
  border-radius: 3px;
  background: var(--paper);
  box-shadow: var(--shadow-ink);
  overflow: hidden;
}
.mobile-nav nav a { display: block; padding: 15px 16px; border-bottom: 1px solid var(--hairline); font-size: .82rem; font-weight: 650; }
.mobile-nav nav a:last-child { border-bottom: 0; }
.mobile-nav nav a:hover { background: var(--paper-deep); }

/* ---------- shared bits ---------- */
.tags { margin-bottom: 30px; display: flex; gap: 9px; flex-wrap: wrap; }
.tag {
  min-height: 32px;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 3px;
  background: var(--white);
  font: 650 .72rem var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.tag-dark { background: var(--ink); color: var(--white); }
.eyebrow {
  margin-bottom: 20px;
  color: var(--sage);
  font: 650 .78rem var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .14em;
}
.lede { max-width: 560px; font-size: 1.15rem; }
.compatibility { margin-top: 22px; font: 550 .78rem var(--font-mono); letter-spacing: .03em; text-transform: uppercase; color: var(--ink); }
.compatibility span { width: 5px; height: 5px; margin: 0 10px 2px; display: inline-block; border-radius: 50%; background: var(--terracotta); }

/* ---------- hero ---------- */
.hero {
  max-width: 1308px;
  min-height: 620px;
  margin: 0 auto;
  padding: 72px 44px 84px;
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(480px, 1.08fr);
  gap: 60px;
  align-items: center;
}
.hero-actions { margin-top: 32px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

.studio-visual { position: relative; }
.visual-frame {
  position: relative;
  padding: 14px;
  background: var(--white);
  border: 2.5px solid var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow-brass);
}
/* viewfinder corner brackets, echoing the logo */
.visual-frame::before {
  content: "";
  position: absolute;
  inset: 5px;
  pointer-events: none;
  background:
    linear-gradient(var(--terracotta), var(--terracotta)) top left / 16px 3px,
    linear-gradient(var(--terracotta), var(--terracotta)) top left / 3px 16px,
    linear-gradient(var(--terracotta), var(--terracotta)) top right / 16px 3px,
    linear-gradient(var(--terracotta), var(--terracotta)) top right / 3px 16px,
    linear-gradient(var(--terracotta), var(--terracotta)) bottom left / 16px 3px,
    linear-gradient(var(--terracotta), var(--terracotta)) bottom left / 3px 16px,
    linear-gradient(var(--terracotta), var(--terracotta)) bottom right / 16px 3px,
    linear-gradient(var(--terracotta), var(--terracotta)) bottom right / 3px 16px;
  background-repeat: no-repeat;
}
.studio-visual video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 4px;
  background: #111;
}
.studio-visual figcaption {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font: 550 .68rem var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.studio-visual figcaption::before {
  content: "";
  order: 2;
  flex: 1;
  border-top: 1.5px dotted var(--hairline);
}
.studio-visual figcaption span:last-child { order: 3; color: var(--terracotta); }

/* ---------- marquee ---------- */
.marquee {
  overflow: hidden;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  padding: 12px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
  font: 600 .78rem var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .12em;
  white-space: nowrap;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { max-width: 1308px; margin: 0 auto; padding: 88px 44px; }
.section-heading { max-width: 800px; margin-bottom: 48px; }
.section-heading > p:last-child { max-width: 600px; margin-bottom: 0; font-size: 1.06rem; }

/* ---------- features ---------- */
.features-section { border-bottom: 1.5px solid var(--hairline); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card {
  position: relative;
  min-height: 200px;
  padding: 26px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.feature-card:nth-child(even) { background: var(--paper-deep); }
.feature-card:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--brass); }
.card-index {
  position: absolute;
  top: 20px;
  right: 22px;
  color: var(--sage);
  font: 650 .72rem var(--font-mono);
  letter-spacing: .08em;
}
.feature-card svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-card svg { width: 42px; height: 42px; margin-bottom: 20px; color: var(--terracotta); }
.feature-card .filled-dot { fill: currentColor; stroke: none; }
.feature-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.45rem; }
.feature-card p { margin-bottom: 0; font-size: .92rem; }

/* ---------- editor ---------- */
.editor-section { border-bottom: 1.5px solid var(--hairline); }
.editor-copy { max-width: 800px; }
.editor-visual { max-width: 1100px; margin: 56px auto 0; }
.editor-visual img {
  width: 100%;
  height: auto;
  filter: drop-shadow(-12px 12px 0 var(--brass));
}
.editor-visual figcaption {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font: 550 .68rem var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.editor-visual figcaption::after {
  content: "";
  flex: 1;
  border-top: 1.5px dotted var(--hairline);
}
.editor-copy .eyebrow { margin-bottom: 20px; }
.check-list { margin: 26px 0 0; padding: 0; list-style: none; display: grid; gap: 16px; }
.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--muted);
  line-height: 1.55;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  color: var(--terracotta-dark);
  font: 700 .78rem var(--font-mono);
}

/* ---------- privacy (ink) ---------- */
.privacy-section {
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1.5px solid var(--ink);
}
.privacy-inner { max-width: 1308px; margin: 0 auto; padding: 92px 44px; }
.privacy-section .eyebrow { color: var(--brass); }
.privacy-section h2 { max-width: 700px; }
.privacy-section h2 em { color: var(--brass); }
.privacy-inner > p { max-width: 640px; color: #cfc9bd; font-size: 1.06rem; }

/* ---------- pricing ---------- */
.pricing-section {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 460px);
  gap: 80px;
  align-items: center;
  border-bottom: 1.5px solid var(--hairline);
}
.pricing-copy > p { max-width: 480px; }
.pricing-aside { margin-top: 16px; font-size: .92rem; color: var(--sage); }

.ticket {
  position: relative;
  padding: 30px 34px 34px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow-brass);
}
/* perforation under the header row */
.ticket-header {
  margin: -30px -34px 26px;
  padding: 18px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 2px dashed var(--hairline);
  background: var(--paper);
  border-radius: 4px 4px 0 0;
}
.ticket-stamp {
  padding: 7px 12px;
  border: 2px solid var(--terracotta);
  border-radius: 3px;
  color: var(--terracotta-dark);
  font: 700 .74rem var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .1em;
  transform: rotate(-3deg);
  background: var(--white);
}
.ticket-admit { color: var(--muted); font: 550 .7rem var(--font-mono); text-transform: uppercase; letter-spacing: .08em; text-align: right; }
.price { display: flex; align-items: baseline; gap: 16px; line-height: 1; }
.price s { color: var(--muted); font: 600 1.6rem var(--font-display); text-decoration-color: var(--terracotta); text-decoration-thickness: 3px; }
.price strong { font: 600 4.6rem var(--font-display); letter-spacing: -.02em; }
.price-terms { margin-top: 10px; color: var(--muted); font: 550 .74rem var(--font-mono); text-transform: uppercase; letter-spacing: .08em; }
.ticket-list { margin: 24px 0 28px; padding: 0; list-style: none; display: grid; gap: 12px; }
.ticket-list li {
  position: relative;
  padding: 0 0 12px 26px;
  border-bottom: 1px dotted var(--hairline);
  color: var(--ink);
  font-size: .95rem;
  line-height: 1.5;
}
.ticket-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.ticket-list li::before { content: "✓"; position: absolute; left: 2px; color: var(--terracotta-dark); font: 700 .9rem var(--font-mono); }
.button-buy { width: 100%; }
.ticket-note { margin-top: 18px; font-size: .84rem; color: var(--muted); text-align: center; }
.ticket-note a { color: var(--pine); text-decoration: underline; text-underline-offset: 3px; }
.ticket-note a:hover { color: var(--terracotta-dark); }

/* ---------- faq ---------- */
.faq-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: 72px; align-items: start; }
.faq-heading { margin-bottom: 0; position: sticky; top: 110px; }
.faq-heading a { color: var(--pine); text-decoration: underline; text-underline-offset: 3px; }
.faq-heading a:hover { color: var(--terracotta-dark); }
.faq-list { border-top: 1.5px solid var(--ink); }
.faq-list details { border-bottom: 1.5px solid var(--ink); }
.faq-list summary {
  min-height: 64px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-weight: 650;
  transition: background 140ms ease;
}
.faq-list summary:hover { background: rgba(255, 254, 250, .8); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  margin-left: auto;
  color: var(--terracotta);
  font: 700 1.4rem var(--font-mono);
  transition: transform 160ms ease;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { margin: 0; padding: 0 56px 22px 20px; }

/* ---------- download cta (terracotta) ---------- */
.download-cta {
  padding: 84px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  background: var(--terracotta);
  color: var(--white);
  border-top: 1.5px solid var(--ink);
}
.download-cta .eyebrow { color: #f3d3c4; }
.download-cta h2 { color: var(--white); }
.download-cta h2 em { color: var(--ink); }
.download-cta .cta-copy > p:last-child { max-width: 560px; margin-bottom: 0; color: #f8e3d8; font-size: 1.06rem; }
.download-actions {
  min-width: 280px;
  display: grid;
  gap: 20px;
  justify-items: center;
  text-align: center;
}
.cta-mark {
  width: 84px;
  height: 84px;
  border-radius: 20px;
  box-shadow: 5px 5px 0 rgba(39, 36, 31, .45);
  transform: rotate(-4deg);
}
.download-actions .button { width: 100%; }
.download-actions span {
  color: #f3d3c4;
  font: 600 .72rem var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ---------- footer ---------- */
.site-footer { padding: 56px var(--gutter) 28px; background: var(--ink-black); color: var(--white); }
.footer-main {
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: 1.4fr .7fr 1fr .9fr;
  gap: 40px;
  border-bottom: 1px solid #4a463f;
}
.footer-brand { display: flex; gap: 16px; align-items: flex-start; }
.footer-brand img { border-radius: 12px; }
.footer-name { font: 700 1rem var(--font-mono); text-transform: uppercase; letter-spacing: .04em; }
.footer-tag { margin-top: 6px; color: #a9a396; font-size: .88rem; line-height: 1.5; }
.footer-heading { margin: 0 0 14px; color: #8a857a; font: 650 .7rem var(--font-mono); text-transform: uppercase; letter-spacing: .12em; }
.footer-links { display: grid; align-content: start; gap: 10px; font-size: .9rem; }
.footer-links a { color: #d6d0c5; width: fit-content; }
.footer-links a:hover { color: var(--brass); }
.socials-row { display: flex; gap: 14px; }
.socials-row a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1.5px solid #4a463f;
  border-radius: 4px;
  color: #d6d0c5;
  transition: border-color 140ms ease, color 140ms ease, transform 140ms ease;
}
.socials-row a:hover { color: var(--brass); border-color: var(--brass); transform: translateY(-2px); }
.socials-row svg { width: 19px; height: 19px; fill: currentColor; }
.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font: 600 .7rem var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.footer-bottom p { margin: 0; color: #a9a396; }

/* ---------- legal pages ---------- */
.legal-main { max-width: 760px; margin: 0 auto; padding: 72px 28px 96px; }
.legal-main h1 { font-size: clamp(2.6rem, 5vw, 3.8rem); }
.legal-main .updated { margin-bottom: 40px; color: var(--sage); font: 550 .74rem var(--font-mono); text-transform: uppercase; letter-spacing: .08em; }
.legal-main h2 { margin: 44px 0 14px; font-size: 1.7rem; }
.legal-main p, .legal-main li { color: var(--muted); line-height: 1.7; }
.legal-main ul { padding-left: 22px; }
.legal-main a { color: var(--pine); text-decoration: underline; text-underline-offset: 3px; }
.legal-main a:hover { color: var(--terracotta-dark); }

/* ---------- 404 ---------- */
.notfound-main { max-width: 760px; margin: 0 auto; padding: 96px 28px 120px; text-align: center; }
.notfound-main img { width: 120px; margin: 0 auto 32px; transform: rotate(-4deg); border-radius: 26px; box-shadow: 6px 6px 0 var(--brass); }
.notfound-main .eyebrow { justify-content: center; }
.notfound-main p { max-width: 460px; margin: 0 auto 36px; }

/* ---------- reveal animation ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); }
.js .reveal.in { opacity: 1; transform: none; transition: opacity 650ms ease, transform 650ms cubic-bezier(.2, .7, .2, 1); }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
  .desktop-nav { gap: 16px; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-bottom: 64px; }
  .studio-visual { max-width: 820px; }
  .pricing-section { grid-template-columns: 1fr; gap: 48px; }
  .ticket { max-width: 520px; }
  .faq-section { grid-template-columns: 1fr; gap: 36px; }
  .faq-heading { position: static; }
}
@media (max-width: 720px) {
  html { scroll-padding-top: 76px; }
  h1 { font-size: clamp(2.5rem, 11.5vw, 4rem); }
  h2 { font-size: clamp(2.2rem, 10vw, 3.2rem); }
  .slate-stripe { height: 9px; }
  .site-header { min-height: 68px; padding: 8px 18px; }
  .logo-mark { width: 40px; height: 40px; }
  .brand span { font-size: .9rem; }
  .desktop-nav { display: none; }
  .mobile-nav { display: block; }
  .hero, .section { padding: 52px 22px; }
  .hero { gap: 40px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .text-link { text-align: center; }
  .button { width: 100%; }
  .visual-frame { padding: 10px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; }
  .editor-visual { margin-top: 36px; }
  .editor-visual img { filter: drop-shadow(-6px 6px 0 var(--brass)); }
  .privacy-inner { padding: 60px 22px; }
  .ticket { padding: 26px 22px 28px; }
  .ticket-header { margin: -26px -22px 22px; padding: 14px 22px; }
  .ticket-admit { display: none; }
  .price strong { font-size: 3.6rem; }
  .download-cta { padding: 56px 22px; grid-template-columns: 1fr; gap: 40px; }
  .download-actions { min-width: 0; justify-items: stretch; }
  .cta-mark { justify-self: center; }
  .site-footer { padding: 44px 22px 22px; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .faq-list details p { padding-right: 24px; }
  .marquee-track { animation-duration: 30s; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button, .feature-card, .socials-row a { transition: none; }
  .button:hover, .feature-card:hover, .socials-row a:hover { transform: none; }
  .marquee-track { animation: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
}
