/* ==========================================================================
   ALP Soluções Digitais, estilos do site
   ========================================================================== */

:root {
  --gold-dark: #8a6a2f;
  --gold: #c9a24f;
  --gold-light: #e9cd82;
  --gold-bright: #f6e18e;

  --bg-dark-0: #08080a;
  --bg-dark-1: #0d0d10;
  --bg-dark-2: #131318;
  --bg-dark-3: #1a1a20;
  --border-dark: #26262e;

  --bg-light-0: #f7f4ee;
  --bg-light-1: #ffffff;
  --border-light: #e5ded0;

  --ink-on-dark: #f1eee6;
  --ink-on-dark-muted: #a8a29a;
  --ink-on-light: #17140f;
  --ink-on-light-muted: #635c4d;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --container: 1160px;

  --font-display: "Poppins", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;

  --shadow-card: 0 20px 45px -20px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 10px 30px -10px rgba(201, 162, 79, 0.35);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-dark-1);
  color: var(--ink-on-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; margin: 0 0 .5em; font-weight: 600; }
p { margin: 0 0 1em; }
button { font-family: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---------- layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: clamp(64px, 9vw, 112px) 0; position: relative; overflow: clip; }
.section--dark { background: var(--bg-dark-1); color: var(--ink-on-dark); }
.section--dark-alt { background: var(--bg-dark-2); color: var(--ink-on-dark); }
.section--light { background: var(--bg-light-0); color: var(--ink-on-light); }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-head { max-width: 720px; margin: 0 0 48px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); }
.section--light .section-head p { color: var(--ink-on-light-muted); }
.section--dark .section-head p,
.section--dark-alt .section-head p { color: var(--ink-on-dark-muted); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0; padding: 0; margin: -1px;
}

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  background: var(--gold);
  color: #17140f;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 1000;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 55%, var(--gold-dark));
  color: #1a1408;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { box-shadow: 0 14px 34px -8px rgba(201,162,79,.55); }
.btn-ghost-dark {
  background: transparent;
  color: var(--ink-on-dark);
  border-color: var(--border-dark);
}
.btn-ghost-dark:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-ghost-light {
  background: transparent;
  color: var(--ink-on-light);
  border-color: var(--border-light);
}
.btn-ghost-light:hover { border-color: var(--gold-dark); color: var(--gold-dark); }
.btn-block { width: 100%; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 10, 0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border-dark);
  opacity: 1;
  transition: opacity .35s ease, transform .35s ease;
}
.site-header.is-hidden {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 34px; width: auto; }
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: .02em; color: var(--ink-on-dark); }

.nav-right { display: flex; align-items: center; gap: 36px; }
.nav-desktop { display: none; }
.nav-desktop ul { display: flex; gap: 30px; list-style: none; }
.nav-desktop a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-on-dark-muted);
  transition: color .15s ease;
}
.nav-desktop a:hover { color: var(--gold-light); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.nav-cta { display: none; }

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-dark);
  background: transparent;
  color: var(--ink-on-dark);
}
.nav-toggle svg { width: 20px; height: 20px; }

.mobile-nav {
  position: fixed;
  inset: 76px 0 0 0;
  background: var(--bg-dark-1);
  border-top: 1px solid var(--border-dark);
  padding: 28px 24px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 90;
}
.mobile-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav ul a {
  display: block;
  padding: 14px 4px;
  font-size: 17px;
  font-weight: 500;
  border-bottom: 1px solid var(--border-dark);
  color: var(--ink-on-dark);
}
.mobile-nav .btn { margin-top: 22px; width: 100%; }

@media (min-width: 900px) {
  .nav-desktop { display: block; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none; }
}

/* ---------- hero ---------- */
.hero {
  background: radial-gradient(ellipse 900px 560px at 78% 8%, rgba(201,162,79,.16), transparent 60%),
              radial-gradient(ellipse 700px 500px at 10% 90%, rgba(201,162,79,.10), transparent 60%),
              var(--bg-dark-0);
  padding-top: clamp(64px, 10vw, 108px);
  padding-bottom: clamp(56px, 8vw, 96px);
}
.hero-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 40px; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-dark);
  background: rgba(201,162,79,.06);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 22px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,79,.25); }
.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -.01em;
  margin-bottom: 20px;
}
.hero h1 .accent {
  background: linear-gradient(100deg, var(--gold-bright), var(--gold) 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-on-dark-muted);
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 22px; font-size: 13.5px; color: var(--ink-on-dark-muted); }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 16px; height: 16px; color: var(--gold); flex: none; }

.hero-visual { position: relative; }
.hero-visual svg { width: 100%; height: auto; }

