:root {
  --bg: #0b0d10;
  --bg-soft: #12161d;
  --panel: rgba(255,255,255,0.06);
  --panel-strong: rgba(255,255,255,0.1);
  --text: #f5f1e8;
  --muted: #bcc3cf;
  --line: rgba(255,255,255,0.12);
  --gold: #b98d57;
  --gold-soft: #d8b482;
  --ember: #c56f49;
  --success: #4fd28c;
  --shadow: 0 20px 50px rgba(0,0,0,.28);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1180px;
  --font-head: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, var(--theme-glow-1, rgba(185,141,87,.16)), transparent 34%),
    radial-gradient(circle at top right, var(--theme-glow-2, rgba(197,111,73,.1)), transparent 24%),
    linear-gradient(180deg, #0a0c10 0%, #0f1218 52%, #0b0d10 100%);
  color: var(--text);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
.theme-home { --theme-glow-1: rgba(185,141,87,.16); --theme-glow-2: rgba(197,111,73,.10); }
.theme-casino { --theme-glow-1: rgba(185,141,87,.22); --theme-glow-2: rgba(106,39,17,.14); }
.theme-nightlife { --theme-glow-1: rgba(132,66,135,.16); --theme-glow-2: rgba(197,111,73,.18); }
.theme-lounge { --theme-glow-1: rgba(185,141,87,.18); --theme-glow-2: rgba(93,126,96,.12); }
.theme-operators { --theme-glow-1: rgba(122,150,186,.16); --theme-glow-2: rgba(185,141,87,.12); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  background: var(--gold);
  color: #111;
  padding: 8px 14px;
  border-radius: 999px;
  z-index: 999;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(16px);
  background: rgba(9,11,15,.68);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 56px;
  height: 56px;
  background: url('assets/midnight-valet-crest.png') center/contain no-repeat;
  filter: drop-shadow(0 12px 26px rgba(185,141,87,.22));
  flex: 0 0 56px;
}
.brand-mark::before { display:none; }
.brand-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .03em;
}
.brand-tag {
  color: var(--muted);
  font-size: .8rem;
}
.hero-logo {
  width: min(100%, 380px);
  margin-inline: auto;
  filter: drop-shadow(0 24px 44px rgba(185,141,87,.20));
}
.brand-stage {
  width: min(100%, 430px);
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at top center, rgba(185,141,87,.18), transparent 26%),
    linear-gradient(180deg, rgba(22,26,33,.96), rgba(11,13,17,.98));
  padding: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,.42);
}
.brand-stage-copy { margin-top: 12px; }
.hero-visual-head {
  font-family: var(--font-head);
  font-size: 1.65rem;
  line-height: 1.02;
  margin: 16px 0 10px;
  letter-spacing: -.03em;
}
.hero-visual-copy {
  color: var(--muted);
  margin: 0 0 14px;
}
.proof-stack {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}
.proof-pill {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255,255,255,.04);
}
.proof-pill strong { display:block; margin-bottom: 4px; }
.proof-pill span { color: var(--muted); font-size:.92rem; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  color: var(--text);
  display: grid;
  place-items: center;
}
.nav-toggle svg { width: 22px; height: 22px; }
.site-nav {
  position: fixed;
  inset: 74px 14px auto 14px;
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  background: rgba(18,22,29,.96);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.site-nav.open { display: flex; }
.site-nav a {
  padding: 13px 14px;
  border-radius: 14px;
  color: var(--muted);
}
.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  background: rgba(255,255,255,.06);
  color: var(--text);
}
.desktop-nav { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #121212;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 14px 34px rgba(185,141,87,.28);
}
.btn-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255,255,255,.04);
}
.btn-inline { padding: 12px 16px; min-height: 44px; }

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}
.section {
  padding: 72px 0;
}
.section-tight { padding: 56px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(185,141,87,.28);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--gold-soft);
  background: rgba(185,141,87,.08);
  font-weight: 600;
  letter-spacing: .02em;
  font-size: .86rem;
}
.hero {
  padding: 40px 0 42px;
}
.hero-grid {
  display: grid;
  gap: 22px;
}
.hero-copy,
.hero-visual,
.page-hero-shell > .reveal,
.page-hero-shell > .case-box {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 30px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.page-hero-shell > .reveal {
  position: relative;
  overflow: hidden;
}
.page-hero-shell > .reveal::after {
  content:"";
  position:absolute;
  inset:auto -12% -40px auto;
  width:220px; height:220px;
  background: radial-gradient(circle, rgba(185,141,87,.16), transparent 68%);
  pointer-events:none;
}
.theme-nightlife .page-hero-shell > .reveal::after { background: radial-gradient(circle, rgba(132,66,135,.20), transparent 68%); }
.theme-lounge .page-hero-shell > .reveal::after { background: radial-gradient(circle, rgba(93,126,96,.18), transparent 68%); }
.theme-operators .page-hero-shell > .reveal::after { background: radial-gradient(circle, rgba(122,150,186,.18), transparent 68%); }
.hero-copy h1,
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.1rem, 6vw, 4.25rem);
  line-height: .96;
  letter-spacing: -.04em;
  margin: 16px 0 14px;
}
.hero-copy p,
.page-hero p.lead {
  font-size: clamp(1rem, 2.6vw, 1.2rem);
  color: #d4dae3;
  max-width: 38rem;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 10px;
}
.micro-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
  margin-top: 18px;
}
.micro-proof div,
.metric,
.stat {
  padding: 12px 13px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--muted);
  font-size: .92rem;
}
.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 0;
}
.glow {
  position: absolute;
  inset: auto -8% 14% auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(185,141,87,.2), transparent 68%);
  filter: blur(8px);
}
.mock-stage {
  position: relative;
  height: 100%;
  display: grid;
  place-items: center;
}
.machine {
  width: min(100%, 360px);
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(180deg, rgba(26,31,40,.92), rgba(11,13,17,.96));
  padding: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,.42);
}
.machine-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px 14px;
  color: var(--muted);
  font-size: .88rem;
}
.machine-screen {
  border-radius: 24px;
  padding: 18px;
  min-height: 430px;
  background:
    radial-gradient(circle at top right, rgba(185,141,87,.22), transparent 28%),
    linear-gradient(180deg, #151a22 0%, #0f1319 100%);
  border: 1px solid rgba(255,255,255,.07);
}
.ui-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  color: var(--gold-soft);
  font-size: .82rem;
}
.ui-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin: 18px 0;
}
.product-card {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255,255,255,.04);
}
.product-card strong { display: block; margin-bottom: 6px; }
.product-card span { color: var(--muted); font-size: .9rem; }
.mock-cta {
  margin-top: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #111;
  padding: 14px 16px;
  text-align: center;
  font-weight: 800;
}
.section-head {
  max-width: 720px;
  margin-bottom: 28px;
}
.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 4.4vw, 3rem);
  line-height: 1.02;
  margin: 14px 0;
  letter-spacing: -.03em;
}
.section-head p { color: var(--muted); }
.cards,
.tiles,
.steps,
.kicker-grid,
.faq-grid,
.kpi-grid {
  display: grid;
  gap: 14px;
}
.cards.three,
.tiles.three { grid-template-columns: 1fr; }
.card,
.tile,
.step,
.kicker,
.metric,
.faq-item,
.case-box,
.cta-panel,
.quote,
.story-card {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
}
.card h3,
.tile h3,
.step h3,
.kicker h3,
.story-card h3,
.case-box h3 { margin-top: 0; font-family: var(--font-head); }
.card p,
.tile p,
.step p,
.kicker p,
.story-card p,
.case-box p,
.quote p { color: var(--muted); }
.icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--gold-soft);
  background: rgba(185,141,87,.12);
  border: 1px solid rgba(185,141,87,.24);
  margin-bottom: 14px;
}
.section-split {
  display: grid;
  gap: 18px;
}
.metric strong,
.stat strong {
  display: block;
  color: var(--text);
  font-size: 1.55rem;
  margin-bottom: 6px;
}
.check-list,
.dot-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.check-list li,
.dot-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #d5dbe4;
}
.check-list li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 24px;
  background: rgba(79,210,140,.12);
  color: var(--success);
  font-weight: 800;
  margin-top: 1px;
}
.dot-list li::before {
  content: "•";
  color: var(--gold-soft);
  margin-top: 1px;
}
.offer-shell {
  border: 1px solid rgba(185,141,87,.22);
  background:
    radial-gradient(circle at top left, rgba(185,141,87,.1), transparent 30%),
    rgba(255,255,255,.04);
  border-radius: 28px;
  padding: 22px;
}
.offer-grid {
  display: grid;
  gap: 16px;
}
.offer-stack {
  display: grid;
  gap: 12px;
}
.price-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--muted);
}
.kpi-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
.accordion {
  display: grid;
  gap: 12px;
}
.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 0;
  color: var(--text);
  text-align: left;
  padding: 0;
  font-weight: 700;
}
.faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  color: var(--muted);
}
.faq-item.active .faq-answer { max-height: 180px; padding-top: 14px; }
.faq-item .plus {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  flex: 0 0 32px;
}
.segment-links {
  display: grid;
  gap: 14px;
}
.segment-links .tile { position: relative; overflow: hidden; }
.segment-links .tile::after {
  content: "";
  position: absolute;
  inset: auto -14% -40px auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(185,141,87,.12), transparent 68%);
}
.segment-links a.cta-link,
.text-link {
  color: var(--gold-soft);
  font-weight: 700;
}
.compliance-box {
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}
.cta-section { padding-bottom: 100px; }
.cta-panel {
  background:
    radial-gradient(circle at top right, rgba(185,141,87,.18), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.04));
  display: grid;
  gap: 18px;
}
.cta-panel h2 { margin: 0; font-family: var(--font-head); font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1; }
.cta-panel p { margin: 0; color: var(--muted); }
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer {
  padding: 26px 0 110px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.14);
}
.footer-grid {
  display: grid;
  gap: 18px;
}
.footer-grid p,
.footer-grid li,
.footer-grid a { color: var(--muted); }
.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 55;
  display: flex;
  gap: 10px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(9,11,15,.86);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}
