:root {
  color-scheme: light dark;
  --blue: #4f7cff;
  --purple: #7b5bff;
  --ink: #1d1f27;
  --muted: #6b7280;
  --muted-soft: #9aa1ad;
  --line: rgba(123, 91, 255, 0.12);
  --bg: #ffffff;
  --card: rgba(255, 255, 255, 0.78);
  --card-border: rgba(123, 91, 255, 0.14);
  --wash-top: #ffffff;
  --wash-mid: #f7f3ff;
  --grad: linear-gradient(135deg, #4f7cff, #7b5bff);
  --font: "Sora", system-ui, -apple-system, sans-serif;
  --radius: 22px;
  --shadow-soft: 0 10px 30px rgba(90, 78, 140, 0.06);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1180px;
  --header-h: 72px;
  --media-bg: #f4f1ea;
}

* { box-sizing: border-box; }

.tm {
  font-size: 0.55em;
  font-weight: 600;
  vertical-align: super;
  margin-left: 0.04em;
  position: relative;
  top: -0.2em;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

.page-ambiance {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.page-wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 42% at 50% -8%, rgba(214, 204, 255, 0.42), transparent 58%),
    radial-gradient(ellipse 75% 50% at 12% -5%, rgba(214, 204, 255, 0.28), transparent 58%),
    linear-gradient(180deg, var(--wash-top) 0%, var(--wash-mid) 22%, var(--bg) 55%);
}

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

img { max-width: 100%; display: block; height: auto; }
a { color: var(--blue); text-decoration: none; }

.wrap {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(90, 78, 140, 0.78);
}

.section { padding: clamp(56px, 9vw, 96px) 0; }

.section-band {
  background: linear-gradient(180deg, rgba(247, 243, 255, 0.72) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(247, 243, 255, 0.55) 100%);
  border-block: 1px solid var(--line);
}

.section-head {
  max-width: 640px;
  margin: 0 auto clamp(28px, 4vw, 44px);
  text-align: center;
}

.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: var(--header-h);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(123, 91, 255, 0.08);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
}

.header-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand-logo,
.footer-logo {
  display: block;
  width: auto;
  height: 36px;
  max-width: min(148px, 42vw);
  object-fit: contain;
}

.footer-logo { height: 32px; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-desktop a {
  color: rgba(29, 31, 39, 0.55);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: 999px;
  text-decoration: none;
}

.nav-desktop a:hover { color: var(--ink); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-compact {
  padding: 10px 16px !important;
  min-height: 40px !important;
  font-size: 0.88rem !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 2px;
}

.nav-mobile {
  display: none;
  padding: 8px 20px 18px;
  border-top: 1px solid var(--line);
}

.nav-mobile a {
  display: flex;
  min-height: 48px;
  align-items: center;
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(29, 31, 39, 0.05);
}

body.nav-open .nav-mobile { display: block; }

.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  padding: 14px 26px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.25s var(--ease), filter 0.25s ease, box-shadow 0.25s var(--ease);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #6d5cff, #7b5bff);
  box-shadow: 0 12px 30px rgba(123, 91, 255, 0.26);
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.hero {
  padding: clamp(36px, 7vw, 72px) 0 clamp(48px, 8vw, 80px);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 5vw, 48px);
  align-items: center;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.accent {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  margin: 0 0 22px;
  max-width: 38ch;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.16rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--card-border);
  box-shadow: none;
}

.btn-secondary:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.bonus-badge {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 440px;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.bonus-emoji { font-size: 1.35rem; line-height: 1.2; }

.bonus-badge strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.bonus-badge p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.hero-visual {
  border-radius: 28px;
  overflow: hidden;
  background: var(--media-bg);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-soft);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  object-position: center;
  background: var(--media-bg);
  transition: transform 0.6s var(--ease);
}

.hero-visual:hover img { transform: scale(1.015); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.gallery-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(90, 78, 140, 0.12);
}

.gallery-card .media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex: 0 0 auto;
  aspect-ratio: 3 / 2;
  background: var(--media-bg);
  overflow: hidden;
}