/* ---------- pain / problema ---------- */
.pain-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin-top: 8px;
}
@media (min-width: 720px) {
  .pain-list { grid-template-columns: 1fr 1fr; gap: 16px; }
}
.pain-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: var(--bg-dark-2);
  border: 1px solid var(--border-dark);
}
.pain-item .mark {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}
.pain-item p { margin: 0; font-size: 15px; color: var(--ink-on-dark); }

.problema-callout {
  margin-top: 40px;
  padding: 26px 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(201,162,79,.35);
  background: rgba(201,162,79,.07);
  font-size: 17px;
  font-weight: 500;
  color: var(--gold-light);
}
.problema-callout strong { color: var(--gold-bright); }

/* ---------- solução ---------- */
.solucao-grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 960px) { .solucao-grid { grid-template-columns: .9fr 1.1fr; gap: 56px; } }
.solucao-card {
  background: var(--bg-light-1);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-card);
}
.solucao-card h3 { font-size: 20px; margin-bottom: 10px; color: var(--ink-on-light); }
.solucao-card p:last-child { margin-bottom: 0; }
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.badge-pill {
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  background: #17140f;
  color: var(--gold-light);
}

/* ---------- serviços ---------- */
.services-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 620px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--bg-dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.service-card:hover { border-color: rgba(201,162,79,.5); transform: translateY(-4px); background: var(--bg-dark-3); }
.service-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(201,162,79,.1);
  border: 1px solid rgba(201,162,79,.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 24px; height: 24px; color: var(--gold); }
.service-card h3 { font-size: 17.5px; margin-bottom: 8px; }
.service-card p { font-size: 14.5px; color: var(--ink-on-dark-muted); margin-bottom: 0; }
.service-card .tag-custom {
  display: inline-block;
  margin-top: 12px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #17140f;
  background: var(--gold-light);
  padding: 4px 10px;
  border-radius: 999px;
}
.services-note {
  margin-top: 28px;
  font-size: 13.5px;
  color: var(--ink-on-dark-muted);
}

/* ---------- como funciona ---------- */
.steps {
  display: grid;
  gap: 22px;
  counter-reset: step;
}
@media (min-width: 780px) { .steps { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.step-card {
  background: var(--bg-light-1);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  position: relative;
}
.step-number {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #17140f;
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 18px;
}
.step-card h3 { font-size: 17px; margin-bottom: 8px; color: var(--ink-on-light); }
.step-card p { font-size: 14.5px; color: var(--ink-on-light-muted); margin-bottom: 0; }

/* ---------- diferenciais ---------- */
.diff-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .diff-grid { grid-template-columns: 1fr 1fr; } }
.diff-card {
  display: flex;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--bg-dark-2);
  border: 1px solid var(--border-dark);
}
.diff-icon {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(201,162,79,.1);
  border: 1px solid rgba(201,162,79,.3);
  display: flex; align-items: center; justify-content: center;
}
.diff-icon svg { width: 22px; height: 22px; color: var(--gold); }
.diff-card h3 { font-size: 16.5px; margin-bottom: 6px; }
.diff-card p { font-size: 14.5px; color: var(--ink-on-dark-muted); margin-bottom: 0; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border-light);
}
.faq-item:first-child { border-top: 1px solid var(--border-light); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink-on-light);
  cursor: pointer;
}
.faq-question .chev { flex: none; width: 20px; height: 20px; color: var(--gold-dark); transition: transform .2s ease; }
.faq-question[aria-expanded="true"] .chev { transform: rotate(180deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .25s ease;
}
.faq-answer p { padding: 0 4px 22px; font-size: 15px; color: var(--ink-on-light-muted); max-width: 700px; }

/* ---------- CTA final + form ---------- */
.cta-grid { display: grid; gap: 44px; }
@media (min-width: 960px) { .cta-grid { grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: start; } }
.cta-copy h2 { font-size: clamp(28px, 3.6vw, 38px); }
.cta-copy p { color: var(--ink-on-dark-muted); font-size: 17px; }
.btn-whatsapp { margin-top: 28px; }
.btn-whatsapp svg { width: 20px; height: 20px; flex: none; }
.cta-contact-list { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.cta-contact-list li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--ink-on-dark-muted); }
.cta-contact-list svg { width: 18px; height: 18px; color: var(--gold); flex: none; }
.cta-contact-list a:hover { color: var(--gold-light); }
.guarantee-note {
  margin-top: 24px;
  font-size: 13.5px;
  color: var(--ink-on-dark-muted);
  border-left: 2px solid var(--gold);
  padding-left: 14px;
}

