/* ==========================================================================
   BXR MARKETING — brand tokens + site styles
   Concept: the diagnostic ticket. BXR runs a diagnostic on a business's
   online presence the way a mechanic runs one on a car — this visual
   language (tickets, grade stamps, scan readouts, caution accents) carries
   through every section instead of decorating on top of a generic layout.
   ========================================================================== */

:root {
  --paper: #f7f8fa;
  --paper-2: #eceef2;
  --ink: #12161d;
  --navy: #1f3a5f;
  --navy-deep: #12213a;
  --red: #b22234;
  --red-bright: #d5222f;
  --slate: #57616c;
  --slate-2: #7f8890;
  --line: #dbdfe5;
  --line-strong: #bcc3cc;
  --card: #ffffff;
  --shadow: 0 18px 40px -18px rgba(18, 33, 58, 0.28);
  --radius: 3px;
  /* fixed brand banner — intentionally the same dark navy in both themes,
     not a token that should flip (unlike --navy, used for text/links) */
  --banner-bg: #12213a;
  --banner-ink: #eef2f6;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper: #12151a;
    --paper-2: #191d24;
    --ink: #eef1f5;
    --navy: #82a8d6;
    --navy-deep: #b7cfec;
    --red: #e0393f;
    --red-bright: #ef5c56;
    --slate: #a6acb3;
    --slate-2: #7d838a;
    --line: #2b3038;
    --line-strong: #3f4652;
    --card: #171b21;
    --shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.6);
  }
}
:root[data-theme="dark"] {
  --paper: #12151a;
  --paper-2: #191d24;
  --ink: #eef1f5;
  --navy: #82a8d6;
  --navy-deep: #b7cfec;
  --red: #e0393f;
  --red-bright: #ef5c56;
  --slate: #a6acb3;
  --slate-2: #7d838a;
  --line: #2b3038;
  --line-strong: #3f4652;
  --card: #171b21;
  --shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.6);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(circle at 8% 4%, rgba(31,58,95,0.05), transparent 40%),
    radial-gradient(circle at 96% 88%, rgba(178,34,52,0.06), transparent 45%);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { width: min(1180px, 92vw); margin-inline: auto; }
.mono { font-family: 'IBM Plex Mono', ui-monospace, monospace; }

h1, h2, h3, h4 { font-family: 'Oswald', 'Arial Narrow', sans-serif; text-wrap: balance; margin: 0; }
p { text-wrap: pretty; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--line);
}
.nav::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(10px);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 21px; letter-spacing: 0.01em; text-decoration: none; color: var(--ink); white-space: nowrap; }
.brand .mark { width: 48px; height: 48px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 1px var(--line); display: grid; place-items: center; position: relative; flex: none; overflow: hidden; }
.brand .mark img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; display: block; }
.brand small { font-family: 'IBM Plex Mono', monospace; font-size: 10.5px; font-weight: 500; color: var(--slate); letter-spacing: 0.04em; margin-left: 2px; }
.navlinks { display: flex; align-items: center; gap: 30px; font-size: 14.5px; font-weight: 500; }
.navlinks a { text-decoration: none; color: var(--ink); position: relative; padding: 4px 0; }
.navlinks a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--red); transition: width 0.2s; }
.navlinks a:hover::after { width: 100%; }
.navphone { font-weight: 700; white-space: nowrap; }
.navphone::after { display: none; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'IBM Plex Sans', sans-serif; font-weight: 600; font-size: 14.5px;
  padding: 12px 22px; border-radius: var(--radius); text-decoration: none;
  border: 1.5px solid transparent; cursor: pointer; transition: transform 0.15s, box-shadow 0.15s;
}
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 8px 20px -6px rgba(178,34,52,0.55); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -6px rgba(178,34,52,0.6); }
.btn-ghost { border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-block { width: 100%; justify-content: center; }
.navlinks .btn { padding: 10px 18px; font-size: 13.5px; }
.navtoggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.navtoggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0; }

/* ---------- section scaffolding ---------- */
section { padding: 108px 0; position: relative; }
section.tight { padding: 76px 0; }
.eyebrow {
  font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--red);
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 22px; height: 1.5px; background: var(--red); }
.section-head { max-width: 62ch; }
.section-head h2 { font-size: clamp(32px, 4.4vw, 50px); font-weight: 700; line-height: 1.04; }
.section-head p { color: var(--slate); font-size: 17px; margin-top: 16px; }
.section-head.center { max-width: 620px; margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }

