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

:root {
  color-scheme: dark;
  --void: #0a0d17;
  --void-2: #0f1322;
  --surface: rgba(18, 23, 40, 0.88);
  --surface-2: rgba(14, 19, 34, 0.95);
  --border: rgba(148, 163, 184, 0.14);
  --emerald: #10b981;
  --emerald-dark: #059669;
  --text: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #8092a8;
  --danger: #f87171;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 32px 80px rgba(0, 0, 0, 0.6);
  --container: 1440px;
  --font-display: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --header-h: 68px;

  /* Currency — always gold, never changes with theme */
  --currency: #f59e0b;
  --currency-light: #fbbf24;
  --currency-dark: #d97706;
  --currency-rgb: 245, 158, 11;
  --currency-light-rgb: 251, 191, 36;
  --currency-dark-rgb: 217, 119, 6;
  --coin-shine: #fef3c7;
  --coin-shadow: rgba(180, 100, 0, 0.3);

  --accent: #a855f7;
  --accent-light: #c084fc;
  --accent-dark: #7c3aed;
  --accent-rgb: 168, 85, 247;
  --accent-light-rgb: 192, 132, 252;
  --accent-dark-rgb: 124, 58, 237;
  --accent-glow: 0 0 30px rgba(168, 85, 247, 0.15);
  --brand-fill-1: #a855f7;
  --brand-fill-2: #c084fc;
  --brand-fill-3: #ddd6fe;
}

[data-theme="gold"] {
  --accent: #f59e0b;
  --accent-light: #fbbf24;
  --accent-dark: #d97706;
  --accent-rgb: 245, 158, 11;
  --accent-light-rgb: 251, 191, 36;
  --accent-dark-rgb: 217, 119, 6;
  --accent-glow: 0 0 30px rgba(var(--accent-light-rgb), 0.15);
  --brand-fill-1: #f59e0b;
  --brand-fill-2: #fbbf24;
  --brand-fill-3: #fef3c7;
}

.brand-fill-1 {
  fill: var(--brand-fill-1);
}

.brand-fill-2 {
  fill: var(--brand-fill-2);
}

.brand-fill-3 {
  fill: var(--brand-fill-3);
}

*,
*::before,
*::after {
  transition: background-color 300ms ease, border-color 300ms ease, box-shadow 300ms ease, color 300ms ease, fill 300ms ease;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--void);
  background-image:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(99, 102, 241, 0.06), transparent),
    radial-gradient(ellipse 60% 40% at 80% 40%, rgba(var(--accent-light-rgb), 0.03), transparent),
    radial-gradient(ellipse 90% 35% at 50% 0%, rgba(var(--accent-light-rgb), 0.04), transparent);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 8px;
  padding: 10px 18px;
  background: #0a0d17;
  color: #f1f5f9;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid var(--accent);
  border-radius: var(--radius-sm);
  z-index: 200;
  transition: top 200ms ease;
}

.skip-link:focus {
  top: 8px;
}

a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
}

button,
input,
select {
  font: inherit;
  color: inherit;
  touch-action: manipulation;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.theme-btn:focus-visible {
  border-radius: 50%;
}

.stepper button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 0;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

svg {
  stroke-linecap: round;
  stroke-linejoin: round;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Glass surface ── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[id] {
  scroll-margin-top: 90px;
}

@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;
  }
}

