/* [project]/app/globals.css [app-client] (css) */
﻿:root {
  --lightningcss-light: ;
  --lightningcss-dark: initial;
  color-scheme: dark;
  --bg: #0a1116;
  --panel: #0e151bd6;
  --panel-strong: #0e151bf5;
  --line: #ffffff1a;
  --text: #f4f6f8;
  --muted: #9ba8b4;
  --accent: #ff7c46;
  --accent-soft: #ffb490;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  background: #081015;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

body, h1, h2, h3, h4, p, span, strong, a, button, label, input, textarea, select {
  color: var(--text);
}

input::placeholder, textarea::placeholder {
  color: var(--muted);
  opacity: 1;
}

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

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

button {
  cursor: pointer;
}

body.intro-lock {
  touch-action: none;
  overflow: hidden;
}

body:before {
  content: "";
  z-index: -1;
  pointer-events: none;
  opacity: .64;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320' viewBox='0 0 320 320'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.1'%3E%3Cpath d='M0 64H320M0 128H320M0 192H320M0 256H320'/%3E%3Cpath d='M64 0V320M128 0V320M192 0V320M256 0V320'/%3E%3Cpath d='M0 320L320 0M-64 256L256 -64M64 384L384 64' stroke-opacity='.045'/%3E%3C/g%3E%3Ccircle cx='64' cy='64' r='2' fill='%23ff7c46' fill-opacity='.18'/%3E%3Ccircle cx='256' cy='128' r='1.8' fill='%2354a4ff' fill-opacity='.16'/%3E%3Ccircle cx='128' cy='256' r='1.8' fill='%23ffffff' fill-opacity='.14'/%3E%3C/svg%3E");
  background-position: 50% 0;
  background-size: 256px 256px;
  position: fixed;
  inset: 0;
  -webkit-mask-image: radial-gradient(circle, #000000eb 0%, #000000e0 45%, #00000085 72%, #0000 100%);
  mask-image: radial-gradient(circle, #000000eb 0%, #000000e0 45%, #00000085 72%, #0000 100%);
}

html {
  scrollbar-color: #ff7c46b8 #ffffff12;
}

body::-webkit-scrollbar {
  width: 12px;
}

body::-webkit-scrollbar-track {
  background: linear-gradient(#090f14fa, #070c10fa);
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(#ff9c6feb, #ef6a38e0);
  border: 2px solid #070c10fa;
  border-radius: 8px;
  box-shadow: inset 0 1px #ffffff2e;
}

body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(#ffae88f5, #ff7c46f0);
}

.page-shell-inner, .account-shell, .admin-shell, .admin-login-shell {
  width: min(1620px, 100vw - 32px);
  margin: 0 auto;
}

.card-surface, .config-modal-card, .preview-modal-card, .auth-modal, .cookie-banner, .admin-table-wrap {
  border: 1px solid var(--line);
  background: var(--panel);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-radius: 8px;
}

.eyebrow {
  color: #fff;
  text-transform: uppercase;
  background: #00000080;
  border: 1px solid #ffffff1f;
  border-radius: 8px;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  font-size: .78rem;
  display: inline-flex;
}

.feedback, .muted-copy, .field span, .section-heading p, .hero-screen__content p, .preview-status span, .customer-order-meta span, .draft-card span, .draft-card p, .floating-nav__links a {
  color: #dbe4ea;
}

.floating-nav {
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  transform: translateY(-14px);
}

.floating-nav.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-nav__inner {
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  background: #070d1242;
  border: 1px solid #ffffff14;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
}

.brand-mark {
  color: #f4f6f8;
  font-weight: 700;
}

.floating-nav__links {
  align-items: center;
  gap: 12px;
  display: flex;
}

.floating-nav__links a {
  color: #dbe4ea;
}

.secondary-btn, .cta-inline, .chip, .choice-tile, .status-choice {
  color: #f4f6f8;
  background: #ffffff0a;
  border: 1px solid #ffffff1f;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  display: inline-flex;
}

.cta-inline {
  color: #140f0d;
  background: linear-gradient(#ff9668 0%, #ef6a38 100%);
  border: 0;
  font-weight: 700;
}

.cta-inline.wide {
  width: 100%;
}

.choice-tile.active, .chip.active, .status-choice.active {
  background: #ff7c4624;
  border-color: #ff7c46b3;
}

.color-chip i {
  border: 1px solid #ffffff2e;
  border-radius: 999px;
  width: 16px;
  height: 16px;
}

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

.hero-screen {
  place-items: center;
  min-height: 100svh;
  display: grid;
  position: relative;
  overflow: hidden;
}

.hero-screen__backdrop {
  background: linear-gradient(#060a0d57, #060a0dbd), url("/Background_007.jpeg") center / cover no-repeat;
  position: absolute;
  inset: 0;
  transform: scale(1.02);
}

.hero-screen__content {
  z-index: 1;
  padding: 40px 0;
  position: relative;
}

.hero-screen__content h1 {
  color: #f4f6f8;
  max-width: 750px;
  margin: 18px 0 0;
  font-size: 75px;
  line-height: .94;
}

.hero-screen__content p {
  max-width: 58ch;
  margin: 18px 0 0;
  line-height: 1.7;
}

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

.scroll-indicator {
  z-index: 1;
  color: #ffffffd1;
  background: none;
  border: 0;
  place-items: center;
  gap: 6px;
  display: grid;
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
}

.section-block {
  padding: 72px 0 0;
}

.section-heading h2, .account-hero h1, .admin-header h1 {
  color: #f4f6f8;
  margin: 14px 0 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.section-heading p {
  max-width: 60ch;
  line-height: 1.7;
}

.product-rail {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
  display: grid;
}

.product-showcase-card {
  text-align: left;
  border: 1px solid var(--line);
  background: var(--panel);
  color: #f4f6f8;
  border-radius: 8px;
  gap: 14px;
  padding: 16px;
  display: grid;
}

.product-card-copy h3 {
  color: #f4f6f8;
  margin: 0;
  font-size: 1.36rem;
}

.product-card-copy p {
  color: var(--muted);
  margin: 8px 0 0;
}

.product-thumb {
  background: linear-gradient(#ffffff17, #ffffff05);
  border-radius: 8px;
  align-content: end;
  gap: 8px;
  min-height: 168px;
  padding: 18px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.product-thumb.shape-keychain:after, .product-thumb.shape-sign:after, .product-thumb.shape-tag:after {
  content: "";
  background: #2c2f35;
  border-radius: 8px;
  height: 58px;
  position: absolute;
  inset: auto 16px 18px;
}

.product-thumb.shape-keychain:before {
  content: "";
  z-index: 1;
  border: 3px solid #d9dde3;
  border-radius: 999px;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 64px;
  left: 28px;
}

.product-thumb.shape-sign:after {
  background: #ef6f46;
  height: 48px;
}

.product-thumb.shape-tag:after {
  background: #2f6c55;
  height: 50px;
}

.product-thumb strong, .product-thumb span {
  z-index: 1;
  position: relative;
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 56px;
  display: grid;
}

.process-grid .card-surface {
  padding: 18px;
}

.process-grid h3 {
  color: #f4f6f8;
  margin: 12px 0 0;
}

.process-grid p {
  color: var(--muted);
  margin: 10px 0 0;
  line-height: 1.7;
}

.preview-modal-backdrop {
  z-index: 60;
  place-items: center;
  padding: 20px;
  display: grid;
  position: fixed;
  inset: 0;
}

.solid-backdrop {
  background: #04080adb;
}

.solid-modal {
  background: var(--panel-strong);
}

.auth-modal {
  width: min(480px, 100%);
  padding: 20px;
}

.preview-modal-card {
  width: min(920px, 100%);
  padding: 20px;
}

.preview-modal-head {
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  display: flex;
}

.preview-modal-head h2 {
  color: #f4f6f8;
  margin: 12px 0 0;
}

.config-steps {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  display: flex;
}

.config-steps span {
  min-height: 36px;
  color: var(--muted);
  background: #ffffff0a;
  border-radius: 8px;
  align-items: center;
  padding: 0 12px;
  display: inline-flex;
}

.config-steps span.active {
  color: var(--text);
  background: #ff7c4624;
}

.cleaner-layout, .admin-preview-modal__content {
  grid-template-columns: minmax(0, 1fr) minmax(340px, .92fr);
  gap: 18px;
  margin-top: 18px;
  display: grid;
}

.config-panel, .form-panel, .admin-preview-stage {
  padding: 18px;
}

.live-preview-stage {
  background: #ffffff08;
  border-radius: 8px;
  place-items: center;
  min-height: 430px;
  display: grid;
  overflow: hidden;
}

.render-preview-stage {
  position: relative;
}

.render-preview-placeholder {
  width: 100%;
  min-height: 430px;
  color: var(--muted);
  place-items: center;
  display: grid;
}

.render-preview-loading {
  background: #080c0e99;
  place-items: center;
  gap: 12px;
  display: grid;
  position: absolute;
  inset: 0;
}

.spinner {
  border: 3px solid #ffffff29;
  border-top-color: var(--accent);
  border-radius: 999px;
  width: 34px;
  height: 34px;
  animation: .9s linear infinite spin;
}

.compact-status, .compact-summary, .summary, .customer-order-meta, .admin-detail-grid, .admin-preview-details {
  gap: 12px;
  display: grid;
}

.summary div, .admin-detail-grid > div, .customer-order-meta > div, .admin-preview-details > div, .auth-state-card {
  background: #ffffff08;
  border: 1px solid #ffffff14;
  border-radius: 8px;
  padding: 14px;
}

.summary-total {
  background: #ff7c4614 !important;
  border-color: #ff7c4633 !important;
}

.preview-status {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  display: flex;
}

.field, .field-grid {
  gap: 10px;
  display: grid;
}

.field-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.field-grid-third {
  grid-template-columns: 1.4fr .6fr 1fr;
}

.field input, .field textarea {
  width: 100%;
  color: var(--text);
  background: #ffffff08;
  border: 1px solid #ffffff24;
  border-radius: 8px;
  outline: none;
}

.field input {
  min-height: 50px;
  padding: 0 14px;
}

.field textarea {
  resize: vertical;
  min-height: 108px;
  padding: 12px 14px;
}

.field input:focus, .field textarea:focus {
  border-color: #ff7c46b3;
  box-shadow: 0 0 0 3px #ff7c4624;
}

.chip-row, .choice-row, .action-row, .auth-tabs, .account-hero__actions, .customer-order-actions {
  flex-wrap: wrap;
  gap: 10px;
  display: flex;
}

.stacked-choice-row {
  display: grid;
}

.action-row {
  margin-top: 18px;
}

.wide {
  flex: 240px;
}

.auth-submit {
  margin-top: 18px;
}

.account-shell {
  padding: 110px 0 56px;
}

.account-layout, .account-grid {
  gap: 18px;
  display: grid;
}

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

.account-hero, .draft-card, .customer-order-card, .admin-table-wrap, .cookie-banner {
  z-index: 70;
  border: 1px solid #ffffff14;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  display: flex;
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  box-shadow: 0 24px 70px #00000057;
  background: linear-gradient(#0b1117eb, #090e13f5) !important;
}

.compact-card {
  background: #ffffff08;
  border: 1px solid #ffffff14;
  border-radius: 8px;
}

.draft-list, .customer-order-list, .draft-card, .customer-order-card {
  gap: 12px;
  display: grid;
}

.customer-order-card__top {
  justify-content: space-between;
  align-items: start;
  gap: 12px;
  display: flex;
}

.customer-order-preview {
  border-radius: 12px;
  place-items: center;
  min-height: 72px;
  padding: 14px 20px 14px 52px;
  display: grid;
  position: relative;
  box-shadow: 0 18px 40px #00000038;
}

.status-pill {
  border: 1px solid #ffffff1a;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  font-style: normal;
  display: inline-flex;
}

.status-pending {
  background: #ffc1071f;
}

.status-paid {
  background: #2ecc7129;
}

.status-in_production {
  background: #3498db29;
}

.status-shipped {
  background: #9b59b629;
}

.status-cancelled {
  background: #e74c3c29;
}

.admin-shell {
  width: min(1280px, 100vw - 32px);
  margin: 0 auto;
  padding: 32px 0 56px;
}

.admin-header, .admin-login-card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 8px;
  padding: 24px;
}

.admin-table-wrap {
  margin-top: 20px;
  padding: 0;
  overflow: hidden;
}

.table-toolbar {
  justify-content: space-between;
  margin-top: 18px;
}

.admin-table__head, .admin-table__row {
  grid-template-columns: 1.2fr 1fr 1fr .7fr .9fr .9fr .7fr;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  display: grid;
}

.admin-table__head {
  color: var(--muted);
  text-transform: uppercase;
  background: #ffffff0a;
  font-size: .84rem;
}

.admin-table__row {
  width: 100%;
  color: var(--text);
  text-align: left;
  background: none;
  border: 0;
  border-top: 1px solid #ffffff0f;
}

.admin-table__row.is-open {
  background: #ffffff08;
}

.admin-table__details {
  background: #ffffff05;
  border-top: 1px solid #ffffff0f;
  padding: 0 18px 18px;
}

.admin-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 14px;
}

.admin-detail-actions {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  display: flex;
}

.status-toggle-row {
  flex-wrap: wrap;
  gap: 10px;
  display: flex;
}

.admin-preview-modal__content {
  margin-top: 18px;
}

.solid-stage {
  background: #ffffff0a;
  border-radius: 8px;
}

.table-preview {
  border-radius: 12px;
  min-width: 320px;
  min-height: 84px;
  padding: 16px 22px 16px 54px;
  position: relative;
  box-shadow: 0 24px 60px #00000047;
}

.admin-preview-ring {
  border: 3px solid #d9dde3f5;
  border-radius: 999px;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
}

.compact-details {
  align-content: start;
}

.font-round {
  font-family: Trebuchet MS, Arial, sans-serif;
}

.font-mono {
  font-family: Courier New, monospace;
}

.cookie-banner {
  z-index: 70;
  border: 1px solid #ffffff14;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  display: flex;
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  box-shadow: 0 24px 70px #00000057;
  background: linear-gradient(#0b1117eb, #090e13f5) !important;
}

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

@media (max-width: 1080px) {
  .product-rail, .process-grid, .cleaner-layout, .admin-preview-modal__content, .account-grid, .admin-detail-grid, .field-grid, .field-grid-third {
    grid-template-columns: 1fr;
  }

  .admin-table__head {
    display: none;
  }

  .admin-table__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page-shell-inner, .account-shell, .admin-shell, .admin-login-shell {
    width: min(100vw - 20px, 1220px);
  }

  .floating-nav__inner, .floating-nav__links, .preview-modal-head, .preview-status, .customer-order-card__top, .admin-detail-actions, .cookie-banner {
    z-index: 70;
    border: 1px solid #ffffff14;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    display: flex;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    box-shadow: 0 24px 70px #00000057;
    background: linear-gradient(#0b1117eb, #090e13f5) !important;
  }

  .hero-screen__content h1 {
    font-size: clamp(2.5rem, 14vw, 4.4rem);
  }

  .live-preview-stage, .render-preview-placeholder {
    min-height: 320px;
  }
}

.floating-nav__inner {
  background: #070d1242;
  border-color: #ffffff1f;
  width: 100%;
  max-width: none;
  box-shadow: 0 18px 40px #00000047;
}

.floating-nav__links {
  margin-left: auto;
}

.hero-screen__content {
  text-shadow: 0 8px 30px #000000bd;
}

.section-heading p, .hero-screen__content p, .product-card-copy p, .process-grid p, .muted-copy, .feedback {
  color: #c3d0da;
}

.product-showcase-card {
  background: linear-gradient(#121c23f0, #0a1116f5);
  box-shadow: 0 18px 40px #0000002e;
}

.product-showcase-card:hover {
  border-color: #ff7c4661;
  transition: transform .18s, border-color .18s;
  transform: translateY(-2px);
}

.product-thumb {
  background: radial-gradient(circle at 0 0, #ffffff1f, #ffffff08 55%, #ffffff03);
}

.product-thumb strong, .product-thumb span, .product-card-copy h3, .preview-modal-head h2, .section-heading h2, .process-grid h3, .hero-screen__content h1, .brand-mark {
  color: #f7fafc;
}

.product-thumb span {
  color: #d6e1e8;
}

.config-modal-card, .auth-modal, .preview-modal-card {
  background: #090f14fb;
  box-shadow: 0 34px 90px #0000006b;
}

.config-panel, .form-panel, .admin-preview-stage, .card-surface, .compact-card {
  background: linear-gradient(#121b22f5, #0c1218f5);
}

.live-preview-stage {
  background: linear-gradient(#11171dfa, #0e1318fa);
  border: 1px solid #ffffff0f;
}

.render-preview-placeholder strong, .preview-status span, .field span, .summary span, .summary strong, .config-steps span.active, .chip, .secondary-btn, .choice-tile, .status-choice {
  color: #eef4f8;
}

.field input, .field textarea {
  color: #f5f8fb;
  background: #ffffff0d;
}

.field input[type="email"], .field input[type="password"], .field input[type="text"], .field textarea {
  color: #f5f8fb;
}

.field input:focus, .field textarea:focus {
  background: #ffffff12;
}

.locale-chip {
  color: #dbe6ed;
  background: #ffffff0a;
  border: 1px solid #ffffff1a;
  border-radius: 8px;
  min-height: 40px;
  padding: 0 12px;
}

.locale-chip.active {
  color: #fff4ee;
  background: #ff7c462e;
  border-color: #ff7c46b3;
}

.size-chip {
  padding-right: 36px;
  position: relative;
}

.size-info {
  color: #e9f0f5;
  border: 1px solid #ffffff29;
  border-radius: 999px;
  place-items: center;
  width: 18px;
  height: 18px;
  font-size: .72rem;
  line-height: 1;
  display: inline-grid;
  position: absolute;
  top: 8px;
  right: 8px;
}

.size-tooltip {
  color: #f2f7fa;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  background: #111a22;
  border: 1px solid #ffffff1f;
  border-radius: 8px;
  min-width: 126px;
  padding: 8px 10px;
  font-size: .76rem;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 16px 34px #00000052;
}

.size-info:hover .size-tooltip {
  opacity: 1;
}

.size-tooltip:after {
  content: "";
  border: 6px solid #0000;
  border-top-color: #111a22;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.preview-modal-backdrop {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

@media (max-width: 720px) {
  .floating-nav {
    padding: 10px 10px 0;
  }
}

.intro-overlay {
  z-index: 120;
  opacity: 1;
  background: radial-gradient(circle at 50% 42%, #ff89541f, #0000 22%), radial-gradient(circle, #ffffff0d, #0000 34%), linear-gradient(#020305 0%, #05080b 56%, #030507 100%);
  place-items: center;
  transition: opacity 1.35s;
  display: grid;
  position: fixed;
  inset: 0;
  overflow: hidden;
}

.intro-overlay.is-fading {
  opacity: 0;
  pointer-events: none;
}

.intro-overlay__halo, .intro-overlay__grain {
  position: absolute;
  inset: 0;
}

.intro-overlay__halo {
  filter: blur(26px);
  background: radial-gradient(circle, #ff91602e, #0000 18%), radial-gradient(circle, #ffffff14, #0000 34%);
  transform: scale(1.08);
}

.intro-overlay__grain {
  opacity: .045;
  background-image: radial-gradient(#ffffff14 .5px, #0000 .5px);
  background-size: 20px 20px;
}

.intro-overlay__inner {
  z-index: 1;
  text-align: center;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  opacity: 0;
  background: linear-gradient(#0c121870, #080c102e);
  border: 1px solid #ffffff14;
  border-radius: 8px;
  justify-items: center;
  gap: 18px;
  min-width: min(680px, 100vw - 48px);
  padding: 42px 28px;
  transition: opacity .85s, transform .85s;
  display: grid;
  position: relative;
  transform: translateY(18px)scale(.985);
  box-shadow: 0 34px 90px #00000057;
}

.intro-overlay.is-visible .intro-overlay__inner {
  opacity: 1;
  transform: translateY(0)scale(1);
}

.intro-overlay__brand {
  letter-spacing: .34rem;
  text-transform: uppercase;
  color: #ebf1f59e;
  font-size: .78rem;
}

.intro-overlay__title-wrap {
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  width: 100%;
  display: grid;
}

.intro-overlay__rule {
  background: linear-gradient(90deg, #0000, #ffffff38, #0000);
  height: 1px;
  display: block;
}

.intro-overlay__title {
  color: #f7fafc;
  text-shadow: 0 10px 28px #00000057;
  font-family: Georgia, Times New Roman, serif;
  font-size: clamp(2.2rem, 5.8vw, 5rem);
  font-weight: 600;
  line-height: .92;
}

.intro-overlay__caption {
  letter-spacing: .18rem;
  text-transform: uppercase;
  color: #dfe7ec8a;
  font-size: .92rem;
}

.config-modal-card {
  width: min(1280px, 100%);
  padding: 28px;
}

.cleaner-layout, .admin-preview-modal__content {
  grid-template-columns: minmax(0, 1.14fr) minmax(390px, .86fr);
  gap: 24px;
  margin-top: 24px;
}

.modal-grid-airy .config-panel, .modal-grid-airy .form-panel {
  padding: 22px;
}

.form-panel {
  align-content: start;
  gap: 18px;
  display: grid;
}

.preview-modal-head {
  margin-bottom: 6px;
}

.preview-modal-head h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.preview-status {
  background: #ffffff08;
  border: 1px solid #ffffff0f;
  border-radius: 8px;
  margin-top: 18px;
  padding: 16px 18px;
}

.summary.compact-summary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 4px;
}

.chip {
  min-height: 48px;
}

.render-loader {
  background: #070c10b8;
  border: 1px solid #ffffff14;
  border-radius: 8px;
  justify-items: center;
  gap: 18px;
  padding: 28px 34px;
  display: grid;
  box-shadow: 0 24px 80px #0000005c;
}

.render-loader__rings {
  width: 92px;
  height: 92px;
  position: relative;
}

.render-loader__rings span {
  border: 2px solid #ff7c46f2;
  border-color: #ff7c46f2 #ffb490a6 #0000 #0000;
  border-radius: 999px;
  animation: 1.15s linear infinite render-spin;
  position: absolute;
  inset: 0;
}

.render-loader__rings span:nth-child(2) {
  animation-duration: 1.5s;
  animation-direction: reverse;
  inset: 11px;
}

.render-loader__rings span:nth-child(3) {
  animation-duration: .9s;
  inset: 22px;
}

.render-loader__copy {
  text-align: center;
  gap: 6px;
  display: grid;
}

.render-loader__copy span {
  color: #cbd8e1;
  font-size: .92rem;
}

.account-panel {
  padding: 22px;
}

.account-item-card {
  background: linear-gradient(#141e25e0, #0b1217eb);
  gap: 16px;
  padding: 18px;
}

.account-item-card__top {
  justify-content: space-between;
  align-items: start;
  gap: 14px;
  display: flex;
}

.account-item-card__top p {
  color: #e6edf2;
  margin: 6px 0 0;
  font-size: 1.05rem;
}

.account-item-card__meta {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.account-item-card__meta span {
  color: #d9e4ec;
  background: #ffffff0a;
  border: 1px solid #ffffff14;
  border-radius: 999px;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
}

.account-card-actions {
  flex-wrap: wrap;
  gap: 10px;
  display: flex;
}

.account-size-pill {
  background: #ff7c461f;
}

.customer-order-preview--clean {
  place-items: end start;
  min-height: 118px;
  padding: 20px 22px 20px 62px;
  overflow: hidden;
}

.customer-order-preview__inner {
  gap: 6px;
  display: grid;
}

.customer-order-preview__label {
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .72;
  font-size: .72rem;
}

.customer-order-meta--simple {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.intro-overlay {
  transition: opacity 1.6s;
}

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

@media (max-width: 1080px) {
  .customer-order-meta--simple, .summary.compact-summary {
    grid-template-columns: 1fr;
  }
}

.floating-nav__inner {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  display: grid;
}

.floating-nav__center {
  justify-content: center;
  align-items: center;
  gap: 28px;
  display: flex;
}

.floating-nav__actions {
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  display: flex;
}

.config-modal-card.solid-modal {
  background: #080d12c2;
  border-color: #ffffff1a;
  width: min(1520px, 100vw - 40px);
  max-height: calc(100vh - 36px);
  overflow: auto;
}

.modal-layout-wide {
  grid-template-columns: minmax(220px, .7fr) minmax(0, 1.2fr) minmax(360px, .95fr) minmax(260px, .72fr);
  align-items: start;
  gap: 20px;
  margin-top: 24px;
  display: grid;
}

.modal-side, .modal-control-panel, .modal-preview-panel {
  min-height: 100%;
}

.modal-side {
  background: linear-gradient(#121c23f0, #0a1116f5);
  align-content: start;
  gap: 16px;
  padding: 22px;
  display: grid;
}

.modal-side h3 {
  margin: 0;
  font-size: 1.5rem;
}

.modal-side p {
  color: #c4d0d9;
  margin: 0;
  line-height: 1.7;
}

.modal-feature-list, .modal-summary {
  gap: 10px;
  display: grid;
}

.modal-feature-list > div, .modal-summary > div {
  background: #ffffff08;
  border: 1px solid #ffffff14;
  border-radius: 8px;
  gap: 6px;
  padding: 14px;
  display: grid;
}

.modal-feature-list span, .modal-summary span {
  color: #9fb0bc;
  font-size: .84rem;
}

.modal-summary-note {
  background: #ff7c4614;
  border: 1px solid #ff7c462e;
  border-radius: 8px;
  padding: 14px;
}

.modal-summary-note p {
  color: #f1d4c7;
}

.modal-preview-panel, .modal-control-panel {
  padding: 22px;
}

.modal-control-panel .action-row {
  margin-top: 6px;
}

.render-preview-loading {
  background: #05080a3d;
}

.render-loader {
  background: #080d12e0;
  border: 1px solid #ffffff1f;
  min-width: 280px;
  padding: 34px 38px;
}

.render-loader__copy span {
  color: #dbe8ef;
}

.summary.modal-summary {
  grid-template-columns: 1fr;
}

@media (max-width: 1380px) {
  .modal-layout-wide {
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.1fr) minmax(340px, .95fr);
  }

  .modal-side--summary {
    grid-column: 2 / span 2;
  }
}

@media (max-width: 1100px) {
  .floating-nav__inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .floating-nav__center, .floating-nav__actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .modal-layout-wide {
    grid-template-columns: 1fr;
  }

  .modal-side--summary {
    grid-column: auto;
  }
}

.nav-account-link {
  color: #dbe4ea;
}

.config-modal-card.solid-modal {
  background: #080d128f;
  width: min(1480px, 100vw - 40px);
  max-height: calc(100vh - 36px);
  overflow: hidden;
}

.modal-layout-wide {
  grid-template-columns: minmax(360px, .96fr) minmax(0, 1.18fr) minmax(270px, .7fr);
  align-items: start;
  gap: 20px;
  display: grid;
}

.modal-control-panel, .modal-preview-panel, .modal-side {
  min-height: 100%;
}

.modal-control-panel {
  overflow: hidden;
}

.modal-side-head {
  gap: 12px;
  margin-bottom: 6px;
  display: grid;
}

.config-steps.config-steps--timeline {
  background: #ffffff08;
  border: 1px solid #ffffff14;
  border-radius: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  display: grid;
  position: relative;
  overflow: hidden;
}

.config-steps.config-steps--timeline span {
  background: none;
  border-radius: 0;
  align-content: center;
  justify-items: center;
  gap: 8px;
  min-height: 84px;
  padding: 12px 14px;
  display: grid;
  position: relative;
}

.config-steps.config-steps--timeline span + span:before {
  content: "";
  background: #ffffff14;
  width: 1px;
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
}

.config-steps.config-steps--timeline i {
  color: #f4f6f8;
  border: 1px solid #ffffff24;
  border-radius: 999px;
  place-items: center;
  width: 34px;
  height: 34px;
  font-style: normal;
  display: inline-grid;
}

.config-steps.config-steps--timeline strong {
  font-size: .95rem;
  font-weight: 600;
}

.config-steps.config-steps--timeline span.active {
  background: linear-gradient(#ff7c462e, #ff7c4614);
}

.config-steps.config-steps--timeline span.active i {
  background: #ff7c4633;
  border-color: #ff7c468c;
}

.process-grid {
  gap: 20px;
}

.process-stage-card {
  background: linear-gradient(#121c23eb, #0a1116f5);
  padding: 24px;
  position: relative;
  box-shadow: 0 20px 50px #0000002e;
}

.process-stage-card__number {
  color: #fff1ea;
  background: #ff7c462e;
  border: 1px solid #ff7c466b;
  border-radius: 999px;
  place-items: center;
  width: 42px;
  height: 42px;
  font-weight: 700;
  display: inline-grid;
}

.process-stage-card h3 {
  margin-top: 18px;
}

.process-stage-card p {
  margin-top: 12px;
}

@media (max-width: 1380px) {
  .modal-layout-wide {
    grid-template-columns: minmax(320px, .92fr) minmax(0, 1.1fr);
  }

  .modal-side--summary {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1100px) {
  .modal-layout-wide {
    grid-template-columns: 1fr;
  }

  .modal-side--summary {
    grid-column: auto;
  }

  .config-modal-card.solid-modal {
    overflow: auto;
  }

  .config-steps.config-steps--timeline {
    grid-template-columns: 1fr;
  }

  .config-steps.config-steps--timeline span + span:before {
    display: none;
  }
}

.section-heading--wide {
  max-width: 760px;
}

.product-rail {
  gap: 20px;
}

.product-showcase-card {
  background: linear-gradient(#141f27eb, #0b1218f5), radial-gradient(circle at 100% 0, #ff7c462e, #0000 42%);
  gap: 18px;
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.product-showcase-card:after {
  content: "";
  pointer-events: none;
  border-radius: 8px;
  position: absolute;
  inset: 0;
  box-shadow: inset 0 1px #ffffff0f;
}

.product-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px #0000003d;
}

.product-thumb {
  min-height: 196px;
  padding: 20px;
}

.product-card-copy h3 {
  font-size: 1.5rem;
}

.product-card-footer {
  color: #dbe6ee;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 4px;
  display: flex;
}

.product-card-footer span {
  color: #adc0cc;
  font-size: .92rem;
}

.process-section {
  padding-top: 88px;
  padding-bottom: 64px;
}

.process-grid {
  gap: 22px;
  margin-top: 26px;
  position: relative;
}

.process-grid:before {
  content: "";
  background: linear-gradient(90deg, #0000, #ffffff29, #0000);
  height: 1px;
  position: absolute;
  top: 22px;
  left: 10%;
  right: 10%;
}

.process-stage-card {
  min-height: 220px;
  padding: 26px;
}

.process-stage-card__number {
  box-shadow: 0 10px 24px #ff7c462e;
}

.config-modal-card.solid-modal {
  background: #080d1270;
  width: min(1320px, 100vw - 56px);
  padding: 22px;
  overflow: auto;
}

.preview-modal-backdrop.solid-backdrop {
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: #060a0e47;
}

.modal-layout-wide {
  grid-template-columns: minmax(320px, .86fr) minmax(0, 1.08fr) minmax(240px, .58fr);
  gap: 18px;
}

.modal-control-panel, .modal-preview-panel, .modal-side--summary {
  padding: 18px;
}

.modal-control-panel {
  gap: 14px;
}

.modal-side-head h3 {
  font-size: 1.42rem;
}

.modal-side-head p {
  color: #bfd0da;
  line-height: 1.65;
}

.live-preview-stage, .render-preview-placeholder {
  min-height: 470px;
}

.modal-preview-panel .preview-status {
  margin-top: 14px;
}

.modal-side--summary {
  align-content: start;
}

.modal-summary {
  gap: 10px;
}

.modal-summary-note {
  margin-top: 4px;
}

.field {
  gap: 8px;
}

.field input, .field textarea {
  min-width: 0;
}

.chip-row {
  gap: 10px;
}

.chip {
  min-height: 46px;
  padding: 0 12px;
}

.action-row {
  grid-template-columns: 140px 1fr;
  gap: 12px;
  display: grid;
}

.action-row .wide {
  flex: initial;
}

.render-loader {
  border-radius: 8px;
  min-width: 250px;
  padding: 26px 28px;
}

.render-loader__copy strong {
  font-size: 1rem;
}

.floating-nav__inner {
  grid-template-columns: auto 1fr auto;
}

.floating-nav__center {
  justify-content: center;
  gap: 32px;
}

.floating-nav__actions {
  gap: 8px;
}

.nav-account-link {
  margin-right: 4px;
}

@media (max-width: 1100px) {
  .process-grid:before {
    display: none;
  }

  .modal-layout-wide, .action-row {
    grid-template-columns: 1fr;
  }
}

.configurator-page-shell {
  min-height: 100vh;
  padding: 32px 0 48px;
  position: relative;
  overflow-x: hidden;
}

.configurator-page-shell__backdrop {
  z-index: -1;
  background: linear-gradient(#060a0de0, #060a0df0), url("/Background_005.webp") center / cover no-repeat;
  position: fixed;
  inset: 0;
}

.configurator-page-shell__inner {
  gap: 18px;
  width: min(1460px, 100vw - 28px);
  margin: 0 auto;
  display: grid;
}

.configurator-page-header {
  justify-content: space-between;
  align-items: start;
  gap: 18px;
  padding: 22px;
  display: flex;
}

.configurator-page-header h1 {
  margin: 14px 0 0;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.configurator-page-header p {
  color: #c7d4dc;
  margin: 10px 0 0;
}

.configurator-layout-page {
  grid-template-columns: minmax(340px, .92fr) minmax(520px, 1.28fr) minmax(250px, .64fr);
  align-items: start;
  gap: 18px;
  display: grid;
}

.configurator-preview-panel .live-preview-stage, .configurator-preview-panel .render-preview-placeholder {
  min-height: 600px;
}

.action-row--triple {
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.1fr) minmax(0, 1.15fr);
  align-items: stretch;
  gap: 10px;
}

.action-row--triple .secondary-btn, .action-row--triple .cta-inline {
  white-space: normal;
  text-align: center;
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  line-height: 1.15;
}

.configurator-page-header {
  width: min(1460px, 100vw - 28px);
  margin: 0 auto;
}

.configurator-page-shell .config-steps {
  width: min(1460px, 100vw - 28px);
  margin-left: auto;
  margin-right: auto;
}

.configurator-page-shell .modal-control-panel, .configurator-page-shell .configurator-preview-panel, .configurator-page-shell .modal-side--summary {
  padding: 22px;
}

.configurator-page-shell .modal-control-panel {
  min-width: 0;
}

.configurator-page-shell .modal-control-panel p, .configurator-page-shell .modal-control-panel h3 {
  max-width: 28ch;
}

.configurator-page-shell .modal-control-panel .field {
  min-width: 0;
}

.configurator-page-shell .modal-control-panel .chip-row {
  gap: 10px;
}

.configurator-page-shell .modal-control-panel .chip {
  flex: 0 auto;
}

@media (max-width: 1100px) {
  .configurator-layout-page, .action-row--triple {
    grid-template-columns: 1fr;
  }

  .configurator-page-header {
    flex-direction: column;
  }
}

.landing-keychain-preview {
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.landing-keychain-preview__shell, .landing-keychain-preview__canvas, .landing-keychain-preview__fallback {
  position: absolute;
  inset: 0;
}

.landing-keychain-preview__canvas {
  opacity: 0;
  transition: opacity .28s;
}

.landing-keychain-preview__canvas.is-ready {
  opacity: 1;
}

.product-thumb--3d {
  background: radial-gradient(circle at 24% 18%, #ff7c4624, #0000 32%), linear-gradient(#12191ffa, #080d12fa);
  align-content: stretch;
  min-height: 196px;
  padding: 0;
}

.product-thumb--3d:before, .product-thumb--3d:after {
  display: none;
}

.landing-keychain-preview {
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.landing-keychain-preview__fallback {
  opacity: .92;
}

.landing-keychain-preview__state {
  background: linear-gradient(#1b232ab8, #0d1217e0);
  border: 1px solid #ffffff0f;
  border-radius: 8px;
  align-content: end;
  gap: 6px;
  padding: 16px;
  display: grid;
  position: absolute;
  inset: 14px;
}

.landing-keychain-preview__state strong {
  color: #f5f8fb;
  font-size: .98rem;
}

.landing-keychain-preview__state span {
  color: #b8c8d3;
  font-size: .84rem;
  line-height: 1.5;
}

.landing-keychain-preview__mesh, .landing-keychain-preview__glow {
  position: absolute;
  inset: 0;
}

.landing-keychain-preview__mesh {
  opacity: .22;
  background-image: linear-gradient(#ffffff09 1px, #0000 1px), linear-gradient(90deg, #ffffff08 1px, #0000 1px);
  background-size: 32px 32px;
}

.landing-keychain-preview__glow {
  background: radial-gradient(circle at 24% 22%, #ff7c4638, #0000 24%), radial-gradient(circle at 74% 68%, #54a4ff2e, #0000 28%);
}

.landing-keychain-preview__keychain {
  aspect-ratio: 2.7;
  filter: drop-shadow(0 26px 34px #00000057);
  width: min(78%, 360px);
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%)rotate(-9deg);
}

.landing-keychain-preview__body, .landing-keychain-preview__ring, .landing-keychain-preview__text {
  display: block;
  position: absolute;
}

.landing-keychain-preview__body {
  background: linear-gradient(#2c343cfa, #12181dfa), linear-gradient(90deg, #ffffff1f, #0000 26%);
  border-radius: 18px;
  inset: 18% 10% 18% 4%;
  box-shadow: inset 0 1px #ffffff1f, inset -16px 0 24px #0000003d;
}

.landing-keychain-preview__ring {
  aspect-ratio: 1;
  border: 10px solid #c6ced6eb;
  border-radius: 999px;
  width: 18%;
  top: 18%;
  right: 3%;
  box-shadow: inset 0 1px #ffffff73, 0 8px 18px #00000040;
}

.landing-keychain-preview__text {
  color: #f5f8fb;
  letter-spacing: .02em;
  text-shadow: 0 4px 18px #00000057;
  font-family: Georgia, Times New Roman, serif;
  font-size: clamp(1.4rem, 2.8vw, 2.25rem);
  font-weight: 700;
  inset: 35% 18% auto 11%;
}

.cookie-banner strong {
  color: #f6f9fb;
  margin: 0 0 6px;
  font-size: .98rem;
  display: block;
}

.cookie-banner p {
  color: #c6d3dc;
  margin: 0;
  line-height: 1.65;
}

.cookie-banner .cta-inline {
  color: #081015;
}

.floating-nav {
  padding: 14px 18px 0;
  top: 0;
}

.floating-nav__inner {
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
  background: linear-gradient(#0a10169e, #070c1270);
  border: 1px solid #ffffff14;
  border-radius: 8px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin: 0 auto;
  padding: 12px 18px;
  display: grid;
  box-shadow: 0 18px 40px #00000047;
}

.brand-mark {
  justify-self: start;
}

.floating-nav__center {
  justify-content: center;
  justify-self: center;
  align-items: center;
  gap: 32px;
  display: inline-flex;
}

.floating-nav__center a {
  color: #e6eef4;
}

.floating-nav__actions {
  justify-content: flex-end;
  justify-self: end;
  align-items: center;
  gap: 8px;
  display: flex;
}

.cookie-banner {
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
  border: 1px solid #ffffff14;
  border-radius: 8px;
  width: min(1220px, 100vw - 32px);
  padding: 12px 18px;
  bottom: 18px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  box-shadow: 0 18px 40px #00000047;
  background: linear-gradient(#0a10169e, #070c1270) !important;
}

.cookie-banner strong {
  color: #f5f8fb;
  margin: 0 0 4px;
  font-size: .92rem;
  font-weight: 700;
}

.cookie-banner p {
  color: #d3dee6;
  font-size: .92rem;
  line-height: 1.55;
}

.cookie-banner .cta-inline {
  color: #081015;
  justify-content: center;
  min-width: 164px;
}

.hero-screen__content {
  text-align: right;
  justify-items: end;
  padding: 40px 0;
  display: grid;
}

.hero-screen__content h1 {
  letter-spacing: 0;
  max-width: 820px;
  margin: 18px 0 0 auto;
  font-family: Georgia, Times New Roman, serif;
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  font-weight: 700;
  line-height: .92;
}

.hero-screen__content p {
  max-width: 48ch;
  margin: 18px 0 0 auto;
}

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

@media (max-width: 1100px) {
  .floating-nav__inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .brand-mark, .floating-nav__center, .floating-nav__actions {
    justify-self: center;
  }

  .floating-nav__actions, .floating-nav__center {
    flex-wrap: wrap;
  }

  .cookie-banner {
    width: min(100vw - 20px, 1220px);
  }

  .hero-screen__content {
    text-align: left;
    justify-items: start;
  }

  .hero-screen__content h1, .hero-screen__content p {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }
}

body {
  overflow-x: hidden;
}

.floating-nav {
  padding: 0;
  top: 0;
  left: 0;
  right: 0;
}

.floating-nav__inner {
  width: 100%;
  max-width: none;
  box-shadow: none;
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
  background: linear-gradient(#0a1016b8, #070c1280);
  border: 0;
  border-bottom: 1px solid #ffffff14;
  border-radius: 0;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  margin: 0;
  padding: 14px 26px;
}

.floating-nav__center {
  place-self: center;
  gap: 34px;
}

.floating-nav__center a, .nav-account-link {
  color: #ebf2f7;
  font-size: .96rem;
}

.floating-nav__actions {
  justify-self: end;
  gap: 10px;
}

.cookie-banner {
  width: 100%;
  box-shadow: none;
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
  border: 0;
  border-top: 1px solid #ffffff14;
  border-radius: 0;
  padding: 14px 26px;
  bottom: 0;
  left: 0;
  right: 0;
  transform: none;
  background: linear-gradient(#0a1016b8, #070c1280) !important;
}

.cookie-banner strong, .cookie-banner p {
  max-width: none;
}

.hero-screen__content {
  text-align: right;
  align-content: center;
  justify-items: end;
  width: min(1620px, 100vw - 32px);
  display: grid;
}

.hero-screen__content h1 {
  text-wrap: balance;
  width: min(860px, 100%);
  margin: 0;
  font-family: Georgia, Times New Roman, serif;
  font-size: clamp(3.5rem, 6vw, 6.4rem);
  font-weight: 700;
  line-height: .92;
}

.hero-screen__content p {
  width: min(520px, 100%);
  margin: 20px 0 0;
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  line-height: 1.65;
}

.hero-actions {
  justify-content: flex-end;
  margin-top: 30px;
}

.product-slider-shell {
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}

.product-slider-shell:before, .product-slider-shell:after {
  content: "";
  z-index: 2;
  pointer-events: none;
  width: 72px;
  position: absolute;
  top: 0;
  bottom: 0;
}

.product-slider-shell:before {
  background: linear-gradient(90deg, #081015 0%, #08101500 100%);
  left: 0;
}

.product-slider-shell:after {
  background: linear-gradient(270deg, #081015 0%, #08101500 100%);
  right: 0;
}

.product-rail {
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  grid-auto-columns: minmax(320px, 34vw);
  grid-auto-flow: column;
  gap: 18px;
  padding: 6px 10px 12px;
  display: grid;
  overflow-x: auto;
}

.product-rail::-webkit-scrollbar {
  display: none;
}

.product-showcase-card {
  scroll-snap-align: start;
  min-height: 100%;
  box-shadow: none;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: linear-gradient(#121b2275, #0a101547);
  border: 0;
  border-radius: 8px;
  gap: 16px;
  padding: 0;
  overflow: hidden;
}

.product-showcase-card:after {
  display: none;
}

.product-showcase-card:hover {
  box-shadow: none;
  border-color: #0000;
  transform: translateY(-2px);
}

.product-thumb {
  background: linear-gradient(#ffffff0f, #ffffff05);
  border-radius: 0;
  min-height: 260px;
}

.product-card-copy, .product-card-footer {
  padding: 0 20px;
}

.product-card-copy {
  gap: 10px;
  display: grid;
}

.product-card-copy__eyebrow {
  letter-spacing: .16rem;
  text-transform: uppercase;
  margin: 0;
  font-size: .78rem;
  color: #e3ecf299 !important;
}

.product-card-copy h3 {
  font-family: Georgia, Times New Roman, serif;
  font-size: clamp(1.8rem, 2.2vw, 2.4rem);
  line-height: .96;
}

.product-card-copy p:last-child {
  max-width: 28ch;
  margin: 0;
  line-height: 1.7;
}

.product-card-footer {
  justify-content: space-between;
  align-items: center;
  padding-bottom: 22px;
}

.product-card-footer strong {
  color: #fff0e7;
}

.product-thumb.shape-keychain:before, .product-thumb.shape-keychain:after, .product-thumb.shape-sign:after, .product-thumb.shape-tag:after {
  display: none;
}

.process-stage-card, .product-showcase-card, .card-surface, .compact-card, .config-panel, .form-panel {
  box-shadow: none;
}

@media (max-width: 1100px) {
  .floating-nav__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 12px 16px;
  }

  .floating-nav__actions, .floating-nav__center {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cookie-banner {
    padding: 14px 16px;
  }

  .hero-screen__content {
    text-align: left;
    justify-items: start;
  }

  .hero-screen__content h1, .hero-screen__content p {
    width: 100%;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .product-rail {
    grid-auto-columns: minmax(280px, 82vw);
  }

  .product-slider-shell:before, .product-slider-shell:after {
    display: none;
  }
}

.product-section {
  padding-top: 104px;
}

.scroll-stack__end {
  height: 1px;
}

.scroll-stack-card {
  transform-origin: top;
  will-change: transform, opacity;
  position: relative;
}

.product-showcase-card--stacked {
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  backdrop-filter: blur(18px) saturate(120%);
  background: linear-gradient(#0d141ae0, #080c11c7), radial-gradient(circle at 100% 0, #69bcff1a, #0000 34%), radial-gradient(circle at 0 100%, #ff966814, #0000 26%);
  border: 1px solid #ffffff0f;
  border-radius: 8px;
  grid-template-columns: minmax(360px, 1.08fr) minmax(260px, .9fr);
  gap: 0;
  min-height: 360px;
  display: grid;
  overflow: hidden;
}

.product-showcase-card--stacked .product-thumb {
  background: linear-gradient(#ffffff0a, #ffffff04);
  border-radius: 0;
  min-height: 360px;
}

.product-showcase-card--stacked .product-card-copy, .product-showcase-card--stacked .product-card-footer {
  padding-left: 28px;
  padding-right: 28px;
}

.product-showcase-card--stacked .product-card-copy {
  align-content: end;
  padding-top: 32px;
}

.product-showcase-card--stacked .product-card-copy h3 {
  margin: 0;
  font-family: Georgia, Times New Roman, serif;
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: .94;
}

.product-showcase-card--stacked .product-card-copy p:last-child {
  color: #c8d6df;
  max-width: 30ch;
  margin-top: 8px;
}

.product-showcase-card--stacked .product-card-footer {
  justify-content: space-between;
  align-items: end;
  padding-bottom: 28px;
  display: flex;
}

.product-showcase-card--stacked .product-card-footer span {
  color: #aebfca;
  font-size: .92rem;
}

.product-showcase-card--stacked .product-card-footer strong {
  color: #f7f3ef;
  font-size: 1rem;
}

.product-showcase-card--stacked .product-thumb.shape-keychain:before, .product-showcase-card--stacked .product-thumb.shape-keychain:after, .product-showcase-card--stacked .product-thumb.shape-sign:after, .product-showcase-card--stacked .product-thumb.shape-tag:after {
  display: none;
}

.process-stage-card, .product-showcase-card, .card-surface, .compact-card, .config-panel, .form-panel, .intro-overlay__inner {
  box-shadow: none;
}

.intro-overlay__inner {
  background: linear-gradient(#090e1257, #060a0e24);
  border-color: #ffffff0f;
}

.intro-overlay__brand, .intro-overlay__caption {
  color: #e3ecf294;
}

@media (max-width: 1100px) {
  .product-stack-card {
    max-width: 100%;
  }

  .product-showcase-card--stacked {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .product-showcase-card--stacked .product-thumb {
    min-height: 280px;
  }

  .product-showcase-card--stacked .product-card-copy, .product-showcase-card--stacked .product-card-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .scroll-stack__inner {
    padding: 4vh 0 18vh;
  }
}

.scroll-stack-card {
  transform-origin: top;
  backface-visibility: hidden;
  will-change: transform, opacity;
  position: relative;
  transform: translateZ(0);
}

.product-stack .scroll-stack-card-wrapper:not(:last-child) {
  margin-bottom: 140px;
}

.border-glow-bits-card {
  --edge-proximity: 0;
  --cursor-angle: 45deg;
  --edge-sensitivity: 30;
  --border-radius: 28px;
  --glow-padding: 58px;
  --cone-spread: 25;
  border-radius: var(--border-radius);
  isolation: isolate;
  background: none;
  width: 100%;
  display: block;
  position: relative;
  overflow: visible;
}

.border-glow-bits-card:before, .border-glow-bits-card > .edge-light {
  content: "";
  pointer-events: none;
  transition: opacity .18s ease-out;
  position: absolute;
}

.border-glow-bits-card:before {
  z-index: 2;
  border-radius: inherit;
  background: linear-gradient(transparent 0 100%) padding-box, linear-gradient(#fff0 0% 100%) border-box, var(--gradient-one, radial-gradient(at 80% 55%, #be85ff 0px, transparent 50%)) border-box, var(--gradient-two, radial-gradient(at 69% 34%, #ff7a93 0px, transparent 50%)) border-box, var(--gradient-three, radial-gradient(at 8% 6%, #8fffad 0px, transparent 50%)) border-box, var(--gradient-four, radial-gradient(at 41% 38%, #47daff 0px, transparent 50%)) border-box, var(--gradient-five, radial-gradient(at 86% 85%, #7af2ff 0px, transparent 50%)) border-box, var(--gradient-six, radial-gradient(at 82% 18%, #ffe74c 0px, transparent 50%)) border-box, var(--gradient-seven, radial-gradient(at 51% 4%, #ff8d70 0px, transparent 50%)) border-box, var(--gradient-base, linear-gradient(#c299ff 0 100%)) border-box;
  opacity: calc(var(--edge-proximity) / 100);
  -webkit-mask-image: conic-gradient(from var(--cursor-angle) at center, black calc(var(--cone-spread) * 1%), transparent calc((var(--cone-spread)  + 10) * 1%), transparent calc((100 - var(--cone-spread)  - 10) * 1%), black calc((100 - var(--cone-spread)) * 1%));
  mask-image: conic-gradient(from var(--cursor-angle) at center, black calc(var(--cone-spread) * 1%), transparent calc((var(--cone-spread)  + 10) * 1%), transparent calc((100 - var(--cone-spread)  - 10) * 1%), black calc((100 - var(--cone-spread)) * 1%));
  border: 1px solid #0000;
  inset: 0;
}

.border-glow-bits-card > .edge-light {
  inset: calc(var(--glow-padding) * -1);
  z-index: 1;
  border-radius: inherit;
  opacity: calc(var(--edge-proximity) / 100);
  mix-blend-mode: screen;
  -webkit-mask-image: conic-gradient(from var(--cursor-angle) at center, black 3%, transparent 12%, transparent 88%, black 97%);
  mask-image: conic-gradient(from var(--cursor-angle) at center, black 3%, transparent 12%, transparent 88%, black 97%);
}

.border-glow-bits-card:not(:hover):not(.sweep-active):before, .border-glow-bits-card:not(:hover):not(.sweep-active) > .edge-light {
  opacity: 0;
}

.border-glow-bits-inner {
  z-index: 0;
  border-radius: inherit;
  width: 100%;
  display: block;
  position: relative;
}

.intro-glow-shell {
  width: min(980px, 100vw - 64px);
}

.scroll-stack {
  position: relative;
}

.scroll-stack__inner {
  gap: 0;
  padding: 4vh 0 18vh;
  display: grid;
}

.scroll-stack-card-wrapper {
  min-height: 72vh;
  position: relative;
}

.scroll-stack-card {
  transform-origin: top;
  backface-visibility: hidden;
  will-change: transform;
  position: sticky;
  top: 14vh;
  transform: translateZ(0);
}

.product-stack-card {
  max-width: min(980px, 100%);
}

.product-showcase-card--stacked {
  background: linear-gradient(#0d141ae6, #080c11d1), radial-gradient(circle at 100% 0, #59a3ff1c, #0000 34%), radial-gradient(circle at 0 100%, #7d56ff1a, #0000 26%);
  border: 1px solid #ffffff0f;
  border-radius: 8px;
  grid-template-columns: minmax(360px, 1.08fr) minmax(260px, .9fr);
  gap: 0;
  min-height: 360px;
  display: grid;
  overflow: hidden;
}

.product-showcase-card--stacked:hover {
  transform: none;
}

.product-showcase-card--stacked .product-thumb {
  min-height: 360px;
}

.intro-overlay {
  background: radial-gradient(circle at 50% 42%, #5fb3ff14, #0000 24%), radial-gradient(circle, #ffffff09, #0000 34%), linear-gradient(#020507 0%, #050b0f 56%, #03070a 100%);
}

.intro-overlay__halo {
  filter: blur(24px);
  background: radial-gradient(circle, #55b0ff1a, #0000 18%), radial-gradient(circle, #c084fc14, #0000 30%);
}

@media (max-width: 1100px) {
  .intro-glow-shell {
    width: min(100vw - 28px, 980px);
  }

  .scroll-stack-card-wrapper {
    min-height: 62vh;
  }

  .scroll-stack-card {
    top: 10vh;
  }

  .product-stack .scroll-stack-card-wrapper:first-child .scroll-stack-card, .product-stack .scroll-stack-card-wrapper:nth-child(2) .scroll-stack-card, .product-stack .scroll-stack-card-wrapper:nth-child(3) .scroll-stack-card {
    transform: none;
  }
}

.border-glow-bits-card {
  --edge-proximity: 0;
  --cursor-angle: 45deg;
  --edge-sensitivity: 30;
  --color-sensitivity: calc(var(--edge-sensitivity)  + 20);
  --border-radius: 28px;
  --glow-padding: 58px;
  --cone-spread: 25;
  border-radius: var(--border-radius);
  isolation: isolate;
  background: var(--card-bg, #060010);
  width: 100%;
  box-shadow: none;
  border: 1px solid #ffffff26;
  display: grid;
  position: relative;
  overflow: visible;
  transform: translate3d(0, 0, .01px);
}

.border-glow-bits-card:before, .border-glow-bits-card:after, .border-glow-bits-card > .edge-light {
  content: "";
  border-radius: inherit;
  transition: opacity .25s ease-out;
  position: absolute;
  inset: 0;
}

.border-glow-bits-card:before, .border-glow-bits-card:after {
  z-index: -1;
}

.border-glow-bits-card:not(:hover):not(.sweep-active):before, .border-glow-bits-card:not(:hover):not(.sweep-active):after, .border-glow-bits-card:not(:hover):not(.sweep-active) > .edge-light {
  opacity: 0;
  transition: opacity .75s ease-in-out;
}

.border-glow-bits-card:before {
  background: linear-gradient(var(--card-bg, #060010) 0 100%) padding-box, linear-gradient(#fff0 0% 100%) border-box, var(--gradient-one, radial-gradient(at 80% 55%, #be85ff 0px, transparent 50%)) border-box, var(--gradient-two, radial-gradient(at 69% 34%, #ff7a93 0px, transparent 50%)) border-box, var(--gradient-three, radial-gradient(at 8% 6%, #8fffad 0px, transparent 50%)) border-box, var(--gradient-four, radial-gradient(at 41% 38%, #47daff 0px, transparent 50%)) border-box, var(--gradient-five, radial-gradient(at 86% 85%, #7af2ff 0px, transparent 50%)) border-box, var(--gradient-six, radial-gradient(at 82% 18%, #ffe74c 0px, transparent 50%)) border-box, var(--gradient-seven, radial-gradient(at 51% 4%, #ff8d70 0px, transparent 50%)) border-box, var(--gradient-base, linear-gradient(#c299ff 0 100%)) border-box;
  opacity: calc((var(--edge-proximity)  - var(--color-sensitivity)) / (100 - var(--color-sensitivity)));
  -webkit-mask-image: conic-gradient(from var(--cursor-angle) at center, black calc(var(--cone-spread) * 1%), transparent calc((var(--cone-spread)  + 15) * 1%), transparent calc((100 - var(--cone-spread)  - 15) * 1%), black calc((100 - var(--cone-spread)) * 1%));
  mask-image: conic-gradient(from var(--cursor-angle) at center, black calc(var(--cone-spread) * 1%), transparent calc((var(--cone-spread)  + 15) * 1%), transparent calc((100 - var(--cone-spread)  - 15) * 1%), black calc((100 - var(--cone-spread)) * 1%));
  border: 1px solid #0000;
}

.border-glow-bits-card:after {
  background: var(--gradient-one, radial-gradient(at 80% 55%, #be85ff 0px, transparent 50%)) padding-box, var(--gradient-two, radial-gradient(at 69% 34%, #ff7a93 0px, transparent 50%)) padding-box, var(--gradient-three, radial-gradient(at 8% 6%, #8fffad 0px, transparent 50%)) padding-box, var(--gradient-four, radial-gradient(at 41% 38%, #47daff 0px, transparent 50%)) padding-box, var(--gradient-five, radial-gradient(at 86% 85%, #7af2ff 0px, transparent 50%)) padding-box, var(--gradient-six, radial-gradient(at 82% 18%, #ffe74c 0px, transparent 50%)) padding-box, var(--gradient-seven, radial-gradient(at 51% 4%, #ff8d70 0px, transparent 50%)) padding-box, var(--gradient-base, linear-gradient(#c299ff 0 100%)) padding-box;
  -webkit-mask-image: linear-gradient(to bottom, black, black), radial-gradient(ellipse at 50% 50%, black 40%, transparent 65%), radial-gradient(ellipse at 66% 66%, black 5%, transparent 40%), radial-gradient(ellipse at 33% 33%, black 5%, transparent 40%), radial-gradient(ellipse at 66% 33%, black 5%, transparent 40%), radial-gradient(ellipse at 33% 66%, black 5%, transparent 40%), conic-gradient(from var(--cursor-angle) at center, transparent 5%, black 15%, black 85%, transparent 95%);
  mask-image: linear-gradient(to bottom, black, black), radial-gradient(ellipse at 50% 50%, black 40%, transparent 65%), radial-gradient(ellipse at 66% 66%, black 5%, transparent 40%), radial-gradient(ellipse at 33% 33%, black 5%, transparent 40%), radial-gradient(ellipse at 66% 33%, black 5%, transparent 40%), radial-gradient(ellipse at 33% 66%, black 5%, transparent 40%), conic-gradient(from var(--cursor-angle) at center, transparent 5%, black 15%, black 85%, transparent 95%);
  opacity: calc(var(--fill-opacity, .5) * (var(--edge-proximity)  - var(--color-sensitivity)) / (100 - var(--color-sensitivity)));
  mix-blend-mode: soft-light;
  border: 1px solid #0000;
  -webkit-mask-composite: source-out, source-over, source-over, source-over, source-over, source-over;
  mask-composite: subtract, add, add, add, add, add;
}

.border-glow-bits-card > .edge-light {
  inset: calc(var(--glow-padding) * -1);
  z-index: 1;
  pointer-events: none;
  -webkit-mask-image: conic-gradient(from var(--cursor-angle) at center, black 2.5%, transparent 10%, transparent 90%, black 97.5%);
  mask-image: conic-gradient(from var(--cursor-angle) at center, black 2.5%, transparent 10%, transparent 90%, black 97.5%);
  opacity: calc((var(--edge-proximity)  - var(--edge-sensitivity)) / (100 - var(--edge-sensitivity)));
  mix-blend-mode: plus-lighter;
}

.border-glow-bits-card > .edge-light:before {
  content: "";
  inset: var(--glow-padding);
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px var(--glow-color, #f5daa3), inset 0 0 1px 0 var(--glow-color-60, #f5daa399), inset 0 0 3px 0 var(--glow-color-50, #f5daa380), inset 0 0 6px 0 var(--glow-color-40, #f5daa366), inset 0 0 15px 0 var(--glow-color-30, #f5daa34d), inset 0 0 25px 2px var(--glow-color-20, #f5daa333), inset 0 0 50px 2px var(--glow-color-10, #f5daa31a), 0 0 1px 0 var(--glow-color-60, #f5daa399), 0 0 3px 0 var(--glow-color-50, #f5daa380), 0 0 6px 0 var(--glow-color-40, #f5daa366), 0 0 15px 0 var(--glow-color-30, #f5daa34d), 0 0 25px 2px var(--glow-color-20, #f5daa333), 0 0 50px 2px var(--glow-color-10, #f5daa31a);
  position: absolute;
}

.border-glow-bits-inner {
  z-index: 1;
  border-radius: inherit;
  flex-direction: column;
  width: 100%;
  display: flex;
  position: relative;
  overflow: visible;
}

.intro-glow-shell {
  background: none;
  width: min(980px, 100vw - 64px);
}

.intro-glow-shell .border-glow-bits-inner {
  background: none;
}

.intro-glow-shell .intro-overlay__inner {
  border-radius: inherit;
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  backdrop-filter: blur(18px) saturate(120%);
  width: 100%;
  min-width: 0;
  box-shadow: none;
  background: #060a0e2e;
  border: 0;
}

.intro-overlay__title-wrap {
  gap: 22px;
}

.intro-overlay__rule {
  opacity: .75;
}

.product-stack {
  margin-top: 40px;
  position: relative;
}

.product-stack .scroll-stack__inner {
  padding: 10vh 0 42vh;
  display: block;
}

.product-stack .scroll-stack-card-wrapper {
  min-height: 100svh;
  position: relative;
}

.product-stack .scroll-stack-card-wrapper + .scroll-stack-card-wrapper {
  margin-top: -58svh;
}

.product-stack .scroll-stack-card {
  transform-origin: 50% 18%;
  will-change: transform;
  width: min(1060px, 100%);
  margin: 0 auto;
  position: sticky;
  top: 14vh;
}

.product-stack .scroll-stack-card-wrapper:first-child {
  z-index: 3;
}

.product-stack .scroll-stack-card-wrapper:nth-child(2) {
  z-index: 2;
}

.product-stack .scroll-stack-card-wrapper:nth-child(3) {
  z-index: 1;
}

.product-stack .scroll-stack-card-wrapper:first-child .scroll-stack-card {
  transform: rotate(-2.2deg)translateX(-18px);
}

.product-stack .scroll-stack-card-wrapper:nth-child(2) .scroll-stack-card {
  transform: rotate(.9deg)translateX(16px)translateY(10px);
}

.product-stack .scroll-stack-card-wrapper:nth-child(3) .scroll-stack-card {
  transform: rotate(-1.1deg)translateX(-12px)translateY(18px);
}

.product-showcase-card--stacked, .product-showcase-card--stacked .product-thumb {
  min-height: 390px;
}

@media (max-width: 1100px) {
  .intro-glow-shell {
    width: min(100vw - 28px, 980px);
  }

  .product-stack .scroll-stack__inner {
    padding: 4vh 0 18vh;
  }

  .product-stack .scroll-stack-card-wrapper {
    min-height: auto;
  }

  .product-stack .scroll-stack-card-wrapper + .scroll-stack-card-wrapper {
    margin-top: 24px;
  }

  .product-stack .scroll-stack-card {
    width: 100%;
    position: relative;
    top: auto;
    transform: none !important;
  }
}

.product-stack.scroll-stack-scroller {
  width: 100%;
  position: relative;
  overflow: visible;
}

.product-stack .scroll-stack-card-wrapper {
  position: relative;
}

.product-stack .scroll-stack-card {
  box-sizing: border-box;
  transform-origin: top;
  width: min(1060px, 100%);
  transform-style: preserve-3d;
  will-change: transform, filter;
  backface-visibility: hidden;
  box-shadow: none;
  border-radius: 8px;
  margin: 0 auto 30px;
  padding: 0;
  position: relative !important;
  top: auto !important;
}

.product-stack .product-showcase-card--stacked, .product-stack .product-showcase-card--stacked .product-thumb {
  min-height: 390px;
}

@media (max-width: 1100px) {
  .product-stack .scroll-stack-inner {
    padding: 10vh 0 12vh;
  }

  .product-stack .scroll-stack-card {
    width: 100%;
    filter: none !important;
    transform: none !important;
  }
}

.product-stack .scroll-stack-card-wrapper {
  min-height: clamp(420px, 72vh, 780px);
}

.product-stack .scroll-stack-card {
  margin: 0 auto;
}

.product-stack .scroll-stack-card-wrapper:first-child .scroll-stack-card {
  z-index: 10;
}

.product-stack .scroll-stack-card-wrapper:nth-child(2) .scroll-stack-card {
  z-index: 11;
}

.product-stack .scroll-stack-card-wrapper:nth-child(3) .scroll-stack-card {
  z-index: 12;
}

.product-stack.scroll-stack-scroller {
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  will-change: scroll-position;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: visible;
  transform: translateZ(0);
}

.product-stack .scroll-stack-inner {
  min-height: 100vh;
  padding: 20vh 0 50rem;
}

.product-stack .scroll-stack-card {
  transform-origin: top;
  will-change: transform, filter;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  box-sizing: border-box;
  width: 100%;
  box-shadow: none;
  border-radius: 8px;
  margin: 30px 0;
  padding: 0;
  position: relative;
  transform: translateZ(0);
}

.product-stack .product-stack-card {
  min-height: 0 !important;
  padding: 0 !important;
}

.product-stack .scroll-stack-end {
  width: 100%;
  height: 1px;
}

.product-stack .product-showcase-card--stacked, .product-stack .product-showcase-card--stacked .product-thumb {
  min-height: 390px;
}

.scroll-stack-scroller {
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  will-change: scroll-position;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: visible auto;
  transform: translateZ(0);
}

.scroll-stack-inner {
  min-height: 100vh;
  padding: 20vh 5rem 50rem;
}

.scroll-stack-card-wrapper {
  position: relative;
}

.scroll-stack-card {
  transform-origin: top;
  will-change: transform, filter;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  box-sizing: border-box;
  border-radius: 40px;
  width: 100%;
  height: 20rem;
  margin: 30px 0;
  padding: 3rem;
  position: relative;
  transform: translateZ(0);
  box-shadow: 0 0 30px #0000001a;
}

.scroll-stack-end {
  width: 100%;
  height: 1px;
}

.product-stack.scroll-stack-scroller {
  scrollbar-width: none;
  padding-right: 6px;
  overscroll-behavior: contain !important;
  -webkit-overflow-scrolling: touch !important;
  scroll-behavior: smooth !important;
  will-change: scroll-position !important;
  width: 100% !important;
  height: 100vh !important;
  max-height: 100vh !important;
  position: relative !important;
  overflow: visible auto !important;
  transform: translateZ(0) !important;
}

.product-stack.scroll-stack-scroller::-webkit-scrollbar {
  display: none;
}

.product-stack.scroll-stack-scroller .scroll-stack-inner {
  min-height: 100vh !important;
  padding: 20vh 0 50rem !important;
  display: block !important;
}

.product-stack.scroll-stack-scroller .scroll-stack-card-wrapper {
  min-height: 0 !important;
  margin: 0 !important;
  position: relative !important;
}

.product-stack.scroll-stack-scroller .scroll-stack-card {
  filter: none;
  box-sizing: border-box !important;
  transform-origin: top !important;
  width: 100% !important;
  height: auto !important;
  transform-style: preserve-3d !important;
  will-change: transform, filter !important;
  backface-visibility: hidden !important;
  box-shadow: none !important;
  border-radius: 8px !important;
  margin: 30px 0 !important;
  padding: 0 !important;
  position: relative !important;
  top: auto !important;
  transform: translateZ(0) !important;
}

.product-stack.scroll-stack-scroller .product-stack-card {
  padding: 0 !important;
}

.product-stack.scroll-stack-scroller .product-showcase-card--stacked {
  grid-template-columns: minmax(360px, 1.08fr) minmax(260px, .9fr) !important;
  min-height: 390px !important;
  display: grid !important;
}

.product-stack.scroll-stack-scroller .scroll-stack-end {
  width: 100% !important;
  height: 1px !important;
}

@media (max-width: 1100px) {
  .product-stack.scroll-stack-scroller {
    padding-right: 0;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .product-stack.scroll-stack-scroller .scroll-stack-inner {
    padding: 4vh 0 12vh !important;
  }

  .product-stack.scroll-stack-scroller .scroll-stack-card {
    filter: none !important;
    transform: none !important;
  }

  .product-stack.scroll-stack-scroller .product-showcase-card--stacked {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }

  .product-stack.scroll-stack-scroller .product-showcase-card--stacked .product-thumb {
    min-height: 280px !important;
  }
}

.product-stack.scroll-stack-scroller {
  height: auto !important;
  max-height: none !important;
  padding-right: 0 !important;
  overflow: visible !important;
}

.product-stack.scroll-stack-scroller .scroll-stack-card-wrapper {
  margin: 0 !important;
}

.product-stack.scroll-stack-scroller .scroll-stack-card {
  width: min(1060px, 100%) !important;
  height: auto !important;
  margin: 30px auto !important;
}

@media (max-width: 1100px) {
  .product-stack.scroll-stack-scroller .scroll-stack-inner {
    padding: 8vh 0 12vh !important;
  }
}

.product-section {
  overflow: visible !important;
}

.product-stack.scroll-stack-scroller {
  isolation: isolate;
  width: 100%;
  position: relative;
  height: auto !important;
  max-height: none !important;
  padding-right: 0 !important;
  overflow: visible !important;
}

.product-stack.scroll-stack-scroller .scroll-stack-inner {
  min-height: auto !important;
  padding: 18vh 0 40rem !important;
}

.product-stack.scroll-stack-scroller .scroll-stack-card {
  background: none;
  width: min(1060px, 100%) !important;
  height: auto !important;
  box-shadow: none !important;
  border-radius: 8px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  position: relative !important;
  top: auto !important;
}

.product-stack.scroll-stack-scroller .scroll-stack-card + .scroll-stack-card {
  margin-top: 0 !important;
}

.product-stack.scroll-stack-scroller .product-stack-card {
  min-height: 0 !important;
}

.product-stack.scroll-stack-scroller .product-showcase-card--stacked {
  align-items: stretch;
  grid-template-columns: minmax(360px, 1.08fr) minmax(260px, .9fr) !important;
  min-height: 390px !important;
  display: grid !important;
}

.product-stack.scroll-stack-scroller .product-showcase-card--stacked .product-thumb {
  min-height: 390px !important;
}

.product-stack.scroll-stack-scroller .product-card-copy {
  align-self: end;
  padding-top: 24px;
}

.product-stack.scroll-stack-scroller .product-card-footer {
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  display: flex;
}

@media (max-width: 1100px) {
  .product-stack.scroll-stack-scroller .scroll-stack-inner {
    padding: 8vh 0 12vh !important;
  }

  .product-stack.scroll-stack-scroller .product-showcase-card--stacked {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }

  .product-stack.scroll-stack-scroller .product-showcase-card--stacked .product-thumb {
    min-height: 280px !important;
  }
}

.product-stack.scroll-stack-scroller .scroll-stack-card-wrap {
  width: min(1060px, 100%);
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

.product-stack.scroll-stack-scroller .scroll-stack-card {
  will-change: transform, filter;
  overflow: visible;
  transform: translate3d(0, 0, 0);
}

.product-stack.scroll-stack-scroller .product-showcase-card--stacked {
  backface-visibility: hidden;
  background: linear-gradient(145deg, #121b22fa, #090f14fa), radial-gradient(circle at 0 0, #ff7c4621, #0000 30%), radial-gradient(circle at 100% 100%, #54a4ff24, #0000 34%);
  border: 1px solid #ffffff14;
  position: relative;
  transform: translateZ(0);
  box-shadow: 0 30px 60px #00000052, inset 0 1px #ffffff0a;
  grid-template-columns: minmax(380px, 1.12fr) minmax(320px, .88fr) !important;
  min-height: 420px !important;
}

.product-stack.scroll-stack-scroller .product-showcase-card--stacked:after {
  content: "";
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(#ffffff08, #0000 22% 78%, #ffffff05);
  position: absolute;
  inset: 0;
}

.product-stack.scroll-stack-scroller .product-showcase-card--stacked .product-thumb {
  background: radial-gradient(circle at 24% 20%, #ffffff21, #0000 24%), linear-gradient(#ffffff14, #ffffff05);
  padding: 28px;
  min-height: 420px !important;
}

.product-stack.scroll-stack-scroller .product-card-copy, .product-stack.scroll-stack-scroller .product-card-footer {
  padding-inline: 28px;
}

.product-stack.scroll-stack-scroller .product-card-copy {
  align-content: end;
  gap: 12px;
  padding-top: 30px;
  display: grid;
}

.product-stack.scroll-stack-scroller .product-card-copy__eyebrow {
  color: #ffb895;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0;
  font-size: .78rem;
}

.product-stack.scroll-stack-scroller .product-card-copy h3 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: .96;
}

.product-stack.scroll-stack-scroller .product-card-copy p:last-child {
  color: #d2dde5;
  max-width: 28ch;
  margin: 0;
  line-height: 1.7;
}

.product-stack.scroll-stack-scroller .product-card-footer {
  border-top: 1px solid #ffffff14;
  padding-top: 20px;
  padding-bottom: 28px;
}

.product-stack.scroll-stack-scroller .product-card-footer span {
  color: #aebdc8;
}

.product-stack.scroll-stack-scroller .product-card-footer strong {
  color: #fff1e7;
}

.product-stack.scroll-stack-scroller .product-thumb.shape-keychain:before, .product-stack.scroll-stack-scroller .product-thumb.shape-keychain:after, .product-stack.scroll-stack-scroller .product-thumb.shape-sign:after, .product-stack.scroll-stack-scroller .product-thumb.shape-tag:after {
  opacity: .28;
}

@media (max-width: 1100px) {
  .product-stack.scroll-stack-scroller .scroll-stack-inner {
    padding: 8vh 0 12vh !important;
  }

  .product-stack.scroll-stack-scroller .scroll-stack-card-wrap {
    width: 100%;
  }

  .product-stack.scroll-stack-scroller .product-showcase-card--stacked {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }

  .product-stack.scroll-stack-scroller .product-showcase-card--stacked .product-thumb {
    min-height: 300px !important;
  }
}

.config-modal-card.solid-modal {
  background: linear-gradient(#080d11fb, #060a0efe) !important;
}

.modal-preview-panel {
  background: linear-gradient(#0d1419fa, #090e12fa), radial-gradient(circle at 100% 0, #54a4ff14, #0000 32%);
  border: 1px solid #ffffff12;
}

.live-preview-stage.render-preview-stage {
  background: radial-gradient(circle at top, #ffffff0d, #0000 26%), linear-gradient(#0d171c 0%, #091115 100%);
  border: 1px solid #ffffff0f;
  min-height: 520px;
}

.render-preview-placeholder {
  color: #dce6ed;
}

.render-preview-placeholder strong {
  color: #f4f8fb;
}

.render-preview-loading {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #04080ab8;
}

.modal-preview-panel .preview-status {
  background: #ffffff08;
  border: 1px solid #ffffff12;
  border-radius: 8px;
  margin-top: 18px;
  padding: 14px 16px;
}

.modal-preview-panel .preview-status span {
  color: #edf4f8;
}

.modal-control-panel, .modal-side.card-surface {
  background: linear-gradient(#121b22fa, #0b1116fa);
}

.modal-side-head p, .modal-summary-note p, .feedback {
  color: #c9d7e0;
}

.config-modal-card, .config-modal-card p, .config-modal-card label, .config-modal-card small, .config-modal-card li {
  color: #e6eff5;
}

.field span, .summary span, .modal-summary span {
  color: #e4edf3;
}

.summary strong, .modal-summary strong, .modal-side-head h3, .preview-modal-head h2 {
  color: #fbfdff;
}

.chip, .choice-tile, .secondary-btn {
  color: #f4f8fb;
}

.chip.color-chip, .choice-tile, .size-chip {
  background: #ffffff0d;
}

.chip.active, .choice-tile.active, .size-chip.active {
  background: #ff7c462e;
  box-shadow: inset 0 0 0 1px #ff7c462e;
}

.field input, .field textarea {
  color: #fbfdff;
  background: #ffffff12;
  border-color: #ffffff24;
}

.field input::placeholder, .field textarea::placeholder {
  color: #c8d6df;
}

.modal-preview-panel .preview-status span, .config-steps span strong, .auth-state-card strong, .auth-state-card p, .render-loader__copy strong, .render-loader__copy span {
  color: #f1f7fb;
}

.config-steps span {
  color: #d9e4eb;
}

.config-steps span i {
  color: #fff3ea;
}

.modal-summary > div, .summary > div {
  background: #ffffff0b;
}

.feedback {
  font-weight: 500;
}

@media (max-width: 1100px) {
  .live-preview-stage.render-preview-stage {
    min-height: 380px;
  }
}

.configurator-page-shell h1, .configurator-page-header h1, .config-modal-card h1, .config-modal-card h2, .config-modal-card h3, .config-modal-card strong {
  color: #fbfdff !important;
}

.product-section {
  padding-inline: 26px;
  position: relative;
  box-shadow: inset 0 1px #ffffff08;
}

.product-section:before, .product-section:after {
  content: none;
}

.product-stack.scroll-stack-scroller .scroll-stack-inner {
  padding: 13vh 0 24rem !important;
}

.product-stack.scroll-stack-scroller .product-showcase-card--stacked {
  -webkit-backdrop-filter: blur(16px) saturate(118%);
  backdrop-filter: blur(16px) saturate(118%);
  background: linear-gradient(135deg, #1c262feb, #0c1218fa), linear-gradient(90deg, #121a21c2 0% 56%, #0a1015eb 56% 100%), radial-gradient(circle at 0 0, #ff7c461f, #0000 28%), radial-gradient(circle at 100% 100%, #54a4ff1f, #0000 30%);
  border-color: #ffffff1a;
  box-shadow: 0 28px 70px #00000047, inset 0 1px #ffffff1f, inset 0 -24px 40px #00000029;
  grid-template-columns: minmax(340px, 1.02fr) minmax(372px, .98fr) !important;
  min-height: 396px !important;
}

.product-stack.scroll-stack-scroller .product-showcase-card--stacked:before {
  content: "";
  opacity: .75;
  pointer-events: none;
  background: linear-gradient(#ffffff1c, #ffffff05 48%, #0000);
  border-radius: 8px 8px 0 0;
  height: 42%;
  position: absolute;
  inset: 1px 1px auto;
}

.product-stack.scroll-stack-scroller .product-showcase-card--stacked .product-thumb {
  background: radial-gradient(circle at 24% 20%, #ffffff29, #0000 24%), radial-gradient(circle at 76% 72%, #54a4ff1a, #0000 26%), linear-gradient(#ffffff14, #ffffff06);
  border-right: 1px solid #ffffff12;
  padding: 28px;
  min-height: 396px !important;
}

.product-stack.scroll-stack-scroller .product-card-copy {
  min-width: 0;
  padding-top: 24px;
  padding-right: 34px;
}

.product-stack.scroll-stack-scroller .product-card-footer {
  background: linear-gradient(#ffffff04, #ffffff08);
  padding-top: 16px;
  padding-bottom: 22px;
  padding-right: 34px;
}

.product-stack.scroll-stack-scroller .product-card-copy__eyebrow {
  overflow-wrap: anywhere;
}

.product-stack.scroll-stack-scroller .product-card-copy h3 {
  overflow-wrap: anywhere;
  word-break: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
  max-width: 100%;
  font-size: clamp(1.62rem, 2.35vw, 2.2rem);
  line-height: 1.02;
}

.product-stack.scroll-stack-scroller .product-card-copy p:last-child {
  max-width: 100%;
}

@media (max-width: 1100px) {
  .product-section {
    padding-inline: 16px;
  }

  .product-stack.scroll-stack-scroller .scroll-stack-inner {
    padding: 8vh 0 12vh !important;
  }

  .product-stack.scroll-stack-scroller .product-showcase-card--stacked .product-thumb {
    border-right: 0;
    min-height: 300px !important;
  }

  .product-stack.scroll-stack-scroller .product-card-copy h3 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
}

/*# sourceMappingURL=app_globals_71f961d1.css.map*/