/* =========================================================
   SpaceX IPO Landing — Nauč se investovat
   Dark space aesthetic, mobile-first
   ========================================================= */

:root {
  --bg-0: #000000;
  --bg-1: #06070b;
  --bg-2: #0c0e15;
  --bg-3: #14171f;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --text-0: #ffffff;
  --text-1: #c8ccd6;
  --text-2: #7d828e;
  --accent: #ffffff;
  --accent-glow: #6aa9ff;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  background: var(--bg-0);
}

body {
  background: var(--bg-0);
  color: var(--text-0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}

h1, h2, h3, h4 {
  text-wrap: balance;
  letter-spacing: -0.02em;
}

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

/* ─── Subtle stars ─── */
.stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 60% 70%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 80% 20%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 30% 80%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 90% 50%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 15% 60%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 70% 10%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 45% 50%, rgba(255,255,255,0.3), transparent);
  background-size: 800px 600px;
}

/* ─── Grain noise overlay ─── */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ─── Navbar ─── */
.nav-shell {
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  background: rgba(0, 0, 0, 0.55);
  border-bottom: 1px solid var(--line);
}

.nav-link {
  color: var(--text-1);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--text-0); }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.55;
  filter: saturate(110%) contrast(105%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(0,0,0,0.0), rgba(0,0,0,0.7) 60%, rgba(0,0,0,0.95) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 35%, rgba(0,0,0,0.8) 100%);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-1);
  padding: 8px 16px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
}
.hero-tag .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: livePulse 1.8s ease-out infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ─── Countdown ─── */
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 520px;
  margin: 0 auto;
}
.countdown-cell {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 8px;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.countdown-num {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: clamp(2rem, 8vw, 3.25rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text-0);
  font-variant-numeric: tabular-nums;
}
.countdown-label {
  margin-top: 6px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-2);
}
@media (min-width: 640px) {
  .countdown { gap: 14px; }
  .countdown-cell { padding: 22px 12px; border-radius: 18px; }
  .countdown-label { font-size: 0.7rem; }
}

/* ─── CTA buttons ─── */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ffffff;
  color: #000000;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  padding: 15px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(106, 169, 255, 0.35) 50%, transparent 65%);
  transform: translateX(-130%);
  transition: transform 0.7s ease;
}
.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(106, 169, 255, 0.25), 0 0 0 1px rgba(255,255,255,0.4);
}
.btn-cta:hover::after { transform: translateX(130%); }
.btn-cta:active { transform: translateY(0); }
.btn-cta:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-1);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text-0);
}

/* ─── Section base ─── */
.section {
  position: relative;
  padding: 80px 0;
}
@media (min-width: 768px) {
  .section { padding: 120px 0; }
}

.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 14px;
}

/* ─── Facts grid ─── */
.fact-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 22px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.fact-card:hover {
  border-color: var(--line-2);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  transform: translateY(-3px);
}
.fact-num {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text-0);
}
.fact-label {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-1);
  line-height: 1.5;
}
.fact-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 16px;
  display: block;
}

/* ─── Split sections ─── */
.split-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}
.split-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.split-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(0,0,0,0.45), transparent 50%);
  pointer-events: none;
}

/* ─── Bullets ─── */
.bullet {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.bullet-mark {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-0);
  margin-top: 2px;
}
.bullet-text {
  color: var(--text-1);
  line-height: 1.6;
  font-size: 0.98rem;
}
.bullet-text strong { color: var(--text-0); font-weight: 600; }

/* ─── SpaceX inline logo (uses currentColor) ─── */
.spacex-mark {
  display: inline-flex;
  color: #ffffff;
  opacity: 0.92;
}
.spacex-mark svg {
  height: 20px;
  width: auto;
  display: block;
}
@media (min-width: 640px) {
  .spacex-mark svg { height: 24px; }
}

/* ─── Info tooltip (small "i" badge with popover) ─── */
.info-tip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-2);
  color: var(--text-1);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
  vertical-align: middle;
}
.info-tip:hover, .info-tip:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-0);
  border-color: rgba(255, 255, 255, 0.3);
  outline: none;
}
.info-tip::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: max-content;
  max-width: min(280px, calc(100vw - 32px));
  padding: 10px 14px;
  background: rgba(20, 23, 31, 0.98);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  color: var(--text-1);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
  text-align: left;
  white-space: normal;
  text-transform: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
  z-index: 50;
}
.info-tip::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  border: 5px solid transparent;
  border-top-color: rgba(20, 23, 31, 0.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 50;
}
.info-tip:hover::after, .info-tip:focus-visible::after,
.info-tip.open::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.info-tip:hover::before, .info-tip:focus-visible::before,
.info-tip.open::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ─── Fact strip (4 inline stats with vertical dividers) ───
   Used in "Klíčová fakta o IPO" section. Mobile: 2x2 grid without dividers.
*/
.fact-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.fact-cell { text-align: center; min-width: 0; padding: 8px 4px; }
.fact-cell-eyebrow {
  display: block;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 10px;
}
.fact-cell-num {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: clamp(1.55rem, 4.8vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-0);
  line-height: 1;
  white-space: nowrap;
}
.fact-cell-divider {
  display: none;
}
/* Tablet+: switch to single-row strip with dividers between */
@media (min-width: 768px) {
  .fact-strip {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 14px;
    padding: 32px 36px;
  }
  /* Compact variant (2 cells, used inside narrower section columns) */
  .fact-strip--compact {
    grid-template-columns: 1fr auto 1fr;
    padding: 24px 22px;
    max-width: 100%;
  }
  .fact-cell-divider {
    display: block;
    width: 1px;
    height: 56px;
    background: var(--line-2);
    align-self: center;
  }
  .fact-strip--compact .fact-cell-divider { height: 44px; }
  .fact-cell-eyebrow { font-size: 0.7rem; }
}
.fact-strip--compact .fact-cell-num { font-size: clamp(1.4rem, 4vw, 2rem); }

