/* Parker Team Building — "Studio One" broadcast redesign */

:root {
  --stage: #060b1c;
  --stage-2: #0a1430;
  --panel: #0d1936;
  --panel-2: #122148;
  --line: rgba(150, 175, 255, 0.16);
  --blue: #2e5bff;
  --blue-soft: #4f7dff;
  --gold: #e9b949;
  --gold-bright: #f5d06f;
  --gold-deep: #b8892a;
  --red: #e5484d;
  --text: #f4f6fd;
  --muted: #9aa7c7;
  --display: "Bodoni Moda", "Didot", serif;
  --body: "Archivo", "Helvetica Neue", sans-serif;
  --wrap: 1180px;
  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--stage);
  background-image:
    radial-gradient(1100px 520px at 78% -140px, rgba(233, 185, 73, 0.14), transparent 60%),
    radial-gradient(900px 600px at -10% 200px, rgba(46, 91, 255, 0.18), transparent 55%),
    linear-gradient(180deg, #081027 0%, var(--stage) 1400px, #050917 100%);
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

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

/* film grain */
.grain {
  position: fixed; inset: 0; z-index: 4; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--gold); color: #1c1607; padding: 10px 18px; font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

/* marquee bulb strip */
.bulbs {
  height: 14px;
  background-image: radial-gradient(circle 3.5px at 50% 50%, var(--gold-bright) 0 2.6px, rgba(233, 185, 73, 0.25) 3px, transparent 3.6px);
  background-size: 26px 14px;
  filter: drop-shadow(0 0 6px rgba(245, 208, 111, 0.55));
  opacity: 0.85;
}

/* ---------------------------------------------------------------- chrome */

.topline {
  background: linear-gradient(90deg, #0a0f22, #101c3f 45%, #0a0f22);
  border-bottom: 1px solid var(--line);
  font-size: 12.5px; letter-spacing: 0.04em; color: var(--muted);
}
.topline-inner { display: flex; align-items: center; gap: 16px; padding: 8px 24px; }
.topline-right { margin-left: auto; }

.onair {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid rgba(229, 72, 77, 0.6); border-radius: 999px;
  color: #ff8b8f; font-weight: 800; font-size: 10.5px; letter-spacing: 0.22em;
  padding: 3px 11px;
}
.onair i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 8px var(--red);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(6, 11, 28, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 28px; padding-top: 14px; padding-bottom: 14px; }

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 44px; height: 44px; flex: none;
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: 24px; color: #1c1607;
  background: radial-gradient(circle at 32% 28%, var(--gold-bright), var(--gold) 55%, var(--gold-deep));
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(245, 208, 111, 0.5), 0 6px 18px rgba(233, 185, 73, 0.25);
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.15; }
.brand-copy strong { font-family: var(--display); font-weight: 600; font-size: 19px; letter-spacing: 0.01em; }
.brand-copy strong em { font-style: italic; color: var(--gold-bright); }
.brand-copy > span { font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

.main-nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.main-nav a {
  text-decoration: none; font-size: 13.5px; font-weight: 600; letter-spacing: 0.05em;
  color: var(--muted); transition: color 0.2s;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--gold-bright); }
.main-nav .nav-cta {
  color: #1c1607; background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  padding: 10px 20px; border-radius: 999px; letter-spacing: 0.03em;
  box-shadow: 0 6px 20px rgba(233, 185, 73, 0.28);
  transition: transform 0.2s, box-shadow 0.2s;
}
.main-nav .nav-cta:hover { color: #1c1607; transform: translateY(-1px); box-shadow: 0 10px 26px rgba(233, 185, 73, 0.4); }

.menu-button { display: none; }

/* ---------------------------------------------------------------- type */

h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.08; letter-spacing: 0.005em; }
h1 em, h2 em { font-style: italic; color: var(--gold-bright); }

h1 { font-size: clamp(44px, 6.2vw, 76px); }
h2 { font-size: clamp(30px, 4vw, 46px); }
h3 { font-size: 22px; line-height: 1.25; }

.eyebrow {
  font-size: 11.5px; font-weight: 800; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--blue-soft); margin-bottom: 18px;
}
.eyebrow::before { content: "— "; color: var(--gold); }
.gold-eyebrow { color: var(--gold-bright); }

.lede { font-size: 19px; line-height: 1.7; color: var(--muted); max-width: 60ch; margin-top: 22px; }
.lede strong { color: var(--text); }

/* ---------------------------------------------------------------- buttons */

.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button-row.center { justify-content: center; }

