
:root {
  --charcoal: #0d0d12;
  --panel: #17131f;
  --panel-soft: #211a2b;
  --gold: #d7aa45;
  --gold-light: #f1d17d;
  --amethyst: #7d35c9;
  --amethyst-light: #b56cff;
  --bone: #f2eadc;
  --muted: #b7adbd;
  --line: rgba(215,170,69,.26);
  --danger: #ff9e9e;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--bone);
  background:
    radial-gradient(circle at 75% 12%, rgba(125,53,201,.22), transparent 25rem),
    linear-gradient(180deg, #09090d, #110d17 45%, #09090d);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

h1, h2, h3, .brand-name {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: .035em;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(18px, 5vw, 72px);
  background: rgba(9,9,13,.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 50%;
  border: 1px solid var(--gold);
}

.brand-name, .brand-tagline { display: block; }
.brand-name { color: var(--gold-light); font-size: 1.08rem; text-transform: uppercase; }
.brand-tagline { color: var(--muted); font-size: .72rem; }

nav { display: flex; gap: 22px; }
nav a { text-decoration: none; color: var(--muted); font-size: .9rem; }
nav a:hover { color: var(--gold-light); }

.hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 42px;
  padding: 70px clamp(22px, 7vw, 110px);
  overflow: hidden;
}

.hero-copy { max-width: 700px; }
.eyebrow { color: var(--amethyst-light); font-weight: 700; letter-spacing: .16em; font-size: .75rem; }
.hero h1 { margin: 0 0 18px; color: var(--gold-light); font-size: clamp(3.2rem, 8vw, 7.2rem); line-height: .93; }
.hero-copy > p:not(.eyebrow) { max-width: 650px; color: #d9d0dd; font-size: 1.18rem; }

.hero-mark {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}
.hero-mark::before {
  content: "";
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181,108,255,.42), rgba(125,53,201,.06) 52%, transparent 72%);
  filter: blur(10px);
}
.hero-mark img {
  position: relative;
  width: min(100%, 620px);
  border-radius: 28px;
  box-shadow: 0 32px 90px rgba(0,0,0,.5);
  mask-image: radial-gradient(ellipse at center, black 58%, transparent 92%);
}

.primary-button, .secondary-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.primary-button {
  color: #130d19;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: 1px solid #f6da91;
}
.secondary-button {
  color: var(--bone);
  background: transparent;
  border: 1px solid var(--amethyst-light);
}
.full-width { width: 100%; margin-top: 10px; }

.builder-section { padding: 72px clamp(18px, 5vw, 72px); }
.section-heading { max-width: 800px; margin-bottom: 34px; }
.section-heading h2 { margin: 6px 0 8px; color: var(--gold-light); font-size: clamp(2.2rem, 5vw, 4rem); }
.section-heading > p:last-child { color: var(--muted); }

.builder-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr);
  gap: 28px;
  align-items: start;
}

.panel {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(33,26,43,.92), rgba(15,13,20,.95));
  border-radius: 14px;
  box-shadow: 0 26px 80px rgba(0,0,0,.28);
}

.form-panel { padding: clamp(20px, 4vw, 42px); }
.summary-panel { position: sticky; top: 98px; padding: 24px; }

