:root {
  --bg: #121715;
  --bg-raised: #1a201e;
  --bg-card: #222927;
  --bg-input: #17201c;
  --border: #303735;
  --border-strong: #48514e;
  --fg: #f2efe7;
  --fg-muted: #b4b5ac;
  --fg-dim: #82847c;
  --sun: #e8a838;
  --sun-soft: #f5c76a;
  --moss: #6b7f3a;
  --moss-soft: #9aab4a;
  --cream: #e9e3d2;
  --ok: #7fa85a;
  --danger: #c4563a;
  --font-display: "Instrument Serif", Georgia, serif;
  --font-ui: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --bs-body-font-family: var(--font-ui);
  --bs-body-bg: var(--bg);
  --bs-body-color: var(--fg);
  --bs-border-color: var(--border);
  --bs-link-color: var(--fg);
  --bs-link-hover-color: var(--sun);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 82% 8%, color-mix(in oklch, var(--sun) 12%, transparent), transparent 34rem),
    radial-gradient(circle at 12% 24%, color-mix(in oklch, var(--moss) 16%, transparent), transparent 36rem),
    var(--bg);
  color: var(--fg);
  font-size: 15px;
  line-height: 1.45;
  min-height: 100vh;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
.serif {
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

em {
  color: var(--sun);
  font-style: italic;
}

.mono {
  font-family: var(--font-mono);
  letter-spacing: -0.01em;
}

.container-xl {
  max-width: 1400px;
  padding-left: clamp(1.5rem, 5vw, 4.5rem);
  padding-right: clamp(1.5rem, 5vw, 4.5rem);
}

.topnav {
  background: color-mix(in oklch, var(--bg) 86%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.navbar {
  --bs-navbar-padding-y: 0.85rem;
}

.brand,
.navbar-brand.brand {
  align-items: center;
  color: var(--fg);
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 1.28rem;
  gap: .65rem;
  letter-spacing: -0.01em;
}

.brand:hover {
  color: var(--fg);
}

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

.brand-mark {
  height: 1.45rem;
  width: 1.45rem;
}

.nav-pill {
  border-radius: 999px;
  color: var(--fg-muted);
  font-size: .92rem;
  padding: .45rem .8rem;
  transition: background .2s var(--ease), color .2s var(--ease);
}

.nav-pill:hover,
.nav-pill.active {
  background: var(--bg-raised);
  color: var(--fg);
}

.navbar-toggler {
  border-color: var(--border-strong);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.btn {
  --bs-btn-border-radius: 999px;
  align-items: center;
  display: inline-flex;
  font-weight: 500;
  gap: .5rem;
  justify-content: center;
  min-height: 2.7rem;
}

.btn-sun {
  --bs-btn-bg: var(--sun);
  --bs-btn-border-color: var(--sun);
  --bs-btn-color: #1a1408;
  --bs-btn-hover-bg: var(--sun-soft);
  --bs-btn-hover-border-color: var(--sun-soft);
  --bs-btn-hover-color: #1a1408;
  --bs-btn-active-bg: var(--sun-soft);
  --bs-btn-active-border-color: var(--sun-soft);
}

.btn-moss {
  --bs-btn-bg: var(--moss);
  --bs-btn-border-color: var(--moss);
  --bs-btn-color: #fff;
  --bs-btn-hover-bg: var(--moss-soft);
  --bs-btn-hover-border-color: var(--moss-soft);
  --bs-btn-hover-color: #fff;
}

.btn-ghost {
  --bs-btn-bg: transparent;
  --bs-btn-border-color: var(--border-strong);
  --bs-btn-color: var(--fg);
  --bs-btn-hover-bg: var(--bg-raised);
  --bs-btn-hover-border-color: var(--fg-dim);
  --bs-btn-hover-color: var(--fg);
}

.chip {
  align-items: center;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--fg-muted);
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: .72rem;
  gap: .35rem;
  letter-spacing: .03em;
  padding: .28rem .65rem;
  text-transform: uppercase;
}

.chip-sun {
  background: color-mix(in oklch, var(--sun) 15%, transparent);
  border-color: color-mix(in oklch, var(--sun) 28%, transparent);
  color: var(--sun);
}

.chip-moss {
  background: color-mix(in oklch, var(--moss) 20%, transparent);
  border-color: color-mix(in oklch, var(--moss) 35%, transparent);
  color: var(--moss-soft);
}

.eyebrow {
  color: var(--fg-muted);
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0 0;
}

.configurator-page {
  min-height: calc(100svh - 4.45rem);
  padding: .6rem 0 .8rem;
}

.section-title {
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  letter-spacing: 0;
}

.section-lead {
  color: var(--fg-muted);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  max-width: 38rem;
}

.text-secondary-emphasis {
  color: var(--fg-muted) !important;
}

.text-warning {
  color: var(--sun) !important;
}

.hero-section {
  min-height: calc(100svh - 4.45rem);
  scroll-margin-top: 4.45rem;
}

.hero-frame {
  min-height: calc(100svh - 4.45rem);
  overflow: hidden;
  position: relative;
}

.hero-frame::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .36) 48%, rgba(0, 0, 0, .2)),
    linear-gradient(180deg, rgba(0, 0, 0, .08) 20%, rgba(0, 0, 0, .48) 74%, rgba(0, 0, 0, .82));
  content: "";
  inset: 0;
  position: absolute;
}

