:root {
  color-scheme: dark;
  --bg: #07090d;
  --bg-top: #0d1119;
  --card: rgba(18, 22, 31, 0.76);
  --card-strong: rgba(15, 18, 27, 0.94);
  --card-soft: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --ink: #f6f8fc;
  --muted: #a5adbf;
  --muted-strong: #d4daea;
  --accent: #ff6a2a;
  --accent-2: #ff8d63;
  --accent-soft: rgba(255, 106, 42, 0.16);
  --accent-ring: rgba(255, 106, 42, 0.2);
  --blue-soft: rgba(71, 114, 255, 0.2);
  --success: #65d6a3;
  --danger: #ff7f8d;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  --shadow-strong: 0 42px 120px rgba(0, 0, 0, 0.44);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --transition-fast: 180ms ease;
  --transition-base: 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 106, 42, 0.22), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(71, 114, 255, 0.16), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(255, 160, 122, 0.1), transparent 26%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg) 44%, #05070b 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
}

body::before {
  top: 110px;
  left: -120px;
  width: 320px;
  height: 320px;
  background: rgba(255, 106, 42, 0.16);
}

body::after {
  right: 0;
  bottom: 4%;
  width: 360px;
  height: 360px;
  background: rgba(71, 114, 255, 0.12);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button,
input,
select {
  width: 100%;
  border-radius: var(--radius-sm);
}

input,
select {
  min-height: 58px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
  outline: none;
  transition:
    border-color var(--transition-fast),
    background var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

input::placeholder,
select::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

input:hover,
select:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.07);
}

input:focus,
select:focus {
  border-color: rgba(255, 106, 42, 0.54);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px var(--accent-ring);
}

button {
  min-height: 58px;
  border: 0;
  color: #fff8f4;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 20px 38px rgba(255, 106, 42, 0.24);
  cursor: pointer;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    filter var(--transition-fast),
    background var(--transition-fast);
}

button:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 42px rgba(255, 106, 42, 0.28);
  filter: saturate(1.08);
}

button:active {
  transform: translateY(0);
}

button.secondary {
  color: #221109;
  background: linear-gradient(135deg, #fff5ee 0%, #ffd0b6 100%);
  box-shadow: 0 18px 34px rgba(255, 215, 193, 0.14);
}

button.ghost,
.button.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  box-shadow: none;
}

button.ghost:hover,
.button.ghost:hover {
  background: rgba(255, 255, 255, 0.075);
  border-color: var(--line-strong);
  box-shadow: none;
}

button.danger {
  color: var(--danger);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  color: #fff8f4;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 20px 38px rgba(255, 106, 42, 0.24);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    filter var(--transition-fast);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 42px rgba(255, 106, 42, 0.28);
}

.shell {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.brand-mark {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 35%, #ffd7c5 0 18%, transparent 19%),
    linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow:
    0 0 0 7px rgba(255, 106, 42, 0.12),
    0 10px 24px rgba(255, 106, 42, 0.24);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  background: rgba(8, 10, 16, 0.74);
  backdrop-filter: blur(20px);
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    transform var(--transition-fast);
}

.nav a.active,
.nav a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

main {
  padding-bottom: 80px;
}

.hero,
.auth-stage,
.stats-band,
.grid-3,
.hero-panel,
.timeline,
.summary-grid,
.summary-grid.compact,
.page-stack,
.stack,
.user-panel,
.sub-actions,
.actions,
.stats-grid,
.form-grid,
.inline-controls,
.experience-grid,
.flow-list,
.faq-grid {
  display: grid;
  gap: 18px;
}

.hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 26px;
  align-items: stretch;
  padding: 26px 0 28px;
}

.hero-copy,
.page-heading,
.hero-panel,
.card,
.auth-stage,
.status {
  animation: rise-in 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 610px;
}

.page-heading {
  padding: 28px 0 10px;
}

.page-heading-wide h1 {
  max-width: 12ch;
}

.hero-copy h1,
.page-heading h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  max-width: 10.5ch;
}

.eyebrow {
  margin: 0;
  color: #ffd6c5;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.lead,
.hint,
.plain-list,
.ordered-list,
code,
.track-card p,
.flow-item p,
.experience-chip span,
.faq-grid p,
.auth-mini-list,
.auth-showcase p,
.auth-card p {
  color: var(--muted);
}

.lead {
  margin: 0;
  max-width: 62ch;
  font-size: 18px;
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.hero-strip span,
.live-pill,
.plan-tag,
.badge,
.auth-card-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.auth-kicker {
  margin: 0;
  color: #ffe0d2;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-strip span {
  color: var(--muted-strong);
}

.live-pill {
  color: #ffe0d2;
  background: rgba(255, 106, 42, 0.14);
  border-color: rgba(255, 106, 42, 0.18);
}

.card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    var(--card);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
  transition:
    transform var(--transition-base),
    border-color var(--transition-fast),
    box-shadow var(--transition-base),
    background var(--transition-base);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 38%);
  opacity: 0.7;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-strong);
}

