:root {
  --ink: #f3f0e9;
  --muted: #aca9a5;
  --line: rgba(255, 255, 255, 0.15);
  --glass: rgba(17, 19, 22, 0.66);
  --accent: #d7b56d;
  --accent-bright: #f1d18a;
  --green: #8fd38c;
  --error: #ef9a8b;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #101216; color: var(--ink); font-family: 'Manrope', sans-serif; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.page-shell {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}
.backdrop, .backdrop-shade, .grain { position: fixed; inset: 0; width: 100%; height: 100%; }
.backdrop { z-index: -3; object-fit: cover; filter: saturate(.72) contrast(1.08); }
.backdrop-shade { z-index: -2; background: linear-gradient(90deg, rgba(9, 11, 14, .9) 0%, rgba(9, 11, 14, .56) 52%, rgba(9, 11, 14, .78) 100%), linear-gradient(0deg, rgba(9, 11, 14, .94), transparent 48%, rgba(9, 11, 14, .55)); }
.grain { z-index: -1; opacity: .08; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E"); }
.topbar, .main-content, .footer { width: min(1200px, calc(100% - clamp(20px, 4vw, 56px))); margin: 0 auto; }
.topbar { min-height: 78px; display: flex; align-items: center; justify-content: space-between; padding: 6px 0; gap: 20px; }
.brand-group { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.brand { display: inline-flex; align-items: center; gap: 14px; color: var(--ink); text-decoration: none; text-transform: uppercase; letter-spacing: .13em; }
.brand-logo { width: auto; height: 72px; max-height: 72px; object-fit: contain; filter: drop-shadow(0 3px 14px rgba(215, 181, 109, 0.48)) drop-shadow(0 0 25px rgba(215, 181, 109, 0.22)); transition: transform .3s cubic-bezier(0.2, 0.8, 0.2, 1), filter .3s ease; }
.brand:hover .brand-logo { transform: scale(1.05) translateY(-1px); filter: drop-shadow(0 5px 20px rgba(241, 209, 138, 0.8)) drop-shadow(0 0 35px rgba(241, 209, 138, 0.35)); }
.brand-copy { display: grid; font: 700 21px/0.92 'Barlow Condensed', sans-serif; letter-spacing: .08em; }
.brand-copy strong { color: var(--ink); letter-spacing: .09em; }
.brand-copy small { color: var(--accent); font: 600 10px 'Manrope', sans-serif; letter-spacing: .32em; margin-top: 4px; }
.topbar-glass-cluster {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 6px 5px 14px;
  border-radius: 24px;
  background: rgba(16, 19, 24, 0.65);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.topbar-glass-cluster:hover {
  border-color: rgba(215, 181, 109, 0.35);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.38), 0 0 14px rgba(215, 181, 109, 0.12);
}

.server-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: #dbd8d0;
  font: 600 11px/1 'Barlow Condensed', sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.server-status-pill .status-name { color: var(--green); letter-spacing: .1em; font-weight: 700; transition: color .3s; }
.server-status-pill.is-offline .status-name { color: var(--error); }
.status-dot { position: relative; width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; transition: background .3s; }
.status-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.6;
  transform: scale(1);
  will-change: transform, opacity;
}
.status-dot.is-online { background: var(--green); box-shadow: 0 0 10px rgba(143, 211, 140, 0.85); }
.status-dot.is-online::after {
  background: rgba(143, 211, 140, 0.45);
  animation: pulse-dot 2.2s infinite ease-in-out;
}
.status-dot.is-offline { background: var(--error); box-shadow: 0 0 10px rgba(239, 154, 139, 0.85); }
.status-dot.is-offline::after {
  background: rgba(239, 154, 139, 0.45);
  animation: pulse-dot 2.2s infinite ease-in-out;
}
@keyframes pulse-dot {
  0% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.65); opacity: 0.15; }
  100% { transform: scale(1); opacity: 0.7; }
}
.status-sep { color: rgba(255, 255, 255, 0.2); font-size: 10px; }
.status-metric { color: var(--muted); font-size: 11px; }
.status-metric strong { color: var(--accent-bright); font-weight: 700; font-size: 13px; }

.cluster-divider {
  display: block;
  width: 1px;
  height: 18px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.25) 25%, rgba(215, 181, 109, 0.5) 50%, rgba(255, 255, 255, 0.25) 75%, transparent);
  margin: 0 4px;
  flex-shrink: 0;
}

