:root {
  color-scheme: dark;
  --bg: #070a16;
  --bg-2: #0d1230;
  --surface: rgba(12, 16, 34, 0.86);
  --surface-2: rgba(15, 20, 42, 0.92);
  --surface-3: rgba(19, 25, 50, 0.95);
  --ink: #f4f7ff;
  --muted: #a6b2d9;
  --muted-2: #7f8bb6;
  --line: rgba(129, 147, 255, 0.16);
  --line-strong: rgba(168, 180, 255, 0.28);
  --amber: #2ee6ff;
  --amber-2: #c77dff;
  --amber-3: #d5f8ff;
  --dark: #050713;
  --success: #67eccb;
  --error: #ff7b9a;
  --info: #79a3ff;
  --shadow: 0 22px 60px rgba(4, 8, 22, 0.42);
  --shadow-strong: 0 40px 100px rgba(4, 8, 22, 0.58);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(1240px, calc(100vw - 2rem));
  --container-wide: min(1360px, calc(100vw - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  background:
    radial-gradient(circle at 16% 12%, rgba(46, 230, 255, 0.18), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(199, 125, 255, 0.18), transparent 24%),
    radial-gradient(circle at 80% 80%, rgba(68, 111, 255, 0.1), transparent 28%),
    linear-gradient(180deg, #060816 0%, #090d1f 45%, #060816 100%);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  background:
    radial-gradient(circle at 20% 20%, rgba(46, 230, 255, 0.24), transparent 20%),
    radial-gradient(circle at 60% 10%, rgba(199, 125, 255, 0.2), transparent 18%),
    radial-gradient(circle at 80% 80%, rgba(112, 120, 255, 0.16), transparent 20%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.012) 0 2px, transparent 2px 10px);
  mix-blend-mode: screen;
  animation: drift 28s ease-in-out infinite alternate;
  z-index: -1;
}

body.theme-dark {
  color: #f4f7ff;
  background:
    radial-gradient(circle at 18% 12%, rgba(46, 230, 255, 0.2), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(199, 125, 255, 0.18), transparent 22%),
    radial-gradient(circle at 55% 82%, rgba(94, 120, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #040611 0%, #090d1f 56%, #040611 100%);
}

body.theme-dark::before {
  opacity: 0.18;
}

body.menu-open,
body.cart-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

::selection {
  background: rgba(46, 230, 255, 0.24);
}

:focus-visible {
  outline: 2px solid rgba(199, 125, 255, 0.86);
  outline-offset: 3px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.container--wide {
  width: var(--container-wide);
  margin-inline: auto;
}

.site-shell {
  min-height: 100vh;
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(8, 12, 27, 0.72);
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.8rem;
  padding: 0.78rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(152, 170, 255, 0.12);
  background: rgba(8, 12, 27, 0.74);
  backdrop-filter: blur(20px);
}

body.theme-dark .site-header {
  border-bottom-color: rgba(152, 170, 255, 0.14);
  background: rgba(8, 12, 27, 0.8);
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem 1.5rem;
  min-height: 5.6rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand__mark {
  width: 12.8rem;
  height: auto;
}

.brand__copy {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.brand__title {
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
}

.brand__subtitle {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  min-width: 0;
  flex-wrap: wrap;
}

.nav__link {
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 180ms ease;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.44rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--ink);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
}

body.theme-dark .nav__link,
body.theme-dark .brand__subtitle {
  color: rgba(244, 247, 255, 0.72);
}

body.theme-dark .nav__link:hover,
body.theme-dark .nav__link.is-active,
body.theme-dark .brand__title {
  color: #f8fbff;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  justify-self: end;
}

.icon-button,
.menu-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(152, 170, 255, 0.16);
  border-radius: 999px;
  background: rgba(11, 15, 31, 0.82);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(4, 8, 22, 0.24);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.icon-button:hover,
.menu-button:hover {
  transform: translateY(-1px);
  border-color: rgba(46, 230, 255, 0.4);
  background: rgba(17, 23, 48, 0.95);
  box-shadow: 0 16px 36px rgba(46, 230, 255, 0.12);
}

.icon-button svg,
.menu-button svg {
  width: 1.05rem;
  height: 1.05rem;
}

.cart-count {
  position: absolute;
  top: -0.2rem;
  right: -0.2rem;
  min-width: 1.15rem;
  height: 1.15rem;
  padding-inline: 0.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2ee6ff 0%, #c77dff 100%);
  color: #06101d;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.15rem;
  text-align: center;
}

.menu-button {
  display: none;
}

.site-main {
  position: relative;
  z-index: 1;
}

.page {
  display: grid;
  gap: clamp(1.4rem, 3vw, 2.6rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.hero {
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(3rem, 7vw, 6rem);
}

.hero__grid,
.split,
.product-layout,
.collection-layout,
.cart-layout,
.checkout-layout,
.contact-layout,
.maintenance-layout,
.legal-layout {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.hero__grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
}

.hero__copy {
  display: grid;
  gap: 1.15rem;
}

.eyebrow {
  margin: 0;
  color: var(--amber-2);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero__title,
.section__title,
.page-title,
.collection-title,
.product-title,
.maintenance-title,
.legal-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero__title {
  max-width: 11ch;
  font-size: clamp(3.4rem, 7vw, 6.9rem);
}

.hero__text,
.section__text,
.lead,
.collection-copy,
.product-copy,
.maintenance-copy,
.legal-copy {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero__actions,
.actions-row,
.product-actions,
.maintenance-actions,
.newsletter__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.button,
.button-secondary,
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.button {
  background: linear-gradient(135deg, #2ee6ff 0%, #c77dff 100%);
  color: #06101d;
  box-shadow: 0 18px 34px rgba(46, 230, 255, 0.24);
}

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

.button-secondary {
  border-color: rgba(152, 170, 255, 0.18);
  background: rgba(10, 14, 28, 0.66);
  color: var(--ink);
}

.button-secondary:hover,
.chip:hover {
  transform: translateY(-1px);
  border-color: rgba(46, 230, 255, 0.28);
  background: rgba(17, 23, 48, 0.95);
}

.button--dark {
  background: linear-gradient(135deg, #0d1636 0%, #060917 100%);
  color: #f4f7ff;
}

.badge,
.pill,
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.44rem 0.72rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pill {
  color: #2ee6ff;
  background: rgba(46, 230, 255, 0.1);
  border: 1px solid rgba(46, 230, 255, 0.18);
}

.badge {
  color: #dbe4ff;
  background: rgba(11, 15, 31, 0.6);
  border: 1px solid rgba(152, 170, 255, 0.14);
}

.tag {
  color: #dbe4ff;
  background: rgba(11, 15, 31, 0.72);
  border: 1px solid rgba(152, 170, 255, 0.12);
}

.hero__metrics,
.stats-grid,
.card-grid,
.collection-grid,
.product-grid,
.comparison-grid,
.steps-grid,
.faq-grid,
.quote-grid,
.info-grid,
.benefit-grid,
.bundle-grid,
.footer__grid {
  display: grid;
  gap: 1rem;
}

.footer {
  padding: clamp(2rem, 5vw, 3rem) 0 1.8rem;
  border-top: 1px solid rgba(152, 170, 255, 0.12);
  background: rgba(6, 9, 22, 0.62);
}

body.theme-dark .footer {
  border-top-color: rgba(152, 170, 255, 0.12);
  background: rgba(6, 9, 22, 0.7);
}

.footer__grid {
  grid-template-columns: 1.15fr repeat(3, minmax(0, 0.7fr));
  gap: 1.2rem;
  align-items: start;
  padding-bottom: 1.4rem;
}

.footer__col {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.footer__col strong {
  color: var(--amber);
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer__lead {
  max-width: 26rem;
  margin: 0;
  color: var(--muted);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

body.theme-dark .footer__bottom {
  border-top-color: rgba(152, 170, 255, 0.12);
  color: rgba(244, 247, 255, 0.72);
}

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

.metric,
.card,
.collection-card,
.product-card,
.step-card,
.info-card,
.quote-card,
.summary,
.panel,
.drawer__panel,
.maintenance-card,
.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(12, 16, 34, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.metric {
  padding: 1rem 1rem 0.95rem;
}

.metric strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.22rem;
}

.metric span,
.card p,
.collection-card p,
.product-card p,
.step-card p,
.maintenance-card p,
.quote-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero__visual {
  position: relative;
  min-height: 620px;
  padding: 1.2rem;
  border-radius: calc(var(--radius-xl) + 6px);
  background:
    radial-gradient(circle at 18% 18%, rgba(46, 230, 255, 0.2), transparent 32%),
    radial-gradient(circle at 82% 76%, rgba(199, 125, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(8, 12, 27, 0.96), rgba(14, 19, 41, 0.92));
  border: 1px solid rgba(152, 170, 255, 0.14);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.hero__visual::before,
.visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46, 230, 255, 0.16), transparent 42%);
  pointer-events: none;
}

.hero__visual img,
.visual svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(152, 170, 255, 0.14);
  background:
    radial-gradient(circle at 20% 20%, rgba(46, 230, 255, 0.12), transparent 24%),
    radial-gradient(circle at 80% 78%, rgba(199, 125, 255, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(11, 15, 31, 0.82), rgba(15, 20, 42, 0.94));
  box-shadow: var(--shadow);
}

.hero__callout {
  position: absolute;
  right: 1.1rem;
  bottom: 1.1rem;
  max-width: 17rem;
  padding: 1rem 1.1rem;
  border-radius: 24px;
  border: 1px solid rgba(152, 170, 255, 0.18);
  background: rgba(10, 14, 28, 0.86);
  box-shadow: 0 16px 34px rgba(4, 8, 22, 0.32);
  backdrop-filter: blur(12px);
}

.hero__callout strong,
.section__eyebrow,
.collection-card__eyebrow,
.product-card__eyebrow {
  display: block;
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero__callout span {
  display: block;
  margin-top: 0.38rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: clamp(0.25rem, 1vw, 1rem) 0;
}

.section__head {
  display: grid;
  gap: 0.9rem;
  max-width: 52rem;
  margin-bottom: 1.4rem;
}

.section__title {
  font-size: clamp(2.2rem, 4.5vw, 4.6rem);
}

.section__text {
  max-width: 48rem;
}

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

.collection-card,
.product-card {
  display: grid;
  overflow: hidden;
}

.collection-card {
  padding: 0.82rem;
}

.collection-card__visual,
.product-card__visual {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 8px);
  background:
    radial-gradient(circle at 18% 18%, rgba(46, 230, 255, 0.14), transparent 28%),
    radial-gradient(circle at 82% 76%, rgba(199, 125, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(11, 15, 31, 0.9), rgba(15, 20, 42, 0.98));
  min-height: 240px;
}

.collection-card__body,
.product-card__body {
  display: grid;
  gap: 0.85rem;
  padding: 0.9rem 0.2rem 0.4rem;
}

.collection-card__body h3,
.product-card__title,
.panel h3,
.summary h3,
.maintenance-card h3,
.legal-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.1;
}

.collection-card__body p,
.product-card__body p {
  margin: 0;
}

.collection-card__footer,
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.collection-card__link,
.text-link {
  color: var(--ink);
  font-weight: 700;
}

.collection-card__link::after,
.text-link::after {
  content: "→";
  margin-left: 0.45rem;
  color: var(--amber);
}

.collection-card:hover,
.product-card:hover,
.step-card:hover,
.info-card:hover,
.quote-card:hover,
.summary:hover,
.panel:hover,
.legal-card:hover {
  transform: translateY(-2px);
}

.product-card {
  grid-template-columns: minmax(0, 1fr);
  gap: 0.25rem;
  padding: 0.9rem;
}

.product-card__meta,
.product-meta,
.summary__row,
.cart-item__row,
.toolbar,
.chip-row,
.info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.product-meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.product-card__price,
.price {
  font-size: 1.06rem;
  font-weight: 800;
}

.collection-card__meta,
.product-card__summary {
  display: grid;
  gap: 0.3rem;
}

.chip-row {
  justify-content: flex-start;
}

.chip {
  border: 1px solid rgba(152, 170, 255, 0.14);
  background: rgba(11, 15, 31, 0.66);
  color: var(--ink);
}

.chip.is-active {
  border-color: rgba(46, 230, 255, 0.32);
  background: linear-gradient(135deg, rgba(46, 230, 255, 0.2), rgba(199, 125, 255, 0.16));
}

.split {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  align-items: start;
}

.panel,
.summary,
.maintenance-card,
.legal-card {
  padding: 1.2rem;
}

.panel--soft {
  background: rgba(11, 15, 31, 0.62);
}

.list,
.checklist,
.bullet-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.list li,
.checklist li,
.bullet-list li {
  margin: 0.38rem 0;
}

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

.step-card,
.info-card,
.quote-card,
.maintenance-card,
.legal-card {
  display: grid;
  gap: 0.72rem;
  padding: 1rem;
}

.step-card strong,
.info-card strong,
.quote-card strong,
.maintenance-card strong {
  font-size: 1rem;
}

.step-card small,
.info-card small,
.quote-card small,
.muted {
  color: var(--muted);
}

.accent-box {
  display: grid;
  gap: 0.8rem;
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(46, 230, 255, 0.16);
  background:
    radial-gradient(circle at top right, rgba(46, 230, 255, 0.18), transparent 30%),
    radial-gradient(circle at bottom left, rgba(199, 125, 255, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(11, 15, 31, 0.76), rgba(15, 20, 42, 0.92));
  box-shadow: var(--shadow);
}

.accent-box h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.5rem;
}

.product-layout,
.collection-layout,
.cart-layout,
.checkout-layout,
.contact-layout,
.maintenance-layout,
.legal-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: start;
}

.product-gallery,
.collection-gallery {
  position: relative;
  display: grid;
  gap: 0.8rem;
}

.product-gallery__stage,
.collection-gallery__stage {
  min-height: 600px;
}

.product-gallery__stage svg,
.collection-gallery__stage svg {
  width: 100%;
  height: 100%;
}

.summary {
  display: grid;
  gap: 0.9rem;
}

.summary__row {
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(152, 170, 255, 0.1);
}

.summary__row:last-child {
  border-bottom: 0;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-weight: 700;
}

.input,
.textarea,
.select {
  width: 100%;
  border: 1px solid rgba(152, 170, 255, 0.16);
  border-radius: 18px;
  background: rgba(10, 14, 28, 0.82);
  color: var(--ink);
  padding: 0.95rem 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.textarea {
  min-height: 10rem;
  resize: vertical;
}

.input:focus,
.textarea:focus,
.select:focus {
  border-color: rgba(46, 230, 255, 0.48);
  box-shadow: 0 0 0 4px rgba(46, 230, 255, 0.12);
  outline: none;
  background: rgba(15, 20, 42, 0.95);
}

.input::placeholder,
.textarea::placeholder {
  color: #7f8bb6;
}

.product-actions {
  margin-top: 0.5rem;
}

.drawer__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 22, 0.54);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 70;
}

body.menu-open .drawer__backdrop,
body.cart-open .drawer__backdrop {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 80;
  display: grid;
  width: min(520px, calc(100vw - 1rem));
  transition: transform 240ms ease;
  background: rgba(11, 15, 31, 0.94);
  box-shadow: var(--shadow-strong);
}

.drawer--menu {
  right: 0;
  transform: translateX(102%);
}

.drawer--cart {
  right: 0;
  transform: translateX(102%);
}

body.menu-open .drawer--menu,
body.cart-open .drawer--cart {
  transform: translateX(0);
}

.drawer__panel {
  padding: 1.3rem;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.drawer__list {
  display: grid;
  gap: 0.75rem;
}

.drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(152, 170, 255, 0.14);
  background: rgba(12, 16, 34, 0.78);
  font-weight: 700;
}

.drawer__link span {
  color: var(--muted);
  font-weight: 600;
}

.cart-list {
  display: grid;
  gap: 0.75rem;
}

.cart-item {
  display: grid;
  gap: 0.65rem;
  padding: 0.95rem;
  border-radius: 20px;
  border: 1px solid rgba(152, 170, 255, 0.14);
  background: rgba(12, 16, 34, 0.78);
}

.cart-item__title {
  display: grid;
  gap: 0.12rem;
}

.cart-item__title strong {
  font-size: 1rem;
}

.cart-item__title span {
  color: var(--muted);
  font-size: 0.9rem;
}

.quantity-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.3rem;
  border-radius: 999px;
  border: 1px solid rgba(152, 170, 255, 0.14);
  background: rgba(11, 15, 31, 0.78);
}

.quantity-stepper button {
  width: 2.1rem;
  height: 2.1rem;
  border: 0;
  border-radius: 999px;
  background: rgba(46, 230, 255, 0.12);
  color: var(--ink);
}

.quantity-stepper span {
  min-width: 1.8rem;
  text-align: center;
  font-weight: 700;
}

.remove-link {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
}

.empty-state {
  display: grid;
  place-items: center;
  gap: 1rem;
  min-height: 24rem;
  text-align: center;
}

.hero-note {
  padding: 1rem 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(46, 230, 255, 0.16);
  background: rgba(46, 230, 255, 0.08);
  color: var(--ink);
}

.faq-grid {
  gap: 0.8rem;
}

.faq-item {
  padding: 0;
  overflow: clip;
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(12, 16, 34, 0.8);
  font-weight: 700;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--amber);
  font-size: 1.1rem;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item .faq-item__body {
  padding: 0 1.1rem 1rem;
  color: var(--muted);
}

.newsletter {
  padding: clamp(1.2rem, 3vw, 1.6rem);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(46, 230, 255, 0.14);
  background:
    radial-gradient(circle at top right, rgba(46, 230, 255, 0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(199, 125, 255, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(11, 15, 31, 0.9), rgba(15, 20, 42, 0.96));
  box-shadow: var(--shadow);
}

.newsletter__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1rem 1.4rem;
  align-items: center;
}

.newsletter__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.newsletter__form {
  display: grid;
  gap: 0.8rem;
}

.newsletter__input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
}

.section__note,
.help,
.micro,
.caption {
  color: var(--muted);
  font-size: 0.88rem;
}

.form-message {
  min-height: 1.25rem;
  color: var(--success);
  font-size: 0.9rem;
}

.form-message.is-error {
  color: var(--error);
}

.page-title {
  max-width: 14ch;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
}

.collection-title,
.product-title {
  max-width: 14ch;
  font-size: clamp(2.5rem, 4.8vw, 4.8rem);
}

.maintenance-title {
  max-width: 12ch;
}

.feature-band {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(152, 170, 255, 0.14);
  border-radius: 22px;
  background: rgba(11, 15, 31, 0.72);
}

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

.bundle-card {
  position: relative;
  overflow: hidden;
}

.bundle-card::before {
  content: "";
  position: absolute;
  inset: auto -8% -20% auto;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 230, 255, 0.22), transparent 68%);
}

.legal-layout {
  grid-template-columns: minmax(0, 1fr);
}

.legal-card {
  gap: 0.9rem;
}

.legal-card__grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.maintenance-shell {
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(4rem, 8vw, 7rem);
}

.maintenance-layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  align-items: start;
}

.maintenance-hero {
  display: grid;
  gap: 1rem;
}

.maintenance-mark {
  width: 13rem;
  height: auto;
}

.maintenance-title {
  max-width: 12ch;
  font-size: clamp(3rem, 6vw, 6rem);
}

.maintenance-copy {
  max-width: 52ch;
}

.maintenance-card {
  background:
    radial-gradient(circle at top right, rgba(46, 230, 255, 0.16), transparent 28%),
    radial-gradient(circle at bottom left, rgba(199, 125, 255, 0.12), transparent 24%),
    rgba(8, 12, 27, 0.9);
  color: #f6efe7;
  border-color: rgba(152, 170, 255, 0.14);
}

.maintenance-card .muted,
.maintenance-card p,
.maintenance-card small,
.maintenance-card .caption {
  color: rgba(246, 239, 231, 0.72);
}

.maintenance-card .field label {
  color: #f6efe7;
}

.maintenance-card .input,
.maintenance-card .textarea,
.maintenance-card .select {
  background: rgba(11, 15, 31, 0.82);
  color: #f6efe7;
  border-color: rgba(152, 170, 255, 0.14);
}

.maintenance-card .input::placeholder,
.maintenance-card .textarea::placeholder {
  color: rgba(246, 239, 231, 0.46);
}

.maintenance-card .button {
  background: linear-gradient(135deg, #2ee6ff 0%, #c77dff 100%);
  color: #06101d;
}

.theme-dark .drawer,
.theme-dark .panel,
.theme-dark .summary,
.theme-dark .legal-card,
.theme-dark .collection-card,
.theme-dark .product-card,
.theme-dark .step-card,
.theme-dark .info-card,
.theme-dark .quote-card {
  background: rgba(11, 15, 31, 0.82);
  border-color: rgba(152, 170, 255, 0.14);
  box-shadow: 0 30px 80px rgba(4, 8, 22, 0.3);
}

.theme-dark .badge,
.theme-dark .chip,
.theme-dark .button-secondary {
  background: rgba(11, 15, 31, 0.64);
  color: #edf3ff;
  border-color: rgba(152, 170, 255, 0.14);
}

.theme-dark .button {
  background: linear-gradient(135deg, #2ee6ff 0%, #c77dff 100%);
  color: #06101d;
  box-shadow: 0 18px 34px rgba(46, 230, 255, 0.24);
}

.theme-dark .icon-button,
.theme-dark .menu-button {
  background: rgba(11, 15, 31, 0.82);
  border-color: rgba(152, 170, 255, 0.16);
  color: #f4f7ff;
}

.theme-dark .hero__visual,
.theme-dark .visual,
.theme-dark .newsletter,
.theme-dark .feature-band,
.theme-dark .hero__callout,
.theme-dark .accent-box,
.theme-dark .drawer__link,
.theme-dark .cart-item,
.theme-dark .quantity-stepper,
.theme-dark .faq-item summary {
  background:
    linear-gradient(180deg, rgba(11, 15, 31, 0.9), rgba(15, 20, 42, 0.95));
  border-color: rgba(152, 170, 255, 0.14);
}

.theme-dark .hero__visual {
  background:
    radial-gradient(circle at 18% 18%, rgba(46, 230, 255, 0.22), transparent 32%),
    radial-gradient(circle at 82% 76%, rgba(199, 125, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(8, 12, 27, 0.98), rgba(14, 19, 41, 0.94));
}

.theme-dark .visual,
.theme-dark .collection-card__visual,
.theme-dark .product-card__visual {
  background:
    radial-gradient(circle at 18% 18%, rgba(46, 230, 255, 0.14), transparent 28%),
    radial-gradient(circle at 82% 76%, rgba(199, 125, 255, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(11, 15, 31, 0.88), rgba(15, 20, 42, 0.98));
}

.theme-dark .hero__callout,
.theme-dark .hero-note {
  box-shadow: 0 16px 34px rgba(4, 8, 22, 0.28);
}

.theme-dark .maintenance-mark {
  filter: drop-shadow(0 0 18px rgba(46, 230, 255, 0.22));
}

.theme-dark .collection-card p,
.theme-dark .product-card p,
.theme-dark .step-card p,
.theme-dark .info-card p,
.theme-dark .quote-card p,
.theme-dark .section__text,
.theme-dark .hero__text,
.theme-dark .collection-copy,
.theme-dark .product-copy,
.theme-dark .maintenance-copy,
.theme-dark .legal-copy,
.theme-dark .muted,
.theme-dark .caption,
.theme-dark .help,
.theme-dark .micro {
  color: rgba(246, 239, 231, 0.72);
}

.theme-dark .input,
.theme-dark .textarea,
.theme-dark .select {
  background: rgba(11, 15, 31, 0.84);
  color: #f7efe4;
  border-color: rgba(152, 170, 255, 0.14);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, -10px, 0);
  }
}

@media (max-width: 1180px) {
  .header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero__grid,
  .split,
  .product-layout,
  .collection-layout,
  .cart-layout,
  .checkout-layout,
  .contact-layout,
  .maintenance-layout,
  .newsletter__grid {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .comparison-grid,
  .steps-grid,
  .benefit-grid,
  .bundle-grid,
  .story-grid,
  .quote-grid,
  .legal-card__grid,
  .hero__metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container,
  .container--wide {
    width: min(100vw - 1.2rem, 100%);
  }

  .header__inner {
    min-height: 5rem;
  }

  .brand__mark {
    width: 10.5rem;
  }

  .brand__subtitle {
    display: none;
  }

  .hero {
    padding-top: 1.2rem;
  }

  .hero__title {
    max-width: 12ch;
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .hero__visual {
    min-height: 420px;
  }

  .section__title,
  .collection-title,
  .product-title,
  .maintenance-title,
  .legal-title {
    font-size: clamp(2rem, 8vw, 3.6rem);
  }

  .card-grid,
  .comparison-grid,
  .steps-grid,
  .benefit-grid,
  .bundle-grid,
  .story-grid,
  .quote-grid,
  .hero__metrics,
  .newsletter__input-row,
  .legal-card__grid {
    grid-template-columns: 1fr;
  }

  .newsletter__input-row {
    gap: 0.65rem;
  }

  .hero__callout {
    right: 0.8rem;
    left: 0.8rem;
    max-width: none;
  }

  .drawer {
    width: min(100vw, 100%);
  }

  .product-gallery__stage,
  .collection-gallery__stage {
    min-height: 420px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  body::before {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