.glass {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.glass-pad {
  padding: 26px;
  min-width: 0;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(var(--accent-light-rgb), 0.08);
  background: transparent;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: background 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.scrolled {
  background: rgba(10, 13, 23, 0.92);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.site-header.scrolled .nav {
  min-height: 72px;
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0;
  min-height: 84px;
  transition: min-height 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  width: 80px;
  height: 80px;
  flex: 0 0 80px;
  object-fit: contain;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.brand-title span {
  color: var(--accent);
}

.brand-subtitle {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-top: 1px;
}

.nav-steps-wrap {
  justify-self: center;
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* .nav-links li removed — links are direct children of nav */

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a.active {
  color: #fff;
}

.nav-links a svg {
  flex-shrink: 0;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.nav-links a:hover svg,
.nav-links a.active svg {
  opacity: 1;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(0.6);
}


.discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 100px;
  background: linear-gradient(135deg, #5865f2, #4752c4);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  transition: transform 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 4px 16px rgba(88, 101, 242, 0.25);
}

.discord-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(88, 101, 242, 0.35);
}



.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.mobile-toggle .icon-close {
  display: none;
}

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

.theme-switcher {
  display: flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
}

.theme-btn {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
}

.theme-btn.is-active {
  background: rgba(var(--accent-light-rgb), 0.12);
  color: var(--accent);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 340px;
  padding-top: var(--header-h);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  isolation: isolate;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  object-fit: cover;
  object-position: 20% center;
  z-index: -2;
  mask-image: linear-gradient(90deg, transparent 0%, #000 30%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 30%, #000 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse 90% 60% at 30% 50%, rgba(var(--accent-light-rgb), 0.07), transparent 60%),
    radial-gradient(ellipse 70% 50% at 70% 30%, rgba(99, 102, 241, 0.08), transparent),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(16, 185, 129, 0.05), transparent);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 13, 23, 0.92) 0%, rgba(10, 13, 23, 0.7) 35%, rgba(10, 13, 23, 0.15) 70%, rgba(10, 13, 23, 0) 100%);
}

.hero-inner {
  min-height: 340px;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 340px);
  gap: 40px;
  align-items: center;
  padding: 48px 0;
  position: relative;
}

.hero-content {
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  padding: 5px 12px;
  border: 1px solid rgba(var(--accent-light-rgb), 0.3);
  border-radius: 100px;
  background: rgba(var(--accent-light-rgb), 0.08);
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  width: fit-content;
}

.hero-badge .live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--emerald);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  }

  50% {
    opacity: 0.5;
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.05);
  }
}

.hero h1 {
  max-width: 560px;
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--accent-light), var(--accent-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  max-width: 480px;
  margin: 0 0 24px;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.65;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #0a0d17;
  font-weight: 800;
  font-size: 16px;
  transition: transform 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 6px 24px rgba(var(--accent-rgb), 0.3);
  animation: cta-glow 3s ease-in-out infinite;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(var(--accent-rgb), 0.4);
  animation: none;
}

@keyframes cta-glow {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(var(--accent-rgb), 0.3);
  }

  50% {
    box-shadow: 0 6px 40px rgba(var(--accent-rgb), 0.5), 0 0 60px rgba(var(--accent-light-rgb), 0.08);
  }
}

.btn-discord-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 14px;
  transition: all 200ms ease;
}

.btn-discord-hero:hover {
  border-color: rgba(88, 101, 242, 0.5);
  color: #b3baff;
  background: rgba(88, 101, 242, 0.08);
  transform: translateY(-1px);
}

/* ── Hero visual panel (replaces crystal) ── */
.hero-visual {
  position: relative;
}

.hero-panel {
  position: relative;
  z-index: 1;
  transition: border-color 250ms ease, transform 250ms ease, box-shadow 250ms ease;
}

.hero-panel:hover {
  border-color: rgba(var(--accent-light-rgb), 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(var(--accent-rgb), 0.15);
}

.hero-panel-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.hero-panel-items {
  display: grid;
  gap: 14px;
}

.hero-panel-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.hero-panel-item svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: var(--accent);
  margin-top: 2px;
}

.hero-panel-item strong {
  display: block;
  font-size: 14px;
  color: #fff;
  line-height: 1.3;
}

.hero-panel-item span {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 1px;
}

.hero-status {
  margin-top: 18px;
  padding: 16px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-width: 420px;
  transition: border-color 250ms ease, transform 250ms ease, box-shadow 250ms ease;
}

.hero-status:hover {
  border-color: rgba(var(--accent-light-rgb), 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(var(--accent-rgb), 0.15);
}

.hero-status-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
}

.hero-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-status-dot.available {
  background: var(--emerald);
  animation: pulse-status 2.5s ease-in-out infinite;
}

.hero-status-dot.away {
  background: var(--currency);
}

@keyframes pulse-status {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  }

  50% {
    opacity: 0.65;
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.04);
  }
}

.hero-status-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.hero-status-body {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.hero-status-footer {
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

/* ── Section header component ── */
.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 16px;
  padding: 0.375rem 1rem;
  border: 1px solid rgba(var(--accent-light-rgb), 0.2);
  border-radius: 100px;
  background: rgba(var(--accent-light-rgb), 0.06);
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  text-align: center;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 8px;
}

.section-sub {
  color: #cbd5e1;
  font-size: 1.0625rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 250ms ease, transform 250ms ease, box-shadow 250ms ease;
}

.feature:hover {
  border-color: rgba(var(--accent-light-rgb), 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(var(--accent-rgb), 0.15);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--accent-light-rgb), 0.1);
  color: var(--accent-light);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature h3 {
  font-family: var(--font-display);
  margin-bottom: 0.375rem;
  font-size: 1.125rem;
}

.feature p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.why-dmc-section {
  position: relative;
  padding: 56px 0;
  border-top: 1px solid var(--border);
  isolation: isolate;
  background: rgba(15, 19, 34, 0.3);
}

.why-dmc-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(var(--accent-light-rgb), 0.06), transparent);
}

