/* ============================================================
   FLATHAT3D — global styles
   Dark, minimal. Renders are the hero; UI stays out of the way.
   ============================================================ */

:root {
  --bg:        #000000;   /* pure black base                */
  --bg-2:      #000000;   /* raised areas stay black        */
  --line:      #202020;   /* hairline borders               */
  --text:      #e9eaec;   /* primary text                   */
  --text-dim:  #9a9ea7;   /* secondary text                 */
  --text-faint:#5f636c;   /* labels, captions               */
  --accent:    #ffd21a;   /* single accent — yellow         */
  --accent-dim:#f2a900;   /* hover accent — orange yellow   */

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);

  --font: "Inter", "Helvetica Neue", Arial, system-ui, sans-serif;

  --t: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
ul { list-style: none; }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 600;
}

section { padding-block: clamp(64px, 11vw, 140px); }

/* ---------- typography ---------- */
h1, h2, h3 { font-weight: 600; line-height: 1.08; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 6.5vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); letter-spacing: -0.01em; }
p  { color: var(--text-dim); max-width: 60ch; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--text); }

/* ============================================================
   Header / nav
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand { font-weight: 700; letter-spacing: 0.02em; font-size: 1.05rem; }
.brand span { color: var(--accent); }
.logo-brand {
  display: inline-flex; align-items: center; width: 250px; height: 58px;
  overflow: hidden;
  position: relative;
}
.logo-brand img {
  display: block; width: 100%; height: 100%; object-fit: contain;
}
.logo-brand .brand-fallback {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
.nav { display: flex; gap: clamp(18px, 3vw, 40px); align-items: center; }
.nav a {
  font-size: 0.9rem; color: var(--text-dim); font-weight: 500;
  letter-spacing: 0.01em;
}
.nav a:hover, .nav a.active { color: var(--text); }
.nav a.ext::after { content: " ↗"; color: var(--text-faint); font-size: 0.8em; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-weight: 600; font-size: 0.92rem; letter-spacing: 0.01em;
  padding: 0.85em 1.6em; border-radius: 2px;
  border: 1px solid transparent; cursor: pointer;
  transition: background var(--t), border-color var(--t), color var(--t), transform var(--t);
}
.btn-primary { background: var(--accent); color: #000; }
.btn-primary:hover { background: var(--accent-dim); transform: translateY(-1px); }
.btn-ghost { border-color: var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--text-dim); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; min-height: 88vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 55%, var(--bg) 100%);
}
.hero-content { position: relative; z-index: 1; padding-block: clamp(48px, 9vw, 110px); }
.hero h1 { max-width: 16ch; margin-block: 0.35em 0.5em; }
.hero .lead { max-width: 46ch; margin-bottom: 2em; }

/* ============================================================
   Three main lines — feature cards
   ============================================================ */
.lines { border-top: 1px solid var(--line); }
.lines-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.line-card {
  background: var(--bg); padding: clamp(28px, 3vw, 44px);
  display: flex; flex-direction: column; min-height: 340px;
  transition: background var(--t);
}
.line-card:hover { background: var(--bg-2); }
.line-card .num { font-size: 0.78rem; color: var(--text-faint); letter-spacing: 0.1em; margin-bottom: auto; }
.line-card h3 { margin-block: 1.4em 0.5em; }
.line-card p { font-size: 0.95rem; margin-bottom: 1.6em; }
.line-card .more { font-weight: 600; font-size: 0.9rem; color: var(--text); align-self: flex-start; }
.line-card .more:hover { color: var(--accent); }
.line-card .more::after { content: " →"; transition: transform var(--t); display: inline-block; }
.line-card:hover .more::after { transform: translateX(4px); }

/* ============================================================
   Works grid
   ============================================================ */
