/* =========================================================
   Ossa IT — site design system
   Direction: "Bold, AI-forward" (spike v4) — dark ground,
   geometric display type, monospace labels, real logo-blue
   accent (#35AEE6). Hand-rolled, no framework dependency.
   ========================================================= */

:root {
  --ink:        #EDEAE2;
  --ink-soft:   #A9ADA6;
  --ink-dim:    #6B7876;
  --ground:     #0B1416;
  --panel:      #121D20;
  --panel-2:    #162326;
  --panel-3:    #0F1A1C;
  --wire:       #23302F;
  --wire-soft:  rgba(255,255,255,0.08);
  --accent:     #35AEE6;
  --accent-2:   #1C8FC7;
  --accent-soft: rgba(53,174,230,0.12);
  --on-accent:  #06222E;

  --font-sans: -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Avenir Next", "Century Gothic", "Segoe UI", sans-serif;
  --font-mono: "SF Mono", "Cascadia Code", Consolas, Menlo, monospace;

  --maxw: 1180px;
  --radius: 10px;
  --radius-lg: 14px;
}

/* ---------- reset ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ---------- layout primitives ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.section-border-top { border-top: 1px solid var(--wire); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em;
  color: var(--accent); text-transform: uppercase; margin: 0 0 18px;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex: none; }

.section-head { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(26px, 3vw, 32px); }
.section-head .link-more { font-family: var(--font-mono); font-size: 13px; color: var(--accent); white-space: nowrap; }

/* ---------- type scale ---------- */
h1 { font-size: clamp(34px, 5vw, 54px); line-height: 1.08; letter-spacing: -0.01em; }
h2 { font-size: clamp(24px, 3.2vw, 32px); line-height: 1.15; }
h3 { font-size: 18px; line-height: 1.3; }
.lead { font-size: clamp(16px, 2vw, 18px); line-height: 1.65; color: var(--ink-soft); }
.text-soft { color: var(--ink-soft); }
.text-dim { color: var(--ink-dim); }
.text-accent { color: var(--accent); }
.mono { font-family: var(--font-mono); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 14.5px;
  padding: 13px 24px; border-radius: 6px; border: 1px solid transparent;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.btn-primary { background: var(--accent); color: var(--on-accent); }
.btn-primary:hover { background: #61c2ef; }
.btn-ghost { border-color: var(--wire); color: var(--ink); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---------- cards / panels ---------- */
.card {
  background: var(--panel); border: 1px solid var(--wire); border-radius: var(--radius);
  padding: 26px 24px;
}
.card-link { display: block; transition: border-color .15s ease, transform .15s ease; }
.card-link:hover { border-color: var(--accent); }
.card-tag { display: block; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 10px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: 14px; line-height: 1.55; }

.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ---------- terminal-card (DevAgency pipeline motif) ---------- */
.terminal {
  background: var(--panel-3); border: 1px solid var(--wire); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 40px 90px -30px rgba(0,0,0,0.6);
}
.terminal-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 12px 16px; background: #141F21; border-bottom: 1px solid var(--wire);
}
.terminal-dot { width: 9px; height: 9px; border-radius: 50%; background: #3A4A48; flex: none; }
.terminal-label { margin-left: 6px; font-family: var(--font-mono); font-size: 11px; color: var(--ink-soft); letter-spacing: 0.03em; }
.terminal-body { padding: 22px 22px 24px; }

.stage-list { display: grid; gap: 13px; }
.stage-list li { display: flex; align-items: baseline; gap: 10px; font-family: var(--font-mono); font-size: 13px; color: var(--ink-dim); }
.stage-list li.is-done { color: var(--ink-soft); }
.stage-list li.is-active { color: var(--accent); }
.stage-icon { width: 14px; flex: none; text-align: center; font-weight: 700; }
.stage-list li.is-active .stage-icon { display: inline-block; }
@media (prefers-reduced-motion: no-preference) {
  .stage-list li.is-active .stage-icon { animation: pulse-blink 1.1s steps(2) infinite; }
}
@keyframes pulse-blink { 50% { opacity: 0.15; } }
.terminal-foot {
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--wire);
  display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 11px; color: var(--ink-soft); letter-spacing: 0.03em;
}
.terminal-foot b { color: var(--accent); }

/* Gantt-style stage list — sequential colour ramp ending on the brand accent */
.gantt-list { display: grid; gap: 8px; }
.gantt-list li { font-family: var(--font-mono); font-size: 13px; padding: 9px 14px; border-radius: 5px; background: rgba(255,255,255,0.03); border: 1px solid var(--wire); }
.gantt-row { display: grid; gap: 6px; }
.gantt-label { display: flex; align-items: baseline; gap: 8px; color: var(--ink-soft); }
.gantt-label b { color: var(--ink); font-weight: 700; min-width: 20px; }
.gantt-list li.is-active .gantt-label, .gantt-list li.is-active .gantt-label b { color: var(--accent); }
.gantt-track { position: relative; height: 7px; background: var(--wire); border-radius: 4px; overflow: hidden; }
.gantt-bar { position: absolute; top: 0; height: 100%; border-radius: 4px; opacity: 0.32; }
.gantt-list li.is-done .gantt-bar, .gantt-list li.is-active .gantt-bar { opacity: 1; }
.gantt-list li.is-active .gantt-bar { box-shadow: 0 0 0 2px rgba(53,174,230,0.4); }
.gantt-list li:nth-child(1) .gantt-bar { background: #3E5A66; }
.gantt-list li:nth-child(2) .gantt-bar { background: #3D6B78; }
.gantt-list li:nth-child(3) .gantt-bar { background: #2E7C93; }
.gantt-list li:nth-child(4) .gantt-bar { background: #1F8FB0; }
.gantt-list li:nth-child(5) .gantt-bar { background: #1AA0C9; }
.gantt-list li:nth-child(6) .gantt-bar { background: var(--accent); }

/* ---------- stat row ---------- */
.stat-row { display: flex; gap: 36px; flex-wrap: wrap; }
.stat b { display: block; font-family: var(--font-display); font-size: 26px; color: var(--accent); }
.stat span { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-soft); letter-spacing: 0.04em; }

/* ---------- client logo card ---------- */
.logo-card {
  background: #fff; border-radius: var(--radius); border: 1px solid var(--wire);
  padding: 22px; display: flex; align-items: center; justify-content: center; min-height: 110px;
}
.logo-card img { max-height: 56px; width: auto; }
.logo-name { text-align: center; font-size: 13.5px; color: var(--ink-soft); margin-top: 10px; line-height: 1.4; }

/* ---------- logo strip ---------- */
.logo-strip { display: flex; flex-wrap: wrap; gap: 14px; }
.logo-strip .card { display: flex; align-items: center; justify-content: center; min-height: 90px; text-align: center; flex: 1 1 200px; }
.logo-strip .card span { font-family: var(--font-display); font-weight: 700; color: var(--ink-soft); font-size: 14px; }

/* ---------- site header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: radial-gradient(60% 100% at 0% 0%, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.05) 45%, transparent 75%), var(--ground);
  border-bottom: 1px solid var(--wire);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 24px; }
.brand { display: flex; align-items: center; flex: none; }
.brand svg { height: 46px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-family: var(--font-display); font-size: 14px; font-weight: 600; }
.nav-links a:not(.btn) { color: var(--ink-soft); }
.nav-links a:not(.btn):hover, .nav-links a.active { color: var(--accent); }
.nav-cta { margin-left: 8px; }
.nav-toggle {
  display: none; flex: none; width: 40px; height: 40px; border-radius: 8px;
  align-items: center; justify-content: center; border: 1px solid var(--wire);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 18px; height: 2px; background: var(--ink); position: relative;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

@media (max-width: 860px) {
  .nav-links { position: fixed; inset: 0; top: 74px; background: var(--ground); flex-direction: column;
    justify-content: flex-start; padding: 32px 24px; gap: 22px; transform: translateY(-8px);
    opacity: 0; pointer-events: none; transition: opacity .18s ease, transform .18s ease; }
  .nav-links a { font-size: 20px; }
  .site-header.is-open .nav-links { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-toggle { display: flex; }
  .site-header.is-open .nav-toggle span { transform: rotate(45deg); }
  .site-header.is-open .nav-toggle span::before { top: 0; transform: rotate(0); opacity: 0; }
  .site-header.is-open .nav-toggle span::after { top: 0; transform: rotate(-90deg); }
}

/* ---------- footer ---------- */
.site-footer { padding: 64px 0 40px; border-top: 1px solid var(--wire); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 30px; flex-wrap: wrap; }
.footer-top h2 span { color: var(--accent); }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-top: 30px; border-top: 1px solid var(--wire); }
.footer-cols h4 { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.06em; color: var(--ink-dim); text-transform: uppercase; margin-bottom: 14px; }
.footer-cols a, .footer-cols p { display: block; font-size: 14px; margin-bottom: 8px; }
.footer-cols a:not(.btn), .footer-cols p { color: var(--ink-soft); }
.footer-cols a:not(.btn):hover { color: var(--accent); }
.footer-meta { display: flex; justify-content: space-between; font-size: 13px; color: var(--ink-dim); margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--wire); flex-wrap: wrap; gap: 10px; }

@media (max-width: 700px) {
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- simple page header (non-Home pages) ---------- */
.page-header { padding: 64px 0 48px; border-bottom: 1px solid var(--wire); }
.page-header .lead { max-width: 62ch; margin-top: 14px; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: 72px 0 84px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: start; }
.hero-watermark { position: absolute; z-index: -1; pointer-events: none; opacity: 0.07; }
.hero-watermark svg { width: 100%; height: 100%; display: block; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .stat-row { gap: 24px; }
}

/* ---------- forms ---------- */
.field { display: grid; gap: 6px; margin-bottom: 18px; }
.field label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--ink-soft); text-transform: uppercase; }
.field input, .field textarea {
  background: var(--panel); border: 1px solid var(--wire); border-radius: 6px;
  padding: 12px 14px; color: var(--ink); font-family: var(--font-sans); font-size: 15px;
}
.field input:focus, .field textarea:focus { border-color: var(--accent); outline: none; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .field-row { grid-template-columns: 1fr; } }
.field .validation-message { display: block; font-family: var(--font-sans); font-size: 12.5px; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- misc content pages ---------- */
.prose { max-width: 68ch; }
.prose p { margin-bottom: 18px; color: var(--ink-soft); line-height: 1.7; }
.prose ul { margin: 0 0 18px; padding-left: 1.2em; list-style: disc; color: var(--ink-soft); }
.prose ul li { margin-bottom: 6px; line-height: 1.6; }
.prose a:not(.btn) { color: var(--accent); text-decoration: underline; text-decoration-color: rgba(53,174,230,0.35); }
.prose > *:last-child { margin-bottom: 0; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { text-align: left; }
.team-card img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--wire); margin-bottom: 14px; }
img[src$="person.png"] { opacity: 0.3; }
.team-card h4 { font-size: 15px; margin-bottom: 2px; }
.team-card span { font-size: 12.5px; color: var(--ink-dim); }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .team-grid { grid-template-columns: 1fr 1fr; } }

.not-found { min-height: 50vh; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.text-danger { color: #E85D5D; }

#blazor-error-ui {
  display: none;
  position: fixed; left: 0; bottom: 0; width: 100%; z-index: 1000;
  background: var(--panel-2); border-top: 1px solid var(--wire); color: var(--ink);
  padding: 14px 20px; font-family: var(--font-mono); font-size: 13px;
}
#blazor-error-ui a.reload { color: var(--accent); margin-left: 10px; }

/* ---------- centered hero (DevAgency concept: outcomes) ---------- */
.hero-centered { text-align: center; padding: 56px 0 40px; }
.hero-centered .eyebrow { justify-content: center; }
.hero-centered h1 { max-width: 18ch; margin: 0 auto 18px; }
.hero-centered .lead { max-width: 58ch; margin: 0 auto 26px; }
.hero-centered .btn-row { justify-content: center; }

/* ---------- timeline (DevAgency concept: pipeline) ---------- */
.timeline { position: relative; display: grid; }
.timeline::before { content: ""; position: absolute; left: 23px; top: 6px; bottom: 6px; width: 1px; background: var(--wire); }
.timeline-step { position: relative; display: grid; grid-template-columns: 48px 1fr; gap: 24px; padding: 0 0 36px; }
.timeline-step:last-child { padding-bottom: 0; }
.timeline-num {
  position: relative; z-index: 1; width: 48px; height: 48px; border-radius: 50%; flex: none;
  background: var(--panel); border: 1px solid var(--wire); color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-weight: 700;
}
.timeline-content h3 { margin-bottom: 6px; }
.timeline-content p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; }

/* ---------- comparison grid ---------- */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.compare-col { border: 1px solid var(--wire); border-radius: var(--radius-lg); padding: 30px 28px; }
.compare-col.is-highlight { border-color: var(--accent); background: var(--panel); }
.compare-col h3 { margin-bottom: 18px; }
.compare-col ul { display: grid; gap: 14px; }
.compare-col li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; line-height: 1.5; color: var(--ink-dim); }
.compare-col.is-highlight li { color: var(--ink-soft); }
.compare-col li::before { content: "—"; flex: none; color: var(--ink-dim); }
.compare-col.is-highlight li::before { content: "✓"; color: var(--accent); font-weight: 700; }

/* ---------- audience / segment cards ---------- */
.audience-card .card-tag { color: var(--accent); }

/* ---------- checklist (compact benefit recap) ---------- */
.checklist { display: grid; gap: 16px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: var(--ink-soft); line-height: 1.5; }
.checklist li::before { content: "✓"; flex: none; color: var(--accent); font-weight: 700; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 26px; max-width: 720px; }
.faq-item h3 { font-size: 16.5px; margin-bottom: 8px; }
.faq-item p { color: var(--ink-soft); line-height: 1.6; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--panel); border: 1px solid var(--wire); border-radius: var(--radius-lg);
  padding: 48px; text-align: center;
}
.cta-banner h2 { margin-bottom: 12px; }
.cta-banner p { color: var(--ink-soft); max-width: 52ch; margin: 0 auto 26px; }