/* ---------- hero ---------- */
.hero { padding: 90px 0 70px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.hero h1 {
  font-size: clamp(42px, 6.4vw, 78px); font-weight: 700; line-height: 0.98; letter-spacing: -0.01em;
  text-transform: uppercase;
}
.hero h1 .accent { color: var(--red); }
.hero .lede { font-size: 18px; color: var(--slate); max-width: 46ch; margin-top: 26px; }
.hero .cta-row { display: flex; align-items: center; gap: 22px; margin-top: 34px; flex-wrap: wrap; }
.hero .cta-row .see-results { font-size: 14.5px; font-weight: 600; text-decoration: none; border-bottom: 1.5px solid var(--ink); padding-bottom: 2px; }
.hero .trust-row { display: flex; gap: 26px; margin-top: 40px; flex-wrap: wrap; align-items: center; }
.hero .trust-row .item { font-size: 13px; color: var(--slate); font-family: 'IBM Plex Mono', monospace; }
.hero .trust-row .item b { color: var(--ink); }
.hero .trust-row .phone-link { text-decoration: none; }
.hero .trust-row .phone-link b { color: var(--red); }

/* redacted diagnostic ticket */
.ticket {
  background: var(--card); border: 1.5px solid var(--ink); border-radius: 6px;
  padding: 26px 26px 30px; box-shadow: var(--shadow); position: relative;
  transform: rotate(1.2deg);
}
.ticket::before {
  content: "CONFIDENTIAL"; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotate(-14deg); font-family: 'IBM Plex Mono', monospace;
  font-size: 13px; letter-spacing: 0.3em; color: var(--red); opacity: 0.16; font-weight: 700;
  pointer-events: none; white-space: nowrap;
}
.ticket-top { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1.5px dashed var(--line-strong); padding-bottom: 14px; margin-bottom: 16px; }
.ticket-top .tnum { font-family: 'IBM Plex Mono', monospace; font-weight: 700; font-size: 13px; }
.ticket-top .tdate { font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; color: var(--slate); }
.ticket-row { display: grid; grid-template-columns: 108px 1fr; gap: 12px; font-family: 'IBM Plex Mono', monospace; font-size: 13px; padding: 7px 0; align-items: center; }
.ticket-row .k { color: var(--slate); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; }
.redact { background: var(--ink); color: transparent; border-radius: 2px; display: inline-block; height: 0.95em; width: 100%; opacity: 0.88; }
.ticket-scores { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 18px; }
.tscore { background: var(--paper-2); border: 1px solid var(--line); border-radius: 4px; padding: 10px 8px; text-align: center; }
.tscore .ql { font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--slate); font-family: 'IBM Plex Mono', monospace; }
.tscore .qv { font-family: 'IBM Plex Mono', monospace; font-weight: 700; font-size: 16px; margin-top: 4px; color: var(--slate-2); }
.ticket-grade {
  position: absolute; top: -22px; right: -18px; width: 84px; height: 84px; border-radius: 50%;
  border: 4px double var(--red); color: var(--red); display: grid; place-items: center;
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 15px; transform: rotate(11deg);
  background: color-mix(in srgb, var(--paper) 70%, transparent); text-align: center; line-height: 1.05;
}
.ticket-grade span { display: block; font-size: 26px; }
.ticket-foot { margin-top: 20px; padding-top: 16px; border-top: 1.5px dashed var(--line-strong); display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.ticket-foot a { font-size: 13px; font-weight: 700; color: var(--navy); text-decoration: none; }
.ticket-foot a:hover { text-decoration: underline; }

/* ---------- stat strip ---------- */
.strip { background: var(--banner-bg); color: var(--banner-ink); }
.strip-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.strip-head .eyebrow { color: var(--red-bright); margin-bottom: 0; }
.strip-head h2 { font-size: clamp(24px,3vw,32px); color: #fff; }
.strip-head a { color: #cfe0f0; font-size: 13.5px; font-family: 'IBM Plex Mono', monospace; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.4); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.14); border-radius: 6px; overflow: hidden; }
.stat-cell { background: rgba(255,255,255,0.03); padding: 30px 22px; text-align: center; }
.stat-cell .n { font-family: 'IBM Plex Mono', monospace; font-weight: 700; font-size: clamp(30px,4vw,44px); font-variant-numeric: tabular-nums; color: #fff; }
.stat-cell .n .u { font-size: 0.5em; color: var(--red-bright); margin-left: 2px; }
.stat-cell .l { margin-top: 8px; font-size: 12.5px; color: #b7c5d3; text-transform: uppercase; letter-spacing: 0.05em; }
@media (max-width: 760px) { .stat-grid { grid-template-columns: repeat(2,1fr); } }

/* ---------- case study ---------- */
.case { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.case-media { position: relative; }
.case-media .pin { position: absolute; top: -14px; left: 28px; width: 26px; height: 26px; border-radius: 50%; background: var(--red); box-shadow: 0 4px 10px rgba(0,0,0,0.3); z-index: 2; }
.case-media .polaroid { background: #fff; padding: 10px 10px 46px; box-shadow: var(--shadow); transform: rotate(-2deg); border-radius: 2px; }
.case-media .polaroid img { border-radius: 1px; }
.case-media .polaroid.second { position: absolute; width: 58%; right: -8%; bottom: -12%; transform: rotate(4deg); z-index: 3; }
.case-logo-row { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.case-logo-row img { width: 52px; height: 52px; object-fit: contain; }
.case-logo-row .cname { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700; }
.case-logo-row .cloc { font-size: 13px; color: var(--slate); font-family: 'IBM Plex Mono', monospace; }
.case-body h2 { font-size: clamp(28px,3.6vw,40px); line-height: 1.08; }
.case-body p.lede { color: var(--slate); font-size: 16.5px; margin-top: 18px; max-width: 54ch; }
.case-scope { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.case-scope span { font-family: 'IBM Plex Mono', monospace; font-size: 12px; background: color-mix(in srgb, var(--navy) 10%, var(--paper)); color: var(--navy-deep); border: 1px solid color-mix(in srgb, var(--navy) 35%, transparent); border-radius: 999px; padding: 5px 12px; }
.case-numbers { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 30px; }
.case-numbers .cn { border-left: 2px solid var(--red); padding-left: 12px; }
.case-numbers .cn .n { font-family: 'IBM Plex Mono', monospace; font-weight: 700; font-size: 22px; }
.case-numbers .cn .l { font-size: 12px; color: var(--slate); margin-top: 3px; }

.ba { margin-top: 30px; background: color-mix(in srgb, var(--navy) 5%, var(--paper)); border: 1px solid var(--line); border-radius: 8px; padding: 18px 20px; }
.ba-head { display: flex; justify-content: space-between; font-family: 'IBM Plex Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--slate); border-bottom: 1px solid var(--line); padding-bottom: 10px; margin-bottom: 8px; }
.ba-row { display: grid; grid-template-columns: 1fr auto auto auto; align-items: center; gap: 10px; padding: 6px 0; font-family: 'IBM Plex Mono', monospace; font-size: 13.5px; }
.ba-label { color: var(--ink); font-family: 'IBM Plex Sans', sans-serif; font-size: 13.5px; }
.ba-before { color: var(--slate-2); text-align: right; min-width: 34px; }
.ba-arrow { color: var(--slate-2); }
.ba-after { color: var(--navy-deep); font-weight: 700; min-width: 34px; }
.ba-total { border-top: 1px solid var(--line); margin-top: 4px; padding-top: 10px; }
.ba-total .ba-label { font-weight: 700; }
.ba-total .ba-after { color: var(--red); }
.case-body .case-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 30px; font-weight: 600; font-size: 14.5px; text-decoration: none; color: var(--navy); border-bottom: 1.5px solid var(--navy); padding-bottom: 2px; }
@media (max-width: 880px) { .case { grid-template-columns: 1fr; } .case-media { margin-bottom: 30px; } }

/* ---------- more work teaser ---------- */
.teaser { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.teaser-inner { display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; }
.teaser h3 { font-size: clamp(22px,2.6vw,28px); max-width: 30ch; }
.teaser p { color: var(--slate); margin-top: 10px; max-width: 44ch; font-size: 15px; }
.chipset { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.chipset span { font-family: 'IBM Plex Mono', monospace; font-size: 12px; border: 1px solid var(--line-strong); border-radius: 999px; padding: 6px 13px; color: var(--slate); }

/* ---------- services / tiers ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
.tier {
  background: var(--card); border: 1px solid var(--line); border-radius: 6px; padding: 30px 26px;
  display: flex; flex-direction: column; gap: 16px; position: relative; transition: transform 0.2s, box-shadow 0.2s;
}
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tier.feat { border-color: var(--red); border-width: 2px; }
.tier .ribbon { position: absolute; top: -13px; right: 24px; background: var(--red); color: #fff; font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 999px; letter-spacing: 0.04em; }
.tier .tname { font-family: 'Oswald', sans-serif; font-size: 15px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--slate); }
.tier .tprice { font-family: 'IBM Plex Mono', monospace; font-weight: 700; font-size: 32px; }
.tier .tprice .per { font-size: 13px; color: var(--slate); font-weight: 400; }
.tier .tdesc { font-size: 14px; color: var(--slate); }
.tier ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; flex: 1; }
.tier li { display: flex; gap: 9px; align-items: flex-start; }
.tier li::before { content: "✓"; color: var(--navy-deep); font-weight: 700; flex: none; }

.swipe-hint { display: none; }
@media (max-width: 760px) {
  .swipe-hint {
    display: block; font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em; color: var(--slate); margin-top: 26px;
  }
  .tiers {
    display: flex; grid-template-columns: unset;
    overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 12px -4vw 0; padding: 4px 4vw 10px;
  }
  .tiers::-webkit-scrollbar { display: none; }
  .tier { scroll-snap-align: start; flex: 0 0 82%; min-width: 82%; }
}

/* ---------- how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 56px; position: relative; }
.steps::before { content: ""; position: absolute; top: 27px; left: 6%; right: 6%; height: 1.5px; background: repeating-linear-gradient(to right, var(--line-strong) 0 8px, transparent 8px 14px); }
.step { position: relative; padding: 0 20px; text-align: left; }
.step .sn { width: 54px; height: 54px; border-radius: 50%; background: var(--card); border: 2px solid var(--ink); display: grid; place-items: center; font-family: 'IBM Plex Mono', monospace; font-weight: 700; font-size: 18px; position: relative; z-index: 2; }
.step:nth-child(odd) .sn { border-color: var(--red); color: var(--red); }
.step h4 { margin-top: 20px; font-size: 18px; }
.step p { color: var(--slate); font-size: 14px; margin-top: 8px; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; gap: 40px; } .steps::before { display: none; } }

/* ---------- faq ---------- */
.faq-list { max-width: 720px; margin: 46px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: 8px; padding: 4px 22px; }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 18px 0; font-weight: 600; font-size: 15.5px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: 'IBM Plex Mono', monospace; font-size: 20px; color: var(--red); flex: none; transition: transform 0.2s; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { color: var(--slate); font-size: 14.5px; padding-bottom: 20px; margin: 0; max-width: 64ch; }

/* ---------- contact / preview form ---------- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-copy h2 { font-size: clamp(30px,3.8vw,44px); }
.contact-copy p { color: var(--slate); margin-top: 18px; max-width: 46ch; }
.contact-copy .steps-mini { margin-top: 30px; display: flex; flex-direction: column; gap: 14px; }
.contact-copy .steps-mini div { display: flex; gap: 12px; font-size: 14.5px; align-items: flex-start; }
.contact-copy .steps-mini b { font-family: 'IBM Plex Mono', monospace; color: var(--red); flex: none; }
.call-instead { margin-top: 30px; padding-top: 24px; border-top: 1px dashed var(--line-strong); display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.call-instead span { font-size: 14px; color: var(--slate); }
.call-instead a { font-weight: 700; font-size: 15px; text-decoration: none; color: var(--navy-deep); }
.call-instead a:hover { color: var(--red); }
.form-card { background: var(--card); border: 1px solid var(--line); border-radius: 8px; padding: 34px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--slate); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 4px;
  font: inherit; font-size: 15px; background: var(--paper); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--navy); outline-offset: 1px; border-color: var(--navy); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 12.5px; color: var(--slate-2); margin-top: 14px; text-align: center; }
.form-status { font-size: 14px; font-weight: 600; text-align: center; margin: 14px 0 0; min-height: 0; }
.form-status.is-success { color: var(--navy-deep); }
.form-status.is-error { color: var(--red); }
.form-card.is-sent .field, .form-card.is-sent button[type="submit"] { display: none; }
@media (max-width: 820px) { .contact-wrap { grid-template-columns: 1fr; } .field-row { grid-template-columns: 1fr; } }

/* ---------- about ---------- */
.about { text-align: center; }
.about-inner { max-width: 640px; margin-inline: auto; }
.about p { color: var(--slate); font-size: 16px; }
.about .parent-tag { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; color: var(--slate-2); border: 1px solid var(--line); padding: 8px 16px; border-radius: 999px; }

/* ---------- footer ---------- */
footer { background: var(--banner-bg); color: #cfd3d6; padding: 60px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.foot-brand { display: flex; align-items: center; gap: 10px; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 19px; color: #fff; }
.foot-brand .mark { width: 42px; height: 42px; border-radius: 50%; background: #fff; position: relative; flex: none; display: grid; place-items: center; overflow: hidden; }
.foot-brand .mark img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; display: block; }
footer p.tag { font-size: 13.5px; color: #9aa0a5; margin-top: 12px; max-width: 32ch; }
footer h5 { color: #fff; font-family: 'IBM Plex Mono', monospace; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; font-size: 14px; }
footer a { text-decoration: none; color: #b9bdc1; }
footer a:hover { color: #fff; }
.foot-bottom { margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12.5px; color: #7d8286; font-family: 'IBM Plex Mono', monospace; }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr; } }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > * { animation: rise 0.6s ease both; }
.reveal-stagger.in > *:nth-child(1) { animation-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { animation-delay: 0.14s; }
.reveal-stagger.in > *:nth-child(3) { animation-delay: 0.23s; }
.reveal-stagger.in > *:nth-child(4) { animation-delay: 0.32s; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

.scanline { position: absolute; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--red-bright), transparent); animation: scan 2.6s ease-in-out infinite; opacity: 0.85; }
@keyframes scan { 0% { top: 8%; } 50% { top: 88%; } 100% { top: 8%; } }

/* ---------- responsive nav ---------- */
@media (max-width: 940px) {
  .navlinks { position: fixed; inset: 64px 0 0 0; background: var(--paper); flex-direction: column; align-items: flex-start; padding: 30px 6vw; gap: 22px; transform: translateX(100%); transition: transform 0.25s ease; z-index: 90; }
  .navlinks.open { transform: translateX(0); }
  .navlinks .btn { width: 100%; justify-content: center; padding: 14px 18px; }
  .navtoggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .ticket { transform: none; margin-top: 20px; }
}
@media (max-width: 420px) {
  .brand { font-size: 17px; }
  .brand small { display: none; }
}

/* ---------- cinematic close ---------- */
.cinema {
  position: relative; background: var(--banner-bg); color: var(--banner-ink);
  padding: 120px 0; overflow: hidden;
}
.cinema-scan {
  position: absolute; left: 0; right: 0; height: 3px; z-index: 2; pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--red-bright), transparent);
  opacity: 0.75; animation: scan 5.5s ease-in-out infinite;
}
.cinema-fade-top, .cinema-fade-bottom { position: absolute; left: 0; right: 0; height: 140px; z-index: 2; pointer-events: none; }
.cinema-fade-top { top: 0; background: linear-gradient(to bottom, var(--banner-bg), transparent); }
.cinema-fade-bottom { bottom: 0; background: linear-gradient(to top, var(--banner-bg), transparent); }

.cinema-grid {
  position: relative; z-index: 3; display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: 64px; align-items: center; max-width: 1120px; margin: 0 auto; padding: 0 6vw;
}
.cinema-frame { position: relative; max-width: 340px; margin: 0 auto; }
.cinema-frame video {
  width: 100%; height: auto; display: block; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18); box-shadow: 0 30px 70px -20px rgba(0,0,0,0.65);
}
.cinema-frame .tag {
  position: absolute; top: 14px; left: 14px; font-family: 'IBM Plex Mono', monospace; font-size: 10.5px;
  letter-spacing: 0.08em; text-transform: uppercase; background: rgba(0,0,0,0.55); color: #fff;
  padding: 5px 11px; border-radius: 999px; backdrop-filter: blur(4px);
}
.cinema-content { text-align: left; }
.cinema .eyebrow { color: var(--red-bright); }
.cinema h2 { font-size: clamp(30px, 4.2vw, 50px); font-weight: 700; text-transform: uppercase; line-height: 1.04; color: #fff; }
.cinema p.lede { color: rgba(255,255,255,0.72); font-size: 16.5px; max-width: 46ch; margin: 18px 0 0; }
.cinema .cta-row { display: flex; justify-content: flex-start; gap: 18px; flex-wrap: wrap; margin-top: 30px; }
.cinema .btn-ghost-invert { border: 1.5px solid rgba(255,255,255,0.55); color: #fff; }
.cinema .btn-ghost-invert:hover { background: #fff; color: var(--banner-bg); }
@media (max-width: 860px) {
  .cinema { padding: 90px 0; }
  .cinema-grid { grid-template-columns: 1fr; text-align: center; }
  .cinema-content { text-align: center; }
  .cinema .cta-row { justify-content: center; }
}

/* ---------- sticky mobile call bar ---------- */
.sticky-cta { display: none; }
@media (max-width: 940px) {
  body { padding-bottom: 60px; }
  .sticky-cta {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
    box-shadow: 0 -10px 26px rgba(0,0,0,0.18);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .sticky-cta a {
    flex: 1; text-align: center; padding: 16px 10px; font-weight: 700; font-size: 14.5px;
    text-decoration: none; font-family: 'IBM Plex Sans', sans-serif;
  }
  .sticky-cta .sc-call { background: var(--banner-bg); color: var(--banner-ink); }
  .sticky-cta .sc-preview { background: var(--red); color: #fff; }
}