.gallery-card .media.is-square { aspect-ratio: 1 / 1; }
.gallery-card .media.is-portrait { aspect-ratio: 3 / 4; }
.gallery-card .media.is-wide { aspect-ratio: 16 / 9; }

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent;
}

.gallery-card figcaption {
  margin-top: auto;
  padding: 14px 16px 16px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  border-top: 1px solid var(--line);
  background: var(--card);
}

.gallery-wide { grid-column: 1 / -1; }

.banner-strip {
  padding: 8px 0 12px;
}

.banner-strip .media {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 28px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-soft);
  background: var(--media-bg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-strip img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.feature-banner {
  margin: 0 0 14px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-soft);
  background: var(--media-bg);
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.promo-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.promo-pair .gallery-card .media {
  aspect-ratio: 1 / 1;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.step-card {
  padding: 22px 18px;
  border-radius: 22px;
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-soft);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.step-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.included-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(22px, 4vw, 40px);
  align-items: center;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 28px;
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-soft);
}

.included-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.included-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 500;
}

.included-note {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.included-visual {
  border-radius: 20px;
  overflow: hidden;
  background: var(--media-bg);
  border: 1px solid var(--card-border);
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.included-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.included-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.45em;
  border-radius: 999px;
  background: var(--grad);
  flex: 0 0 auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 14px;
  border-radius: 22px;
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease);
}

.product-card:hover { transform: translateY(-3px); }

.product-card .media,
.product-card .media.is-portrait {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  margin-bottom: 12px;
  background: var(--media-bg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card .text-link,
.product-card > p:last-of-type {
  margin-top: auto;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.product-card .media-memorial img {
  object-fit: cover;
  object-position: center 32%;
}

.gallery-card .media.media-fill,
.product-card .media.media-fill {
  background: #dcc9b0;
}

.gallery-card .media.media-fill img,
.product-card .media.media-fill img {
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.08);
}

.product-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.product-card p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.text-link {
  font-size: 0.88rem;
  font-weight: 600;
}

.product-card.is-soon { opacity: 0.88; }

.soon-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 1;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(29, 31, 39, 0.78);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq-item {
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--card-border);
  padding: 0 18px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  min-height: 56px;
  display: block;
  padding: 16px 28px 16px 0;
  font-weight: 600;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
}

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

.faq-item p {
  margin: 0 0 18px;
  color: var(--muted);
}

.final-cta {
  text-align: center;
  padding: clamp(72px, 12vw, 120px) 0;
}

.final-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  letter-spacing: -0.035em;
}

.final-cta p {
  margin: 0 auto 24px;
  max-width: 36ch;
  color: var(--muted);
}

.site-footer {
  padding: 36px 0 44px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  justify-content: space-between;
}