.sticky-cta .btn { flex: 1; }
.hidden-mobile { display: none; }
.page-hero {
  padding: 34px 0 18px;
}
.page-hero-shell {
  display: grid;
  gap: 18px;
}
.page-breadcrumbs {
  color: var(--muted);
  font-size: .92rem;
}
.page-breadcrumbs a { color: var(--muted); }
.hero-caption {
  color: var(--muted);
  font-size: .9rem;
  margin-top: 10px;
}
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge {
  border-radius: 999px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  color: var(--muted);
}
.reveal, .js .reveal, .js .reveal.is-visible, .hero .reveal, .page-hero .reveal, .cta-panel.reveal, .js .hero .reveal, .js .page-hero .reveal, .js .cta-panel.reveal { opacity: 1 !important; transform: none !important; transition: none !important; }

@media (min-width: 760px) {
  .header-shell { padding: 18px 22px; }
  .nav-toggle, .site-nav { display: none; }
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .desktop-nav a {
    padding: 10px 12px;
    border-radius: 999px;
    color: var(--muted);
  }
  .desktop-nav a:hover,
  .desktop-nav a:focus-visible,
  .desktop-nav a.active {
    color: var(--text);
    background: rgba(255,255,255,.05);
  }
  .hero { padding: 52px 0 56px; }
  .hero-grid { grid-template-columns: 1.08fr .92fr; align-items: stretch; }
  .hero-copy, .hero-visual { padding: 30px; }
  .hero-actions,
  .cta-actions { flex-direction: row; flex-wrap: wrap; }
  .cards.three,
  .tiles.three,
  .steps,
  .segment-links,
  .footer-grid,
  .page-hero-shell,
  .offer-grid,
  .section-split,
  .kicker-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .cards.three { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .segment-links { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .offer-grid { grid-template-columns: 1.05fr .95fr; align-items: start; }
  .kicker-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .faq-grid { grid-template-columns: 1.1fr .9fr; }
  .cta-panel { grid-template-columns: 1.1fr .9fr; align-items: center; padding: 28px; }
  .sticky-cta { width: min(780px, calc(100% - 28px)); margin: 0 auto; }
}

@media (min-width: 1040px) {
  .section { padding: 94px 0; }
  .hero-copy, .hero-visual { padding: 34px; }
  .section-head { margin-bottom: 34px; }
  .footer-grid { grid-template-columns: 1.4fr .8fr .8fr; }
  .page-hero-shell { grid-template-columns: 1.05fr .95fr; align-items: center; }
  .section-split.alt { grid-template-columns: .92fr 1.08fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .btn, .faq-item .faq-answer { transition: none; }
}


.leadmagnet-panel,
.form-shell,
.scorecard-shell {
  border: 1px solid rgba(185,141,87,.18);
  border-radius: 28px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.035));
  box-shadow: var(--shadow);
}
.leadmagnet-panel,
.form-shell {
  display: grid;
  gap: 18px;
}
.leadmagnet-actions { display: grid; gap: 12px; align-content: center; }
.field-grid { display: grid; gap: 14px; }
.waitlist-form { display: grid; gap: 14px; }
.waitlist-form label { display: grid; gap: 8px; color: var(--text); font-weight: 600; }
.waitlist-form input,
.waitlist-form select,
.waitlist-form textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--text);
  padding: 14px 14px;
  font: inherit;
}
.waitlist-form textarea { min-height: 132px; resize: vertical; }
.waitlist-form input:focus,
.waitlist-form select:focus,
.waitlist-form textarea:focus {
  outline: 2px solid rgba(185,141,87,.3);
  border-color: rgba(185,141,87,.42);
}
.waitlist-form option { color: #111; }
.checkbox-row { grid-template-columns: 20px 1fr; align-items: start; }
.checkbox-row input { margin-top: 2px; }
.form-actions { display: grid; gap: 10px; }
.form-note,
.form-status { color: var(--muted); }
.form-status.is-success { color: var(--success); }
.form-status.is-error { color: #ffb2a4; }
.form-status a { color: var(--gold-soft); text-decoration: underline; }
.hp-field { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; }
@media (min-width: 760px) {
  .leadmagnet-panel,
  .form-shell { grid-template-columns: 1.05fr .95fr; align-items: start; }
  .field-grid.two { grid-template-columns: repeat(2, minmax(0,1fr)); }
}


.theme-casino .eyebrow, .theme-casino .ui-chip { color: #e5c18f; background: rgba(185,141,87,.12); border-color: rgba(185,141,87,.28); }
.theme-nightlife .eyebrow, .theme-nightlife .ui-chip { color: #d8b0e5; background: rgba(132,66,135,.12); border-color: rgba(132,66,135,.28); }
.theme-lounge .eyebrow, .theme-lounge .ui-chip { color: #d2c095; background: rgba(110,133,93,.12); border-color: rgba(110,133,93,.28); }
.theme-operators .eyebrow, .theme-operators .ui-chip { color: #b8d2eb; background: rgba(122,150,186,.12); border-color: rgba(122,150,186,.28); }

.theme-casino .btn-primary { background: linear-gradient(135deg, #f0c892, #b98d57); }
.theme-nightlife .btn-primary { background: linear-gradient(135deg, #ddb4ef, #9d5cc1); color:#120d16; }
.theme-lounge .btn-primary { background: linear-gradient(135deg, #e4cf98, #8f7a4b); color:#16140f; }
.theme-operators .btn-primary { background: linear-gradient(135deg, #c2d6eb, #7ea2c5); color:#101720; }

.tile:hover, .card:hover, .kicker:hover, .case-box:hover {
  transform: translateY(-2px);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  border-color: rgba(185,141,87,.22);
  background: rgba(255,255,255,.055);
}
.theme-nightlife .tile:hover, .theme-nightlife .card:hover, .theme-nightlife .kicker:hover, .theme-nightlife .case-box:hover {
  border-color: rgba(132,66,135,.28);
}
.theme-operators .tile:hover, .theme-operators .card:hover, .theme-operators .kicker:hover, .theme-operators .case-box:hover {
  border-color: rgba(122,150,186,.28);
}
.case-box {
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.035));
}
.case-box h3 { font-size: 1.1rem; }
.hero-caption { text-align:center; }
@media (min-width: 760px) {
  .brand-stage { padding: 28px; }
  .hero-visual-head { font-size: 1.85rem; }
}

.case-box {
  position: relative;
  overflow: hidden;
}
.case-box::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 120px;
  height: 120px;
  background: url('assets/midnight-valet-crest.png') center/contain no-repeat;
  opacity: .08;
  pointer-events: none;
}
.page-hero .case-box,
.page-hero .reveal:first-child {
  min-height: 100%;
}
.page-hero h1 {
  text-wrap: balance;
}


/* visibility + fold fixes */
.section{scroll-margin-top:96px;}
.hero-grid,.page-hero-shell{align-items:start;}
.hero-copy,.hero-visual,.page-hero-shell>.reveal,.page-hero-shell>.case-box{min-height:0;}
.mock-stage{display:block;}
.brand-stage{margin-inline:auto;}
@media (min-width:760px){
  .hero{padding:36px 0 30px;}
  .page-hero{padding:28px 0 12px;}
  .hero-grid{grid-template-columns:1fr 1fr;gap:18px;}
  .hero-copy,.hero-visual{padding:24px;}
}
@media (min-width:1040px){
  .hero{padding:34px 0 24px;}
  .hero-copy,.hero-visual{padding:26px;}
}