/* ── How it works ── */
.how-section {
  position: relative;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
  isolation: isolate;
  background: rgba(15, 19, 34, 0.3);
}

.how-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(var(--accent-light-rgb), 0.06), transparent);
}

.how-section .container {
  max-width: 1200px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.how-step {
  position: relative;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 250ms ease, transform 250ms ease, box-shadow 250ms ease;
}

.how-step:hover {
  border-color: rgba(var(--accent-light-rgb), 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(var(--accent-rgb), 0.15);
}

.how-step-num {
  position: absolute;
  top: 8px;
  left: 12px;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 60px;
  font-weight: 900;
  line-height: 1;
  color: var(--accent);
  opacity: 0.16;
}

.how-step-content {
  position: relative;
  z-index: 1;
  padding-top: 44px;
}

.how-step-title {
  display: block;
  font-weight: 800;
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 8px;
  color: #fff;
}

.how-step-desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ── Main layout ── */
.page-main {
  padding: 56px 0 56px;
  background-image: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(var(--accent-light-rgb), 0.04), transparent);
  background-repeat: no-repeat;
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: 24px;
  align-items: start;
}

.calculator-layout>.stack:first-child {
  grid-column: 1;
  grid-row: 1;
}

.calculator-layout>.price-side {
  grid-column: 2;
  grid-row: 1 / 3;
}

.calculator-layout>.stack:last-child {
  grid-column: 1;
  grid-row: 2;
}

.calculator-layout.is-summary {
  grid-template-columns: 1fr;
}

[aria-labelledby="configureTitle"] {
  transition: border-color 300ms ease, box-shadow 300ms ease;
}

[aria-labelledby="configureTitle"]:focus-within {
  border-color: rgba(var(--accent-light-rgb), 0.2);
  box-shadow: inset 0 0 24px rgba(var(--accent-light-rgb), 0.03);
}

.stack {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--accent-light);
}

.panel-title svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  color: var(--accent);
}

.field-list {
  display: grid;
  gap: 28px;
}

.field-group {
  display: grid;
  gap: 0;
}

.field-content {
  min-width: 0;
}

.section-divider {
  height: 1px;
  background: var(--border);
  margin: 22px 0;
}

.label-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 15px;
}

.label-row .optional {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 13px;
}

.help-dot {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
}

.field-hint {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 14px;
}

/* ── Stepper ── */
.stepper-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.stepper-row-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 0 16px;
}

.stepper-cell {
  min-width: 0;
}

.stepper {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  height: 50px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
}

.stepper button {
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  transition: background 200ms;
}

.stepper button:hover {
  background: rgba(var(--accent-light-rgb), 0.15);
}

.stepper-value {
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 17px;
  font-family: var(--font-mono);
}

/* ── Preset section (full-width above calculator) ── */
.preset-section {
  padding: 12px 0 4px;
  border-bottom: none;
  margin-bottom: 24px;
}

.preset-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.preset-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 18px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  text-align: left;
  cursor: pointer;
  min-width: 0;
  width: 100%;
  overflow-wrap: break-word;
  transition: border-color 200ms, background 200ms, transform 200ms, box-shadow 200ms;
}

.preset-card:hover {
  border-color: rgba(var(--accent-light-rgb), 0.3);
  background: rgba(var(--accent-light-rgb), 0.04);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.preset-card:focus-visible {
  outline: 2px solid rgba(var(--accent-light-rgb), 0.5);
  outline-offset: 2px;
}

.preset-card.is-active {
  border-color: rgba(var(--accent-light-rgb), 0.5);
  background: linear-gradient(135deg, rgba(var(--accent-light-rgb), 0.1), rgba(var(--accent-light-rgb), 0.03));
  box-shadow: inset 0 0 20px rgba(var(--accent-light-rgb), 0.06), 0 4px 16px rgba(0, 0, 0, 0.2);
}

.preset-name {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.3;
  margin-top: 2px;
}

.preset-name svg {
  flex-shrink: 0;
}

.preset-card.is-active .preset-name {
  color: var(--accent-light);
}

.preset-desc {
  color: var(--accent-light);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.preset-summary {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  color: var(--currency);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
}

.preset-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 10px;
  border-radius: 0 var(--radius) 0 var(--radius-sm);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid;
  border-top: 0;
  border-right: 0;
}

.preset-badge.badge-quick {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.55), rgba(79, 70, 229, 0.35));
  border-color: rgba(99, 102, 241, 0.5);
  color: #c7d2fe;
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.12);
}