.button {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 30px; border-radius: 999px;
  font-weight: 700; font-size: 15px; letter-spacing: 0.02em; text-decoration: none;
  border: 1px solid transparent; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.button.gold {
  color: #1c1607; background: linear-gradient(135deg, var(--gold-bright), var(--gold) 60%, var(--gold-deep));
  box-shadow: 0 8px 26px rgba(233, 185, 73, 0.32);
}
.button.gold:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(233, 185, 73, 0.45); }
.button.ghost { color: var(--text); border-color: var(--line); background: rgba(18, 33, 72, 0.35); }
.button.ghost:hover { border-color: var(--gold); color: var(--gold-bright); }

/* ---------------------------------------------------------------- hero */

.hero { position: relative; overflow: hidden; }

.hero-lights {
  position: absolute; inset: 0; pointer-events: none;
  background:
    conic-gradient(from 168deg at 18% -12%, transparent 82deg, rgba(233, 185, 73, 0.1) 90deg, transparent 98deg),
    conic-gradient(from 192deg at 55% -14%, transparent 84deg, rgba(79, 125, 255, 0.12) 90deg, transparent 96deg),
    conic-gradient(from 178deg at 88% -10%, transparent 83deg, rgba(233, 185, 73, 0.09) 90deg, transparent 97deg);
}

.hero-grid {
  display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 56px; align-items: center;
  padding-top: 84px; padding-bottom: 72px;
}

.hero-stats {
  list-style: none; display: flex; gap: 38px; margin-top: 44px; padding: 0;
}
.hero-stats li { display: flex; flex-direction: column; gap: 2px; }
.hero-stats strong {
  font-family: var(--display); font-size: 34px; font-weight: 700; color: var(--gold-bright);
  text-shadow: 0 0 22px rgba(245, 208, 111, 0.35);
}
.hero-stats span { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

.hero-stage { position: relative; }
.stage-frame {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(233, 185, 73, 0.4);
  box-shadow:
    0 0 0 6px rgba(6, 11, 28, 0.9),
    0 0 0 7px rgba(233, 185, 73, 0.25),
    0 30px 70px rgba(0, 0, 0, 0.55),
    0 0 90px rgba(46, 91, 255, 0.22);
  transform: rotate(1.2deg);
}
.stage-frame img { width: 100%; aspect-ratio: 5 / 5.4; object-fit: cover; object-position: 50% 18%; }
.stage-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(245, 208, 111, 0.12), transparent 36%);
  pointer-events: none;
}
.hero-stage figcaption {
  position: absolute; left: 22px; bottom: 18px; z-index: 2;
  display: flex; flex-direction: column;
  background: rgba(6, 11, 28, 0.78); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 12px; padding: 10px 18px;
}
.hero-stage figcaption strong { font-family: var(--display); font-size: 17px; }
.hero-stage figcaption span { font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-bright); }

