:root {
  --bg: #041412;
  --surface: rgba(8, 24, 21, 0.86);
  --primary: #0b5d4b;
  --accent: #e3b24b;
  --text-main: #f5ecdf;
  --text-soft: rgba(245, 236, 223, 0.74);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow: hidden;
  background-color: #020908;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
  overscroll-behavior: none;
  background-color: #020908;
  background:
    radial-gradient(circle at 20% 10%, rgba(227, 178, 75, 0.18), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(11, 93, 75, 0.34), transparent 28%),
    linear-gradient(180deg, #081d1a 0%, var(--bg) 42%, #020908 100%);
  color: var(--text-main);
  font-family: 'Manrope', sans-serif;
}

button,
input,
textarea,
select {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.mobile-casino-shell {
  position: relative;
  height: 100svh;
  max-width: 100vw;
  overflow: hidden;
  display: grid;
  grid-template-rows: 35svh minmax(0, 1fr);
  isolation: isolate;
}

.ambient {
  position: absolute;
  width: 54vw;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(56px);
  opacity: 0.42;
  z-index: -1;
}

.ambient-left {
  top: -8vw;
  left: -18vw;
  background: radial-gradient(circle, rgba(227, 178, 75, 0.3), transparent 70%);
}

.ambient-right {
  top: 6%;
  right: -20vw;
  background: radial-gradient(circle, rgba(11, 93, 75, 0.42), transparent 72%);
}

.wheel-hero {
  position: relative;
  overflow: hidden;
  padding: max(10px, env(safe-area-inset-top)) 14px 0;
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.hero-eyebrow {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  font-weight: 800;
}

.hero-caption {
  margin: 8px 0 0;
  max-width: 26ch;
  color: rgba(245, 236, 223, 0.74);
  font-size: 12px;
  line-height: 1.42;
}

.hero-chip {
  flex-shrink: 0;
  padding: 9px 11px;
  border-radius: 999px;
  border: 1px solid rgba(227, 178, 75, 0.16);
  background: rgba(7, 18, 16, 0.76);
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wheel-pointer {
  position: absolute;
  left: 50%;
  top: 56px;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 30px solid var(--accent);
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.42));
  z-index: 3;
}

.wheel-pointer::before {
  content: '';
  position: absolute;
  left: -7px;
  top: -31px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff3c8, #c69027 70%);
  box-shadow: 0 0 0 4px rgba(8, 24, 21, 0.88);
}

.wheel-clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.wheel-core {
  position: absolute;
  left: 50%;
  top: 18px;
  width: min(124vw, 600px);
  aspect-ratio: 1;
  transform: translateX(-50%);
}

.wheel-core::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 178, 75, 0.14) 0%, rgba(2, 9, 8, 0.03) 60%, rgba(2, 9, 8, 0) 74%);
  filter: blur(14px);
}

.wheel-face {
  --spin-rotation: 0deg;
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  transform: rotate(var(--spin-rotation));
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06), transparent 52%), #081816;
  box-shadow: inset 0 0 0 14px rgba(4, 18, 16, 0.82), 0 40px 82px rgba(0, 0, 0, 0.42);
}

.wheel-face.is-idle {
  animation: wheel-idle 20s linear infinite;
}

.wheel-face.is-spinning {
  animation: wheel-spin 7.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.wheel-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wheel-segment-label {
  font-weight: 700;
  letter-spacing: 0.035em;
  font-variant-numeric: tabular-nums lining-nums;
  paint-order: stroke fill;
  text-rendering: geometricPrecision;
  stroke: rgba(0, 0, 0, 0.22);
  stroke-width: 0.4;
}

.wheel-segment-label.is-short {
  letter-spacing: 0.01em;
}

.wheel-center-ring {
  fill: rgba(6, 17, 15, 0.92);
  stroke: rgba(227, 178, 75, 0.32);
  stroke-width: 1.5;
}

.wheel-center-core {
  fill: url(#wheel-center-gradient);
}


.form-dock {
  position: relative;
  z-index: 5;
  padding: 0 10px max(10px, env(safe-area-inset-bottom));
  min-height: 0;
  overflow: hidden;
}

.step-form {
  height: 100%;
  min-height: 0;
  padding: 16px 15px 14px;
  border-radius: 24px 24px 18px 18px;
  background: linear-gradient(180deg, rgba(11, 26, 23, 0.97) 0%, rgba(6, 16, 14, 0.99) 100%);
  border: 1px solid rgba(227, 178, 75, 0.14);
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 12px;
  overflow: hidden;
}

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

.stepper-label {
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.stepper-dots {
  display: flex;
  gap: 8px;
}

.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  transition: transform 180ms ease, background-color 180ms ease;
}

.step-dot.is-active {
  background: var(--accent);
  transform: scale(1.2);
}

.step-dot.is-completed {
  background: rgba(227, 178, 75, 0.46);
}

.summary-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.summary-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(245, 236, 223, 0.82);
  font-size: 12px;
  line-height: 1.3;
}

.form-step {
  display: none;
  align-content: start;
  gap: 12px;
  min-height: 0;
}

.form-step.is-active {
  display: grid;
}

.form-step-kicker {
  margin: 0;
  color: rgba(245, 236, 223, 0.54);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-step-title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 7vw, 38px);
  line-height: 0.96;
}

.form-step-copy {
  margin: 0;
  color: rgba(245, 236, 223, 0.72);
  font-size: 13px;
  line-height: 1.48;
}