.preset-badge.badge-tier {
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.5), rgba(16, 185, 129, 0.3));
  border-color: rgba(52, 211, 153, 0.45);
  color: #6ee7b7;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.12);
}

.preset-badge.badge-value {
  background: linear-gradient(135deg, rgba(var(--accent-light-rgb), 0.5), rgba(var(--accent-dark-rgb), 0.35));
  border-color: rgba(var(--accent-light-rgb), 0.45);
  color: var(--accent-light);
  box-shadow: 0 0 10px rgba(var(--accent-light-rgb), 0.12);
}

.preset-level {
  font-size: 14px;
  font-weight: 800;
  color: var(--currency);
}

.preset-meta {
  font-weight: 500;
  opacity: 0.85;
}

/* ── Dungeon picker ── */
.dungeon-picker {
  display: grid;
  gap: 12px;
}

.dungeon-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.selection-counter {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.03);
}

.world-tour-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(var(--accent-light-rgb), 0.3);
  border-radius: var(--radius-sm);
  color: var(--accent-light);
  background: linear-gradient(135deg, rgba(var(--accent-light-rgb), 0.1), transparent);
  font-weight: 700;
  font-size: 13px;
  transition: all 200ms;
}

.world-tour-btn:hover:not(:disabled) {
  border-color: rgba(var(--accent-light-rgb), 0.6);
  background: linear-gradient(135deg, rgba(var(--accent-light-rgb), 0.16), transparent);
  transform: translateY(-1px);
}

.world-tour-btn.is-active {
  border-color: rgba(var(--accent-light-rgb), 0.7);
  background: linear-gradient(135deg, rgba(var(--accent-light-rgb), 0.2), rgba(var(--accent-light-rgb), 0.05));
  box-shadow: 0 0 20px rgba(var(--accent-light-rgb), 0.08);
}

.world-tour-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.wt-badge {
  display: inline-flex;
  align-items: center;
  min-height: 17px;
  padding: 0 6px;
  border: 1px solid rgba(var(--accent-light-rgb), 0.4);
  border-radius: var(--radius-sm);
  color: var(--accent-light);
  background: rgba(var(--accent-light-rgb), 0.12);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.dungeon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.dungeon-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  color: var(--text-secondary);
  transition: all 150ms;
}

.dungeon-card:hover:not(:disabled) {
  border-color: rgba(var(--accent-light-rgb), 0.3);
  color: var(--text);
  transform: translateY(-1px);
}

.dungeon-card:focus-visible {
  border-color: rgba(var(--accent-light-rgb), 0.3);
  color: var(--text);
  outline: none;
}

.dungeon-card.is-active {
  border-color: rgba(var(--accent-light-rgb), 0.45);
  color: var(--text);
  background: linear-gradient(135deg, rgba(var(--accent-light-rgb), 0.08), transparent);
}

.dungeon-card:disabled {
  cursor: not-allowed;
  transform: none;
}

.dungeon-card:disabled:not(.is-active) {
  opacity: 0.35;
}

.dungeon-name {
  min-width: 0;
  overflow-wrap: break-word;
  line-height: 1.3;
}

.dungeon-check {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 20px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  color: transparent;
  background: rgba(255, 255, 255, 0.03);
  font-size: 11px;
  font-weight: 800;
  transition: all 150ms;
}

.dungeon-card.is-active .dungeon-check {
  border-color: rgba(16, 185, 129, 0.4);
  color: var(--emerald);
  background: rgba(16, 185, 129, 0.08);
}

.dungeon-card.is-active .dungeon-check::before {
  content: '\2713';
}

.dungeon-chip-tray {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.dungeon-chip-tray:empty {
  display: none;
}

.dungeon-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 28px;
  padding: 0 8px 0 10px;
  border: 1px solid rgba(var(--accent-light-rgb), 0.3);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  background: rgba(var(--accent-light-rgb), 0.06);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 150ms;
}

.dungeon-chip:hover {
  border-color: rgba(248, 113, 113, 0.5);
  background: rgba(248, 113, 113, 0.08);
  color: var(--danger);
}