/* ─── Investment thesis pills ─── */
.thesis-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text-0);
  font-weight: 500;
  font-size: 0.98rem;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.thesis-pill:hover {
  border-color: var(--line-2);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}
.thesis-pill svg {
  flex-shrink: 0;
  color: var(--text-1);
  opacity: 0.85;
}

/* ─── Value list ("co probereme v konzultaci") ─── */
.value-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 720px;
  margin: 0 auto;
}
.value-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.value-item:last-child { border-bottom: 1px solid var(--line); }
.value-num {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.04em;
  padding-top: 3px;
}
.value-h {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-0);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  line-height: 1.3;
}
.value-p {
  color: var(--text-1);
  font-size: 0.96rem;
  line-height: 1.55;
}
@media (min-width: 640px) {
  .value-item { grid-template-columns: 72px 1fr; gap: 24px; padding: 26px 0; }
  .value-num { font-size: 1.25rem; }
  .value-h { font-size: 1.2rem; }
}

/* ─── Banks bar ─── */
.banks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 18px;
  align-items: center;
}
@media (min-width: 640px) {
  .banks { grid-template-columns: repeat(5, 1fr); gap: 14px 28px; }
}
.bank-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 8px 4px;
  opacity: 0.55;
  filter: brightness(0) invert(1);
  transition: opacity 0.25s ease;
}
.bank-logo:hover { opacity: 0.95; }
.bank-logo img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}
@media (min-width: 640px) {
  .bank-logo { height: 42px; }
}

/* ─── Form ─── */
.form-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--line-2);
  border-radius: 24px;
  padding: 32px 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
@media (min-width: 640px) {
  .form-card { padding: 40px 36px; }
}

.form-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text-0);
  font-size: 0.98rem;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 0 3px rgba(106, 169, 255, 0.18);
}
.form-input::placeholder { color: var(--text-2); }

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-1);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

/* ─── intl-tel-input v23 dark theme ─── */
.iti {
  width: 100%;
  background: rgba(0, 0, 0, 0.4) !important;
  border-radius: 12px !important;
  border: 1px solid var(--line-2) !important;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.iti:focus-within {
  border-color: rgba(255, 255, 255, 0.5) !important;
  background: rgba(0, 0, 0, 0.6) !important;
  box-shadow: 0 0 0 3px rgba(106, 169, 255, 0.18) !important;
}
/* The tel input — DO NOT override padding-left, iti sets it dynamically
   based on dial-code/flag selector width. Override only top/bottom/right. */
#phone,
.iti input[type=tel],
.iti .iti__tel-input {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  color: var(--text-0) !important;
  padding-top: 14px !important;
  padding-bottom: 14px !important;
  padding-right: 16px !important;
  font-size: 0.98rem !important;
  font-family: inherit !important;
  height: 50px !important;
}
#phone::placeholder,
.iti input[type=tel]::placeholder { color: var(--text-2) !important; }
.iti__selected-country,
.iti__country-container button {
  background: rgba(255, 255, 255, 0.04) !important;
  border-radius: 12px 0 0 12px !important;
  border: none !important;
  border-right: 1px solid var(--line) !important;
  padding: 0 10px 0 14px !important;
}
.iti__selected-country:hover { background: rgba(255, 255, 255, 0.08) !important; }
.iti__selected-dial-code { color: var(--text-1) !important; }
.iti__arrow { border-top-color: var(--text-2) !important; }
.iti__dropdown-content,
.iti__country-list {
  background-color: #0c0e15 !important;
  border: 1px solid var(--line-2) !important;
  color: var(--text-1) !important;
  border-radius: 12px !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6) !important;
}
.iti__country:hover,
.iti__country.iti__highlight { background-color: rgba(255, 255, 255, 0.06) !important; }
.iti__search-input {
  background: #06070b !important;
  color: var(--text-0) !important;
  border-color: var(--line) !important;
}
.iti__divider { border-color: var(--line) !important; }
.iti__country-name { color: var(--text-1) !important; }
.iti__dial-code { color: var(--text-2) !important; }

/* ─── FAQ ─── */
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--text-0);
  font-size: 1.02rem;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: -0.005em;
  font-family: inherit;
}
.faq-q:hover { color: var(--accent-glow); }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--text-1);
  line-height: 1.7;
  font-size: 0.96rem;
}
.faq-item.open .faq-a {
  max-height: 500px;
  padding-bottom: 22px;
}

/* ─── Sticky mobile CTA ─── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  padding: 12px 16px max(12px, env(safe-area-inset-bottom)) 16px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line-2);
  transform: translateY(110%);
  transition: transform 0.4s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .btn-cta { width: 100%; padding: 14px 20px; font-size: 0.95rem; }
@media (min-width: 768px) {
  .sticky-cta { display: none; }
}

/* ─── Reveal on scroll ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── Spinner ─── */
@keyframes spin { to { transform: rotate(360deg); } }
.spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.25);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

/* ─── Cookie banner ─── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 70;
  padding: 16px;
  background: rgba(0, 0, 0, 0.92);
  border-top: 1px solid var(--line-2);
  backdrop-filter: blur(20px);
}

/* ─── Misc ─── */
.glow-text {
  background: linear-gradient(135deg, #ffffff 0%, #c8ccd6 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Form step (legacy from starter, but we only use single step) */
.form-step { display: block; }

/* Hide elements with .hidden but keep layout-friendly */
.hidden { display: none !important; }