.hero-panel {
  grid-template-columns: 1fr;
  align-content: stretch;
}

.hero-panel-rich {
  grid-template-rows: 1.2fr auto;
}

.hero-visual-card {
  min-height: 420px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 106, 42, 0.18), transparent 30%),
    radial-gradient(circle at 100% 0%, rgba(71, 114, 255, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(14, 18, 28, 0.98), rgba(10, 13, 20, 0.94));
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}

.hero-orb-main {
  right: -30px;
  top: -20px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 106, 42, 0.46), rgba(255, 106, 42, 0));
}

.hero-visual-top,
.auth-showcase-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-visual-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.track-card,
.auth-glass-card,
.flow-item,
.summary-box,
.node-card,
.user-card,
.auth-benefit,
.auth-metric,
.experience-chip {
  position: relative;
  z-index: 1;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
}

.track-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.track-card.active {
  background: linear-gradient(135deg, rgba(255, 106, 42, 0.16), rgba(255, 255, 255, 0.05));
  border-color: rgba(255, 106, 42, 0.18);
}

.track-index {
  color: #ffd9c7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.track-card strong,
.flow-item strong,
.experience-chip strong,
.auth-glass-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

.track-card p,
.flow-item p,
.experience-chip span,
.faq-grid p {
  margin: 0;
  line-height: 1.6;
}

.hero-eq {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  display: flex;
  align-items: end;
  gap: 7px;
  height: 58px;
}

.hero-eq span {
  width: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 106, 42, 0.5));
  animation: equalize 1600ms ease-in-out infinite;
}

.hero-eq span:nth-child(1) { height: 18px; animation-delay: 0ms; }
.hero-eq span:nth-child(2) { height: 46px; animation-delay: 140ms; }
.hero-eq span:nth-child(3) { height: 28px; animation-delay: 220ms; }
.hero-eq span:nth-child(4) { height: 52px; animation-delay: 320ms; }
.hero-eq span:nth-child(5) { height: 24px; animation-delay: 420ms; }
.hero-eq span:nth-child(6) { height: 38px; animation-delay: 520ms; }

.roadmap-card {
  min-height: 0;
}

.flow-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-band,
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-card strong,
.stat-card strong,
.summary-box strong,
.price {
  display: block;
  margin-top: 8px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}

.metric-label,
.summary-label,
.stat-card span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.split-band {
  margin-top: 24px;
}

.wide-card h2,
.feature-card h2,
.pricing-card h2,
.faq-card h2,
.auth-card h2,
.admin-shell h2 {
  margin: 10px 0 12px;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.04em;
}

.feature-card p,
.pricing-card p,
.faq-card p {
  margin: 0;
  line-height: 1.65;
}

.experience-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 22px;
}

.experience-copy {
  display: grid;
  gap: 14px;
}

.experience-grid {
  grid-template-columns: 1fr;
  align-content: start;
}

.pricing-grid {
  align-items: stretch;
}

.plan-tag,
.badge {
  color: #ffd7c4;
  background: var(--accent-soft);
  border-color: rgba(255, 106, 42, 0.16);
}

.pricing-card.featured {
  transform: translateY(-8px);
  border-color: rgba(255, 106, 42, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 106, 42, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(20, 24, 34, 0.92);
}

.pricing-card.featured:hover {
  transform: translateY(-12px);
}

.plain-list,
.ordered-list,
.auth-mini-list {
  margin: 0;
  padding-left: 20px;
  line-height: 1.7;
}

.faq-card {
  margin-top: 8px;
}

.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-stack {
  gap: 24px;
}

.auth-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.auth-stage {
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  align-items: stretch;
}

.auth-stage-premium {
  min-height: 680px;
}

.auth-showcase,
.auth-frame {
  min-height: 100%;
}

.auth-showcase {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.auth-showcase-rich {
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 106, 42, 0.18), transparent 26%),
    radial-gradient(circle at 100% 0%, rgba(71, 114, 255, 0.16), transparent 24%),
    linear-gradient(165deg, rgba(19, 24, 35, 0.98) 0%, rgba(9, 12, 19, 0.96) 100%);
}

.auth-ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
}

.auth-ambient-a {
  left: -60px;
  bottom: -80px;
  width: 240px;
  height: 240px;
  background: rgba(255, 106, 42, 0.22);
}

.auth-ambient-b {
  right: -40px;
  top: 90px;
  width: 180px;
  height: 180px;
  background: rgba(71, 114, 255, 0.16);
}

.auth-scene {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  margin-top: 22px;
}