.dungeon-chip.world-tour-chip {
  border-color: rgba(var(--accent-light-rgb), 0.4);
  color: var(--accent-light);
  background: rgba(var(--accent-light-rgb), 0.08);
  cursor: default;
}

.dungeon-chip.world-tour-chip:hover {
  border-color: rgba(var(--accent-light-rgb), 0.4);
  background: rgba(var(--accent-light-rgb), 0.08);
  color: var(--accent-light);
}

.dungeon-chip-x {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  opacity: 0.6;
  font-size: 14px;
}

.dungeon-selection-hint-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 18px;
}

.dungeon-selection-hint {
  color: var(--text-muted);
  font-size: 13px;
}

.clear-selection-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid rgba(248, 113, 113, 0.25);
  border-radius: var(--radius-sm);
  color: var(--danger);
  background: rgba(248, 113, 113, 0.06);
  font-size: 12px;
  font-weight: 700;
  transition: all 150ms;
}

.clear-selection-btn:hover {
  border-color: rgba(248, 113, 113, 0.5);
  background: rgba(248, 113, 113, 0.12);
}

.dungeon-status {
  min-height: 18px;
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
}

.free-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 14px;
}

.free-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-sm);
  color: var(--emerald);
  background: rgba(16, 185, 129, 0.08);
  font-size: 11px;
  font-weight: 800;
}

/* ── Armor stack ── */
.option-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.choice-button {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  text-align: left;
  transition: all 200ms;
  font-weight: 600;
  font-size: 14px;
}

.choice-button svg {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  color: var(--accent);
}

.choice-button strong {
  flex: 1;
  min-width: 0;
}

.choice-button:hover {
  border-color: rgba(var(--accent-light-rgb), 0.25);
  background: rgba(var(--accent-light-rgb), 0.04);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.choice-button.is-active {
  border-color: rgba(var(--accent-light-rgb), 0.4);
  background: linear-gradient(135deg, rgba(var(--accent-light-rgb), 0.08), transparent);
  box-shadow: inset 0 0 16px rgba(var(--accent-light-rgb), 0.05);
}

.armor-types {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
}

.armor-types[hidden] {
  display: none;
}

.armor-type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.armor-type-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 44px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 200ms;
}

.armor-type-btn svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: var(--accent);
}

.armor-type-btn:hover {
  border-color: rgba(var(--accent-light-rgb), 0.25);
  background: rgba(var(--accent-light-rgb), 0.04);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.armor-type-btn.is-active {
  border-color: rgba(var(--accent-light-rgb), 0.35);
  color: var(--text);
  background: rgba(var(--accent-light-rgb), 0.06);
}

/* ── Contact form ── */
.contact-form {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr);
}

.input-wrap {
  position: relative;
}

.input-wrap input {
  width: 100%;
  min-height: 52px;
  padding: 0 48px 0 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  outline: none;
  font-size: 15px;
  transition: border-color 200ms, box-shadow 200ms;
}

.input-wrap input:focus {
  border-color: rgba(var(--accent-light-rgb), 0.4);
  box-shadow: 0 0 0 3px rgba(var(--accent-light-rgb), 0.08);
}

.input-wrap svg {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  transform: translateY(-50%);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  padding: 12px 20px;
  line-height: 1.5;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #0a0d17;
  font-weight: 800;
  font-size: 16px;
  transition: transform 200ms, box-shadow 200ms;
  box-shadow: 0 6px 24px rgba(var(--accent-rgb), 0.3);
  animation: cta-glow 3s ease-in-out infinite;
}

.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(var(--accent-rgb), 0.35);
  animation: none;
}

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

.input-error {
  margin: 8px 0 0;
  color: var(--danger);
  font-size: 14px;
  font-weight: 600;
}

.contact-form .cf-turnstile {
  display: flex;
  justify-content: center;
  margin: -6px 0 2px;
}

.secure-note,
.guarantee-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
  text-align: center;
}

.guarantee-note {
  color: rgba(16, 185, 129, 0.7);
  font-weight: 600;
  font-size: 13px;
}

.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(10, 13, 23, 0.15);
  border-top-color: #0a0d17;
  border-radius: 50%;
  animation: spin-btn 0.6s linear infinite;
  display: inline-block;
  flex: 0 0 18px;
}

@keyframes spin-btn {
  to {
    transform: rotate(360deg);
  }
}

.submit-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(248, 113, 113, 0.3);
  border-radius: var(--radius-sm);
  background: rgba(248, 113, 113, 0.06);
  text-align: center;
}