.client-bar {
  border-top: 1px solid rgba(184, 137, 42, 0.8);
  border-bottom: 1px solid rgba(184, 137, 42, 0.8);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 34%, rgba(0, 0, 0, 0.14)),
    linear-gradient(90deg, #d9a83c, #f2cd6e 24%, #e3b64a 50%, #f5d78a 76%, #d9a83c);
  box-shadow: 0 -1px 0 rgba(245, 208, 111, 0.4), 0 12px 34px rgba(233, 185, 73, 0.18);
}
.client-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 34px; padding-top: 26px; padding-bottom: 26px; flex-wrap: wrap; }
.client-label {
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(10, 20, 48, 0.72); max-width: 190px; line-height: 1.5;
  border-left: 2px solid rgba(10, 20, 48, 0.35); padding-left: 14px;
}
.client-names { display: flex; flex-wrap: wrap; align-items: baseline; gap: 16px 44px; }
.client-names span { color: #0a1430; font-size: 21px; line-height: 1; text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25); }
.cn-sony { font-family: var(--body); font-weight: 800; letter-spacing: 0.16em; }
.cn-wb { font-family: var(--display); font-weight: 700; }
.cn-disney { font-family: var(--display); font-style: italic; font-weight: 600; font-size: 25px; }
.cn-ms { font-family: var(--body); font-weight: 600; letter-spacing: 0.01em; }
.cn-si { font-family: var(--display); font-weight: 600; letter-spacing: 0.14em; font-size: 17px; }
.cn-coke { font-family: var(--display); font-style: italic; font-weight: 700; font-size: 24px; }

/* ---------------------------------------------------------------- sections */

.section { padding: 92px 0; }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head p { color: var(--muted); margin-top: 16px; }

/* tiers */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.tier {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(180deg, var(--panel), rgba(10, 20, 48, 0.6));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px 30px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.tier:hover { transform: translateY(-6px); border-color: rgba(233, 185, 73, 0.45); box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4); }
.tier-no {
  font-family: var(--display); font-style: italic; font-size: 15px; color: var(--blue-soft);
  letter-spacing: 0.1em; margin-bottom: 16px;
}
.tier h3 { font-size: 26px; margin-bottom: 6px; }
.tier-tag { font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 16px; }
.tier > p:not(.tier-tag) { color: var(--muted); font-size: 15.5px; }
.tier ul { list-style: none; margin: 20px 0 26px; display: grid; gap: 10px; }
.tier ul li { padding-left: 24px; position: relative; font-size: 14.5px; color: var(--text); }
.tier ul li::before { content: "◆"; position: absolute; left: 0; top: 0; color: var(--gold); font-size: 11px; line-height: 2; }
.tier-link {
  margin-top: auto; font-weight: 700; font-size: 14.5px; letter-spacing: 0.04em;
  color: var(--gold-bright); text-decoration: none;
}
.tier-link::after { content: " →"; transition: margin-left 0.2s; }
.tier-link:hover::after { margin-left: 6px; }

.tier.flagship {
  background:
    radial-gradient(480px 260px at 85% -60px, rgba(233, 185, 73, 0.16), transparent 70%),
    linear-gradient(180deg, #14204a, #0c1738);
  border-color: rgba(233, 185, 73, 0.55);
  box-shadow: 0 0 60px rgba(233, 185, 73, 0.1);
}
.tier-ribbon {
  position: absolute; top: -13px; right: 24px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: #1c1607; font-size: 10.5px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px;
  box-shadow: 0 6px 18px rgba(233, 185, 73, 0.4);
}

/* feature bands */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature-grid.flip .feature-media { order: 2; }
.feature-media { position: relative; }
.feature-media img, .feature-media video {
  border-radius: var(--radius); width: 100%;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 70px rgba(46, 91, 255, 0.16);
}
.feature-media figcaption {
  position: absolute; left: 16px; bottom: 14px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-bright); background: rgba(6, 11, 28, 0.78);
  border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px;
}
.feature-copy p { color: var(--muted); margin-top: 18px; }
.feature-copy p strong { color: var(--text); }

.check-list { list-style: none; margin-top: 26px; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 34px; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px; display: grid; place-items: center;
  font-size: 12px; font-weight: 800; color: #1c1607;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  border-radius: 50%;
}
.check-list.big li { padding-left: 40px; color: var(--muted); }
.check-list.big li strong { color: var(--text); display: block; font-size: 17px; }
.check-list.big li::before { top: 4px; width: 26px; height: 26px; font-size: 13px; }

/* credentials */
.credentials { position: relative; background: rgba(8, 14, 34, 0.55); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.credentials .bulbs { position: absolute; top: -7px; left: 0; right: 0; }
.cred-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cred {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(18, 33, 72, 0.5), rgba(10, 20, 48, 0.3));
  padding: 28px 24px;
}
.cred strong {
  display: block; font-family: var(--display); font-size: 38px; font-weight: 700; color: var(--gold-bright);
  text-shadow: 0 0 26px rgba(245, 208, 111, 0.3); margin-bottom: 10px; line-height: 1;
}
.cred span { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* formats */
.format-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.format {
  border: 1px solid var(--line); border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: linear-gradient(90deg, rgba(233, 185, 73, 0.05), rgba(13, 25, 54, 0.45) 40%);
  padding: 28px 30px;
  transition: transform 0.25s, border-color 0.25s;
}
.format:hover { transform: translateX(6px); }
.format h3 { margin-bottom: 10px; }
.format p { color: var(--muted); font-size: 15px; }

/* steps */
.steps { list-style: none; counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.steps li {
  counter-increment: step; position: relative;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel), rgba(10, 20, 48, 0.5));
  padding: 58px 24px 26px;
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; top: 18px; left: 24px;
  font-family: var(--display); font-style: italic; font-size: 26px; color: var(--blue-soft);
}
.steps li strong { display: block; font-size: 17px; margin-bottom: 6px; }
.steps li span { font-size: 14px; color: var(--muted); }

/* panels, upsell, prose */
.panel {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel), rgba(10, 20, 48, 0.55));
  padding: 30px;
}
.panel h3 { font-size: 18px; color: var(--gold-bright); margin-bottom: 14px; }
.panel h3 + .plain-list { margin-bottom: 26px; }
.plain-list { list-style: none; display: grid; gap: 10px; }
.plain-list li { padding-left: 22px; position: relative; font-size: 15px; color: var(--muted); }
.plain-list li::before { content: "◆"; position: absolute; left: 0; color: var(--gold); font-size: 10px; line-height: 2.2; }
.plain-list a { color: var(--text); }

