/* ============================================================
   PODWERK Container-Konfigurator
   Dark Premium Theme mit Aurora, Glass & Motion
   ============================================================ */

:root {
  --bg: #07090d;
  --bg-soft: #0b0e14;
  --text: #eaf0f4;
  --text-dim: #94a1ad;
  --text-faint: #5c6873;
  --accent: #34d399;
  --accent-strong: #10b981;
  --accent-soft: rgba(52, 211, 153, 0.12);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-strong: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --danger: #f87171;
  --radius: 20px;
  --radius-sm: 14px;
  --shadow-lg: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(52, 211, 153, 0.35); }

/* ---------- Hintergrund-Effekte ---------- */

.aurora {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  filter: blur(90px) saturate(130%);
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  will-change: transform;
}

.aurora-1 {
  width: 55vw; height: 55vw;
  top: -22vw; left: -12vw;
  background: radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.5), transparent 65%);
  animation: drift1 26s ease-in-out infinite alternate;
}

.aurora-2 {
  width: 48vw; height: 48vw;
  top: 8vw; right: -18vw;
  background: radial-gradient(circle at 50% 50%, rgba(56, 130, 246, 0.34), transparent 65%);
  animation: drift2 32s ease-in-out infinite alternate;
}

.aurora-3 {
  width: 42vw; height: 42vw;
  bottom: -20vw; left: 28vw;
  background: radial-gradient(circle at 50% 50%, rgba(45, 212, 191, 0.28), transparent 65%);
  animation: drift3 38s ease-in-out infinite alternate;
}

@keyframes drift1 { to { transform: translate(9vw, 7vw) scale(1.15); } }
@keyframes drift2 { to { transform: translate(-8vw, 9vw) scale(0.9); } }
@keyframes drift3 { to { transform: translate(-10vw, -7vw) scale(1.2); } }

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

/* ---------- Utility ---------- */

.glass {
  background: linear-gradient(160deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease, opacity 0.3s ease;
  text-decoration: none;
  position: relative;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, #34d399, #0ea371);
  color: #04120c;
  box-shadow: 0 8px 30px -6px rgba(16, 185, 129, 0.55);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -6px rgba(16, 185, 129, 0.7);
}

.btn-dark {
  background: #eaf0f4;
  color: #0b0e14;
  box-shadow: 0 8px 24px -8px rgba(255, 255, 255, 0.25);
}

.btn-dark:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(255, 255, 255, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid transparent;
}

.btn-ghost:hover { color: var(--text); }

.btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-lg { padding: 16px 32px; font-size: 16px; }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(7, 9, 13, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, #34d399, #0d9668);
  color: #04120c;
  font-weight: 900;
  font-size: 19px;
  box-shadow: 0 4px 18px -2px rgba(16, 185, 129, 0.5);
}

.brand-name {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.06em;
}

.header-price { text-align: right; }

.header-price-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.header-price-value {
  font-size: 21px;
  font-weight: 800;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

/* ---------- Hero ---------- */

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 120px 28px 60px;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.badge-pill {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-dim);
  padding: 7px 15px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--glass);
}