.auth-scene-copy h2 {
  margin: 0 0 12px;
  max-width: 10ch;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.auth-scene-copy p,
.auth-glass-card p {
  margin: 0;
  max-width: 58ch;
  line-height: 1.68;
}

.auth-visual-deck {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 14px;
}

.auth-glass-card.primary {
  background: linear-gradient(135deg, rgba(255, 106, 42, 0.18), rgba(255, 255, 255, 0.04));
  border-color: rgba(255, 106, 42, 0.18);
}

.auth-card-label {
  width: fit-content;
  margin-bottom: 14px;
}

.auth-mini-list {
  color: var(--muted-strong);
}

.auth-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.auth-metric strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.auth-metric span {
  color: var(--muted);
  font-size: 13px;
}

.auth-frame {
  padding: 12px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.auth-card {
  min-height: 100%;
}

.auth-card-premium {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(13, 17, 26, 0.98), rgba(18, 22, 31, 0.96));
}

.auth-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 6px;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.auth-tab {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  box-shadow: none;
}

.auth-tab:hover {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.auth-tab.is-active {
  color: var(--ink);
  background: linear-gradient(135deg, rgba(255, 106, 42, 0.22), rgba(255, 141, 99, 0.14));
  box-shadow: inset 0 0 0 1px rgba(255, 106, 42, 0.2);
}

.auth-copy {
  margin-top: 8px;
}

.auth-copy-kicker {
  margin-bottom: 12px;
}

.auth-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.04em;
}

.auth-copy p {
  margin: 0;
  line-height: 1.65;
}

.auth-forms {
  position: relative;
  margin-top: 10px;
}

.auth-form {
  transition:
    opacity var(--transition-base),
    transform var(--transition-base),
    filter var(--transition-base);
}

.auth-form[hidden] {
  display: none;
}

.auth-stage[data-mode="register"] .auth-card-premium {
  background: linear-gradient(180deg, rgba(14, 18, 27, 0.98), rgba(22, 27, 39, 0.96));
}

.auth-stage[data-mode="register"] .auth-glass-card.primary {
  background: linear-gradient(135deg, rgba(71, 114, 255, 0.16), rgba(255, 255, 255, 0.05));
  border-color: rgba(71, 114, 255, 0.2);
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field span {
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 700;
}

.field-hint {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.auth-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.auth-footer button {
  width: auto;
  min-width: 210px;
}

.auth-link {
  width: auto;
  min-height: auto;
  padding: 0;
  color: #ffd8c8;
  background: none;
  border: 0;
  box-shadow: none;
}

.auth-link:hover {
  transform: none;
  filter: none;
  box-shadow: none;
  color: #fff2ea;
}

.status {
  margin: 0;
  font-weight: 700;
}

.status[data-tone="success"] {
  color: var(--success);
}

.status[data-tone="error"] {
  color: var(--danger);
}

.summary-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.summary-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.sub-box {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 106, 42, 0.14), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 106, 42, 0.16);
}

.sub-box label {
  display: block;
  margin-bottom: 12px;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 700;
}

.sub-actions,
.actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.inline-controls {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-row {
  padding: 0;
  background: transparent;
  border: 0;
}

.checkbox input {
  width: auto;
  min-height: auto;
  box-shadow: none;
}

code {
  word-break: break-all;
}

.hidden {
  display: none !important;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes equalize {
  0%,
  100% {
    transform: scaleY(0.72);
    opacity: 0.7;
  }
  50% {
    transform: scaleY(1.08);
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .hero,
  .auth-stage,
  .experience-card {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .auth-stage-premium {
    min-height: auto;
  }

  .auth-visual-deck,
  .flow-list,
  .faq-grid,
  .auth-metrics,
  .stats-band,
  .grid-3,
  .stats-grid,
  .timeline,
  .form-grid,
  .summary-grid,
  .summary-grid.compact,
  .actions,
  .sub-actions,
  .inline-controls,
  .auth-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .page-heading h1,
  .auth-scene-copy h2 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 20px, 1180px);
  }

  .topbar {
    align-items: start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    border-radius: 24px;
  }

  .nav a {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
  }

  .card,
  .auth-showcase,
  .auth-frame {
    border-radius: 26px;
  }

  .card,
  .auth-showcase,
  .auth-card-premium {
    padding: 20px;
  }

  .auth-frame {
    padding: 10px;
  }

  .hero-copy h1,
  .page-heading h1 {
    font-size: clamp(36px, 13vw, 56px);
  }

  .auth-copy h2,
  .auth-scene-copy h2,
  .wide-card h2,
  .feature-card h2,
  .pricing-card h2,
  .faq-card h2 {
    font-size: 30px;
  }

  .auth-footer {
    align-items: start;
    flex-direction: column;
  }

  .auth-footer button,
  .button,
  .hero-actions a {
    width: 100%;
  }

  .hero-actions {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