.language-switch {
  display: inline-flex;
  gap: 3px;
  align-items: center;
  padding: 2px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.language-switch span { display: none; }
.language {
  border: 0;
  background: transparent;
  padding: 4px 9px;
  color: var(--muted);
  cursor: pointer;
  font: 600 10.5px/1 'Barlow Condensed', sans-serif;
  letter-spacing: .08em;
  border-radius: 14px;
  transition: all .22s ease;
}
.language:hover { color: #fff; }
.language.is-active {
  color: var(--accent-bright);
  background: rgba(215, 181, 109, 0.22);
  border: 1px solid rgba(215, 181, 109, 0.45);
  box-shadow: 0 0 10px rgba(215, 181, 109, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.main-content {
  flex: 1 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 390px);
  grid-template-areas: 'intro register' 'steps steps';
  column-gap: clamp(24px, 4.5vw, 75px);
  row-gap: clamp(16px, 2.5vh, 32px);
  align-items: center;
  padding: clamp(14px, 2.5vh, 28px) 0 24px;
}
.intro-panel { grid-area: intro; max-width: 650px; padding-bottom: 0; }
.eyebrow, .section-kicker { color: var(--accent); font-size: 10px; letter-spacing: .22em; font-weight: 700; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 14px; }
.eyebrow-line { width: 34px; height: 1px; background: var(--accent); }
h1, h2, p { margin-top: 0; }
h1 { margin-bottom: 14px; font: 600 clamp(44px, 5.2vw, 86px)/.86 'Barlow Condensed', sans-serif; letter-spacing: -.02em; text-transform: uppercase; }
h1 em { color: var(--accent-bright); font-style: normal; }
.intro-text { max-width: 475px; color: #d0ceca; font-size: 13.5px; line-height: 1.65; }
.glass-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--glass);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .32), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform-style: preserve-3d;
  will-change: transform;
  transition: border-color .35s ease, box-shadow .35s ease;
}

/* Liquid Glass Dynamic Specular Sheen (Mouse tracking) */
.glass-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
  background: radial-gradient(
    circle 340px at var(--glare-x, 50%) var(--glare-y, 50%),
    rgba(255, 222, 140, 0.18) 0%,
    rgba(140, 195, 255, 0.09) 32%,
    transparent 70%
  );
  opacity: var(--glare-opacity, 0);
  transition: opacity 0.35s ease;
}

/* Liquid Glass Iridescent Perimeter Edge Refraction */
.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(
    circle 260px at var(--glare-x, 50%) var(--glare-y, 50%),
    rgba(240, 208, 137, 0.5) 0%,
    rgba(120, 180, 255, 0.28) 35%,
    rgba(255, 255, 255, 0.05) 75%,
    transparent
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: var(--glare-opacity, 0);
  transition: opacity 0.35s ease;
}

.register-card { grid-area: register; padding: 22px 24px; }
.register-card > * { transform-style: preserve-3d; }
.card-heading { display: flex; justify-content: space-between; align-items: start; border-bottom: 1px solid var(--line); padding-bottom: 14px; margin-bottom: 14px; transform: translateZ(14px); }
.section-kicker { margin-bottom: 6px; font-size: 9px; }
h2 { margin-bottom: 0; font: 600 28px/1 'Barlow Condensed', sans-serif; letter-spacing: .01em; text-transform: uppercase; }
.card-number { color: rgba(255,255,255,.28); font: 500 13px 'Barlow Condensed', sans-serif; transform: translateZ(18px); text-shadow: 0 4px 10px rgba(0,0,0,.6); }
.field { display: block; margin-bottom: 10px; color: #d7d3cb; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.field input { display: block; width: 100%; margin-top: 5px; padding: 9px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.2); outline: 0; background: transparent; color: var(--ink); font-size: 13px; letter-spacing: 0; text-transform: none; transition: border-color .2s; }
.field input::placeholder { color: #777977; }
.field input:focus { border-color: var(--accent); }
.field.invalid input { border-color: var(--error); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-error { display: block; min-height: 12px; padding-top: 3px; color: var(--error); font-size: 9px; letter-spacing: 0; text-transform: none; }
.honeypot { position: absolute; left: -9999px; }
.consent { display: flex; align-items: center; gap: 8px; margin: 2px 0 14px; color: var(--muted); font-size: 10px; }
.consent input { accent-color: var(--accent); }
.turnstile { min-height: 65px; margin: 0 0 10px; }
.primary-button {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 13px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  transform: translateZ(16px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.45), inset 0 -1px 2px rgba(0, 0, 0, 0.2), 0 8px 28px rgba(0, 0, 0, 0.35);
  transition: transform .22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

/* Specular Liquid Glare Layer tracking mouse */
.primary-button::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle 90px at var(--btn-x, 50%) var(--btn-y, 50%),
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0.1) 40%,
    transparent 70%
  );
  opacity: var(--btn-glare, 0);
  transition: opacity 0.25s ease;
}

/* Liquid Glass Shimmer Wave Animation */
.primary-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.15), transparent);
  transform: skewX(-22deg);
  transition: left 0.75s ease;
  pointer-events: none;
}