label, legend {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

label { display: block; margin-bottom: 22px; }
select, input, textarea {
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  border-radius: 6px;
  color: var(--bone);
  background: #0f0d14;
  border: 1px solid rgba(215,170,69,.32);
  font: inherit;
}
select:focus, input:focus, textarea:focus {
  outline: 2px solid rgba(181,108,255,.55);
  border-color: var(--amethyst-light);
}
small { display: block; margin-top: 6px; color: var(--muted); }
.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

fieldset {
  margin: 0 0 22px;
  padding: 18px;
  border: 1px solid rgba(215,170,69,.25);
  border-radius: 8px;
}
legend { padding: 0 8px; }
.checkbox-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.check-option {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  min-height: 54px;
  padding: 10px;
  margin: 0;
  color: var(--bone);
  background: rgba(0,0,0,.2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 6px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .9rem;
}
.check-option input { width: auto; margin: 3px 0 0; }

.preview-card {
  position: relative;
  min-height: 190px;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  overflow: hidden;
  padding: 22px;
  margin-bottom: 26px;
  border: 1px solid rgba(215,170,69,.35);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(0,0,0,.1), rgba(0,0,0,.62)),
    repeating-linear-gradient(135deg, rgba(255,255,255,.025) 0 1px, transparent 1px 7px);
}
.preview-glow {
  position: absolute;
  inset: auto -20% -70% -20%;
  height: 170%;
  background: radial-gradient(circle at 50% 25%, var(--preview-color, #7d35c9), transparent 60%);
  opacity: .65;
}
.preview-emblem {
  position: relative;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  flex: 0 0 72px;
  color: var(--gold-light);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 1.6rem;
  box-shadow: 0 0 25px rgba(215,170,69,.16);
}
.preview-card > div:last-child { position: relative; }
.preview-card h3 { margin: 0; color: white; font-size: 1.5rem; }
.preview-label { margin: 0 0 3px; color: var(--gold-light); font-size: .65rem; letter-spacing: .12em; }
#previewSubtitle { margin: 5px 0 0; color: var(--muted); }

.summary-panel > h3 { color: var(--gold-light); font-size: 1.4rem; }
dl { margin: 0; }
dl > div {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
dt { color: var(--muted); }
dd { margin: 0; text-align: right; }

.price-block {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.price-block span { color: var(--muted); }
.price-block strong { color: var(--gold-light); font-size: 2rem; }
.estimate-note, .status { color: var(--muted); font-size: .78rem; }
.status { min-height: 20px; color: var(--amethyst-light); }

.steps-section { padding: 72px clamp(18px, 5vw, 72px) 100px; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.steps-grid article {
  padding: 24px;
  border-top: 2px solid var(--gold);
  background: rgba(255,255,255,.025);
}
.steps-grid span { color: var(--amethyst-light); font-size: 2rem; font-weight: 800; }
.steps-grid h3 { color: var(--gold-light); }
.steps-grid p { color: var(--muted); }

footer {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  padding: 28px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #08080b;
}

@media (max-width: 900px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 45px; }
  .hero-mark { min-height: 340px; }
  .builder-grid { grid-template-columns: 1fr; }
  .summary-panel { position: static; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .brand-tagline { display: none; }
  .two-column, .checkbox-grid, .steps-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero h1 { font-size: 3.25rem; }
  dl > div { grid-template-columns: 1fr; gap: 2px; }
  dd { text-align: left; }
}


/* =========================================================
   ForgeOS Live Product Catalog
   ========================================================= */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 340px));
  gap: 1.5rem;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  margin: 1.5rem auto 0;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 80, 0.28);
  border-radius: 14px;
  background: rgba(10, 12, 20, 0.82);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.product-media {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-placeholder {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  opacity: 0.7;
}

.featured-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.78);
  font-size: 0.8rem;
  font-weight: 700;
}

.product-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.15rem;
}

.product-category {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-name {
  margin: 0 0 0.4rem;
}

.product-meta {
  margin: 0 0 0.9rem;
  font-size: 0.82rem;
  opacity: 0.68;
}

.product-description {
  margin: 0 0 1rem;
  line-height: 1.55;
}

.product-price {
  margin: auto 0 0.45rem;
  font-size: 1.25rem;
}

.product-status {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  opacity: 0.82;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.product-actions .button {
  flex: 1 1 auto;
  text-align: center;
}

.empty-catalog {
  width: 100%;
  padding: 2rem;
  text-align: center;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 12px;
}

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

  .product-media {
    height: 230px;
  }
}


/* =========================================================
   Website Order Intake
   ========================================================= */

.order-page {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 54px 0 90px;
}

.order-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.order-heading h1 {
  margin: 6px 0 10px;
  color: var(--gold-light);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1;
}

.order-heading > p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}

.order-back-link {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--muted);
}

.order-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 1.4fr)
    minmax(300px, .6fr);
  gap: 28px;
  align-items: start;
}

.order-form-panel {
  padding: clamp(22px, 4vw, 38px);
}

.order-review-panel {
  position: sticky;
  top: 98px;
  padding: 24px;
}