.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.6vw, 24px); }
.work {
  display: block; position: relative; border-radius: 4px; overflow: hidden;
  background: var(--bg-2); border: 1px solid var(--line);
}
.work .thumb { aspect-ratio: 4 / 3; }
.work .caption {
  position: absolute; inset: auto 0 0 0; padding: 14px 16px;
  background: linear-gradient(0deg, rgba(0,0,0,0.92), transparent);
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
  opacity: 0; transform: translateY(8px); transition: opacity var(--t), transform var(--t);
}
.work:hover .caption { opacity: 1; transform: translateY(0); }
.work .caption .name { font-weight: 600; font-size: 0.95rem; color: var(--text); }
.work .caption .meta { font-size: 0.78rem; color: var(--text-dim); }

/* ============================================================
   Press strip
   ============================================================ */
.press-strip {
  padding-block: clamp(28px, 4vw, 48px);
  border-block: 1px solid var(--line);
  background: var(--bg);
}
.press-strip .wrap {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: clamp(20px, 4vw, 48px); flex-wrap: wrap;
}
.press-logos {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end;
  gap: clamp(18px, 3vw, 38px);
}
.press-logos a {
  color: var(--text-dim); font-weight: 600; font-size: clamp(0.9rem, 1.3vw, 1.05rem);
}
.press-logos a:hover { color: var(--text); }

/* ============================================================
   Placeholder blocks (phase 1 — no real images)
   ============================================================ */
.ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background:
    repeating-linear-gradient(45deg, #000 0 12px, #050505 12px 24px);
  color: var(--text-faint); font-size: 0.8rem; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 600; text-align: center;
  border: 0;
}
.ph.hero-ph { background:
    radial-gradient(120% 120% at 70% 30%, #0a0a0a 0%, #000 70%),
    repeating-linear-gradient(45deg, #000 0 16px, #050505 16px 32px); }

/* ============================================================
   About
   ============================================================ */
.about-hero { padding-block: clamp(56px, 8vw, 112px); }
.about-intro {
  display: grid; grid-template-columns: minmax(260px, 0.72fr) 1fr;
  gap: clamp(40px, 7vw, 96px); align-items: center;
}
.about-copy { min-width: 0; }
.about-copy h1 {
  font-size: clamp(4.2rem, 8.6vw, 7.4rem);
  line-height: 0.88; letter-spacing: 0; font-weight: 700;
  overflow-wrap: normal;
}
.about-copy h2 {
  margin-top: clamp(18px, 2vw, 28px);
  color: var(--text); font-size: clamp(1rem, 1.8vw, 1.35rem);
  max-width: 28ch;
}
.about-intro .portrait {
  position: relative; aspect-ratio: 3 / 4; border-radius: 3px;
  overflow: hidden; border: 1px solid var(--line); max-height: 640px;
}
.about-intro .portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 52% 38%; }
.about-intro p + p { margin-top: 1.1em; }
.media-list { border-top: 1px solid var(--line); margin-top: 0; }
.media-list li { display: flex; gap: clamp(16px, 4vw, 48px); padding-block: 22px; border-bottom: 1px solid var(--line); align-items: baseline; flex-wrap: wrap; }
.media-list .outlet { font-weight: 600; min-width: 180px; }
.media-list .desc { color: var(--text-dim); flex: 1; min-width: 220px; }
.media-list .year { color: var(--text-faint); font-size: 0.85rem; }

.official-bio {
  background: #f4f2ec;
  color: #050505;
  padding-block: clamp(48px, 7vw, 86px);
}
.official-bio-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
}
.official-bio .eyebrow {
  color: #5f5f5f;
}
.official-bio-title h2 {
  margin-top: 0.35em;
  color: #050505;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}
.official-bio-copy {
  display: grid;
  gap: clamp(18px, 2.3vw, 26px);
}
.official-bio-copy p {
  color: #1c1c1c;
  max-width: 72ch;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.72;
}
.official-bio-copy .bio-lead {
  color: #050505;
  font-size: clamp(1.15rem, 1.75vw, 1.42rem);
  line-height: 1.58;
  font-weight: 600;
}

.proof-strip {
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  border-block: 1px solid var(--line);
  padding-block: clamp(32px, 5vw, 56px);
}
.proof-intro h2 {
  margin-top: 0.35em;
  max-width: 12ch;
}
.proof-list {
  display: grid;
  border-top: 1px solid var(--line);
}
.proof-row {
  display: grid;
  grid-template-columns: minmax(92px, 0.35fr) minmax(150px, 0.55fr) minmax(0, 1.1fr);
  gap: clamp(14px, 2.5vw, 34px);
  align-items: baseline;
  padding-block: clamp(18px, 2.4vw, 26px);
  border-bottom: 1px solid var(--line);
}
.proof-row > span {
  color: var(--text-faint);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.proof-row strong {
  color: var(--text);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.25;
}
.proof-row p {
  margin: 0;
  font-size: 0.94rem;
}
.proof-press p {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: none;
}
.proof-press a,
.proof-press p span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.35em 0.75em;
  border: 1px solid var(--line);
  color: var(--text-dim);
  font-size: 0.82rem;
  font-weight: 600;
}
.proof-press a:hover {
  color: #000;
  background: var(--accent);
  border-color: var(--accent);
}

/* ============================================================
   Contact
   ============================================================ */
.contact { background: var(--bg-2); border-top: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.contact-actions { display: grid; gap: 14px; }
.contact-card {
  display: grid; gap: 8px; padding: clamp(20px, 2.4vw, 28px);
  background: var(--bg); border: 1px solid var(--line); border-radius: 4px;
  transition: border-color var(--t), transform var(--t), background var(--t);
}
.contact-card:hover { border-color: var(--text-dim); background: #050505; transform: translateY(-1px); }
.contact-card strong { color: var(--text); font-size: clamp(1.1rem, 1.7vw, 1.45rem); font-weight: 600; }
.contact-card small { color: var(--text-dim); font-size: 0.92rem; max-width: 48ch; }
.contact-card.ext strong::after { content: " ↗"; color: var(--text-faint); font-size: 0.72em; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  position: relative; overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0,0,0,0.78), rgba(0,0,0,0.62)),
    linear-gradient(135deg, #2a2a2a 0%, #151515 45%, #303030 100%);
  padding-block: clamp(44px, 6vw, 72px) 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr 1.25fr 1.1fr;
  gap: clamp(28px, 5vw, 72px);
}
.footer-col { display: grid; align-content: start; gap: 12px; }
.footer-col h3 {
  color: var(--text); font-size: 1rem; font-weight: 700;
  letter-spacing: 0; margin-bottom: 8px;
}
.footer-col a,
.footer-col span {
  color: var(--text-dim); font-size: 0.92rem; line-height: 1.45;
}
.footer-col a:hover { color: var(--text); }
.footer-col a.ext::after { content: ""; }
.footer-contact a { color: var(--text); }
.footer-contact strong { color: var(--text); font-size: 1rem; line-height: 1.35; }
.social-links { display: flex; flex-wrap: wrap; gap: 12px; }
.social-links a {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--text); color: #000;
  font-size: 0.78rem; font-weight: 800; text-transform: uppercase;
}
.social-links a:hover { background: var(--accent); color: #000; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; margin-top: clamp(56px, 8vw, 90px); padding-top: 28px;
  border-top: 1px dotted rgba(255,255,255,0.28);
}
.copyright { color: var(--text-dim); font-size: 0.92rem; max-width: 38ch; }
.footer-logo {
  display: inline-flex; align-items: center; justify-content: flex-end;
  width: min(300px, 46vw);
}
.footer-logo img {
  width: 100%; height: auto; display: block;
}

/* ============================================================
   Section heads
   ============================================================ */
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: clamp(32px, 4vw, 56px); flex-wrap: wrap; }
.section-head .intro { max-width: 52ch; }
.section-head h2 { margin-top: 0.3em; }
.section-head .link { font-weight: 600; font-size: 0.9rem; white-space: nowrap; }
.section-head .link:hover { color: var(--accent); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 860px) {
  .lines-grid { grid-template-columns: 1fr; }
  .line-card { min-height: 0; }
  .works-grid { grid-template-columns: repeat(2, 1fr); }
  .about-intro, .contact-grid { grid-template-columns: 1fr; }
  .about-intro .portrait { max-width: 420px; }
  .about-copy { padding-top: 0; }
  .official-bio-grid { grid-template-columns: 1fr; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-intro h2 { max-width: none; }
  .proof-row { grid-template-columns: 1fr; gap: 8px; }
  .press-strip .wrap, .press-logos { justify-content: flex-start; }
  .footer-cta { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 520px) {
  .works-grid { grid-template-columns: 1fr; }
  .nav { gap: 16px; }
  .nav a.nav-hide { display: none; }
  .logo-brand { width: 190px; height: 48px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-logo strong { font-size: 1.45rem; }
}

/* ============================================================
   Split panels — full-screen 3-up hero (hover-expand)
   Mirrors the old site's 3-column hero, restyled dark + red.
   ============================================================ */
.panels {
  display: flex;
  height: 100vh;
  min-height: 600px;
  width: 100%;
  padding-block: 0;
}
.panel {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: var(--text);
  border-left: 1px solid rgba(0,0,0,0.6);
  transition: flex-grow 0.55s cubic-bezier(0.4,0,0.2,1);
}
.panel:first-child { border-left: 0; }

/* hover-expand: hovered panel grows, siblings shrink */
@media (hover: hover) and (min-width: 901px) {
  .panels:hover .panel { flex-grow: 0.7; }
  .panels .panel:hover  { flex-grow: 2; }
}

/* background (placeholder now; swap .ph for <img>/<video> later) */
.panel-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; transition: transform 0.6s ease; }
.panel-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.aero-panel-img { object-position: 56% center; }
.concept-panel-img { object-position: 62% center; }
.store-panel-img { object-position: 52% center; }
.panel:hover .panel-bg { transform: scale(1.04); }
.panel-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.92) 100%);
  transition: background 0.5s ease;
}
.panel:hover .panel-bg::after {
  background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.40) 55%, rgba(0,0,0,0.88) 100%);
}
/* top accent bar reveals on hover */
.panel::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 2;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.panel:hover::before { transform: scaleX(1); }