.primary-button:hover::before {
  left: 140%;
}

.primary-button:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateZ(22px) translateY(-2px);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.7), 0 12px 34px rgba(0, 0, 0, 0.45), 0 0 22px rgba(255, 255, 255, 0.18);
}

.primary-button:active {
  background: rgba(255, 255, 255, 0.05);
  transform: translateZ(10px) scale(0.985) translateY(1px);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(0, 0, 0, 0.25);
}

.button-arrow {
  font-size: 18px;
  line-height: 0;
  color: #ffffff;
  transition: transform .2s ease;
}
.primary-button:hover .button-arrow {
  transform: translate(2px, -2px);
}
.form-message { min-height: 14px; margin: 10px 0 0; color: var(--green); font-size: 10px; line-height: 1.4; }
.form-message.error { color: var(--error); }
.steps-panel {
  grid-area: steps;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
  margin-top: clamp(16px, 2.5vh, 32px);
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.steps-heading h2 { font-size: clamp(20px, 2vw, 25px); white-space: nowrap; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(8px, 1.2vw, 12px);
}
.step {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: rgba(22, 26, 32, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 4px 16px rgba(0, 0, 0, 0.18);
  color: var(--ink);
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.step::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle 180px at var(--step-x, 50%) var(--step-y, 50%),
    rgba(240, 208, 137, 0.2) 0%,
    transparent 70%
  );
  opacity: var(--step-glare, 0);
  transition: opacity 0.3s ease;
}
.step:hover {
  background: rgba(215, 181, 109, 0.12);
  border-color: rgba(215, 181, 109, 0.45);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 8px 24px rgba(0, 0, 0, 0.28), 0 0 14px rgba(215, 181, 109, 0.18);
}
.step:active {
  transform: translateY(0) scale(0.985);
}
.step:hover .step-icon {
  color: var(--accent-bright);
  transform: translateY(-1px) scale(1.1);
}
.step-arrow {
  margin-left: auto;
  color: var(--accent);
  font: 700 14px/1 'Barlow Condensed', sans-serif;
  letter-spacing: .06em;
  opacity: .75;
  transition: transform .22s ease, color .22s ease, opacity .22s ease;
  flex-shrink: 0;
}
.step:hover .step-arrow {
  color: var(--accent-bright);
  opacity: 1;
  transform: scale(1.15);
  text-shadow: 0 0 10px rgba(240, 208, 137, 0.4);
}
button.step-clickable {
  border: 1px solid var(--line);
  background: rgba(22, 26, 32, 0.45);
  color: inherit;
  cursor: pointer;
  text-align: left;
  font: inherit;
  width: 100%;
  border-radius: 8px;
}
button.step-clickable:hover .step-icon {
  color: var(--accent-bright);
  transform: rotate(45deg) scale(1.1);
}
.step-icon { transition: transform .2s ease, color .2s ease; color: var(--accent); font-size: 20px; width: 22px; text-align: center; }
.step-info { display: grid; gap: 3px; min-width: 0; }
.step-info strong { font: 600 15px 'Barlow Condensed', sans-serif; text-transform: uppercase; white-space: nowrap; }
.step-info small { color: var(--muted); font-size: 9px; white-space: nowrap; }
.step-realmlist-wrap { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; margin-top: 1px; }
.step-realmlist { font: 500 10.5px 'Manrope', monospace; color: #dedbd5; background: rgba(0, 0, 0, 0.38); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 3px; padding: 2px 6px; letter-spacing: 0; transition: border-color .2s, color .2s; }
button.step-clickable:hover .step-realmlist { border-color: var(--accent); color: #fff; }
.copy-feedback-badge { display: inline-block; color: var(--green); font: 700 9px 'Barlow Condensed', sans-serif; letter-spacing: .08em; text-transform: uppercase; opacity: 0; transform: translateY(2px); transition: opacity .2s ease, transform .2s ease; }
.copy-feedback-badge.is-visible { opacity: 1; transform: translateY(0); }
.copy-icon { font-size: 15px; line-height: 0; transform: rotate(180deg); }
.download-note { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
.footer { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 18px 0 20px; color: rgba(240, 240, 245, 0.78); font-size: 11px; letter-spacing: .12em; }
.creator-link { color: var(--accent); text-decoration: none; transition: color .2s; }
.creator-link:hover { color: var(--accent-bright); }
.fade-up { animation: rise .7s both; }
.delay-one { animation-delay: .12s; }
.delay-two { animation-delay: .24s; }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
/* === Responsive Media Queries === */

/* 1. Large tablets & compact desktops (e.g. 1024px iPad landscape, 1366x768 laptops) */
@media (max-width: 1040px) {
  .main-content {
    grid-template-columns: minmax(0, 1fr) 350px;
    column-gap: 28px;
  }
  .steps-panel {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .steps-heading h2 {
    white-space: normal;
  }
  h1 {
    font-size: clamp(44px, 5.5vw, 70px);
  }
}

/* 2. Tablets in portrait & split-screen windows */
@media (max-width: 880px) {
  .topbar, .main-content, .footer { width: min(100% - 40px, 640px); }
  .topbar {
    flex-wrap: wrap;
    gap: 14px;
    min-height: auto;
    padding: 10px 0;
  }
  .brand-group {
    gap: 14px;
  }
  .main-content {
    grid-template-columns: 1fr;
    grid-template-areas:
      'intro'
      'register'
      'steps';
    row-gap: 28px;
    justify-items: center;
    text-align: center;
    padding-top: 16px;
  }
  .intro-panel {
    max-width: 580px;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .eyebrow {
    justify-content: center;
  }
  .intro-text {
    margin: 0 auto;
    font-size: 14px;
  }
  h1 {
    font-size: clamp(46px, 9vw, 68px);
    margin-bottom: 12px;
  }
  .register-card {
    width: 100%;
    max-width: 440px;
    text-align: left;
  }
  .steps-panel {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
    margin-top: 20px;
  }
  .steps-heading {
    text-align: center;
  }
  .steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 10px;
  }
}

/* 3. Mobile phones (e.g. 390px - 580px) */
@media (max-width: 580px) {
  .topbar, .main-content, .footer { width: min(100% - 28px, 600px); }
  .topbar {
    min-height: auto;
    padding: 8px 0;
    justify-content: space-between;
    gap: 10px;
  }
  .brand-logo {
    height: 52px;
  }
  .brand-copy {
    font-size: 18px;
  }
  .topbar-glass-cluster {
    padding: 4px 6px 4px 10px;
    gap: 6px;
  }
  .server-status-pill {
    font-size: 10.5px;
    gap: 5px;
  }
  .language {
    padding: 4px 7px;
    font-size: 10px;
  }
  .main-content {
    row-gap: 22px;
    padding-top: 12px;
    padding-bottom: 16px;
  }
  h1 {
    font-size: clamp(38px, 11vw, 54px);
    line-height: 0.95;
    margin-bottom: 12px;
  }
  .intro-text {
    font-size: 13px;
    line-height: 1.55;
  }
  .register-card {
    padding: 18px 16px;
    border-radius: 16px;
  }
  .field {
    margin-bottom: 8px;
  }
  .field input {
    font-size: 16px; /* Prevents auto-zoom on iOS Safari */
    padding: 8px 0;
  }
  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .step, button.step-clickable {
    padding: 12px 14px;
    border-radius: 8px;
  }
  .step-realmlist {
    word-break: break-all;
  }
  .footer {
    padding: 14px 0 20px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* 4. Ultra-compact mobile phones (e.g. 320px - 380px) */
@media (max-width: 380px) {
  .topbar {
    justify-content: center;
  }
  .brand-group {
    justify-content: center;
    width: 100%;
  }
  .topbar-glass-cluster {
    margin: 0 auto;
  }
  .status-metric:first-of-type,
  .status-sep:first-of-type {
    display: none; /* Hide ping on extra small screens to avoid overflow */
  }
  .register-card {
    padding: 16px 12px;
  }
}

/* 5. Short height screens / Laptops in landscape (1366x768, scaling, etc.) */
@media (max-height: 760px) and (min-width: 881px) {
  .topbar {
    min-height: 64px;
    padding: 4px 0;
  }
  .brand-logo {
    height: 56px;
  }
  .main-content {
    padding: 8px 0 16px;
    row-gap: 16px;
  }
  h1 {
    font-size: clamp(42px, 4.6vw, 68px);
    margin-bottom: 8px;
  }
  .intro-text {
    font-size: 13px;
    line-height: 1.5;
  }
  .register-card {
    padding: 16px 20px;
  }
  .card-heading {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .field {
    margin-bottom: 6px;
  }
  .field input {
    padding: 6px 0;
  }
  .steps-panel {
    margin-top: 14px;
    padding-top: 12px;
  }
  .step, button.step-clickable {
    padding: 8px 12px;
  }
}

/* === Accessibility: motion preferences & focus visibility === */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.language:focus-visible,
.step:focus-visible,
.step-clickable:focus-visible,
.primary-button:focus-visible,
.brand:focus-visible,
.download-note:focus-visible,
.creator-link:focus-visible,
input:focus-visible,
.consent input:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
  border-radius: 4px;
}