.hero-frame img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-copy {
  bottom: clamp(6rem, 10vh, 8rem);
  left: clamp(1.5rem, 7vw, 8rem);
  max-width: 68rem;
  position: absolute;
  right: clamp(1.5rem, 7vw, 8rem);
  z-index: 2;
}

.hero-title {
  color: #fff;
  font-size: clamp(3rem, 6.4vw, 7rem);
  letter-spacing: 0;
  line-height: .96;
  max-width: 58rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .5);
}

.hero-subtitle {
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.45;
  max-width: 48rem;
}

.hero-actions {
  align-items: center;
}

.btn-hero {
  --bs-btn-active-bg: transparent;
  --bs-btn-active-border-color: rgba(232, 180, 75, .72);
  --bs-btn-bg: transparent;
  --bs-btn-border-radius: 999px;
  --bs-btn-border-color: transparent;
  --bs-btn-border-width: 1px;
  --bs-btn-hover-bg: transparent;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-padding-x: 1rem;
  --bs-btn-padding-y: .55rem;
  background: transparent;
  font-size: 1rem;
  min-height: 2.5rem;
  opacity: .86;
}

.hero-actions .btn-sun.btn-hero {
  --bs-btn-border-color: rgba(232, 180, 75, .62);
  --bs-btn-color: var(--sun-soft);
  --bs-btn-hover-bg: rgba(232, 180, 75, .08);
  --bs-btn-hover-border-color: rgba(232, 180, 75, .86);
  --bs-btn-hover-color: #fff;
}

.hero-actions .btn-ghost.btn-hero {
  --bs-btn-color: rgba(255, 255, 255, .78);
  --bs-btn-hover-color: #fff;
  --bs-btn-padding-x: .15rem;
}

.hero-actions .btn-hero:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: .32rem;
}

.scroll-down {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 999px;
  bottom: 1.75rem;
  color: rgba(255, 255, 255, .72);
  display: inline-flex;
  font-size: 1.05rem;
  height: 2.75rem;
  justify-content: center;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  transition: color .2s var(--ease), opacity .2s var(--ease), transform .2s var(--ease);
  width: 2.75rem;
  z-index: 3;
}

.scroll-down:hover {
  color: var(--sun-soft);
  transform: translate(-50%, -3px);
}

.card-dark {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--fg);
}

.line-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--fg);
  display: block;
  height: 100%;
  overflow: hidden;
  padding: clamp(1.35rem, 3vw, 1.85rem);
  position: relative;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}

.line-card:hover {
  border-color: var(--border-strong);
  color: var(--fg);
  transform: translateY(-2px);
}

.line-card::after {
  border-radius: 999px;
  content: "";
  height: 18rem;
  opacity: .1;
  position: absolute;
  right: -8rem;
  top: -8rem;
  width: 18rem;
}

.line-card.sun::after {
  background: radial-gradient(circle, var(--sun), transparent 68%);
}

.line-card.moss::after {
  background: radial-gradient(circle, var(--moss), transparent 68%);
}

.product-shot {
  aspect-ratio: 4 / 3;
  background: #dcdde0;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-top: 1.25rem;
  overflow: hidden;
}

.configurator-page .product-shot {
  height: 100%;
  margin-top: 0;
  max-height: min(44vh, 22rem);
}

.product-shot img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.product-shot.contain img {
  object-fit: contain;
}