.submit-error p {
  color: var(--danger);
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.btn-retry {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 18px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--danger);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 200ms;
}

.btn-retry:hover {
  opacity: 0.85;
}

/* ── Order success ── */

/* Remove glass-pad padding/bg when success is shown */
#step-submit.is-success {
  padding: 0;
  border: none;
  background: none;
}

#step-submit {
  transition: border-color 300ms ease, box-shadow 300ms ease;
}

#step-submit:focus-within {
  border-color: rgba(var(--accent-light-rgb), 0.2);
  box-shadow: inset 0 0 24px rgba(var(--accent-light-rgb), 0.03);
}

.order-success {
  width: 100%;
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg,
      rgba(16, 185, 129, 0.04) 0%,
      rgba(168, 85, 247, 0.03) 50%,
      rgba(0, 0, 0, 0.18) 100%);
  padding: 42px 36px 36px;
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.05), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.success-card {
  border: none;
  background: none;
  box-shadow: none;
  padding: 0;
}

.success-card-header {
  text-align: center;
  margin-bottom: 32px;
}

.order-success-icon {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border: 2px solid rgba(16, 185, 129, 0.22);
  border-radius: 50%;
  color: var(--emerald);
  background: rgba(16, 185, 129, 0.07);
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.08);
}

.order-success-icon svg {
  width: 40px;
  height: 40px;
}

.order-success-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--emerald);
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}

.order-success-body {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 520px;
}

/* ── 2-column details grid ── */
.success-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.018);
  overflow: hidden;
}

.success-details-col {
  padding: 24px 26px;
}

.success-details-col:first-child {
  border-right: 1px solid var(--border);
}

.success-details-heading {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
  margin: 0 0 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.success-info-list {
  display: grid;
  gap: 14px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 16px;
  color: var(--text-secondary);
}

.info-row .ir-label {
  color: var(--text-muted);
  font-size: 15px;
  flex-shrink: 0;
}

.info-row .ir-value {
  text-align: right;
  font-weight: 600;
  color: var(--text);
  word-break: break-word;
}

.success-summary-list {
  display: grid;
  gap: 14px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 16px;
  color: var(--text-secondary);
}

.summary-row .sr-label {
  color: var(--text-muted);
  font-size: 15px;
}

.summary-row .sr-value {
  text-align: right;
  font-weight: 700;
}

.summary-row.sr-total {
  padding-top: 16px;
  margin-top: 6px;
  border-top: 2px solid rgba(16, 185, 129, 0.2);
  color: var(--emerald);
  font-size: 20px;
}

.summary-row.sr-total .sr-label {
  color: var(--emerald);
  font-weight: 800;
  font-size: 18px;
}

.summary-row.sr-total .sr-value {
  font-weight: 800;
  font-size: 26px;
}

.btn-copy-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
  font-size: 16px;
  font-weight: 700;
  transition: all 150ms;
  cursor: pointer;
}

.btn-copy-order:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(148, 163, 184, 0.35);
}

.success-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 0;
}

.success-actions .btn-submit {
  margin: 0;
  min-height: 52px;
  height: 52px;
}

.success-discord-label {
  margin: 28px 0 12px;
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.success-discord-actions {
  display: flex;
  gap: 12px;
}

.success-discord-actions .btn-copy-order {
  margin-bottom: 0;
  flex: 1;
  min-width: 0;
}

/* ── Price sidebar ── */
.price-side {
  display: grid;
  gap: 20px;
  position: sticky;
  top: 100px;
  align-self: start;
}

.price-side>.glass-pad {
  transition: border-color 300ms ease;
}

.price-side>.glass-pad:hover {
  border-color: rgba(var(--accent-light-rgb), 0.2);
}

.price-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
}