.upsell {
  border: 1px solid rgba(233, 185, 73, 0.35); border-radius: var(--radius);
  background:
    radial-gradient(600px 200px at 20% -80px, rgba(233, 185, 73, 0.12), transparent 70%),
    linear-gradient(180deg, var(--panel-2), var(--panel));
  padding: 36px 40px; font-size: 17px;
}
.upsell a { color: var(--gold-bright); font-weight: 700; }

.prose { max-width: 760px; }
.prose h2 { font-size: 24px; margin: 34px 0 12px; }
.prose p { color: var(--muted); margin-bottom: 14px; }
.prose a { color: var(--gold-bright); }

/* page heroes */
.page-hero { padding: 92px 0 30px; position: relative; }
.page-hero.xl { padding: 120px 0 40px; }
.page-hero .lede { margin-top: 24px; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
.proposal-form {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel), rgba(10, 20, 48, 0.55));
  padding: 36px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; margin-bottom: 18px; }
.proposal-form label {
  display: flex; flex-direction: column; gap: 7px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}
.proposal-form label.full { margin-bottom: 22px; }
.proposal-form input, .proposal-form select, .proposal-form textarea {
  font-family: var(--body); font-size: 15.5px; color: var(--text);
  background: rgba(6, 11, 28, 0.7); border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 14px; outline: none; transition: border-color 0.2s;
}
.proposal-form input:focus, .proposal-form select:focus, .proposal-form textarea:focus { border-color: var(--gold); }
.proposal-form textarea { resize: vertical; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 16px; }
.form-status { margin-top: 12px; font-weight: 600; color: var(--gold-bright); }

/* closer + footer */
.closer { position: relative; text-align: center; padding: 96px 0; background: rgba(8, 14, 34, 0.55); border-top: 1px solid var(--line); }
.closer .bulbs { position: absolute; top: -7px; left: 0; right: 0; }
.closer-inner { max-width: 640px; margin: 0 auto; }
.closer p { color: var(--muted); margin-top: 16px; }

.site-footer { border-top: 1px solid var(--line); background: #050917; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-top: 60px; padding-bottom: 40px; }
.footer-brand p { font-size: 14px; color: var(--muted); margin-top: 18px; max-width: 34ch; }
.site-footer h3 { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 16px; font-family: var(--body); font-weight: 800; }
.site-footer a { display: block; text-decoration: none; color: var(--muted); font-size: 14.5px; margin-bottom: 10px; transition: color 0.2s; }
.site-footer a:hover { color: var(--gold-bright); }
.site-footer .brand { margin-bottom: 0; }
.footer-legal {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid var(--line); padding-top: 22px; padding-bottom: 30px;
  font-size: 12.5px; color: var(--muted);
}

/* reveal animation */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.on { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .onair i { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------------------------------------------------------------- mobile */

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; padding-top: 56px; }
  .feature-grid { grid-template-columns: 1fr; gap: 36px; }
  .feature-grid.flip .feature-media { order: 0; }
  .tier-grid { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .topline-right { display: none; }

  .menu-button {
    display: grid; place-items: center; width: 44px; height: 44px; margin-left: auto;
    background: none; border: 1px solid var(--line); border-radius: 10px; cursor: pointer;
  }
  .menu-button span, .menu-button span::before, .menu-button span::after {
    content: ""; display: block; width: 20px; height: 2px; background: var(--gold-bright); position: relative;
    transition: transform 0.2s;
  }
  .menu-button span::before { position: absolute; top: -6px; }
  .menu-button span::after { position: absolute; top: 6px; }

  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: rgba(6, 11, 28, 0.98); border-bottom: 1px solid var(--line);
    padding: 18px 24px 24px; margin: 0;
  }
  .main-nav[data-open] { display: flex; }
  .main-nav a { padding: 10px 0; font-size: 16px; }
  .main-nav .nav-cta { margin-top: 10px; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .page-hero { padding: 64px 0 20px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .cred-grid, .steps, .format-grid, .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .topline-inner { justify-content: center; }
  .topline-inner span:nth-child(2) { display: none; }
  .stage-frame { transform: none; }
}
