/* Forza Tool — dark theme with motion */

:root {
  --bg-0:        #07080a;
  --bg-1:        #0e1014;
  --bg-2:        #14171c;
  --bg-3:        #1b1f26;
  --bg-4:        #232830;
  --border:      #262c34;
  --border-hi:   #353c46;
  --text:        #eef0f3;
  --text-dim:    #9aa3ad;
  --text-mute:   #5d6670;
  --accent:      #e63946;
  --accent-hot:  #ff4655;
  --accent-soft: rgba(230, 57, 70, 0.12);
  --accent-glow: rgba(230, 57, 70, 0.35);
  --success:     #29d07c;
  --success-bg:  rgba(41, 208, 124, 0.10);
  --warn:        #f5a524;
  --danger:      #ff5a5f;
  --danger-bg:   rgba(255, 90, 95, 0.10);
  --shadow-lg:   0 24px 60px rgba(0, 0, 0, 0.55);
  --shadow-md:   0 8px 30px rgba(0, 0, 0, 0.4);
  --radius:      14px;
  --radius-sm:   10px;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --dur:         320ms;
  --dur-fast:    180ms;
}

* { box-sizing: border-box; }

/* HTML hidden attribute always wins, regardless of element display rules */
[hidden] { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(1400px 700px at 50% -250px, #1d0709 0%, transparent 55%),
    radial-gradient(900px 500px at 100% 0%, #0c0d12 0%, transparent 60%),
    var(--bg-0);
  color: var(--text);
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, Roboto, sans-serif;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
  letter-spacing: -0.01em;
}

/* subtle moving grid in the bg */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.014) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 75%);
  pointer-events: none;
  z-index: 0;
  animation: drift 60s linear infinite;
}
@keyframes drift {
  to { background-position: 60px 60px, 60px 60px; }
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hot); }

code {
  font-family: 'JetBrains Mono', 'Fira Code', ui-monospace, Consolas, monospace;
  font-size: 0.88em;
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 1px 6px;
  border-radius: 4px;
  color: #f0c896;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 24px 96px;
}

/* ─── NAV ────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  border-bottom: 1px solid var(--border);
  background: rgba(7, 8, 10, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  position: sticky; top: 0; z-index: 50;
  animation: slideDown var(--dur) var(--ease-out) both;
}
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: var(--text);
}
.brand:hover { color: var(--text); }

.brand-mark {
  width: 56px; height: 30px;
  border-radius: 7px;
  display: block;
  overflow: hidden;
  box-shadow: 0 0 24px var(--accent-glow), inset 0 0 0 1px rgba(255,255,255,0.08);
  position: relative;
  background: linear-gradient(135deg, #2a0c10, #1a0608);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.brand-mark img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 18% center;
  display: block;
  filter: saturate(1.15) contrast(1.05);
}
.brand-mark::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: sheen 5s ease-in-out infinite;
  pointer-events: none;
}
.brand:hover .brand-mark { transform: translateY(-1px); box-shadow: 0 0 28px var(--accent-glow), inset 0 0 0 1px rgba(255,255,255,0.14); }
.brand-name { font-weight: 700; font-size: 15px; letter-spacing: 0.3px; }
@keyframes sheen {
  0%, 70% { transform: translateX(-100%); }
  85%     { transform: translateX(100%); }
  100%    { transform: translateX(100%); }
}

.nav-links { display: flex; gap: 6px; }
.nav-links a {
  color: var(--text-dim);
  font-size: 13.5px; font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after { transform: scaleX(1); }

/* ─── HERO ───────────────────────────────────────── */
.hero {
  text-align: center;
  padding: 84px 0 56px;
}
.hero-stagger > * {
  opacity: 0;
  transform: translateY(14px);
  animation: rise var(--dur) var(--ease-out) forwards;
}
.hero-stagger > *:nth-child(1) { animation-delay: 50ms; }
.hero-stagger > *:nth-child(2) { animation-delay: 130ms; }
.hero-stagger > *:nth-child(3) { animation-delay: 220ms; }
.hero-stagger > *:nth-child(4) { animation-delay: 310ms; }
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(230, 57, 70, 0.28);
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  line-height: 1.05;
  background: linear-gradient(180deg, #ffffff 0%, #969ba3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  color: var(--text-dim);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ─── HERO IMAGE ─────────────────────────────────── */
.hero-art {
  margin: 48px auto 0;
  max-width: 720px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-2);
  position: relative;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  animation: rise 600ms var(--ease-out) 380ms forwards;
  aspect-ratio: 16 / 9;
}
.hero-art img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6s ease-out;
}
.hero-art:hover img { transform: scale(1.04); }
.hero-art::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7,8,10,0.85) 100%);
  pointer-events: none;
}
.hero-art .caption {
  position: absolute;
  left: 20px; bottom: 18px;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.85;
  z-index: 1;
}
.hero-art .caption::before {
  content: '';
  display: inline-block;
  width: 18px; height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 10px;
}