.order-form-section + .order-form-section {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.order-form-section h2,
.order-review-panel h2,
.order-success h2 {
  margin: 0 0 18px;
  color: var(--gold-light);
}

.order-product-summary {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
  padding: 16px;
  border: 1px solid rgba(215,170,69,.2);
  border-radius: 10px;
  background: rgba(0,0,0,.18);
}

.order-product-image-wrap {
  min-height: 120px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(0,0,0,.22);
}

.order-product-image {
  display: block;
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.order-product-summary h3 {
  margin: 2px 0 8px;
  color: white;
  font-size: 1.5rem;
}

.order-muted {
  color: var(--muted);
}

.order-product-price {
  margin: 10px 0 0;
  color: var(--gold-light);
  font-size: 1.35rem;
  font-weight: 800;
}

.order-shipping-address {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(181,108,255,.28);
  border-radius: 10px;
  background: rgba(125,53,201,.06);
}

.order-review-list {
  margin: 0;
}

.order-review-list > div {
  grid-template-columns: 44% 56%;
}

.order-review-total {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.order-review-total span {
  color: var(--muted);
}

.order-review-total strong {
  color: var(--gold-light);
  font-size: 1.8rem;
}

.order-review-note,
.order-submit-note {
  color: var(--muted);
  font-size: .82rem;
}

.order-submit-note {
  margin: 10px 0 0;
  text-align: center;
}

.order-error {
  margin: 18px 0;
  padding: 14px;
  color: #ffd0d0;
  background: rgba(145, 30, 30, .22);
  border: 1px solid rgba(255, 120, 120, .42);
  border-radius: 8px;
}

.order-loading,
.order-success {
  padding: clamp(26px, 5vw, 48px);
}

.order-success {
  max-width: 780px;
}

.order-confirmation-number {
  margin: 12px 0 18px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
}

.order-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.order-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

#submit-order:disabled {
  cursor: wait;
  opacity: .68;
}

@media (max-width: 850px) {
  .order-layout {
    grid-template-columns: 1fr;
  }

  .order-review-panel {
    position: static;
  }
}

@media (max-width: 580px) {
  .order-product-summary {
    grid-template-columns: 1fr;
  }

  .order-product-image-wrap {
    min-height: 180px;
  }

  .order-product-image {
    height: 210px;
  }
}


/* =========================================================
   Custom Forge Request Intake
   ========================================================= */

.custom-contact-fieldset {
  margin-top: 8px;
}

.custom-shipping-address {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(181,108,255,.28);
  border-radius: 10px;
  background: rgba(125,53,201,.06);
}

.custom-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.custom-request-error {
  margin-top: 14px;
  padding: 12px 14px;
  color: #ffd0d0;
  background: rgba(145,30,30,.22);
  border: 1px solid rgba(255,120,120,.42);
  border-radius: 8px;
}

.custom-request-success {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(113,212,143,.38);
  border-radius: 10px;
  background: rgba(30,110,58,.13);
}

.custom-request-success h3 {
  margin: 6px 0 12px;
  color: var(--gold-light);
}

.custom-request-success strong {
  display: block;
  margin: 8px 0 12px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

#submitButton:disabled {
  cursor: wait;
  opacity: .68;
}


/* Stage 10.1 — Finalize Build workflow */
.custom-contact-fieldset[hidden] {
  display: none;
}

.custom-contact-fieldset {
  margin-top: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

#finalizeStatus {
  min-height: 1.2em;
}

#editBuildButton {
  margin-top: 10px;
}

#submitButton {
  margin-top: 10px;
}

/* =========================================================
   Stage 21A — Launch Homepage + Public Navigation
   ========================================================= */

.menu-button {
  display: none;
  width: 46px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--gold-light);
  background: rgba(255,255,255,.035);
  font: inherit;
  font-size: 1.35rem;
  cursor: pointer;
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-navigation a[aria-current="page"] {
  color: var(--gold-light);
}

.home-hero {
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
  padding: clamp(58px, 8vw, 105px) clamp(22px, 7vw, 110px);
  overflow: hidden;
}

.home-hero-copy {
  max-width: 760px;
}

.home-hero h1 {
  max-width: 850px;
  margin: 0 0 22px;
  color: var(--gold-light);
  font-size: clamp(3.4rem, 7.5vw, 7.1rem);
  line-height: .92;
}

.home-hero-text {
  max-width: 690px;
  margin: 0;
  color: #ded5e1;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 7px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  color: #130d19;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: 1px solid #f6da91;
}

.button-primary:hover {
  filter: brightness(1.06);
}

.button-secondary {
  color: var(--bone);
  background: rgba(125,53,201,.05);
  border: 1px solid var(--amethyst-light);
}

.button-secondary:hover {
  background: rgba(125,53,201,.13);
}

.home-hero-art {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.home-hero-art::before {
  content: "";
  position: absolute;
  width: 92%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(181,108,255,.34),
      rgba(125,53,201,.08) 50%,
      transparent 72%
    );
  filter: blur(8px);
}

.home-hero-logo {
  position: relative;
  width: min(100%, 520px);
  border-radius: 50%;
  filter: drop-shadow(0 32px 55px rgba(0,0,0,.62));
}

.launch-strip {
  width: min(1180px, calc(100% - 44px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: -34px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--line);
  box-shadow: 0 24px 70px rgba(0,0,0,.26);
}

.launch-strip article {
  padding: 20px 22px;
  background: rgba(16,13,22,.96);
}

.launch-strip strong {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.04rem;
}

.launch-strip span {
  color: var(--muted);
  font-size: .9rem;
}

.home-section {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 92px 0;
}

.home-section.compact {
  padding-top: 54px;
  padding-bottom: 54px;
}

.home-section-heading {
  max-width: 800px;
  margin-bottom: 34px;
}

.home-section-heading h2,
.launch-product-copy h2,
.home-callout h2 {
  margin: 5px 0 12px;
  color: var(--gold-light);
  font-size: clamp(2.35rem, 5vw, 4.25rem);
  line-height: 1;
}

.home-section-heading > p:last-child,
.launch-product-copy > p,
.home-callout p {
  color: var(--muted);
  font-size: 1.04rem;
}

.home-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
  justify-content: center;
  gap: 24px;
}