.field-card,
.consent-card {
  display: grid;
  gap: 9px;
  padding: 13px;
  border-radius: 18px;
  border: 1px solid rgba(227, 178, 75, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.field-card span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(245, 236, 223, 0.64);
}

input {
  width: 100%;
  border: 1px solid rgba(227, 178, 75, 0.16);
  background: rgba(5, 11, 10, 0.82);
  border-radius: 16px;
  padding: 16px 15px;
  color: var(--text-main);
  outline: none;
  font-size: 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

input:focus {
  border-color: rgba(227, 178, 75, 0.56);
  box-shadow: 0 0 0 4px rgba(227, 178, 75, 0.08);
}

.consent-card {
  grid-template-columns: 22px 1fr;
  align-items: start;
  column-gap: 14px;
  row-gap: 9px;
}

.consent-card input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.consent-card label {
  cursor: pointer;
}

.consent-card span {
  color: rgba(245, 236, 223, 0.72);
  font-size: 12px;
  line-height: 1.5;
}

.consent-card a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.consent-card a:hover {
  color: #f7dda2;
}

.step-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

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

.cta-button,
.secondary-button,
.ghost-button {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 15px 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.cta-button {
  color: #0f120f;
  background: linear-gradient(135deg, #f6d98e 0%, var(--accent) 45%, #c68c21 100%);
  box-shadow: 0 16px 38px rgba(227, 178, 75, 0.28);
}

.cta-button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  box-shadow: none;
}

.ghost-button,
.secondary-button {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
}

.status-copy {
  margin: 0;
  color: rgba(245, 236, 223, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.status-copy:empty {
  display: none;
}

.result-overlay {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(227, 178, 75, 0.18), rgba(1, 8, 7, 0.88));
  backdrop-filter: blur(10px);
}

.result-card {
  width: min(420px, calc(100% - 28px));
  padding: 28px 22px;
  border-radius: 28px;
  text-align: center;
  background: linear-gradient(180deg, rgba(17, 33, 29, 0.98), rgba(8, 17, 15, 0.96));
  border: 1px solid rgba(227, 178, 75, 0.22);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.result-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
}

.result-card h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 0.96;
}

.result-card p {
  margin: 14px 0 0;
  color: rgba(245, 236, 223, 0.78);
  line-height: 1.7;
}

.promo-chip {
  margin: 18px auto 0;
  width: fit-content;
  max-width: 100%;
  padding: 10px 14px;
  border-radius: 999px;
  color: #271603;
  background: linear-gradient(135deg, #f7dda2, #d9a22f);
  font-weight: 800;
  letter-spacing: 0.08em;
}

@keyframes wheel-idle {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes wheel-spin {
  from {
    transform: rotate(0deg) scale(1.02);
  }

  68% {
    transform: rotate(var(--spin-rotation)) scale(1.038);
  }

  80% {
    transform: rotate(calc(var(--spin-rotation) - 5deg)) scale(1.065);
  }

  90% {
    transform: rotate(calc(var(--spin-rotation) + 3.5deg)) scale(1.03);
  }

  100% {
    transform: rotate(var(--spin-rotation)) scale(1);
  }
}

@media (min-width: 721px) {
  .mobile-casino-shell {
    max-width: 430px;
    margin: 0 auto;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
  }
}

.settings-switch-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(227, 178, 75, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.settings-switch-title {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
}

.settings-switch-copy {
  margin: 8px 0 0;
  max-width: 58ch;
  color: rgba(245, 236, 223, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.switch-control {
  position: relative;
  flex: 0 0 auto;
  width: 58px;
  height: 34px;
  display: inline-flex;
}

.switch-control input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.switch-slider {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.switch-slider::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff8eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease;
}

.switch-control input:checked + .switch-slider {
  background: linear-gradient(135deg, #f6d98e 0%, var(--accent) 45%, #c68c21 100%);
  border-color: rgba(227, 178, 75, 0.68);
  box-shadow: 0 0 0 4px rgba(227, 178, 75, 0.1);
}

.switch-control input:checked + .switch-slider::after {
  transform: translateX(24px);
}

.switch-control input:focus-visible + .switch-slider {
  box-shadow: 0 0 0 4px rgba(227, 178, 75, 0.12);
}

.experience-shell {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 12%, rgba(227, 178, 75, 0.16), transparent 26%),
    radial-gradient(circle at 86% 16%, rgba(11, 93, 75, 0.24), transparent 28%),
    linear-gradient(180deg, #081d1a 0%, var(--bg) 42%, #020908 100%);
}

.experience-glow {
  position: absolute;
  z-index: -1;
  width: 34vw;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(58px);
  opacity: 0.45;
}

.experience-glow-left {
  top: -8vh;
  left: -8vw;
  background: radial-gradient(circle, rgba(227, 178, 75, 0.3), transparent 70%);
}

.experience-glow-right {
  right: -10vw;
  bottom: -16vh;
  background: radial-gradient(circle, rgba(11, 93, 75, 0.42), transparent 70%);
}

.experience-grid {
  width: min(1440px, calc(100% - 28px));
  height: 100%;
  margin: 0 auto;
  padding: clamp(14px, 2.2vw, 26px) 0;
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(320px, 1.15fr) minmax(290px, 0.95fr);
  grid-template-areas: 'copy wheel form';
  gap: clamp(14px, 2vw, 28px);
  align-items: stretch;
}

.experience-copy,
.experience-wheel-card,
.experience-form {
  min-height: 0;
  border: 1px solid rgba(227, 178, 75, 0.14);
  background: linear-gradient(180deg, rgba(11, 26, 23, 0.88) 0%, rgba(6, 16, 14, 0.94) 100%);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
}

.experience-copy {
  grid-area: copy;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(20px, 2.3vw, 30px);
  border-radius: 30px;
}

.experience-kicker {
  margin: 0;
  font-size: 11px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent);
  font-weight: 800;
}

.experience-title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.9vw, 74px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.experience-subtitle {
  margin: 0;
  color: rgba(245, 236, 223, 0.76);
  font-size: clamp(14px, 1.55vw, 17px);
  line-height: 1.58;
}

.experience-pills {
  display: grid;
  gap: 10px;
}

.experience-pill {
  display: grid;
  gap: 6px;
  padding: 14px 15px;
  border-radius: 18px;
  border: 1px solid rgba(227, 178, 75, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.experience-pill span,
.experience-copy-label,
.experience-wheel-topline,
.experience-wheel-footer span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.experience-pill span,
.experience-copy-label,
.experience-wheel-footer span {
  color: rgba(245, 236, 223, 0.58);
}

.experience-pill strong {
  font-size: 14px;
  line-height: 1.45;
}

.experience-copy-note {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.experience-copy-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.58;
  color: rgba(245, 236, 223, 0.76);
}

.experience-wheel-panel {
  grid-area: wheel;
  min-height: 0;
  display: grid;
}

.experience-wheel-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  padding: clamp(18px, 2vw, 24px);
  border-radius: 34px;
  overflow: hidden;
}

.experience-wheel-topline,
.experience-wheel-footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.experience-wheel-topline {
  color: rgba(245, 236, 223, 0.82);
  font-weight: 700;
}

.experience-wheel-stage {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vh, 40px) clamp(10px, 2vw, 24px) clamp(18px, 2.5vh, 28px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 32%, rgba(227, 178, 75, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(227, 178, 75, 0.08);
}

.experience-shell .wheel-pointer {
  top: clamp(2px, 1vh, 16px);
}

.experience-shell .wheel-core {
  width: min(100%, clamp(280px, 34vw, 620px));
  max-height: min(70vh, 620px);
}

.experience-shell .wheel-face {
  width: 100%;
  box-shadow: inset 0 0 0 14px rgba(4, 18, 16, 0.82), inset 0 0 0 16px rgba(227, 178, 75, 0.22), 0 36px 80px rgba(0, 0, 0, 0.38);
}

.experience-shell .wheel-svg {
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.26));
}

.experience-shell .wheel-segment-label {
  font-weight: 600;
  stroke-width: 0.34;
}

.experience-form-panel {
  grid-area: form;
  min-height: 0;
  display: grid;
}

.experience-shell .experience-form {
  height: 100%;
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  padding: clamp(18px, 2vw, 22px);
  border-radius: 30px;
  gap: 14px;
}

.experience-shell .stepper-head {
  align-items: center;
}

.experience-shell .stepper-label {
  font-size: 10px;
  letter-spacing: 0.22em;
}

.experience-shell .summary-ribbon {
  min-height: 0;
}

.experience-shell .summary-pill {
  min-height: 30px;
  padding: 7px 10px;
  font-size: 12px;
}

.experience-shell .form-step {
  gap: 14px;
}

.experience-shell .form-step-title {
  font-size: clamp(30px, 3.2vw, 42px);
}

.experience-shell .form-step-copy {
  font-size: 13px;
}

.experience-shell .field-card,
.experience-shell .consent-card {
  padding: 14px;
  border-radius: 18px;
}

.experience-shell input {
  font-size: 16px;
  padding: 15px 16px;
}

.experience-shell .status-copy {
  font-size: 13px;
}

.experience-shell .step-actions {
  margin-top: auto;
}

.experience-shell .cta-button,
.experience-shell .ghost-button,
.experience-shell .secondary-button {
  min-height: 50px;
}

.experience-shell .result-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
}

.experience-shell .result-card {
  width: min(420px, calc(100% - 28px));
}

@media (max-width: 1180px) {
  .experience-grid {
    grid-template-columns: minmax(260px, 0.96fr) minmax(300px, 1.04fr);
    grid-template-rows: auto minmax(0, 1fr);
    grid-template-areas:
      'copy wheel'
      'form wheel';
  }

  .experience-copy {
    gap: 14px;
  }

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

@media (max-width: 960px) {
  .experience-shell {
    height: auto;
    min-height: 100svh;
  }

  .experience-grid {
    height: auto;
    min-height: 100svh;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto minmax(0, 1fr);
    grid-template-areas:
      'copy'
      'wheel'
      'form';
    padding-block: 14px 18px;
  }

  .experience-copy {
    border-radius: 26px;
  }

  .experience-pills {
    grid-template-columns: 1fr;
  }

  .experience-wheel-card {
    border-radius: 28px;
  }

  .experience-wheel-stage {
    min-height: min(44svh, 440px);
  }

  .experience-shell .wheel-core {
    width: min(100%, clamp(260px, 76vw, 460px));
  }

  .experience-shell .experience-form {
    min-height: min(42svh, 360px);
    border-radius: 26px;
  }
}

@media (max-width: 720px) {
  .experience-grid {
    width: min(100%, calc(100% - 18px));
    gap: 12px;
  }

  .experience-copy,
  .experience-wheel-card,
  .experience-shell .experience-form {
    border-radius: 24px;
  }

  .experience-copy {
    padding: 18px;
  }

  .experience-title {
    font-size: clamp(32px, 12vw, 48px);
  }

  .experience-subtitle {
    font-size: 13px;
  }

  .experience-copy-note {
    padding: 14px 15px;
  }

  .experience-wheel-card {
    padding: 14px;
  }

  .experience-wheel-topline,
  .experience-wheel-footer {
    font-size: 10px;
  }

  .experience-wheel-stage {
    padding: 26px 8px 14px;
    min-height: min(40svh, 380px);
  }

  .experience-shell .wheel-pointer {
    top: 4px;
    border-left-width: 15px;
    border-right-width: 15px;
    border-top-width: 28px;
  }

  .experience-shell .experience-form {
    padding: 16px 14px 14px;
    min-height: min(44svh, 360px);
  }

  .experience-shell .form-step-title {
    font-size: clamp(28px, 8vw, 36px);
  }

  .experience-shell .step-actions.split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) and (orientation: landscape), (max-height: 560px) and (orientation: landscape) {
  .experience-shell {
    height: 100svh;
  }

  .experience-grid {
    width: min(100%, calc(100% - 18px));
    height: 100%;
    grid-template-columns: minmax(250px, 0.88fr) minmax(320px, 1.12fr);
    grid-template-rows: auto minmax(0, 1fr);
    grid-template-areas:
      'copy wheel'
      'form wheel';
    gap: 10px 12px;
    padding: 10px 0;
  }

  .experience-copy {
    gap: 10px;
    padding: 14px 16px;
  }

  .experience-title {
    font-size: clamp(26px, 5vw, 42px);
  }

  .experience-subtitle,
  .experience-copy-note p,
  .experience-shell .form-step-copy,
  .experience-shell .status-copy {
    font-size: 12px;
    line-height: 1.42;
  }

  .experience-pills {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .experience-pill {
    padding: 10px 12px;
  }

  .experience-copy-note {
    padding: 12px;
  }

  .experience-wheel-card {
    padding: 12px;
    gap: 10px;
  }

  .experience-wheel-stage {
    min-height: 0;
    height: 100%;
    padding: 18px 8px 10px;
  }

  .experience-shell .wheel-core {
    width: min(100%, clamp(230px, 52vh, 420px));
    max-height: calc(100svh - 86px);
  }

  .experience-shell .wheel-face {
    box-shadow: inset 0 0 0 12px rgba(4, 18, 16, 0.82), inset 0 0 0 14px rgba(227, 178, 75, 0.2), 0 24px 58px rgba(0, 0, 0, 0.34);
  }

  .experience-shell .wheel-pointer {
    top: -2px;
    border-left-width: 14px;
    border-right-width: 14px;
    border-top-width: 24px;
  }

  .experience-wheel-footer {
    display: none;
  }

  .experience-shell .experience-form {
    padding: 14px 13px 12px;
    gap: 10px;
  }

  .experience-shell .summary-pill {
    min-height: 28px;
    font-size: 11px;
  }

  .experience-shell .form-step {
    gap: 10px;
  }

  .experience-shell .form-step-title {
    font-size: clamp(24px, 4vw, 30px);
  }

  .experience-shell .field-card,
  .experience-shell .consent-card {
    padding: 10px 12px;
    gap: 7px;
  }

  .experience-shell input {
    padding: 12px 14px;
  }

  .experience-shell .cta-button,
  .experience-shell .ghost-button,
  .experience-shell .secondary-button {
    min-height: 44px;
    padding: 12px 16px;
  }
}

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

.experience-wheel-card {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
}

.experience-wheel-topline,
.experience-wheel-footer {
  display: none;
}

.experience-wheel-stage {
  padding: 10px 0 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.experience-wheel-panel {
  align-items: end;
  justify-items: center;
  overflow: visible;
}

.experience-shell .wheel-core {
  overflow: visible;
}

.experience-shell .wheel-face {
  margin-inline: auto;
}

@media (max-width: 960px) {
  .experience-copy {
    display: none;
  }

  .experience-grid {
    gap: 0;
    grid-template-areas:
      'wheel'
      'form';
  }

  .experience-wheel-panel {
    position: relative;
    z-index: 1;
    margin-bottom: calc(-1 * min(17svh, 148px));
  }

  .experience-form-panel {
    position: relative;
    z-index: 3;
  }

  .experience-wheel-stage {
    min-height: min(48svh, 420px);
    padding-top: 8px;
  }

  .experience-shell .wheel-core {
    width: min(96vw, 430px);
    max-height: none;
  }
}

@media (max-width: 960px) and (orientation: landscape), (max-height: 560px) and (orientation: landscape) {
  .experience-grid {
    grid-template-columns: minmax(280px, 0.94fr) minmax(240px, 1.06fr);
    grid-template-rows: 1fr;
    grid-template-areas: 'form wheel';
    gap: 12px;
    align-items: end;
  }

  .experience-wheel-panel {
    margin-bottom: 0;
  }

  .experience-wheel-stage {
    height: 100%;
    min-height: 0;
    padding-top: 4px;
  }

  .experience-shell .wheel-core {
    width: min(100%, clamp(220px, 46vh, 360px));
  }
}

.experience-wheel-panel,
.experience-wheel-card,
.experience-wheel-stage {
  width: 100%;
}

.experience-wheel-panel {
  justify-self: center;
}

.experience-wheel-stage {
  place-items: center;
}

.experience-shell .wheel-core {
  margin-inline: auto;
}

.experience-shell .step-actions {
  position: sticky;
  bottom: 0;
  z-index: 4;
  padding-top: 10px;
  background: linear-gradient(180deg, rgba(6, 16, 14, 0), rgba(6, 16, 14, 0.9) 28%, rgba(6, 16, 14, 0.98) 100%);
}

@media (max-width: 960px) {
  .experience-wheel-panel {
    display: grid;
    justify-items: center;
  }

  .experience-wheel-stage {
    width: 100%;
  }

  .experience-shell .wheel-core {
    width: min(calc(100vw - 28px), 420px);
  }

  .experience-shell .experience-form {
    padding-bottom: 16px;
  }
}

@media (max-width: 960px) and (orientation: landscape), (max-height: 560px) and (orientation: landscape) {
  .experience-grid {
    grid-template-columns: minmax(290px, 1fr) minmax(250px, 0.92fr);
    align-items: stretch;
  }

  .experience-wheel-panel {
    align-self: center;
    min-height: 0;
  }

  .experience-wheel-card {
    height: 100%;
    display: grid;
    align-items: center;
  }

  .experience-wheel-stage {
    min-height: calc(100svh - 26px);
    padding: 0;
  }

  .experience-shell .wheel-core {
    width: min(100%, clamp(240px, 44vw, 380px));
    max-height: calc(100svh - 22px);
  }
}

.experience-wheel-panel {
  justify-self: stretch;
  align-self: end;
  place-items: end center;
}

.experience-wheel-stage,
.experience-wheel-card {
  width: 100%;
}

.experience-wheel-stage {
  justify-items: center;
}

.experience-shell .wheel-core,
.experience-shell .wheel-face {
  justify-self: center;
}

@media (max-width: 960px) {
  .experience-shell {
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .experience-grid {
    height: auto;
    min-height: 100svh;
    align-content: start;
  }

  .experience-wheel-panel {
    margin-bottom: calc(-1 * min(11svh, 96px));
  }

  .experience-wheel-stage {
    min-height: min(42svh, 360px);
  }

  .experience-shell .wheel-core {
    width: min(84vw, 360px);
  }

  .experience-shell .experience-form {
    min-height: min(56svh, 470px);
    overflow: visible;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
  }

  .experience-shell .form-step {
    padding-bottom: 6px;
  }
}

@media (max-width: 960px) and (orientation: landscape), (max-height: 560px) and (orientation: landscape) {
  .experience-shell {
    height: 100svh;
    overflow: hidden;
  }

  .experience-grid {
    min-height: 100%;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr);
    grid-template-areas: 'form wheel';
    align-items: center;
  }

  .experience-wheel-panel {
    margin-bottom: 0;
    place-items: center;
    min-width: 0;
  }

  .experience-wheel-stage {
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 4px 0 0;
  }

  .experience-shell .wheel-core {
    width: min(42vh, 44vw, 320px);
    max-height: min(42vh, 320px);
  }

  .experience-form-panel {
    min-width: 0;
  }

  .experience-shell .experience-form {
    height: 100%;
    min-height: 0;
    overflow: auto;
    padding-bottom: 14px;
  }
}

@media (max-width: 960px) {
  .experience-grid {
    max-width: 430px;
  }

  .experience-wheel-panel {
    width: 100vw;
    justify-self: center;
    margin-inline: calc(50% - 50vw);
    place-items: end center;
    margin-bottom: calc(-1 * min(11svh, 92px));
  }

  .experience-wheel-stage {
    min-height: min(39svh, 330px);
    padding-top: 0;
  }

  .experience-shell .wheel-core {
    width: min(86vw, 340px);
  }

  .experience-shell .experience-form {
    min-height: min(58svh, 480px);
    padding-bottom: calc(22px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 960px) and (orientation: landscape), (max-height: 560px) and (orientation: landscape) {
  .experience-grid {
    max-width: none;
    width: min(100%, calc(100% - 18px));
  }

  .experience-wheel-panel {
    width: auto;
    margin: 0;
    justify-self: stretch;
    place-items: center;
  }

  .experience-wheel-stage {
    padding: 0;
  }

  .experience-shell .wheel-core {
    width: min(46vw, 42vh, 300px);
  }
}

/* Copilot mobile layout stabilization */
@media (max-width: 960px) {
  .experience-shell {
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
  }

  .experience-grid {
    width: min(100%, calc(100% - 16px));
    max-width: 430px;
    min-height: 100svh;
    gap: 0;
    align-content: start;
    padding-block: 10px 14px;
  }

  .experience-wheel-panel {
    width: 100%;
    justify-self: stretch;
    margin-inline: 0;
    place-items: end center;
    overflow: visible;
    margin-bottom: calc(-1 * min(10svh, 78px));
  }

  .experience-wheel-stage {
    min-height: min(35svh, 300px);
    padding-top: 0;
  }

  .experience-shell .wheel-core {
    width: min(82vw, 322px);
    max-height: none;
  }

  .experience-shell .wheel-core::before {
    background: none;
    filter: none;
  }

  .experience-shell .wheel-face {
    inset: auto;
    left: 18px;
    top: 18px;
    width: calc(100% - 36px);
    height: calc(100% - 36px);
    background: transparent;
    box-shadow: none;
  }

  .experience-shell .wheel-svg {
    filter: none;
  }

  .experience-form-panel {
    width: 100%;
    min-width: 0;
  }

  .experience-shell .experience-form {
    min-height: 0;
    max-height: min(64svh, 480px);
    overflow: auto;
    overscroll-behavior: contain;
    padding: 14px 14px calc(18px + env(safe-area-inset-bottom));
  }

  .experience-shell .stepper-head {
    gap: 10px;
  }

  .experience-shell .summary-ribbon {
    min-height: 0;
  }

  .experience-shell .form-step {
    gap: 12px;
  }

  .experience-shell .form-step-title {
    font-size: clamp(26px, 9vw, 34px);
  }

  .experience-shell .form-step-copy {
    line-height: 1.45;
  }

  .experience-shell .field-card,
  .experience-shell .consent-card {
    padding: 12px;
  }

  .experience-shell .step-actions {
    position: sticky;
    bottom: 0;
    margin-top: auto;
    padding-top: 8px;
    background: linear-gradient(180deg, rgba(6, 16, 14, 0), rgba(6, 16, 14, 0.86) 28%, rgba(6, 16, 14, 0.98) 100%);
  }
}

@media (max-width: 960px) and (max-height: 620px) {
  .experience-grid {
    padding-block: 8px 12px;
  }

  .experience-wheel-panel {
    margin-bottom: calc(-1 * min(8svh, 62px));
  }

  .experience-wheel-stage {
    min-height: min(30svh, 230px);
  }

  .experience-shell .wheel-core {
    width: min(76vw, 288px);
  }

  .experience-shell .experience-form {
    max-height: min(61svh, 300px);
    padding: 12px 12px calc(16px + env(safe-area-inset-bottom));
  }

  .experience-shell .stepper-label {
    font-size: 9px;
  }

  .experience-shell .form-step {
    gap: 10px;
  }

  .experience-shell .form-step-title {
    font-size: clamp(24px, 8.2vw, 30px);
  }

  .experience-shell .form-step-copy,
  .experience-shell .status-copy {
    font-size: 12px;
    line-height: 1.4;
  }

  .experience-shell .field-card,
  .experience-shell .consent-card {
    padding: 10px 12px;
  }

  .experience-shell input {
    padding: 12px 14px;
  }

  .experience-shell .cta-button,
  .experience-shell .ghost-button,
  .experience-shell .secondary-button {
    min-height: 46px;
  }
}

@media (max-width: 960px) and (orientation: landscape), (max-height: 560px) and (orientation: landscape) {
  .experience-shell {
    height: auto;
    min-height: 100svh;
    overflow-y: auto;
  }

  .experience-grid {
    width: min(100%, calc(100% - 16px));
    max-width: none;
    min-height: 100svh;
    grid-template-columns: minmax(0, 1.05fr) minmax(220px, 0.95fr);
    grid-template-rows: minmax(0, 1fr);
    grid-template-areas: 'form wheel';
    gap: 10px;
    align-items: center;
    padding-block: 8px;
  }

  .experience-wheel-panel {
    width: auto;
    margin: 0;
    min-width: 0;
    justify-self: stretch;
    align-self: center;
    place-items: center;
  }

  .experience-wheel-stage {
    min-height: 0;
    height: 100%;
    padding: 0;
  }

  .experience-shell .wheel-core {
    width: min(40vw, 38vh, 280px);
    max-height: min(40vw, 38vh, 280px);
  }

  .experience-form-panel {
    min-width: 0;
    align-self: stretch;
  }

  .experience-shell .experience-form {
    max-height: none;
    height: auto;
    min-height: 0;
    overflow: auto;
    padding: 12px 12px 14px;
  }
}

/* Copilot landscape stabilization */
@media (max-width: 960px) and (orientation: landscape), (max-height: 560px) and (orientation: landscape) {
  .experience-shell {
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
  }

  .experience-grid {
    width: min(100%, calc(100% - 16px));
    height: 100svh;
    min-height: 100svh;
    max-width: none;
    grid-template-columns: minmax(320px, 1.04fr) minmax(280px, 0.96fr);
    grid-template-rows: minmax(0, 1fr);
    grid-template-areas: 'form wheel';
    gap: 12px;
    align-items: stretch;
    padding: 8px 0;
  }

  .experience-form-panel {
    min-width: 0;
    align-self: stretch;
  }

  .experience-shell .experience-form {
    height: calc(100svh - 16px);
    max-height: calc(100svh - 16px);
    min-height: 0;
    overflow: auto;
    padding: 12px 12px 14px;
  }

  .experience-wheel-panel {
    width: auto;
    min-width: 0;
    justify-self: stretch;
    align-self: stretch;
    place-items: stretch center;
    margin: 0;
  }

  .experience-wheel-card {
    height: calc(100svh - 16px);
    min-height: 0;
    display: grid;
    align-items: stretch;
  }

  .experience-wheel-stage {
    height: 100%;
    min-height: calc(100svh - 16px);
    padding: 0;
    display: grid;
    place-items: center;
  }

  .experience-shell .wheel-core {
    left: 50%;
    top: 50%;
    width: min(56vw, 92svh, 360px);
    max-height: none;
    transform: translate(-50%, -50%);
  }
}

/* Copilot landscape text trim */
@media (max-width: 960px) and (orientation: landscape), (max-height: 560px) and (orientation: landscape) {
  .experience-shell .form-step-copy {
    display: block;
    font-size: 11px;
    line-height: 1.32;
  }

  .experience-shell .form-step {
    gap: 8px;
  }

  .experience-shell .stepper-head {
    gap: 8px;
    margin-bottom: 4px;
  }
}

/* Copilot landscape compact form */
@media (max-width: 960px) and (orientation: landscape), (max-height: 560px) and (orientation: landscape) {
  .experience-shell .summary-ribbon {
    display: none;
  }

  .experience-shell .status-copy {
    display: block;
    font-size: 11px;
    line-height: 1.32;
  }

  .experience-shell .form-step-title {
    font-size: clamp(20px, 4vw, 26px);
  }

  .experience-shell .field-card,
  .experience-shell .consent-card {
    padding: 8px 10px;
    row-gap: 6px;
  }

  .experience-shell .consent-card {
    column-gap: 11px;
  }

  .experience-shell .consent-card span {
    font-size: 11px;
    line-height: 1.32;
  }

  .experience-shell input {
    padding: 10px 12px;
  }

  .experience-shell .step-actions {
    position: static;
    padding-top: 4px;
    background: none;
  }
}



/* Desktop layout recovery */
@media (min-width: 961px) {
  .experience-grid {
    align-items: stretch;
  }

  .experience-copy {
    display: grid;
  }

  .experience-wheel-panel {
    justify-self: stretch;
    align-self: stretch;
    align-items: stretch;
    justify-items: stretch;
    place-items: stretch;
    min-height: 0;
    margin-bottom: 0;
    overflow: visible;
  }

  .experience-wheel-card {
    height: 100%;
    min-height: 0;
    display: grid;
    grid-template-rows: 1fr;
    align-items: stretch;
  }

  .experience-wheel-stage {
    height: 100%;
    min-height: 0;
    padding: 18px 0 0;
    display: grid;
    place-items: center;
  }

  .experience-shell .wheel-core {
    left: 50%;
    top: 18px;
    width: min(100%, clamp(260px, 31vw, 420px));
    max-height: min(62vh, 420px);
    transform: translateX(-50%);
    margin-inline: 0;
  }

  .experience-shell .wheel-face {
    margin-inline: 0;
  }
}

/* Compact desktop adaptation */
@media (min-width: 961px) and (max-width: 1280px), (min-width: 961px) and (max-height: 720px) {
  .experience-grid {
    width: min(1320px, calc(100% - 22px));
    grid-template-columns: minmax(220px, 0.78fr) minmax(260px, 1fr) minmax(300px, 0.92fr);
    gap: clamp(12px, 1.4vw, 18px);
  }

  .experience-copy {
    gap: 12px;
    padding: clamp(16px, 1.8vw, 22px);
  }

  .experience-title {
    font-size: clamp(42px, 4.2vw, 58px);
  }

  .experience-subtitle,
  .experience-pill strong,
  .experience-copy-note p,
  .experience-shell .form-step-copy,
  .experience-shell .status-copy {
    font-size: 13px;
    line-height: 1.45;
  }

  .experience-pill {
    padding: 10px 12px;
  }

  .experience-copy-note {
    padding: 12px 14px;
  }

  .experience-shell .experience-form {
    padding: 16px;
  }

  .experience-shell .wheel-core {
    width: min(100%, clamp(250px, 29vw, 380px));
    max-height: min(58vh, 380px);
  }
}


/* Low-height desktop focus mode */
@media (min-width: 961px) and (max-height: 720px) {
  .experience-copy {
    overflow: hidden;
  }

  .experience-title {
    font-size: clamp(40px, 4vw, 52px);
  }

  .experience-subtitle {
    font-size: 12px;
    line-height: 1.42;
  }

  .experience-pills,
  .experience-copy-note {
    display: none;
  }
}


/* Unified adaptive app shell */
.experience-shell {
  height: auto;
  min-height: 100svh;
  overflow-x: hidden;
  overflow-y: auto;
}

.experience-shell .experience-copy {
  display: none !important;
}

.experience-shell .experience-grid {
  width: min(100%, calc(100% - 16px));
  max-width: 430px;
  height: auto;
  min-height: 100svh;
  margin: 0 auto;
  padding-block: 10px 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto;
  grid-template-areas:
    'wheel'
    'form';
  gap: 0;
  align-content: start;
  align-items: stretch;
}

.experience-shell .experience-wheel-panel {
  grid-area: wheel;
  width: 100%;
  min-width: 0;
  justify-self: stretch;
  align-self: auto;
  place-items: end center;
  margin: 0 0 calc(-1 * min(10svh, 78px));
  overflow: visible;
}

.experience-shell .experience-wheel-card {
  height: auto;
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
}

.experience-shell .experience-wheel-topline,
.experience-shell .experience-wheel-footer {
  display: none;
}

.experience-shell .experience-wheel-stage {
  width: 100%;
  min-height: min(35svh, 300px);
  height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  display: grid;
  place-items: center;
}

.experience-shell .wheel-pointer {
  top: clamp(2px, 1vh, 16px);
}

.experience-shell .wheel-core {
  left: 50%;
  top: 18px;
  width: min(82vw, 322px);
  max-height: none;
  transform: translateX(-50%);
  overflow: visible;
  margin-inline: 0;
}

.experience-shell .wheel-core::before {
  background: none;
  filter: none;
}

.experience-shell .wheel-face {
  inset: auto;
  left: 18px;
  top: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  background: transparent;
  box-shadow: none;
  margin-inline: 0;
}

.experience-shell .wheel-svg {
  filter: none;
}

.experience-shell .experience-form-panel {
  grid-area: form;
  width: 100%;
  min-width: 0;
  align-self: stretch;
}

.experience-shell .experience-form {
  width: 100%;
  min-height: 0;
  max-height: min(64svh, 480px);
  overflow: auto;
  overscroll-behavior: contain;
  padding: 14px 14px calc(18px + env(safe-area-inset-bottom));
  border-radius: 30px;
  gap: 14px;
}

.experience-shell .summary-ribbon {
  min-height: 0;
}

.experience-shell .form-step {
  gap: 12px;
}

.experience-shell .form-step-title {
  font-size: clamp(26px, 9vw, 34px);
}

.experience-shell .form-step-copy,
.experience-shell .status-copy {
  display: block;
  line-height: 1.45;
}

.experience-shell .field-card,
.experience-shell .consent-card {
  padding: 12px;
}

.experience-shell .step-actions {
  position: sticky;
  bottom: 0;
  margin-top: auto;
  padding-top: 8px;
  background: linear-gradient(180deg, rgba(6, 16, 14, 0), rgba(6, 16, 14, 0.86) 28%, rgba(6, 16, 14, 0.98) 100%);
}

@media (orientation: landscape) and (min-width: 640px) {
  .experience-shell {
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
  }

  .experience-shell .experience-grid {
    width: min(100%, calc(100% - 16px));
    max-width: none;
    height: 100svh;
    min-height: 100svh;
    grid-template-columns: minmax(320px, 1.02fr) minmax(280px, 0.98fr);
    grid-template-rows: minmax(0, 1fr);
    grid-template-areas: 'form wheel';
    gap: 12px;
    align-items: stretch;
    padding-block: 8px;
  }

  .experience-shell .experience-wheel-panel {
    width: auto;
    min-width: 0;
    justify-self: stretch;
    align-self: stretch;
    place-items: stretch center;
    margin: 0;
  }

  .experience-shell .experience-wheel-card {
    height: calc(100svh - 16px);
    min-height: 0;
    display: grid;
    align-items: stretch;
  }

  .experience-shell .experience-wheel-stage {
    height: 100%;
    min-height: calc(100svh - 16px);
    padding: 0;
    display: grid;
    place-items: center;
  }

  .experience-shell .wheel-core {
    left: 50%;
    top: 50%;
    width: min(56vw, 82svh, 420px);
    max-height: none;
    transform: translate(-50%, -50%);
  }

  .experience-shell .experience-form-panel {
    min-width: 0;
    align-self: stretch;
  }

  .experience-shell .experience-form {
    height: calc(100svh - 16px);
    max-height: calc(100svh - 16px);
    min-height: 0;
    overflow: auto;
    padding: 12px 12px 14px;
  }

  .experience-shell .summary-ribbon {
    display: none;
  }

  .experience-shell .form-step {
    gap: 8px;
  }

  .experience-shell .stepper-head {
    gap: 8px;
    margin-bottom: 4px;
  }

  .experience-shell .form-step-title {
    font-size: clamp(20px, 4vw, 26px);
  }

  .experience-shell .form-step-copy,
  .experience-shell .status-copy {
    font-size: 11px;
    line-height: 1.32;
  }

  .experience-shell .field-card,
  .experience-shell .consent-card {
    padding: 8px 10px;
    gap: 6px;
  }

  .experience-shell .consent-card span {
    font-size: 11px;
    line-height: 1.32;
  }

  .experience-shell input {
    padding: 10px 12px;
  }

  .experience-shell .step-actions {
    position: static;
    padding-top: 4px;
    background: none;
  }
}


/* Spin immersion state */
.experience-shell::after {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease;
  z-index: 70;
  background: rgba(2, 9, 8, 0.88);
  backdrop-filter: none;
}

.experience-shell .experience-form-panel,
.experience-shell .experience-wheel-panel,
.experience-shell .experience-wheel-stage {
  transition: opacity 360ms ease, filter 420ms ease, transform 760ms cubic-bezier(0.16, 1, 0.3, 1), left 760ms cubic-bezier(0.16, 1, 0.3, 1), top 760ms cubic-bezier(0.16, 1, 0.3, 1), width 760ms cubic-bezier(0.16, 1, 0.3, 1), height 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.experience-shell.is-drawing {
  overflow: hidden;
}

.experience-shell.is-drawing::after {
  opacity: 1;
}

.experience-shell.is-drawing .experience-form-panel {
  opacity: 0.04;
  filter: blur(14px) saturate(0.7);
  transform: scale(0.95) translateX(-18px);
  pointer-events: none;
}

.experience-shell.is-drawing .experience-wheel-panel {
  z-index: 85;
  overflow: visible;
}

.experience-shell.is-drawing .experience-wheel-stage {
  position: fixed;
  left: var(--draw-origin-x, 50vw);
  top: var(--draw-origin-y, 50vh);
  width: var(--draw-origin-size, 320px);
  height: var(--draw-origin-size, 320px);
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  z-index: 85;
  transform: translate(-50%, -50%) translate(var(--draw-shift-x, 0px), var(--draw-shift-y, 0px)) scale(var(--draw-scale, 1));
  transform-origin: center center;
  pointer-events: none;
}

.experience-shell.is-drawing .wheel-pointer {
  top: clamp(-2px, 0.7vh, 12px);
  transform: translateX(-50%) scale(1.14);
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.62));
}

.experience-shell.is-drawing .wheel-core {
  left: 50%;
  top: 50%;
  width: calc(100% - 4px);
  max-height: none;
  transform: translate(-50%, -50%);
  animation: wheel-stage-arrival 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.experience-shell.is-drawing .wheel-core::before {
  background: none;
  filter: none;
}

.experience-shell.is-drawing .wheel-face {
  inset: 10px;
  width: auto;
  height: auto;
  box-shadow: none;
}

@keyframes wheel-stage-arrival {
  0% {
    transform: translate(-50%, -50%) scale(0.82);
  }

  58% {
    transform: translate(-50%, -50%) scale(1.065);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