.price-header h2 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--accent-light);
  margin: 0;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 100px;
  color: var(--emerald);
  background: rgba(16, 185, 129, 0.08);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.live-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.price-note {
  margin: -8px 0 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.price-note-accent {
  font-weight: 600;
  background: linear-gradient(90deg, #c9992e 0%, #f0dc8a 40%, #c9992e 80%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gold-shimmer 5s ease-in-out infinite;
}

@keyframes gold-shimmer {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .price-note-accent {
    animation: none;
    background: none;
    -webkit-text-fill-color: unset;
    color: #c9992e;
  }
}

.price-note-separator {
  color: var(--text-muted);
  margin: 0 6px;
}

.price-note-muted {
  color: var(--text-secondary);
  font-weight: 400;
}

.first-order-note {
  background: rgba(var(--accent-light-rgb), 0.08);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.per-run {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.per-run-label {
  margin: 0 0 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-secondary);
}

.gold-price {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 34px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.coin-icon {
  width: 22px;
  height: 22px;
  display: inline-block;
  flex: 0 0 22px;
  border: 2px solid var(--currency-light);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--coin-shine) 0 10%, transparent 11%),
    radial-gradient(circle at center, var(--currency-light) 0 35%, var(--currency-dark) 36% 100%);
  box-shadow: inset -3px -3px 0 var(--coin-shadow), 0 0 12px rgba(var(--currency-light-rgb), 0.2);
}

.price-lines {
  display: grid;
  gap: 0;
  margin-top: 12px;
}

.price-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 54px;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  font-size: 15px;
}

.price-line .muted {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
}

.price-line .value {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 19px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.price-line.discount {
  color: var(--emerald);
}

.price-line.total {
  min-height: 72px;
  border-bottom: 0;
  text-transform: uppercase;
}

.price-line.total .value {
  color: var(--currency);
  font-size: 42px;
  line-height: 1;
}

.saving-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 76px;
  margin-top: 4px;
  border: 1px solid rgba(16, 185, 129, 0.22);
  border-radius: var(--radius-sm);
  color: var(--emerald);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.02));
  text-align: center;
  font-weight: 700;
}

.saving-box svg {
  flex: 0 0 26px;
}

.saving-copy strong {
  display: block;
  font-size: 17px;
}

.saving-copy strong span {
  display: inline;
}

.saving-subtitle {
  display: block;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 13px;
  margin-top: 2px;
}

.free-items {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 8px;
}

.free-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 50px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
}

.free-item svg {
  width: 26px;
  height: 26px;
  color: var(--accent);
  flex: 0 0 26px;
}

.free-item strong {
  flex: 1;
  min-width: 0;
  font-size: 15px;
}

.free-item small {
  display: block;
  margin-top: 2px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
}

.free-item span {
  color: var(--emerald);
  font-size: 24px;
  font-weight: 800;
}

.btn-continue-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  padding: 12px 20px;
  line-height: 1.5;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #0a0d17;
  font-weight: 800;
  font-size: 14px;
  transition: transform 200ms, box-shadow 200ms;
  box-shadow: 0 6px 24px rgba(var(--accent-rgb), 0.3);
  animation: cta-glow 3s ease-in-out infinite;
}

.btn-continue-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(var(--accent-rgb), 0.4);
  animation: none;
}

/* ── Benefits ── */
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 22px 16px;
  text-align: center;
}

.benefit {
  min-width: 0;
}

.benefit svg {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  color: var(--accent);
  filter: drop-shadow(0 0 12px rgba(var(--accent-light-rgb), 0.2));
}

.benefit strong {
  display: block;
  font-weight: 800;
  font-size: 14px;
  color: var(--accent-light);
}

.benefit span {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 13px;
}

/* ── FAQ ── */
.faq-section {
  position: relative;
  padding: 56px 0;
  border-top: 1px solid var(--border);
  isolation: isolate;
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(var(--accent-light-rgb), 0.05), transparent);
}

.faq-grid {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  transition: border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item:hover {
  border-color: rgba(var(--accent-light-rgb), 0.2);
  box-shadow: 0 0 30px rgba(var(--accent-light-rgb), 0.04);
}

.faq-item-open {
  border-color: rgba(var(--accent-light-rgb), 0.3);
  box-shadow: 0 0 40px rgba(var(--accent-light-rgb), 0.06);
}

.faq-item-open::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  border-radius: 3px 0 0 3px;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 54px;
  padding: 24px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  list-style: none;
  user-select: none;
  transition: color 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-question:hover {
  color: var(--accent-light);
}

.faq-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--accent);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item-open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-answer-inner {
  padding: 1px 24px 24px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
}

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(15, 19, 34, 0.5);
  content-visibility: auto;
  contain-intrinsic-size: 0 300px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(150px, 1fr));
  gap: 34px;
  padding: 32px 0 24px;
}

.footer-brand .brand {
  margin-bottom: 14px;
}

.footer-brand .brand-mark {
  width: 88px;
  height: 88px;
  flex-basis: 88px;
}

.footer-brand .brand-title {
  font-size: 22px;
}

.footer-brand p {
  max-width: 260px;
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: 14px;
}

.social-row {
  display: flex;
  gap: 16px;
  color: var(--text-muted);
}