.hero-title {
  font-size: clamp(44px, 6.2vw, 82px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 26px;
}

.hero-title-accent {
  background: linear-gradient(100deg, #34d399 10%, #7ceccb 35%, #2dd4bf 60%, #34d399 90%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s linear infinite;
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

.hero-sub {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 480px;
  margin-bottom: 38px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-cta-hint {
  font-size: 13.5px;
  color: var(--text-faint);
}

.hero-visual { position: relative; }

.hero-stage {
  width: 100%;
  aspect-ratio: 1.15;
  display: grid;
  place-items: center;
}

.hero-stage img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 6px 18px rgba(0, 0, 0, 0.45);
  animation: heroFloat 7s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(0.001deg); }
  50% { transform: translateY(-16px) rotate(0.001deg); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid var(--border-strong);
  border-radius: 999px;
}

.hero-scroll-hint span {
  position: absolute;
  top: 7px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 4px;
  background: var(--accent);
  animation: scrollHint 1.8s ease-in-out infinite;
}

@keyframes scrollHint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- Konfigurator Layout ---------- */

.configurator-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 28px 120px;
  scroll-margin-top: 90px;
}

.configurator-grid {
  display: grid;
  grid-template-columns: minmax(380px, 460px) 1fr;
  gap: 28px;
  align-items: start;
}

.configurator-grid > *,
.hero-inner > * { min-width: 0; max-width: 100%; }

svg { max-width: 100%; }

/* ---------- Panel (links) ---------- */

.panel {
  padding: 22px;
  display: flex;
  flex-direction: column;
  min-height: 640px;
}

.tabs {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px;
  margin-bottom: 26px;
}

.tab {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--text-faint);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 4px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.tab:disabled { cursor: not-allowed; opacity: 0.45; }

.tab.is-done:not(.is-active) { color: var(--text-dim); }

.tab.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
  box-shadow: 0 2px 12px -2px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.08);
}

.step-wrap { flex: 1; }

.step-content { animation: stepIn 0.45s cubic-bezier(0.2, 0.7, 0.2, 1); }

.step-content.anim-back { animation-name: stepInBack; }

@keyframes stepIn {
  from { opacity: 0; transform: translateX(26px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes stepInBack {
  from { opacity: 0; transform: translateX(-26px); }
  to { opacity: 1; transform: translateX(0); }
}

.step-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

/* ---------- Options-Karten ---------- */

.option-card {
  width: 100%;
  text-align: left;
  font-family: var(--font);
  background: var(--glass);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 17px 18px;
  margin-bottom: 13px;
  cursor: pointer;
  color: var(--text);
  transition: transform 0.22s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.option-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(52, 211, 153, 0.09), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.option-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
}

.option-card:hover::after { opacity: 1; }

.option-card.is-selected {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 0 0 1px rgba(52, 211, 153, 0.3), 0 10px 34px -12px rgba(16, 185, 129, 0.4);
}

.option-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.option-name {
  font-size: 16.5px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.option-price {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 800;
  color: #04120c;
  background: linear-gradient(135deg, #34d399, #0ea371);
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.option-desc {
  font-size: 13.5px;
  color: var(--text-dim);
  margin-top: 7px;
}

.option-meta {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 6px;
}

/* Optik-Karten mit Farb-Swatch */

.option-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.swatch {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.3), 0 2px 8px rgba(0,0,0,0.4);
}

.option-row .option-desc { margin-top: 3px; }

/* Extras mit Checkbox */

.check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 8px;
  border: 1.5px solid var(--border-strong);
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.check svg { opacity: 0; transform: scale(0.4); transition: all 0.25s cubic-bezier(0.3, 1.4, 0.5, 1); }

.option-card.is-selected .check {
  background: linear-gradient(135deg, #34d399, #0ea371);
  border-color: transparent;
}

.option-card.is-selected .check svg { opacity: 1; transform: scale(1); color: #04120c; }

/* ---------- Kontakt-Formular ---------- */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-grid .full { grid-column: 1 / -1; }

.field input,
.field select {
  width: 100%;
  font-family: var(--font);
  font-size: 14.5px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 13px 15px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  appearance: none;
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a1ad' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  cursor: pointer;
}

.field select option { background: #12161d; color: var(--text); }

.field input::placeholder { color: var(--text-faint); }

.field input:focus,
.field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.15);
  background: rgba(255, 255, 255, 0.07);
}

/* Zusammenfassung */

.summary {
  margin-top: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  padding: 18px;
  font-size: 13.5px;
}

.summary-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 13px;
}

.summary-head .label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.summary-head .model {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 4px 0;
  color: var(--text-dim);
}

.summary-row b { color: var(--text); font-weight: 700; text-align: right; }

.summary-note {
  font-size: 12px;
  font-style: italic;
  color: var(--text-faint);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}

.summary-extra {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
  color: var(--text-dim);
  font-size: 13px;
}

.summary-extra span:last-child { color: var(--text); font-weight: 600; white-space: nowrap; }

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--border-strong);
  margin-top: 12px;
  padding-top: 12px;
}

.summary-total .label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.summary-total .value {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.summary-footnote {
  font-size: 11px;
  color: var(--text-faint);
  margin-top: 8px;
}

/* ---------- Panel Footer ---------- */

.panel-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  margin-top: 22px;
  padding-top: 18px;
}

.panel-footer-spacer { flex: 1; }

/* ---------- Vorschau (rechts) ---------- */

.preview {
  position: sticky;
  top: 96px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}

.preview-header {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(120deg, #0d1117, #10151d);
  border-bottom: 1px solid var(--border);
  padding: 16px 22px;
}

.preview-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.9);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.8); }
}