/* ─── CARD GRID ──────────────────────────────────── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
  margin-top: 52px;
}
.card {
  position: relative;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  color: var(--text);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), border-color var(--dur-fast) var(--ease),
              box-shadow var(--dur) var(--ease);
  opacity: 0;
  transform: translateY(20px);
  animation: rise var(--dur) var(--ease-out) forwards;
  animation-delay: 380ms;
}
.card:nth-child(2) { animation-delay: 460ms; }

.card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius);
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 0%),
              rgba(230, 57, 70, 0.10), transparent 45%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--accent-soft);
}
.card:hover::before { opacity: 1; }

.card .icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #8a1c25);
  display: grid; place-items: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.18);
  color: #fff;
}
.card .icon-wrap svg { width: 24px; height: 24px; stroke-width: 2; }

.card h3 {
  font-size: 19px;
  margin: 0 0 8px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.card p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}
.card .arrow {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--dur-fast) var(--ease);
}
.card:hover .arrow { gap: 10px; }

/* ─── SECTION ────────────────────────────────────── */
.section {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 34px;
  margin-top: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: rise 420ms var(--ease-out) 280ms forwards;
}
.section h2 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.section .lead {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 26px;
}

/* ─── DROP ZONE ──────────────────────────────────── */
.drop {
  position: relative;
  border: 2px dashed var(--border-hi);
  border-radius: var(--radius);
  padding: 56px 24px;
  text-align: center;
  cursor: pointer;
  background: var(--bg-3);
  display: block;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease),
              transform var(--dur-fast) var(--ease);
  overflow: hidden;
}
.drop::before {
  content: '';
  position: absolute; inset: -2px;
  border-radius: var(--radius);
  background: conic-gradient(from 0deg, transparent, var(--accent), transparent 30%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  z-index: 0;
  animation: spin 4s linear infinite;
}
.drop > * { position: relative; z-index: 1; }
.drop::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: calc(var(--radius) - 2px);
  background: var(--bg-3);
  z-index: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

.drop:hover {
  border-color: var(--accent);
  background: rgba(230, 57, 70, 0.03);
}
.drop.drag-over {
  border-color: var(--accent);
  background: rgba(230, 57, 70, 0.06);
  transform: scale(1.01);
}
.drop.drag-over::before { opacity: 0.65; }
.drop.has-file {
  border-style: solid;
  border-color: var(--success);
  background: rgba(41, 208, 124, 0.04);
}

.drop-icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--bg-4);
  border: 1px solid var(--border);
  color: var(--text-dim);
  transition: transform var(--dur) var(--ease), color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease);
}
.drop:hover .drop-icon { color: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.drop.has-file .drop-icon { color: var(--success); border-color: var(--success); }
.drop-icon svg { width: 26px; height: 26px; stroke-width: 1.8; }

.drop-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}
.drop-hint {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 6px;
}
.drop input[type=file] { display: none; }