.social-row a {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  transition: color 200ms;
}

.social-row a:hover {
  color: var(--accent-light);
}

.footer-col h3 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}

.footer-col ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 200ms;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 200ms;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
}

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

.check-list li {
  position: relative;
  padding-left: 20px;
}

.check-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.copyright {
  margin: 0;
  padding: 0 0 24px;
  color: var(--text-muted);
  text-align: center;
  font-size: 14px;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .calculator-layout {
    grid-template-columns: 1fr;
  }

  .calculator-layout>.stack:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  .calculator-layout>.price-side {
    grid-column: auto;
    grid-row: auto;
    position: static;
  }

  .calculator-layout>.stack:last-child {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 900px) {
  .container {
    padding: 0 20px;
  }

  .nav {
    min-height: 76px;
    position: relative;
  }

  .brand-mark {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
  }

  .brand-title {
    font-size: 17px;
  }

  .brand-subtitle {
    font-size: 9px;
  }

  .mobile-toggle {
    display: grid;
  }

  .nav-steps-wrap {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    padding: 12px 8px;
    border: 1px solid var(--border);
    border-top: 1px solid rgba(var(--accent-light-rgb), 0.2);
    border-radius: var(--radius);
    background: rgba(15, 19, 34, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
    justify-self: unset;
    opacity: 0;
    transform: translateY(-8px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0.3s,
      pointer-events 0s 0.3s;
  }

  .site-header.is-open .nav-steps-wrap {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .site-header.is-open .mobile-toggle .icon-hamburger {
    display: none;
  }

  .site-header.is-open .mobile-toggle .icon-close {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 4px;
  }

  .nav-links a {
    min-height: 44px;
    padding: 0 16px;
    border-radius: var(--radius-sm);
    justify-content: center;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a.active {
    background: rgba(var(--accent-light-rgb), 0.12);
  }

  .site-header.scrolled .nav {
    min-height: 66px;
  }

  .nav-actions {
    justify-content: flex-end;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-visual {
    display: none;
  }

  .hero-bg-img {
    display: none;
  }

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

  .armor-type-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .container {
    padding: 0 16px;
  }

  .brand-mark {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }

  .brand-title {
    font-size: 15px;
  }

  .brand-subtitle {
    font-size: 8px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-inner {
    min-height: 280px;
    padding: 32px 0;
  }

  .btn-discord-hero {
    display: inline-flex;
  }

  .page-main {
    padding-top: 16px;
  }

  .glass-pad {
    padding: 18px;
  }

  .discord-label {
    display: none;
  }

  .discord-btn {
    min-width: 38px;
    padding: 0 10px;
    justify-content: center;
  }

  .dungeon-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .world-tour-btn,
  .selection-counter {
    width: 100%;
  }

  .dungeon-grid {
    grid-template-columns: 1fr;
  }

  .stepper-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .stepper-row-divider {
    display: none;
  }

  .option-row {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .price-line.total {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px 0;
  }

  .price-line.total .value {
    font-size: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .how-grid {
    grid-template-columns: 1fr;
  }

  .how-step {
    padding: 24px;
  }

  .world-tour-btn svg {
    width: 16px;
    height: 16px;
  }

  .order-success {
    padding: 32px 24px 28px;
  }

  .success-details-grid {
    grid-template-columns: 1fr;
  }

  .success-details-col:first-child {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 22px;
  }

  .success-actions {
    grid-template-columns: 1fr;
  }

  .success-details-col {
    padding: 20px 22px;
  }

  .success-info-list {
    gap: 12px;
  }

  .success-summary-list {
    gap: 12px;
  }

  .order-success-body {
    max-width: 100%;
  }
}

@media (max-width: 430px) {
  .container {
    padding: 0 12px;
  }

  .nav {
    min-height: 66px;
  }

  .brand-mark {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }

  .brand-title {
    font-size: 14px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .gold-price {
    font-size: 28px;
  }

  .price-line .value {
    font-size: 17px;
  }

  .free-item span {
    font-size: 20px;
  }

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

  .success-discord-actions {
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .preset-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .nav {
    min-height: 62px;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .brand-title {
    font-size: 12px;
  }

  .brand-subtitle {
    font-size: 7px;
  }

  .nav-actions {
    gap: 6px;
  }

  .theme-switcher {
    gap: 2px;
    padding: 2px;
  }

  .theme-btn {
    width: 26px;
    height: 26px;
  }

  .mobile-toggle {
    width: 36px;
    height: 36px;
  }

}