@media (max-width: 700px) {
  .compare-grid { grid-template-columns: 1fr; }
  .timeline-step { grid-template-columns: 36px 1fr; gap: 16px; }
  .timeline-num { width: 36px; height: 36px; font-size: 13px; }
  .timeline::before { left: 17px; }
  .cta-banner { padding: 32px 24px; }
}

/* ---------- tabs (DevAgency concept: combined) ---------- */
.tab-input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.tab-nav { display: flex; gap: 28px; border-bottom: 1px solid var(--wire); margin-bottom: 40px; }
.tab-btn {
  display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: 14.5px;
  color: var(--ink-soft); padding: 4px 0 14px; cursor: pointer; border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.tab-btn:hover { color: var(--ink); }
.tab-panel { display: none; }
#tab-why:checked ~ .tab-nav label[for="tab-why"],
#tab-how:checked ~ .tab-nav label[for="tab-how"] { color: var(--accent); border-color: var(--accent); }
#tab-why:checked ~ #panel-why { display: block; }
#tab-how:checked ~ #panel-how { display: block; }
@media (max-width: 640px) {
  .tab-nav { gap: 18px; }
  .tab-btn { font-size: 13px; }
}

#blazor-error-ui .dismiss { position: absolute; right: 16px; top: 12px; cursor: pointer; color: var(--ink-soft); }

/* =========================================================
   Home page concepts — logo/brand-forward, low-density drafts
   for comparison only. Scoped to /home/* routes.
   ========================================================= */

/* ---------- concept: poster (big centered logo, huge negative space) ---------- */
.hero-poster { position: relative; min-height: 78vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-poster-glow {
  position: absolute; top: 50%; left: 50%; width: 900px; height: 900px; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(53,174,230,0.22) 0%, rgba(53,174,230,0.06) 45%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero-poster-content { position: relative; z-index: 1; max-width: 720px; padding: 0 24px; }
.hero-poster-logo { width: 240px; margin: 0 auto 32px; }
.hero-poster-logo img { width: 100%; display: block; }
.hero-poster .eyebrow { justify-content: center; }
.hero-poster h1 { margin: 0 0 18px; }
.hero-poster .lead { max-width: 52ch; margin: 0 auto 30px; }
.hero-poster .btn-row { justify-content: center; }

.ticker-strip {
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; padding: 24px 0;
  border-top: 1px solid var(--wire); border-bottom: 1px solid var(--wire);
  font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-dim); letter-spacing: 0.04em;
}

.pill-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.pill {
  display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--wire); border-radius: 999px;
  padding: 12px 22px; font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--ink);
  transition: border-color .15s ease, color .15s ease;
}
.pill:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- concept: split visual (headline left, art panel right) ---------- */
.hero-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; min-height: 70vh; }
.hero-split-panel {
  position: relative; aspect-ratio: 1 / 1; max-width: 440px; margin: 0 auto; border-radius: var(--radius-lg);
  background: radial-gradient(circle at 50% 40%, rgba(53,174,230,0.2), transparent 65%), var(--panel);
  border: 1px solid var(--wire); display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-split-panel::before, .hero-split-panel::after { content: ""; position: absolute; border: 1px solid var(--wire-soft); border-radius: 50%; }
.hero-split-panel::before { width: 78%; height: 78%; }
.hero-split-panel::after { width: 102%; height: 102%; }
.hero-split-logo { width: 58%; position: relative; z-index: 1; }
.hero-split-logo img { width: 100%; display: block; }

/* ---------- concept: editorial (full-bleed watermark, magazine type) ---------- */
.hero-editorial { position: relative; overflow: hidden; padding: 130px 0 100px; }
.hero-editorial-mark {
  position: absolute; top: 50%; left: 50%; width: 1100px; transform: translate(-50%, -50%);
  opacity: 0.05; pointer-events: none; z-index: 0;
}
.hero-editorial-mark img { width: 100%; display: block; }
.hero-editorial-content { position: relative; z-index: 1; text-align: center; max-width: 800px; margin: 0 auto; padding: 0 24px; }
.hero-editorial h1 { font-size: clamp(40px, 6vw, 72px); margin: 0 0 22px; }
.hero-editorial .eyebrow { justify-content: center; }
.hero-editorial .lead { max-width: 56ch; margin: 0 auto 30px; }
.hero-editorial .btn-row { justify-content: center; }

@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split-panel { max-width: 320px; }
}
@media (max-width: 640px) {
  .hero-poster { min-height: 60vh; }
  .hero-poster-logo { width: 160px; }
  .hero-poster-glow { width: 600px; height: 600px; }
  .hero-editorial { padding: 80px 0 64px; }
  .hero-editorial-mark { width: 700px; }
  .ticker-strip { gap: 20px; font-size: 11px; }
}