.panel-content {
  position: relative; z-index: 1; width: 100%;
  padding: clamp(28px, 4vw, 56px);
}
.panel-content .num { font-size: 0.78rem; letter-spacing: 0.18em; color: var(--text-faint); font-weight: 600; }
.panel-content h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.9rem); margin: 0.5em 0 0.45em; max-width: 14ch;
}
.panel-content p { font-size: 0.98rem; color: var(--text-dim); max-width: 38ch; margin-bottom: 1.5em; }
.panel:hover .panel-content p { color: var(--text); }
.panel-cta {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-weight: 600; font-size: 0.92rem; letter-spacing: 0.01em;
  background: var(--accent); color: #000; padding: 0.75em 1.4em; border-radius: 2px;
  transition: background var(--t), transform var(--t);
}
.panel:hover .panel-cta { background: var(--accent-dim); }
.panel-cta::after { content: "→"; transition: transform var(--t); }
.panel-cta.ext::after { content: "↗"; }
.panel:hover .panel-cta::after { transform: translateX(3px); }

/* transparent header variant for the full-screen hero homepage */
.site-header.overlay {
  position: absolute; background: transparent; backdrop-filter: none;
  border-bottom: 0; width: 100%;
}
.site-header.overlay .nav a { color: var(--text); text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
.site-header.overlay .brand { text-shadow: 0 1px 8px rgba(0,0,0,0.5); }

@media (max-width: 900px) {
  .panels {
    flex-direction: column;
    height: calc(100svh - 64px);
    min-height: 620px;
  }
  .panel {
    flex: 1 1 0;
    min-height: 0;
    border-left: 0;
    border-top: 1px solid rgba(0,0,0,0.6);
  }
  .panel:first-child { border-top: 0; }
  .panel::before { transform: scaleX(1); }            /* accent always on, no hover */
  .panel-content { padding: clamp(20px, 5vw, 32px); }
  .panel-content .num { font-size: 0.7rem; }
  .panel-content h2 { font-size: clamp(1.3rem, 6vw, 2rem); max-width: 16ch; margin: 0.35em 0 0.3em; }
  .panel-content p { font-size: 0.9rem; line-height: 1.45; max-width: 38ch; margin-bottom: 0.9em; }
  .panel-cta { padding: 0.65em 1.05em; font-size: 0.86rem; }
  .aero-panel-img { object-position: 58% center; }
  .concept-panel-img { object-position: 64% center; }
  .store-panel-img { object-position: 58% center; }
  .site-header.overlay { position: sticky; background: color-mix(in srgb, var(--bg) 82%, transparent); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
}

@media (max-width: 520px) {
  .panels { min-height: 560px; }
  .panel-content p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; }
}

/* ============================================================
   404
   ============================================================ */
.error-page { min-height: 100vh; min-height: 100svh; overflow: hidden; }
.error-hero {
  position: relative; width: 100vw; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: stretch; padding: 0; overflow: hidden;
}
.error-hero img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center bottom;
}
.error-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.86) 0%, rgba(0,0,0,0.62) 42%, rgba(0,0,0,0.25) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.65) 100%);
}
.error-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 100vh; min-height: 100svh;
  padding-block: max(22px, env(safe-area-inset-top)) max(42px, env(safe-area-inset-bottom));
}
.error-content h1 {
  margin-top: 0.22em; font-size: clamp(4rem, 13vw, 10rem);
  line-height: 0.88; letter-spacing: 0; font-weight: 800;
}
.error-content p { margin-block: 1.4em 2em; color: var(--text); }