.stat-grid {
  border-top: 1px solid var(--border);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1.5rem;
  padding-top: 1.25rem;
}

.stat-grid > div {
  border-right: 1px solid var(--border);
  padding-inline: 1rem;
}

.stat-grid > div:first-child {
  padding-left: 0;
}

.stat-grid > div:last-child {
  border-right: 0;
  padding-right: 0;
}

.stat-value {
  color: var(--fg);
  font-family: var(--font-mono);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.stat-label {
  color: var(--fg-dim);
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .05em;
  margin-top: .25rem;
  text-transform: uppercase;
}

.set-tile {
  aspect-ratio: 1;
  background: color-mix(in oklch, var(--moss) 4%, var(--bg-card));
  border: 1px solid var(--border);
  border-radius: 18px;
  display: grid;
  min-height: 14rem;
  padding: 1.25rem;
  place-items: center;
  text-align: center;
}

.set-icon {
  align-items: center;
  background: color-mix(in oklch, var(--sun) 14%, transparent);
  border: 1px solid color-mix(in oklch, var(--sun) 24%, transparent);
  border-radius: 999px;
  color: var(--sun);
  display: inline-flex;
  font-size: 1.5rem;
  height: 3.5rem;
  justify-content: center;
  margin-bottom: 1rem;
  width: 3.5rem;
}

.why-card,
.price-card,
.faq-card,
.dashboard-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  height: 100%;
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.price-card.featured {
  background: color-mix(in oklch, var(--sun) 6%, var(--bg-card));
  border-color: var(--sun);
}

.price-card {
  display: flex;
  flex-direction: column;
}

.price-card .btn {
  margin-top: auto !important;
}

.price-card .feature-list {
  flex: 1 1 auto;
  margin-bottom: 1.5rem;
}

.price-card .price {
  font-size: clamp(3.2rem, 5vw, 4.6rem);
  overflow-wrap: normal;
  white-space: nowrap;
}

.price {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
}

.feature-list {
  color: var(--fg-muted);
  display: grid;
  gap: .7rem;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.feature-list li {
  align-items: flex-start;
  display: flex;
  gap: .6rem;
}

.feature-list i {
  color: var(--sun);
  flex: 0 0 auto;
  margin-top: .15rem;
}

.checkout-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  height: 100%;
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.checkout-hero {
  aspect-ratio: 16 / 9;
  margin-top: 0;
}

.checkout-items {
  display: grid;
  gap: .85rem;
}

.checkout-item {
  align-items: flex-start;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  gap: 1rem;
  padding: 1rem;
}

.checkout-item p {
  color: var(--fg-muted);
  margin: .2rem 0 0;
}

.checkout-qty {
  align-items: center;
  background: color-mix(in oklch, var(--sun) 16%, transparent);
  border: 1px solid color-mix(in oklch, var(--sun) 26%, transparent);
  border-radius: 999px;
  color: var(--sun);
  display: inline-flex;
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: .8rem;
  justify-content: center;
  min-width: 2.6rem;
  padding: .25rem .55rem;
}

.checkout-total {
  align-items: baseline;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
}

.checkout-total span {
  color: var(--fg-muted);
}

.checkout-total strong {
  color: var(--fg);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.checkout-sticky {
  position: sticky;
  top: 6.5rem;
}

.faq-accordion .accordion-item {
  background: transparent;
  border-color: var(--border);
  color: var(--fg);
}

.faq-accordion .accordion-button {
  background: transparent;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  padding: 1.15rem 0;
}

.faq-accordion .accordion-button::after {
  filter: invert(1);
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: transparent;
  box-shadow: none;
  color: var(--fg);
}

.faq-accordion .accordion-body {
  color: var(--fg-muted);
  padding: 0 0 1.25rem;
}

.cta-panel {
  background: linear-gradient(135deg, color-mix(in oklch, var(--moss) 46%, var(--bg-raised)), var(--bg-raised));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(2rem, 6vw, 4rem);
}

.cfg-root {
  display: grid;
  gap: 1rem;
}

.configurator-page .cfg-root {
  gap: clamp(.5rem, 1vh, .75rem);
  grid-template-rows: auto 1fr;
  min-height: calc(100svh - 5.85rem);
}

.cfg-head {
  align-items: end;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.cfg-head .section-title {
  font-size: clamp(2.25rem, 5vw, 4.9rem);
}

.configurator-page .cfg-head {
  align-items: center;
}

.configurator-page .cfg-head .section-title {
  font-size: clamp(2rem, 4.5vh, 3.45rem);
}

.configurator-page .cfg-head .chip {
  padding: .22rem .55rem;
}

.steps-timeline {
  display: flex;
  gap: 4px;
  padding-top: 2px;
}

.steps-timeline .tick {
  background: var(--border-strong);
  border-radius: 2px;
  flex: 1;
  height: 3px;
  opacity: .45;
}

.steps-timeline .tick.done,
.steps-timeline .tick.now {
  background: var(--sun);
  opacity: 1;
}

.steps-timeline.moss .tick.done,
.steps-timeline.moss .tick.now {
  background: var(--moss);
}

.steps-labels {
  color: var(--fg-dim);
  display: flex;
  font-family: var(--font-mono);
  font-size: .66rem;
  justify-content: space-between;
  letter-spacing: .05em;
  margin-top: .45rem;
  text-transform: uppercase;
}

.steps-labels span {
  flex: 1;
}

.steps-labels span.active {
  color: var(--sun);
}

.steps-labels.moss span.active {
  color: var(--moss-soft);
}

.cfg-shell {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  min-height: 36rem;
  overflow: hidden;
}

.configurator-page .cfg-shell {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.cfg-screen {
  display: none;
  min-height: 29rem;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.configurator-page .cfg-screen {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  padding: clamp(1rem, 2vh, 1.5rem);
}

.cfg-screen.active {
  display: block;
}

.configurator-page .cfg-screen.active {
  display: flex;
  flex-direction: column;
}

.configurator-page .cfg-screen > .row {
  flex: 1;
}

.cfg-screen h2.fs-1 {
  font-size: clamp(2rem, 4vw, 3.25rem) !important;
}

.configurator-page .cfg-screen h2.fs-1 {
  font-size: clamp(1.7rem, 3.4vh, 2.65rem) !important;
}

.cfg-screen .section-lead {
  max-width: 46rem;
}

.configurator-page .section-lead {
  font-size: .98rem;
  margin-bottom: .5rem;
}

.address-panel {
  background: #202926;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: clamp(.9rem, 1.6vw, 1.15rem);
}

.address-panel .form-control {
  min-height: 2.55rem;
}

.option-card {
  background: var(--bg-input);
  border: 2px solid var(--border);
  border-radius: 12px;
  color: var(--fg);
  cursor: pointer;
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  min-height: 15rem;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: left;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease), background .2s var(--ease);
  width: 100%;
}

.configurator-page .option-card {
  min-height: clamp(11.25rem, 24vh, 14.25rem);
}

.option-card::after {
  align-items: center;
  background: var(--sun);
  border: 2px solid color-mix(in oklch, var(--bg-input) 82%, transparent);
  border-radius: 999px;
  color: #1a1408;
  content: "\2713";
  display: flex;
  font-family: var(--font-ui);
  font-size: .8rem;
  font-weight: 700;
  height: 1.65rem;
  justify-content: center;
  opacity: 0;
  position: absolute;
  right: .8rem;
  top: .8rem;
  transform: scale(.82);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
  width: 1.65rem;
  z-index: 2;
}

.option-card.moss::after {
  background: var(--moss-soft);
  color: #11160b;
}

.option-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.option-card.selected {
  background: color-mix(in oklch, var(--sun) 7%, var(--bg-input));
  border-color: var(--sun);
  box-shadow: 0 0 0 1px color-mix(in oklch, var(--sun) 18%, transparent), 0 18px 40px rgba(0, 0, 0, .18);
}

.option-card.moss.selected {
  background: color-mix(in oklch, var(--moss) 10%, var(--bg-input));
  border-color: var(--moss);
  box-shadow: 0 0 0 1px color-mix(in oklch, var(--moss) 22%, transparent), 0 18px 40px rgba(0, 0, 0, .18);
}

.option-card.selected::after {
  opacity: 1;
  transform: scale(1);
}

.option-img {
  aspect-ratio: 16 / 9;
  background: #151b1a;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.configurator-page .option-img {
  aspect-ratio: 2.1 / 1;
  max-height: 7.2rem;
}

.option-img img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.option-body {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  padding: clamp(.9rem, 1.2vw, 1rem);
}

.configurator-page .option-body {
  gap: .32rem;
  padding: .75rem;
}

.option-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.45vw, 1.35rem);
  line-height: 1.05;
}

.configurator-page .option-title {
  font-size: clamp(1.05rem, 2vh, 1.22rem);
}

.option-desc {
  color: var(--fg-muted);
  font-size: .88rem;
  line-height: 1.35;
}

.configurator-page .option-desc {
  font-size: .8rem;
  line-height: 1.25;
}

.option-meta {
  align-items: center;
  border-top: 1px solid var(--border);
  color: var(--fg-dim);
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: .72rem;
  justify-content: space-between;
  margin-top: auto;
  padding-top: .75rem;
}

.configurator-page .option-meta {
  font-size: .65rem;
  padding-top: .5rem;
}

.cfg-footer {
  align-items: center;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 1rem clamp(1.25rem, 3vw, 2rem);
}

.configurator-page .cfg-footer {
  padding: .65rem clamp(1rem, 2vw, 1.4rem);
}

.cfg-footer .btn {
  min-width: 8.75rem;
}

.configurator-page .cfg-footer .btn {
  min-height: 2.45rem;
}

.price-strip {
  align-items: baseline;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--fg-muted);
  display: flex;
  gap: .45rem;
  padding: 0;
  white-space: nowrap;
}

.configurator-page .price-strip {
  padding: 0;
}

.price-strip .price {
  color: var(--fg);
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4vw, 2.85rem);
  font-weight: 400;
  line-height: 1;
}

.summary-visual {
  aspect-ratio: 16 / 9;
  margin-top: 0;
}

.summary-panel {
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem;
}

.summary-row {
  align-items: baseline;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: .7rem 0;
}

.summary-row:last-child {
  border-bottom: 0;
}

.summary-row span:first-child {
  color: var(--fg-muted);
}

.form-control,
.form-select {
  background-color: var(--bg-input);
  border-color: var(--border);
  color: var(--fg);
}

.form-control:focus,
.form-select:focus {
  background-color: var(--bg-input);
  border-color: var(--sun);
  box-shadow: 0 0 0 .2rem color-mix(in oklch, var(--sun) 24%, transparent);
  color: var(--fg);
}

.form-label {
  color: var(--fg-muted);
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.dashboard-hero {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  align-items: center;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  gap: 1rem;
  padding: 1rem;
}

.timeline-dot {
  background: var(--sun);
  border-radius: 50%;
  height: .75rem;
  width: .75rem;
}

.footer {
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  margin-top: 7rem;
  padding: 3rem 0 2rem;
}

.footer a {
  color: var(--fg-muted);
}

.footer a:hover {
  color: var(--sun);
}

.footer-title {
  color: var(--fg-dim);
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .08em;
  margin-bottom: .9rem;
  text-transform: uppercase;
}

.footer-list {
  display: grid;
  gap: .45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    border-top: 1px solid var(--border);
    margin-top: 1rem;
    padding-top: 1rem;
  }

  .nav-pill {
    display: block;
  }

  .hero-section,
  .hero-frame {
    min-height: calc(100svh - 4.45rem);
  }

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

  .stat-grid > div {
    border-bottom: 1px solid var(--border);
    border-right: 0;
    padding: .85rem 0;
  }

  .stat-grid > div:last-child {
    border-bottom: 0;
  }

  .cfg-head,
  .cfg-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .price-strip {
    justify-content: space-between;
  }

  .checkout-sticky {
    position: static;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .configurator-page .cfg-head,
  .configurator-page .cfg-footer {
    align-items: center;
    flex-direction: row;
  }

  .configurator-page .cfg-screen > .row > .col-lg-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }

  .configurator-page .cfg-screen > .row > .col-lg-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }
}

@media (max-width: 767.98px) {
  .container-xl {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .section {
    padding-top: 4rem;
  }

  .configurator-page {
    min-height: auto;
  }

  .configurator-page .cfg-root {
    min-height: auto;
  }

  .configurator-page .cfg-shell,
  .configurator-page .cfg-screen {
    overflow: visible;
  }

  .hero-title {
    font-size: clamp(2.8rem, 13vw, 4.1rem);
  }

  .hero-copy {
    bottom: 6.2rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .steps-labels {
    display: none;
  }

  .cfg-screen {
    min-height: 28rem;
  }

  .price-card .price,
  .checkout-total strong {
    font-size: clamp(2.6rem, 15vw, 3.4rem);
  }

  .checkout-item {
    gap: .75rem;
    padding: .85rem;
  }
}