/* ─── FORM ───────────────────────────────────────── */
.field { margin-top: 22px; }
.field label {
  display: block;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 8px;
  font-weight: 500;
}
.field input[type=text] {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 13px 14px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.field input[type=text]:hover { border-color: var(--border-hi); }
.field input[type=text]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.field .select,
.field select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 13px 40px 13px 14px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  background-image:
    linear-gradient(45deg, transparent 50%, var(--text-dim) 50%),
    linear-gradient(135deg, var(--text-dim) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.field .select:hover, .field select:hover { border-color: var(--border-hi); }
.field .select:focus, .field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field .select option, .field select option {
  background: var(--bg-2);
  color: var(--text);
}

/* Checkbox row */
.check {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  user-select: none;
}
.check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.check-mark {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 6px;
  border: 1.5px solid var(--border-hi);
  background: var(--bg-3);
  display: grid; place-items: center;
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
  position: relative;
}
.check-mark::after {
  content: '';
  width: 6px; height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform var(--dur-fast) var(--ease);
  margin-top: -2px;
}
.check:hover .check-mark { border-color: var(--accent); }
.check input:checked ~ .check-mark {
  background: var(--accent);
  border-color: var(--accent);
}
.check input:checked ~ .check-mark::after { transform: rotate(45deg) scale(1); }
.check input:focus-visible ~ .check-mark {
  box-shadow: 0 0 0 3px var(--accent-soft);
}

/* ─── BUTTON ─────────────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(180deg, var(--accent), #b51e2a);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  font-family: inherit;
  border: 0;
  border-radius: var(--radius-sm);
  padding: 14px 26px;
  cursor: pointer;
  letter-spacing: 0.02em;
  overflow: hidden;
  transition: transform 80ms var(--ease), box-shadow var(--dur-fast) var(--ease),
              opacity var(--dur-fast) var(--ease);
  box-shadow: 0 4px 14px rgba(230, 57, 70, 0.25), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,0.22) 50%, transparent 65%);
  transform: translateX(-100%);
  transition: transform 700ms var(--ease);
}
.btn:hover:not(:disabled) {
  box-shadow: 0 10px 32px rgba(230, 57, 70, 0.42), inset 0 1px 0 rgba(255,255,255,0.22);
}
.btn:hover:not(:disabled)::after { transform: translateX(100%); }
.btn:active:not(:disabled) { transform: translateY(1px); }
.btn:disabled { opacity: 0.55; cursor: not-allowed; }
.btn.full { width: 100%; margin-top: 24px; }

.btn .spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 700ms linear infinite;
  display: none;
}
.btn.loading .spinner { display: inline-block; }
.btn.loading .btn-label { opacity: 0.85; }

/* ─── STATUS ─────────────────────────────────────── */
.status {
  margin-top: 18px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  border: 1px solid var(--border);
  display: none;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.status.visible {
  display: flex;
  animation: rise 280ms var(--ease-out);
}
.status.info { border-color: #2a4257; background: #0e1a25; color: #bcd4e8; }
.status.ok   { border-color: rgba(41,208,124,0.4); background: var(--success-bg); color: #b7eccc; }
.status.err  { border-color: rgba(255,90,95,0.4); background: var(--danger-bg); color: #ffc1c4; }
.status svg { flex: none; width: 18px; height: 18px; margin-top: 1px; }

.progress-bar {
  margin-top: 12px;
  width: 100%; height: 6px;
  background: var(--bg-3);
  border-radius: 999px;
  overflow: hidden;
  display: none;
}
.progress-bar.visible { display: block; animation: rise 240ms var(--ease-out); }
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-hot));
  width: 0%;
  transition: width 180ms var(--ease);
  position: relative;
}
.progress-fill::after {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(45deg, rgba(255,255,255,0.18) 25%, transparent 25%,
                                          transparent 50%, rgba(255,255,255,0.18) 50%,
                                          rgba(255,255,255,0.18) 75%, transparent 75%);
  background-size: 18px 18px;
  animation: stripes 700ms linear infinite;
  opacity: 0.7;
}
@keyframes stripes {
  to { background-position: 18px 0; }
}

/* ─── RESULT CARD ────────────────────────────────── */
.result-card {
  margin-top: 18px;
  padding: 18px 18px 18px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(41, 208, 124, 0.35);
  background: linear-gradient(180deg, rgba(41,208,124,0.08), rgba(41,208,124,0.03));
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: rise 320ms var(--ease-out);
  box-shadow: 0 6px 20px rgba(41, 208, 124, 0.10);
}
.result-info {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 220px;
  min-width: 0;
}
.result-info > svg {
  flex: none;
  width: 28px; height: 28px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(41, 208, 124, 0.18);
  color: var(--success);
}
.result-text { min-width: 0; flex: 1 1 auto; }
.result-title {
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.result-sub {
  font-size: 12.5px;
  color: var(--text-dim);
  margin-top: 2px;
}
.result-card .btn {
  padding: 11px 20px;
  font-size: 14px;
  flex: none;
}
.result-card .btn svg {
  width: 16px; height: 16px; stroke-width: 2;
}

/* ─── PILLS / NOTES ──────────────────────────────── */
.pills { display: flex; gap: 8px; margin-top: 22px; flex-wrap: wrap; }
.pill {
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 6px 11px;
  border-radius: 999px;
  font-weight: 600;
}
.pill.accent { color: var(--accent); border-color: rgba(230,57,70,0.28); background: var(--accent-soft); }

.note {
  font-size: 13.5px;
  color: var(--text-dim);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-top: 22px;
  line-height: 1.65;
  opacity: 0;
  transform: translateY(12px);
  animation: rise 420ms var(--ease-out) 600ms forwards;
}
.note strong { color: var(--text); font-weight: 600; }
.note + .note { animation-delay: 700ms; }

/* ─── FOOTER ─────────────────────────────────────── */
.footer {
  margin-top: 96px;
  padding: 28px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text-mute);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.footer strong { color: var(--text-dim); font-weight: 500; }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 720px) {
  .container { padding: 24px 16px 64px; }
  .nav { padding: 14px 18px; }
  .nav-links a { padding: 7px 10px; font-size: 13px; }
  .nav-links a::after { left: 10px; right: 10px; }
  .section { padding: 24px 20px; }
  .drop { padding: 40px 18px; }
  .hero { padding: 56px 0 36px; }
  .hero h1 { font-size: clamp(30px, 8vw, 44px); }
}