.home-featured-grid .product-card {
  min-height: 100%;
}

.home-featured-grid .product-media {
  height: 300px;
}

.home-featured-grid .product-card-content {
  padding: 20px;
}

.home-featured-grid .product-description {
  color: #d8cedb;
}

.home-featured-grid .product-category {
  color: var(--amethyst-light);
  font-weight: 800;
}

.home-featured-grid .product-name {
  color: var(--gold-light);
  font-size: 1.55rem;
}

.home-catalog-message {
  grid-column: 1 / -1;
  padding: 24px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed rgba(255,255,255,.18);
  border-radius: 12px;
  background: rgba(255,255,255,.02);
}

.launch-product {
  display: grid;
  grid-template-columns: minmax(340px, .9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
}

.launch-product-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #0b0910;
  box-shadow: 0 28px 80px rgba(0,0,0,.34);
}

.launch-product-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.launch-product-copy ul {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.launch-product-copy li {
  position: relative;
  padding-left: 24px;
  color: #ddd4e1;
}

.launch-product-copy li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--amethyst-light);
  font-size: .72rem;
  top: .23rem;
}

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

.home-feature-card {
  min-height: 190px;
  padding: 26px;
  border: 1px solid rgba(215,170,69,.20);
  border-radius: 12px;
  background:
    linear-gradient(
      145deg,
      rgba(33,26,43,.76),
      rgba(12,10,16,.90)
    );
}

.home-feature-card h3 {
  margin: 0 0 10px;
  color: var(--gold-light);
  font-size: 1.35rem;
}

.home-feature-card p {
  margin: 0;
  color: var(--muted);
}

.home-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid rgba(181,108,255,.30);
  border-radius: 16px;
  background:
    radial-gradient(
      circle at 88% 30%,
      rgba(125,53,201,.18),
      transparent 18rem
    ),
    linear-gradient(
      145deg,
      rgba(33,26,43,.92),
      rgba(14,11,19,.96)
    );
}

.home-callout .button {
  white-space: nowrap;
}

.home-disclaimer {
  padding: 28px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.018);
}

.home-disclaimer strong {
  color: var(--gold-light);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px 40px;
  align-items: start;
  padding: 42px clamp(22px, 7vw, 110px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #08080b;
}

.site-footer strong {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
}

.site-footer p {
  margin: 6px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.site-footer .copyright {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: .82rem;
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .site-navigation {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px clamp(18px, 5vw, 72px) 16px;
    background: rgba(9,9,13,.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 38px rgba(0,0,0,.35);
  }

  .site-navigation.is-open {
    display: flex;
  }

  .site-navigation a {
    padding: 12px 4px;
    border-bottom: 1px solid rgba(255,255,255,.055);
  }

  .site-navigation a:last-child {
    border-bottom: 0;
  }

  .home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 62px;
  }

  .home-hero-art {
    min-height: 340px;
  }

  .home-hero-logo {
    width: min(78vw, 430px);
  }

  .launch-strip {
    grid-template-columns: 1fr;
  }

  .launch-product {
    grid-template-columns: 1fr;
  }

  .launch-product-media {
    max-width: 620px;
    margin: 0 auto;
  }

  .home-feature-grid {
    grid-template-columns: 1fr;
  }

  .home-callout {
    grid-template-columns: 1fr;
  }

  .home-callout .button {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .brand-name {
    font-size: .92rem;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .home-hero {
    padding-left: 22px;
    padding-right: 22px;
  }

  .home-hero h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .home-hero-actions {
    display: grid;
  }

  .home-hero-actions .button {
    width: 100%;
  }

  .launch-strip,
  .home-section {
    width: min(100% - 28px, 1180px);
  }

  .home-section {
    padding: 68px 0;
  }

  .home-featured-grid {
    grid-template-columns: 1fr;
  }

  .home-featured-grid .product-media {
    height: 260px;
  }

  .home-callout .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-left: 22px;
    padding-right: 22px;
  }

  .site-footer .copyright {
    grid-column: 1;
  }
}

/* Legal pages */
.legal-page { width: min(900px, calc(100% - 44px)); margin: 0 auto; padding: 64px 0 80px; }
.legal-page h1 { margin-bottom: 10px; }
.legal-page h2 { margin-top: 34px; color: var(--gold-light); }
.legal-page p { max-width: 78ch; line-height: 1.75; }
.legal-page a { text-decoration: underline; }