.form-card {
  background: var(--bg-light-1);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 38px);
  box-shadow: var(--shadow-card);
}
.form-card h3 { font-size: 19px; margin-bottom: 4px; color: var(--ink-on-light); }
.form-card .form-lede { color: var(--ink-on-light-muted); font-size: 14.5px; margin-bottom: 24px; }
.form-row { display: grid; gap: 18px; margin-bottom: 18px; }
@media (min-width: 560px) { .form-row.cols-2 { grid-template-columns: 1fr 1fr; } }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink-on-light);
}
.field label .req { color: var(--gold-dark); font-weight: 700; }
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg-light-0);
  border: 1px solid var(--border-light);
  color: var(--ink-on-light);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  font-size: 14.5px;
  font-family: inherit;
}
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(201,162,79,.18);
}
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 560px) { .checkbox-grid { grid-template-columns: repeat(3, 1fr); } }
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-on-light-muted);
  background: var(--bg-light-0);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}
.checkbox-item input { accent-color: var(--gold-dark); width: 15px; height: 15px; flex: none; }
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
  cursor: pointer;
}
.consent-row input {
  accent-color: var(--gold-dark);
  width: 16px;
  height: 16px;
  flex: none;
  margin-top: 2px;
}
.consent-row span { font-size: 13px; color: var(--ink-on-light-muted); }
.consent-row a { color: var(--gold-dark); text-decoration: underline; }
.form-status {
  margin-top: 14px;
  font-size: 13.5px;
  font-weight: 600;
  text-align: center;
  min-height: 0;
}
.form-status:empty { margin-top: 0; }
.form-status--success { color: #1a7f4e; }
.form-status--error { color: #b0392a; }
.form-fineprint { margin-top: 16px; font-size: 12.5px; color: var(--ink-on-light-muted); text-align: center; }

/* ---------- footer ---------- */
.site-footer { background: var(--bg-dark-0); border-top: 1px solid var(--border-dark); padding: 56px 0 28px; }
.footer-grid { display: grid; gap: 36px; }
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer-brand img { height: 30px; margin-bottom: 14px; }
.footer-brand p { color: var(--ink-on-dark-muted); font-size: 14px; max-width: 320px; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--gold); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14.5px; color: var(--ink-on-dark-muted); }
.footer-col a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 12px; margin-top: 4px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
}
.footer-social svg { width: 17px; height: 17px; color: var(--ink-on-dark-muted); }
.footer-social a:hover { border-color: var(--gold); }
.footer-social a:hover svg { color: var(--gold); }
.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--border-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-on-dark-muted);
}

/* ---------- legal pages ---------- */
.legal-hero {
  padding: 48px 0 8px;
  background: var(--bg-dark-0);
}
.legal-hero .container { max-width: 780px; }
.legal-hero .eyebrow { margin-bottom: 10px; }
.legal-hero h1 { font-size: clamp(28px, 4vw, 40px); }
.legal-hero p { color: var(--ink-on-dark-muted); }

.legal-content { background: var(--bg-light-0); }
.legal-content .container { max-width: 780px; }
.legal-content h2 {
  font-size: 21px;
  margin-top: 40px;
  color: var(--ink-on-light);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p,
.legal-content li { color: var(--ink-on-light-muted); font-size: 15.5px; }
.legal-content ul { margin: 0 0 1em; padding-left: 22px; }
.legal-content li { margin-bottom: 8px; }
.legal-updated { font-size: 13px; color: var(--ink-on-light-muted); margin-bottom: 0; }

/* ---------- cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-light-1);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
  pointer-events: none;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-on-light-muted);
  flex: 1 1 320px;
}
.cookie-banner a { color: var(--gold-dark); text-decoration: underline; }
.cookie-banner .btn { flex: none; padding: 10px 22px; font-size: 14px; }

/* ---------- whatsapp flutuante ---------- */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px -4px rgba(0, 0, 0, 0.45);
  z-index: 150;
  transition: bottom .3s ease, transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 12px 30px -4px rgba(0, 0, 0, 0.55); }
.whatsapp-float svg { width: 30px; height: 30px; }
.cookie-banner.is-visible ~ .whatsapp-float { bottom: 108px; }
@media (max-width: 640px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 27px; height: 27px; }
  .cookie-banner.is-visible ~ .whatsapp-float { bottom: 168px; }
}

/* ---------- 404 ---------- */
.notfound {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  background: radial-gradient(ellipse 900px 560px at 50% 0%, rgba(201,162,79,.14), transparent 60%), var(--bg-dark-0);
}
.notfound-code {
  font-family: var(--font-display);
  font-size: clamp(72px, 14vw, 140px);
  font-weight: 700;
  background: linear-gradient(100deg, var(--gold-bright), var(--gold) 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 10px;
}
.notfound h1 { font-size: clamp(22px, 3vw, 30px); margin-bottom: 12px; }
.notfound p:not(.notfound-code) { color: var(--ink-on-dark-muted); max-width: 440px; margin: 0 auto 28px; }
.notfound-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.notfound-logo { height: 40px; margin: 0 auto 32px; }