.footer-mark {
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.85rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-copy {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--muted-soft);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.site-footer nav a {
  color: var(--muted);
  font-size: 0.88rem;
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero-inner,
  .included-card,
  .steps-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .nav-desktop,
  .btn-compact { display: none; }
  .menu-toggle { display: inline-grid; }

  .wrap { width: min(100% - 24px, var(--max)); }

  .gallery-grid,
  .product-grid,
  .promo-pair {
    grid-template-columns: 1fr;
  }

  .gallery-wide { grid-column: auto; }

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

  .banner-strip img,
  .feature-banner img,
  .gallery-card img,
  .included-visual img {
    width: 100%;
  }

  .gallery-card figcaption {
    font-size: 0.9rem;
    padding: 12px 14px 14px;
  }

  .bonus-badge { max-width: none; }
}

@media (prefers-color-scheme: dark) {
  :root {
    --blue: #7aa2ff;
    --purple: #9b85ff;
    --ink: #f2f3f7;
    --muted: #a7afbd;
    --muted-soft: #7f8796;
    --line: rgba(155, 133, 255, 0.18);
    --bg: #0f1117;
    --card: rgba(22, 25, 34, 0.92);
    --card-border: rgba(155, 133, 255, 0.22);
    --wash-top: #0f1117;
    --wash-mid: #151822;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.28);
    --grad: linear-gradient(135deg, #7aa2ff, #9b85ff);
    --media-bg: #1a1d27;
  }

  .page-wash {
    background:
      radial-gradient(ellipse 90% 42% at 50% -8%, rgba(123, 91, 255, 0.2), transparent 58%),
      linear-gradient(180deg, #0f1117 0%, #151822 24%, #0f1117 100%);
  }

  .site-header {
    background: rgba(15, 17, 23, 0.94);
    border-bottom-color: rgba(155, 133, 255, 0.14);
  }

  .nav-desktop a { color: rgba(242, 243, 247, 0.62); }
  .nav-desktop a:hover { color: var(--ink); }
  .nav-mobile a { border-bottom-color: rgba(242, 243, 247, 0.08); }

  .section-band {
    background: linear-gradient(180deg, rgba(28, 32, 44, 0.88) 0%, rgba(15, 17, 23, 0.4) 50%, rgba(28, 32, 44, 0.7) 100%);
  }

  .eyebrow { color: rgba(198, 191, 240, 0.86); }

  .btn-secondary {
    background: rgba(30, 34, 46, 0.95);
    color: var(--ink);
    border-color: var(--card-border);
  }

  .soon-badge {
    background: rgba(15, 17, 23, 0.82);
    color: #fff;
  }

  .gallery-card figcaption,
  .product-card h3,
  .faq-item summary {
    color: var(--ink);
  }
}

.product-price {
  margin: 10px 0 12px !important;
  font-size: 1.15rem !important;
  font-weight: 750 !important;
  color: var(--ink) !important;
}

.product-card .btn {
  margin-top: auto;
  width: fit-content;
}

.keep-cart {
  padding: 22px;
  border-radius: 24px;
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-soft);
}

.keep-cart-empty {
  margin: 0;
  color: var(--muted);
}

.keep-cart-lines {
  display: grid;
  gap: 16px;
  margin-bottom: 18px;
}

.keep-line {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(123, 91, 255, 0.12);
}

.keep-line.is-incomplete {
  border-color: rgba(255, 170, 80, 0.45);
}

.keep-line-top {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: center;
}

.keep-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 14px;
  background: var(--media-bg);
}

.keep-line-copy h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.keep-line-copy p {
  margin: 0;
  font-weight: 700;
}

.keep-line label,
.keep-photo-block {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
}

.keep-line input[type="text"],
.keep-note-label textarea {
  width: 100%;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid rgba(29, 31, 39, 0.12);
  font: inherit;
  background: #fff;
}

.keep-drop {
  display: grid;
  place-items: center;
  min-height: 110px;
  padding: 16px;
  border-radius: 14px;
  border: 1.5px dashed rgba(79, 124, 255, 0.35);
  background: rgba(79, 124, 255, 0.04);
  cursor: pointer;
  font-weight: 600;
  color: var(--muted);
}

.keep-drop.is-drag {
  border-color: var(--blue);
  background: rgba(79, 124, 255, 0.1);
}

.keep-preview-wrap {
  display: grid;
  gap: 8px;
}

.keep-preview {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 16px;
  background: #eee;
}

.keep-photo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.text-btn {
  border: 0;
  background: none;
  color: var(--blue);
  font: inherit;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  padding: 0;
}

.keep-crop {
  display: grid;
  gap: 4px;
  max-width: 220px;
  font-size: 0.8rem;
}

.keep-error {
  margin: 0;
  color: #b45309;
  font-size: 0.86rem;
  font-weight: 600;
}

.upload-progress {
  height: 6px;
  border-radius: 999px;
  background: rgba(29, 31, 39, 0.08);
  overflow: hidden;
}

.upload-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--grad);
}

.keep-cart-summary {
  display: grid;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(123, 91, 255, 0.12);
}

.keep-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}

.keep-ship-note,
.keep-cart-summary .status {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.keep-note-label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
}

@media (prefers-color-scheme: dark) {
  .keep-line,
  .keep-line input[type="text"],
  .keep-note-label textarea {
    background: rgba(22, 25, 34, 0.94);
    border-color: rgba(155, 133, 255, 0.18);
    color: var(--ink);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