@media (max-aspect-ratio: 4 / 3) {
  .error-hero img { object-position: 58% bottom; }
}

@media (max-width: 520px) {
  .error-content h1 { font-size: clamp(3.2rem, 18vw, 5rem); }
  .error-content p { max-width: 28ch; }
}

/* ============================================================
   Temporary splash homepage
   ============================================================ */
body.splash-home {
  min-height: 100vh;
  min-height: 100svh;
  overflow-x: hidden;
  background: #000;
  color: #fff;
  letter-spacing: 0;
}

.splash-page {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vh, 46px) clamp(28px, 5vw, 58px);
  isolation: isolate;
}

.splash-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.36) 44%, rgba(0,0,0,0.74) 100%);
  pointer-events: none;
}

.splash-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  object-fit: cover;
  object-position: center;
  opacity: 0.72;
  filter: contrast(1.1) brightness(0.66) saturate(0.88);
}

.splash-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 980px);
  display: grid;
  justify-items: center;
  gap: clamp(14px, 3vh, 32px);
  text-align: center;
}

.splash-kicker {
  color: #f4f4f4;
  font-size: clamp(0.86rem, 2vw, 1.24rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.035em;
  max-width: 48rem;
}

.splash-lockup {
  position: relative;
  width: min(100%, 920px);
  min-height: clamp(220px, 45vh, 430px);
  display: grid;
  place-items: center;
  padding-block: clamp(18px, 7vh, 72px) clamp(12px, 4vh, 42px);
  overflow: hidden;
}

.splash-lockup::after {
  content: none;
}

.splash-logo {
  position: relative;
  z-index: 2;
  width: min(82vw, 640px);
  max-height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,0.82));
}

.splash-note {
  color: #9a9ea7;
  font-size: clamp(0.68rem, 1.25vw, 0.8rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.26em;
}

.splash-links {
  width: min(100%, 680px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 5vw, 86px);
  margin-top: clamp(6px, 1.6vh, 14px);
}

.splash-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  color: #f0f0f0;
  font-size: clamp(0.78rem, 1.45vw, 1rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.055em;
  border-bottom: 1px solid transparent;
}

.splash-links a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

@media (max-width: 640px) {
  .splash-page {
    align-items: center;
    padding-inline: 20px;
  }

  .splash-inner {
    gap: 22px;
  }

  .splash-kicker {
    max-width: 18rem;
  }

  .splash-lockup {
    min-height: 280px;
    padding-block: 38px 34px;
  }

  .splash-bg {
    width: 128vw;
    max-width: none;
    left: 50%;
    transform: translateX(-50%);
    object-position: center;
  }

  .splash-logo {
    width: min(92vw, 430px);
  }

  .splash-note {
    max-width: 17rem;
    letter-spacing: 0.2em;
  }

  .splash-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 24px;
  }
}