.preview-title {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.preview-stage {
  min-height: 560px;
  display: grid;
  place-items: center;
  position: relative;
  padding: 40px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1.5px);
  background-size: 26px 26px;
}

.preview-empty {
  text-align: center;
  color: var(--text-faint);
  font-size: 15px;
  border: 1.5px dashed var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 46px 60px;
}

.preview-photo {
  width: 100%;
  display: grid;
  place-items: center;
  position: relative;
}

.preview-photo img {
  width: min(100%, 760px);
  height: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 4px 14px rgba(0, 0, 0, 0.4);
}

.preview-chips {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: calc(100% - 32px);
}

.preview-chip {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #eaf0f4;
  background: rgba(13, 17, 23, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 6px 12px;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.preview-photo.pop img { animation: popIn 0.55s cubic-bezier(0.25, 1.3, 0.4, 1); }

@keyframes popIn {
  0% { opacity: 0; transform: scale(0.96) translateY(8px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 44px 28px 54px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.brand-footer { opacity: 0.85; }

.footer-note {
  flex: 1;
  min-width: 240px;
  font-size: 12.5px;
  color: var(--text-faint);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--text-dim);
  font-size: 13.5px;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* ---------- Modal & Confetti ---------- */

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: rgba(4, 6, 9, 0.75);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
  padding: 24px;
}

@keyframes fadeIn { from { opacity: 0; } }

.modal {
  max-width: 460px;
  padding: 38px 34px;
  text-align: center;
  animation: modalIn 0.5s cubic-bezier(0.25, 1.3, 0.4, 1);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.85) translateY(24px); }
}

.modal-icon {
  width: 68px; height: 68px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #34d399, #0ea371);
  color: #04120c;
  box-shadow: 0 10px 40px -8px rgba(16, 185, 129, 0.7);
}

.modal h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
}

.modal p {
  font-size: 14.5px;
  color: var(--text-dim);
  margin-bottom: 26px;
}

.modal-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

#confetti {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
}

/* ---------- Responsive ---------- */

@media (max-width: 1020px) {
  .hero-inner { grid-template-columns: 1fr; gap: 20px; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .hero { text-align: center; padding-top: 100px; }
  .hero-badges, .hero-cta-row { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .configurator-grid { grid-template-columns: 1fr; }
  .preview { position: static; order: -1; }
  .preview-stage { min-height: 380px; }
  .panel { min-height: 0; }
}

@media (max-width: 560px) {
  .header-inner { padding: 12px 18px; }
  .configurator-section { padding: 24px 14px 80px; }
  .panel { padding: 16px; }
  .tab { font-size: 11.5px; padding: 8px 2px; }
  .form-grid { grid-template-columns: 1fr; }
  .preview-stage { padding: 20px; min-height: 300px; }
  .preview-empty { padding: 30px 22px; }
}

/* Screenshot-/Testmodus (?shot=1): Hero & Footer ausblenden, Reveals sofort zeigen */
.shot-mode .hero,
.shot-mode .site-footer { display: none; }
.shot-mode .reveal { opacity: 1; transform: none; transition: none; }
.shot-mode .configurator-section { padding-top: 100px; }

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