:root {
  color-scheme: light;
  --bg: #fafafa;
  --surface: #ffffff;
  --surface-soft: #f3f4f8;
  --surface-accent: #eef0ff;
  --text: #1e293b;
  --muted: #64748b;
  --line: #e5e7eb;
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --amber: #f59e0b;
  --emerald: #10b981;
  --dark: #0f172a;
  --shadow: 0 24px 70px rgba(30, 41, 59, .10);
  --shadow-soft: 0 12px 35px rgba(30, 41, 59, .07);
  --radius: 30px;
  --shell: min(1180px, calc(100% - 40px));
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0f172a;
  --surface: #162033;
  --surface-soft: #1b2940;
  --surface-accent: #232957;
  --text: #f8fafc;
  --muted: #a8b2c2;
  --line: #293850;
  --dark: #070b14;
  --shadow: 0 24px 70px rgba(0, 0, 0, .28);
  --shadow-soft: 0 12px 35px rgba(0, 0, 0, .18);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 "DM Sans", system-ui, sans-serif;
  overflow-x: hidden;
  transition: background .25s ease, color .25s ease;
}

body.dialog-open { overflow: hidden; }

button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(99, 102, 241, .35);
  outline-offset: 3px;
}

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 112px 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  left: 16px;
  top: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--primary);
  color: white;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.announcement {
  background: var(--dark);
  color: #e2e8f0;
  font-size: 13px;
  letter-spacing: .01em;
}
.announcement-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.announcement a { color: #fbbf24; font-weight: 700; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(18px);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(15, 23, 42, .05);
}
.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: 190px 1fr 190px;
  align-items: center;
  gap: 24px;
}

.brand,
.footer-logo-crop,
.brand-crop {
  display: block;
  overflow: hidden;
}
.brand-crop {
  width: 168px;
  height: 46px;
}
.brand-crop img,
.footer-logo-crop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}
.desktop-nav a { position: relative; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--primary);
  transition: right .2s ease;
}
.desktop-nav a:hover { color: var(--text); }
.desktop-nav a:hover::after { right: 0; }

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.icon-button,
.menu-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.icon-button:hover,
.menu-button:hover { transform: translateY(-2px); background: var(--surface-soft); }
.icon-button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}
.moon-icon { display: none; }
[data-theme="dark"] .sun-icon { display: none; }
[data-theme="dark"] .moon-icon { display: block; }

.login-button {
  height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease;
}
.login-button:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.login-button svg { width: 18px; }
.login-button .user-avatar {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  object-fit: cover;
}

.menu-button {
  display: none;
  gap: 5px;
}
.menu-button span {
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform .2s ease;
}
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.25px) rotate(-45deg); }
.mobile-nav { display: none; }

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 42%, rgba(99, 102, 241, .15), transparent 30%),
    linear-gradient(180deg, var(--bg), color-mix(in srgb, var(--surface-accent) 35%, var(--bg)));
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .4;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(100, 116, 139, .35) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(90deg, black, transparent 55%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr .92fr;
  align-items: center;
  gap: 70px;
  padding: 76px 0 100px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 5px rgba(16, 185, 129, .12);
}
.hero h1,
.section-heading h2,
.feature-intro h2,
.about-copy h2,
.support-card h2 {
  margin: 18px 0;
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.08;
}
.hero h1 {
  max-width: 690px;
  font-size: clamp(46px, 5vw, 76px);
}
.hero h1 em { color: var(--primary); font-style: normal; }
.hero-copy > p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}
.hero-copy > .hero-auth-note {
  margin-top: 13px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}
.primary-button,
.light-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 0;
  border-radius: 16px;
  background: var(--primary);
  color: white;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(99, 102, 241, .25);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.primary-button:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 16px 34px rgba(99, 102, 241, .32); }
.primary-button[disabled] {
  background: var(--muted);
  box-shadow: none;
  cursor: not-allowed;
  opacity: .7;
}
.text-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
  font-weight: 700;
}
.text-button span { transition: transform .2s ease; }
.text-button:hover span { transform: translate(3px, -2px); }
.hero-proof {
  display: flex;
  gap: 32px;
  margin-top: 46px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}
.hero-proof div { display: grid; gap: 1px; }
.hero-proof strong { font-family: "Manrope"; font-size: 19px; }
.hero-proof span { color: var(--muted); font-size: 12px; }

.hero-visual {
  position: relative;
  min-height: 520px;
}
.hero-orbit {
  position: absolute;
  border: 1px solid rgba(99, 102, 241, .2);
  border-radius: 50%;
}
.orbit-one { inset: 45px 20px 45px 10px; animation: spin 22s linear infinite; }
.orbit-two { inset: 115px 88px; border-style: dashed; animation: spin 17s linear infinite reverse; }
.visual-card {
  position: absolute;
  overflow: hidden;
  border: 8px solid color-mix(in srgb, var(--surface) 85%, transparent);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.visual-card img { width: 100%; height: 100%; object-fit: cover; }
.visual-main {
  z-index: 2;
  width: 365px;
  height: 430px;
  left: 24px;
  top: 36px;
  border-radius: 38px;
  transform: rotate(-3deg);
}
.visual-main img { object-position: center; }
.visual-side {
  z-index: 1;
  width: 235px;
  height: 290px;
  right: -25px;
  bottom: 18px;
  border-radius: 30px;
  transform: rotate(7deg);
}
.visual-card-copy {
  position: absolute;
  inset: auto 12px 12px;
  display: grid;
  padding: 15px 17px;
  border-radius: 20px;
  background: rgba(15, 23, 42, .78);
  color: white;
  backdrop-filter: blur(12px);
}
.visual-card-copy span { color: #cbd5e1; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.visual-card-copy strong { font-family: "Manrope"; }
.floating-pill {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  box-shadow: var(--shadow-soft);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(12px);
  animation: float 4.5s ease-in-out infinite;
}
.floating-pill span { color: var(--amber); }
.pill-top { right: 20px; top: 50px; }
.pill-bottom { left: -12px; bottom: 24px; animation-delay: -2s; }

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -38px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.trust-grid > div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 104px;
  padding: 20px;
  border-right: 1px solid var(--line);
}
.trust-grid > div:last-child { border-right: 0; }
.trust-icon {
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--surface-accent);
  color: var(--primary);
  font-family: "Manrope";
  font-size: 12px;
  font-weight: 800;
}
.trust-grid p { display: grid; margin: 0; line-height: 1.4; }
.trust-grid strong { font-size: 14px; }
.trust-grid small { color: var(--muted); font-size: 11px; }

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}
.section-heading h2,
.feature-intro h2,
.about-copy h2,
.support-card h2 {
  max-width: 650px;
  font-size: clamp(34px, 4vw, 50px);
}
.catalog-tools { min-width: 300px; }
.search-box {
  height: 52px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}
.search-box svg {
  width: 20px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.8;
}
.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
}
.search-box input::placeholder { color: var(--muted); }
.filter-row {
  display: flex;
  gap: 10px;
  margin: 36px 0 30px;
}
.filter-chip {
  padding: 9px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}
.filter-chip:hover,
.filter-chip.active {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.product-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, .95fr);
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transform: translateZ(0);
  transition: transform .4s cubic-bezier(.22, 1, .36, 1), box-shadow .4s ease;
  will-change: transform;
}
.product-card:hover { transform: translate3d(0, -8px, 0); box-shadow: var(--shadow); }
.product-card:active { transform: translate3d(0, -3px, 0); }
.product-media {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  background: var(--surface-soft);
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  transition: transform .7s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}
.product-card:hover .product-media img { transform: translateZ(0) scale(1.045); }
.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(15, 23, 42, .82);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.product-info {
  display: flex;
  flex-direction: column;
  padding: 30px 27px;
}
.product-category {
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.product-info h3 {
  margin: 12px 0 9px;
  font-family: "Manrope";
  font-size: clamp(20px, 2vw, 25px);
  letter-spacing: -.03em;
  line-height: 1.22;
}
.product-info > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.product-price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-top: auto;
  padding-top: 24px;
}
.product-price strong { font-family: "Manrope"; font-size: 24px; }
.product-price s { color: var(--muted); font-size: 12px; }
.product-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.detail-button,
.buy-button {
  min-height: 44px;
  border-radius: 13px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, border-color .2s ease, color .2s ease, filter .2s ease;
}
.detail-button {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
}
.detail-button:hover { border-color: var(--primary); color: var(--primary); }
.detail-button:active,
.buy-button:active { transform: scale(.97); }
.buy-button {
  width: 44px;
  display: inline-grid;
  place-items: center;
  border: 0;
  background: var(--amber);
  color: #171004;
}
.buy-button:hover { filter: brightness(.95); transform: translateY(-2px); }
.buy-button.is-preorder {
  width: 82px;
  padding: 0 12px;
  background: var(--amber);
  font-size: 11px;
  white-space: nowrap;
}
.product-skeleton {
  min-height: 390px;
  border-radius: var(--radius);
  background: linear-gradient(100deg, var(--surface-soft) 25%, var(--surface) 40%, var(--surface-soft) 55%);
  background-size: 220% 100%;
  animation: shimmer 1.4s infinite;
}
.empty-state { text-align: center; color: var(--muted); }

.feature-section { background: var(--surface-soft); }
.feature-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 110px;
  align-items: start;
}
.feature-intro { position: sticky; top: 130px; }
.feature-intro > p {
  max-width: 540px;
  margin: 0 0 28px;
  color: var(--muted);
}
.steps {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.steps li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 24px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
}
.steps li > span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: var(--surface-accent);
  color: var(--primary);
  font-family: "Manrope";
  font-size: 21px;
  font-weight: 800;
}
.steps strong { font-family: "Manrope"; font-size: 20px; }
.steps p { margin: 7px 0 0; color: var(--muted); font-size: 14px; }

.about-card {
  min-height: 410px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 50px;
  overflow: hidden;
  padding: 70px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 80% 10%, rgba(245,158,11,.22), transparent 28%),
    var(--surface-accent);
}
.about-copy p { max-width: 650px; color: var(--muted); font-size: 17px; }
.about-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 25px; }
.about-tags span {
  padding: 8px 13px;
  border: 1px solid rgba(99,102,241,.2);
  border-radius: 999px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
}
.about-mark {
  position: relative;
  min-height: 260px;
  display: grid;
  place-items: center;
}
.about-mark::before,
.about-mark::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(99,102,241,.25);
  border-radius: 50%;
  animation: pulse-ring 4s ease-in-out infinite;
}
.about-mark::before { width: 250px; height: 250px; }
.about-mark::after { width: 190px; height: 190px; animation-delay: -2s; }
.about-logo-crop {
  position: relative;
  z-index: 2;
  width: 180px;
  height: 180px;
  display: block;
  overflow: hidden;
  border-radius: 50%;
  background: #070b14;
  box-shadow: 0 20px 50px rgba(15,23,42,.24);
}
.about-logo-crop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 57%;
  transform: scale(1.02);
}

.support-section { padding-top: 0; }
.support-card {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: center;
  gap: 70px;
  padding: 65px 70px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 85% 10%, rgba(245,158,11,.22), transparent 33%),
    linear-gradient(135deg, #4f46e5, #6366f1);
  color: white;
  box-shadow: 0 30px 80px rgba(79,70,229,.25);
}
.eyebrow-light { color: #fde68a; }
.support-card h2 { margin-bottom: 14px; }
.support-card p { max-width: 650px; margin: 0; color: #e0e7ff; }
.support-actions { display: grid; justify-items: start; gap: 14px; }
.light-button {
  background: white;
  color: #312e81;
  box-shadow: none;
}
.light-button:hover { transform: translateY(-3px); }
.support-email { color: #e0e7ff; font-size: 13px; text-decoration: underline; text-underline-offset: 4px; }

.site-footer {
  padding: 76px 0 28px;
  background: var(--dark);
  color: #e2e8f0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 60px;
}
.footer-logo-crop { width: 185px; height: 52px; }
.footer-brand p { max-width: 280px; color: #94a3b8; font-size: 14px; }
.footer-grid > div:not(.footer-brand) { display: grid; align-content: start; gap: 10px; font-size: 13px; }
.footer-grid strong { margin-bottom: 8px; color: white; font-family: "Manrope"; }
.footer-grid a,
.footer-grid span { color: #94a3b8; }
.footer-grid a:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid #253149;
  color: #64748b;
  font-size: 12px;
}

dialog {
  color: var(--text);
}
dialog::backdrop {
  background: rgba(6, 10, 20, .62);
  backdrop-filter: blur(8px);
}
.product-dialog,
.legal-dialog,
.notice-dialog {
  width: min(920px, calc(100% - 30px));
  max-height: min(88vh, 850px);
  overflow: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: 0 40px 100px rgba(0,0,0,.28);
}
.product-dialog[open],
.legal-dialog[open],
.notice-dialog[open] { animation: dialog-in .32s cubic-bezier(.22, 1, .36, 1) both; }
.dialog-close {
  position: sticky;
  z-index: 5;
  float: right;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: 16px 16px -58px 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  color: var(--text);
  cursor: pointer;
  font-size: 25px;
  backdrop-filter: blur(12px);
}
.dialog-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}
.dialog-gallery {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  background: var(--surface-soft);
}
.dialog-main-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 22px;
  transition: opacity .2s ease, transform .35s cubic-bezier(.22, 1, .36, 1);
}
.dialog-main-image.switching { opacity: .55; transform: scale(.985); }
.dialog-thumbnails { display: flex; gap: 10px; overflow-x: auto; }
.dialog-thumbnail {
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 13px;
  background: transparent;
  cursor: pointer;
}
.dialog-thumbnail.active { border-color: var(--primary); }
.dialog-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.dialog-copy { padding: 58px 42px 38px; }
.dialog-copy h2 {
  margin: 13px 0;
  font-family: "Manrope";
  font-size: clamp(27px, 4vw, 38px);
  letter-spacing: -.04em;
  line-height: 1.14;
}
.dialog-copy > p { color: var(--muted); }
.dialog-price { margin: 20px 0; }
.dialog-price strong { font-family: "Manrope"; font-size: 30px; }
.dialog-price s { margin-left: 10px; color: var(--muted); }
.feature-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}
.feature-list li { display: grid; grid-template-columns: 22px 1fr; gap: 9px; font-size: 14px; }
.feature-list li::before {
  content: "✓";
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(16,185,129,.13);
  color: var(--emerald);
  font-size: 11px;
  font-weight: 900;
}
.license-note {
  padding: 14px;
  border-radius: 14px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 12px;
}
.dialog-actions { display: grid; grid-template-columns: 1fr auto; gap: 12px; margin-top: 24px; }
.dialog-actions .primary-button { width: 100%; }
.whatsapp-mini {
  min-height: 52px;
  display: grid;
  place-items: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--text);
  font-weight: 800;
}

.notice-dialog {
  width: min(470px, calc(100% - 30px));
  padding: 50px 38px 38px;
  text-align: center;
}
.notice-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 20px;
  background: var(--surface-accent);
  color: var(--primary);
  font-size: 24px;
  font-weight: 900;
}
.notice-dialog h2 { margin: 0; font-family: "Manrope"; font-size: 28px; }
.notice-dialog p { margin: 14px 0 26px; color: var(--muted); }

.legal-dialog { width: min(760px, calc(100% - 30px)); }
#legal-content { padding: 60px 55px 48px; }
#legal-content h1 { margin: 0 0 8px; font: 800 38px/1.15 "Manrope"; letter-spacing: -.04em; }
#legal-content .legal-meta { color: var(--muted); font-size: 13px; }
#legal-content h2 { margin: 30px 0 10px; font: 800 20px/1.3 "Manrope"; }
#legal-content p,
#legal-content li { color: var(--muted); font-size: 14px; }
#legal-content ol,
#legal-content ul { padding-left: 22px; }

.js .reveal {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1), box-shadow .4s ease;
  will-change: opacity, transform;
}
.js .reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.js .steps .reveal:nth-child(2),
.js .product-grid .reveal:nth-child(2) { transition-delay: .07s; }
.js .steps .reveal:nth-child(3) { transition-delay: .14s; }
.js .product-card.reveal.visible:hover { transform: translate3d(0, -8px, 0); }
.js .product-card.reveal.visible:active { transform: translate3d(0, -3px, 0); }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 50% { transform: translateY(-10px); } }
@keyframes pulse-ring { 50% { transform: scale(1.07); opacity: .55; } }
@keyframes shimmer { to { background-position-x: -220%; } }
@keyframes dialog-in { from { opacity: 0; transform: translate3d(0, 18px, 0) scale(.98); } }

@media (max-width: 1050px) {
  .header-inner { grid-template-columns: 170px 1fr auto; }
  .desktop-nav { gap: 22px; }
  .hero-grid { gap: 25px; }
  .visual-main { width: 315px; height: 390px; }
  .visual-side { width: 190px; height: 245px; right: 0; }
  .product-card { grid-template-columns: 1fr; }
  .product-media { aspect-ratio: 1.2; }
  .feature-grid { gap: 60px; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 28px, 680px); }
  .section { padding: 82px 0; }
  .announcement-inner span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .desktop-nav { display: none; }
  .header-inner { min-height: 70px; grid-template-columns: 1fr auto; }
  .menu-button { display: grid; }
  .mobile-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 1px);
    display: grid;
    overflow: hidden;
    max-height: 0;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 20px;
    background: var(--surface);
    box-shadow: var(--shadow);
    transition: max-height .25s ease, padding .25s ease, border-color .25s ease;
  }
  .mobile-nav[aria-hidden="false"] {
    max-height: 280px;
    padding: 14px 20px;
    border-color: var(--line);
  }
  .mobile-nav a { padding: 11px 3px; color: var(--muted); font-weight: 700; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 68px; text-align: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions,
  .hero-proof { justify-content: center; }
  .hero-visual { min-height: 510px; max-width: 530px; width: 100%; margin-inline: auto; }
  .visual-main { left: 12%; }
  .visual-side { right: 4%; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-heading { display: grid; }
  .catalog-tools { min-width: 0; width: 100%; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { grid-template-columns: minmax(0, 1.1fr) minmax(250px, .9fr); }
  .feature-grid,
  .about-card,
  .support-card { grid-template-columns: 1fr; }
  .feature-intro { position: static; }
  .about-card,
  .support-card { padding: 50px 40px; }
  .about-mark { min-height: 210px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .dialog-product-grid { grid-template-columns: 1fr; }
  .dialog-gallery { grid-template-columns: 1fr; }
  .dialog-main-image { aspect-ratio: 1.15; }
}

@media (max-width: 580px) {
  .announcement-inner { min-height: 32px; font-size: 11px; }
  .announcement-inner > span { max-width: 66%; }
  .brand-crop { width: 145px; height: 42px; }
  .login-button { width: 44px; padding: 0; justify-content: center; }
  .login-button > span { display: none; }
  .hero-grid { padding: 54px 0 94px; }
  .hero h1 { font-size: clamp(40px, 12vw, 56px); }
  .hero-copy > p { font-size: 16px; }
  .hero-actions { display: grid; gap: 16px; justify-items: center; }
  .hero-proof { gap: 18px; }
  .hero-proof strong { font-size: 16px; }
  .hero-proof span { font-size: 10px; }
  .hero-visual { min-height: 410px; margin-top: 12px; }
  .visual-main { width: 72%; height: 340px; left: 5%; top: 22px; }
  .visual-side { width: 43%; height: 215px; right: 1%; bottom: 10px; }
  .pill-top { right: 0; top: 7px; }
  .pill-bottom { left: 0; bottom: 0; }
  .floating-pill { font-size: 10px; padding: 8px 11px; }
  .trust-strip { margin-top: -28px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { min-height: 84px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-grid > div:last-child { border-bottom: 0; }
  .filter-row { overflow-x: auto; padding-bottom: 3px; }
  .filter-chip { white-space: nowrap; }
  .product-card { grid-template-columns: 1fr; }
  .product-info { padding: 24px 22px; }
  .product-media { min-height: 280px; aspect-ratio: 1; }
  .steps li { grid-template-columns: 48px 1fr; gap: 15px; padding: 22px; }
  .steps li > span { width: 48px; height: 48px; border-radius: 15px; }
  .about-card,
  .support-card { padding: 38px 25px; border-radius: 28px; }
  .support-actions { width: 100%; }
  .support-actions .light-button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: grid; }
  .dialog-copy { padding: 40px 24px 28px; }
  .dialog-gallery { padding: 15px; }
  .dialog-main-image { aspect-ratio: 1; }
  .dialog-actions { grid-template-columns: 1fr; }
  #legal-content { padding: 58px 25px 35px; }
  #legal-content h1 { font-size: 31px; }
}

.desktop-nav a.active { color: var(--primary); }
.desktop-section-link { margin-bottom: 20px; }
.mobile-section-link { display: none; margin: 28px auto 0; width: max-content; }
.featured-product-grid { margin-top: 38px; }
.home-products { padding-bottom: 96px; }
.visual-card-copy small {
  color: #cbd5e1;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.category-section {
  padding-top: 0;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.category-card {
  min-height: 210px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 22px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0, rgba(99, 102, 241, .13), transparent 35%),
    var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform .4s cubic-bezier(.22, 1, .36, 1), border-color .25s ease, box-shadow .4s ease;
}
.category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 102, 241, .45);
  box-shadow: var(--shadow);
}
.category-card > span:last-child {
  color: var(--primary);
  font-size: 22px;
}
.category-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--surface-accent);
  color: var(--primary);
  font: 800 12px "Manrope";
}
.category-card h3 {
  margin: 2px 0 10px;
  font: 800 25px/1.2 "Manrope";
  letter-spacing: -.035em;
}
.category-card p { margin: 0; color: var(--muted); font-size: 14px; }

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.breadcrumbs a:hover { color: var(--primary); }
.catalog-hero {
  overflow: hidden;
  padding: 78px 0 82px;
  background:
    radial-gradient(circle at 82% 15%, rgba(245, 158, 11, .18), transparent 24%),
    radial-gradient(circle at 68% 70%, rgba(99, 102, 241, .16), transparent 30%),
    var(--surface-accent);
}
.catalog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  align-items: end;
  gap: 90px;
}
.catalog-hero h1 {
  max-width: 820px;
  margin: 17px 0;
  font: 800 clamp(42px, 5vw, 68px)/1.06 "Manrope";
  letter-spacing: -.05em;
}
.catalog-hero p { max-width: 700px; margin: 0; color: var(--muted); font-size: 17px; }
.catalog-stat {
  display: grid;
  align-content: center;
  min-height: 220px;
  padding: 34px;
  border: 1px solid color-mix(in srgb, var(--line) 75%, transparent);
  border-radius: 28px;
  background: color-mix(in srgb, var(--surface) 84%, transparent);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}
.catalog-stat strong { color: var(--primary); font: 800 52px/1 "Manrope"; letter-spacing: -.05em; }
.catalog-stat span { margin-top: 9px; font: 800 18px "Manrope"; }
.catalog-stat small { margin-top: 16px; color: var(--muted); }
.catalog-section { padding-top: 88px; }
.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.catalog-toolbar .filter-row { margin: 0; }
.catalog-toolbar .search-box { width: min(330px, 100%); }
.catalog-count {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 26px 0;
  color: var(--muted);
  font-size: 13px;
}
.catalog-count strong { color: var(--text); }
.catalog-product-grid {
  min-height: 390px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.catalog-product-grid .product-card {
  grid-template-columns: 1fr;
  min-height: 0;
  border-radius: 24px;
}
.catalog-product-grid .product-media {
  min-height: 0;
  aspect-ratio: 1.18 / 1;
}
.catalog-product-grid .product-info { padding: 21px 20px 20px; }
.catalog-product-grid .product-info h3 {
  min-height: 2.45em;
  margin: 9px 0 7px;
  font-size: 18px;
}
.catalog-product-grid .product-info > p {
  display: -webkit-box;
  min-height: 4.55em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.catalog-product-grid .product-price { padding-top: 17px; }
.catalog-product-grid .product-price strong { font-size: 20px; }
.product-badge.is-out-of-stock {
  background: rgba(127, 29, 29, .9);
  color: #fff;
}
.product-card.is-out-of-stock .product-media img {
  filter: saturate(.65) contrast(.94);
}
.buy-button.is-disabled {
  width: 66px;
  cursor: not-allowed;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 11px;
}
.buy-button.is-disabled:hover { filter: none; transform: none; }
.catalog-help { padding: 0 0 112px; }

.product-detail-section {
  padding: 44px 0 100px;
  background:
    radial-gradient(circle at 10% 20%, rgba(99, 102, 241, .09), transparent 28rem),
    var(--bg);
}
.product-breadcrumbs {
  max-width: 100%;
  margin: 0 0 30px;
  white-space: nowrap;
  overflow: hidden;
}
.product-breadcrumbs span:last-child { overflow: hidden; text-overflow: ellipsis; }
.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: 70px;
  align-items: start;
}
.product-gallery {
  position: sticky;
  top: 112px;
  min-width: 0;
}
.product-main-media {
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--surface-soft);
  box-shadow: var(--shadow-soft);
}
.product-main-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .2s ease, transform .35s cubic-bezier(.22, 1, .36, 1);
}
.product-main-media img.switching { opacity: .58; transform: scale(.985); }
.product-thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  padding: 2px;
  overflow-x: auto;
  scrollbar-width: thin;
}
.product-thumbnail {
  width: 82px;
  height: 82px;
  flex: 0 0 auto;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 16px;
  background: var(--surface-soft);
  cursor: pointer;
}
.product-thumbnail.active { border-color: var(--primary); }
.product-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-copy { padding: 18px 0; }
.product-detail-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.detail-stock {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--emerald);
  font-size: 12px;
  font-weight: 800;
}
.detail-stock i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(16, 185, 129, .12);
}
.detail-stock.is-out-of-stock { color: #dc2626; }
.detail-stock.is-out-of-stock i { box-shadow: 0 0 0 5px rgba(220, 38, 38, .11); }
.product-detail-copy h1 {
  margin: 17px 0 12px;
  font: 800 clamp(36px, 4.5vw, 58px)/1.06 "Manrope";
  letter-spacing: -.05em;
}
.product-tagline { margin: 0; color: var(--muted); font-size: 17px; }
.detail-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 28px 0 21px;
}
.detail-price strong { font: 800 34px "Manrope"; }
.detail-price s { color: var(--muted); }
.product-description-list {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}
.product-description-list li {
  position: relative;
  padding-left: 21px;
  line-height: 1.55;
}
.product-description-list li::before {
  content: "•";
  position: absolute;
  left: 2px;
  color: var(--primary);
  font-weight: 900;
}
.detail-assurances {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-block: 1px solid var(--line);
}
.detail-assurances > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.detail-assurances > div:last-child { border-bottom: 0; }
.detail-assurances > div > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--surface-accent);
  color: var(--primary);
  font-weight: 900;
}
.detail-assurances p { display: grid; margin: 0; line-height: 1.35; }
.detail-assurances strong { font-size: 13px; }
.detail-assurances small { color: var(--muted); font-size: 11px; }
.detail-actions { display: grid; grid-template-columns: 1fr auto; gap: 12px; margin-top: 28px; }
.detail-buy { width: 100%; }
.detail-buy.is-preorder { background: var(--amber); color: #171004; }
.preorder-note {
  margin: 20px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(245, 158, 11, .32);
  border-radius: 14px;
  background: rgba(245, 158, 11, .1);
  color: var(--text);
  font-size: 12px;
  line-height: 1.6;
}
.preorder-note strong { color: #b45309; }
.detail-buy.is-disabled {
  cursor: not-allowed;
  background: var(--surface-soft);
  color: var(--muted);
  box-shadow: none;
}
.micro-copy { margin: 13px 0 0; color: var(--muted); font-size: 11px; text-align: center; }
.product-content-section { background: var(--surface-soft); }
.product-content-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
}
.content-panel {
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.content-panel h2,
.product-faq h2 {
  margin: 15px 0 24px;
  font: 800 clamp(30px, 3.5vw, 44px)/1.1 "Manrope";
  letter-spacing: -.045em;
}
.detail-feature-list { gap: 14px; margin-bottom: 0; }
.detail-feature-list li { font-size: 15px; }
.license-panel > p { color: var(--muted); }
.license-support {
  display: grid;
  gap: 5px;
  margin-top: 30px;
  padding: 22px;
  border-radius: 18px;
  background: var(--surface-accent);
}
.license-support span { color: var(--muted); font-size: 13px; }
.license-support a { margin-top: 8px; color: var(--primary); font-weight: 800; }
.product-faq { padding-top: 100px; }
.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
}
.product-faq p { color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  padding: 22px 42px 22px 0;
  cursor: pointer;
  font: 800 16px "Manrope";
}
.faq-list details p { margin: -8px 0 22px; font-size: 14px; }
.mobile-buy-bar { display: none; }

/* Editorial guides and crawlable category pages */
.home-guides-section,
.catalog-guides-section,
.related-guides-section {
  background:
    radial-gradient(circle at 88% 8%, rgba(99, 102, 241, .11), transparent 28rem),
    var(--surface-soft);
}
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}
.guide-grid .guide-card:only-child { grid-column: span 2; }
.guide-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform .4s cubic-bezier(.22, 1, .36, 1), box-shadow .4s ease, border-color .25s ease;
}
.guide-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 102, 241, .42);
  box-shadow: var(--shadow);
}
.guide-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1.75 / 1;
  background: var(--surface-soft);
}
.guide-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 23, 42, .38));
  pointer-events: none;
}
.guide-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.22, 1, .36, 1);
}
.guide-card:hover .guide-card-media img { transform: scale(1.045); }
.trend-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .02em;
}
.trend-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px color-mix(in srgb, currentColor 15%, transparent);
}
.guide-card-media .trend-badge {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 16px;
  max-width: calc(100% - 36px);
  padding: 8px 11px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 24px rgba(15, 23, 42, .12);
}
.trend-badge.is-active { color: #047857; }
.trend-badge.is-monitoring { color: #b45309; }
.guide-card-copy { padding: 25px; }
.guide-card-meta,
.guide-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}
.guide-card-meta a { color: var(--primary); text-transform: uppercase; letter-spacing: .08em; }
.guide-card-copy h3 {
  margin: 13px 0 10px;
  font: 800 23px/1.22 "Manrope";
  letter-spacing: -.035em;
}
.guide-card-copy h3:hover { color: var(--primary); }
.guide-card-copy > p {
  display: -webkit-box;
  min-height: 4.9em;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.guide-card-footer {
  margin-top: 21px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.guide-card-footer a { color: var(--primary); font-weight: 800; }

.guide-index-hero {
  overflow: hidden;
  padding: 78px 0 88px;
  background:
    radial-gradient(circle at 82% 18%, rgba(245, 158, 11, .19), transparent 23rem),
    radial-gradient(circle at 70% 72%, rgba(99, 102, 241, .16), transparent 30rem),
    var(--surface-accent);
}
.guide-index-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .65fr);
  align-items: end;
  gap: 80px;
}
.guide-index-hero h1,
.category-landing-hero h1 {
  max-width: 830px;
  margin: 17px 0;
  font: 800 clamp(42px, 5.5vw, 72px)/1.04 "Manrope";
  letter-spacing: -.055em;
}
.guide-index-hero p,
.category-landing-hero p {
  max-width: 730px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}
.guide-principles {
  display: grid;
  gap: 8px;
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
  border-radius: 26px;
  background: color-mix(in srgb, var(--surface) 87%, transparent);
  box-shadow: var(--shadow-soft);
}
.guide-principles > span {
  color: var(--primary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.guide-principles strong { font: 800 22px "Manrope"; }
.guide-principles p { font-size: 13px; }
.guide-list-section { padding-bottom: 82px; }
.guide-category-section { padding-top: 0; }
.guide-category-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}
.guide-category-links a,
.catalog-category-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-weight: 800;
  transition: border-color .2s ease, color .2s ease, transform .25s ease;
}
.guide-category-links a { min-height: 92px; padding: 21px; border-radius: 18px; }
.guide-category-links a span { color: var(--primary); }
.guide-category-links a:hover,
.catalog-category-links a:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.catalog-category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
}
.catalog-category-links a { padding: 8px 13px; border-radius: 999px; font-size: 11px; }

.category-landing-hero {
  padding: 68px 0 80px;
  background:
    radial-gradient(circle at 88% 12%, rgba(245, 158, 11, .15), transparent 24rem),
    radial-gradient(circle at 72% 82%, rgba(99, 102, 241, .14), transparent 28rem),
    var(--surface-accent);
}
.category-landing-copy { position: relative; max-width: 940px; }
.category-stats {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 28px;
}
.category-stats strong { color: var(--primary); font: 800 38px "Manrope"; }
.category-stats span { color: var(--muted); font-size: 13px; }
.category-products-section { padding-top: 82px; }
.related-guides-section { border-top: 1px solid var(--line); }

.article-hero {
  padding: 54px 0 76px;
  background:
    radial-gradient(circle at 86% 10%, rgba(245, 158, 11, .16), transparent 25rem),
    radial-gradient(circle at 62% 75%, rgba(99, 102, 241, .13), transparent 29rem),
    var(--surface-accent);
}
.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(310px, .62fr);
  align-items: center;
  gap: 78px;
}
.article-labels {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}
.article-labels .trend-badge {
  padding: 8px 11px;
  border: 1px solid color-mix(in srgb, currentColor 24%, transparent);
  background: var(--surface);
}
.article-hero h1 {
  max-width: 850px;
  margin: 19px 0;
  font: 800 clamp(42px, 5.5vw, 70px)/1.035 "Manrope";
  letter-spacing: -.058em;
}
.article-hero-copy > p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  margin-top: 27px;
  color: var(--muted);
  font-size: 11px;
}
.article-byline span + span { position: relative; }
.article-byline span + span::before { content: "•"; position: absolute; left: -14px; }
.article-hero-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.article-hero-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}
.article-hero-media figcaption {
  padding: 14px 17px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}
.article-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  justify-content: center;
  gap: clamp(48px, 7vw, 100px);
  padding-block: 80px 120px;
}
.article-toc {
  position: sticky;
  top: 116px;
  align-self: start;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.article-toc > strong { font: 800 13px "Manrope"; }
.article-toc ol { display: grid; gap: 10px; margin: 16px 0 0; padding: 0 0 0 17px; }
.article-toc li { color: var(--muted); font-size: 10px; line-height: 1.45; }
.article-toc a:hover { color: var(--primary); }
.article-toc-category {
  display: block;
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: var(--primary);
  font-size: 10px;
  font-weight: 800;
}
.article-body { min-width: 0; }
.article-quick-answer {
  margin-bottom: 58px;
  padding: 31px;
  border: 1px solid rgba(99, 102, 241, .26);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(99, 102, 241, .14), transparent 42%),
    var(--surface);
  box-shadow: var(--shadow-soft);
}
.article-quick-answer > span {
  color: var(--primary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.article-quick-answer h2 { margin: 9px 0 11px; font: 800 28px/1.25 "Manrope"; letter-spacing: -.035em; }
.article-quick-answer p { margin: 0; color: var(--muted); }
.article-section {
  padding: 0 0 52px;
  scroll-margin-top: 115px;
}
.article-section + .article-section { padding-top: 4px; }
.article-section h2 {
  margin: 0 0 18px;
  font: 800 clamp(27px, 3vw, 36px)/1.2 "Manrope";
  letter-spacing: -.04em;
}
.article-section > p {
  margin: 0 0 17px;
  color: color-mix(in srgb, var(--text) 76%, var(--muted));
  font-size: 16px;
  line-height: 1.85;
}
.article-section ul,
.article-steps {
  display: grid;
  gap: 12px;
  margin: 23px 0 0;
  padding: 0;
  list-style: none;
}
.article-section ul li,
.article-steps li {
  position: relative;
  padding: 15px 17px 15px 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--muted);
  font-size: 14px;
}
.article-section ul li::before,
.article-steps li::before {
  position: absolute;
  left: 16px;
  top: 14px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--surface-accent);
  color: var(--primary);
  font-size: 10px;
  font-weight: 900;
}
.article-section ul li::before { content: "✓"; }
.article-steps { counter-reset: article-step; }
.article-steps li { counter-increment: article-step; }
.article-steps li::before { content: counter(article-step); }
.article-note {
  margin-top: 24px;
  padding: 20px 22px;
  border-left: 4px solid var(--emerald);
  border-radius: 5px 15px 15px 5px;
  background: rgba(16, 185, 129, .09);
}
.article-note strong { color: var(--emerald); font-size: 13px; }
.article-note p { margin: 5px 0 0; color: var(--muted); font-size: 13px; }
.article-product-cta {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 28px;
  align-items: center;
  margin: 16px 0 64px;
  padding: 24px;
  border: 1px solid rgba(99, 102, 241, .27);
  border-radius: 24px;
  background: var(--surface-accent);
}
.article-product-cta > img {
  width: 210px;
  height: 210px;
  object-fit: cover;
  border-radius: 18px;
  background: var(--surface);
}
.article-product-cta h2 { margin: 9px 0 8px; font: 800 25px/1.25 "Manrope"; letter-spacing: -.035em; }
.article-product-cta p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.article-product-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 18px;
  margin-top: 15px;
}
.article-product-meta strong { font: 800 22px "Manrope"; }
.article-product-meta span { color: #b45309; font-size: 10px; font-weight: 800; }
.article-product-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 18px; }
.article-product-actions .primary-button { min-height: 45px; padding-inline: 18px; font-size: 11px; }
.article-product-actions > a:not(.primary-button) { color: var(--primary); font-size: 10px; font-weight: 800; }
.article-sources ol { display: grid; gap: 9px; margin: 22px 0 0; padding-left: 20px; }
.article-sources li { color: var(--muted); font-size: 12px; }
.article-sources a { color: var(--primary); font-weight: 700; }
.article-faq .faq-list { margin-top: 20px; }
.article-faq .faq-list p { color: var(--muted); }
.update-log-entry {
  display: grid;
  grid-template-columns: 125px 90px 1fr;
  gap: 16px;
  align-items: start;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}
.update-log-entry time,
.update-log-entry span { font-size: 10px; font-weight: 800; }
.update-log-entry span { width: max-content; padding: 4px 8px; border-radius: 999px; background: rgba(16, 185, 129, .1); color: var(--emerald); }
.update-log-entry p { margin: 0; color: var(--muted); font-size: 12px; }
.article-disclosure {
  padding: 19px 22px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface-soft);
}
.article-disclosure strong { font-size: 11px; }
.article-disclosure p { margin: 4px 0 0; color: var(--muted); font-size: 10px; }

@media (max-width: 1050px) {
  .catalog-hero-grid { gap: 40px; }
  .catalog-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-detail-grid { gap: 42px; grid-template-columns: minmax(0, 1fr) minmax(380px, .9fr); }
  .product-detail-copy h1 { font-size: 42px; }
  .guide-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-hero-grid { gap: 42px; }
  .article-layout { grid-template-columns: 210px minmax(0, 680px); gap: 45px; }
}

@media (max-width: 820px) {
  .desktop-section-link { display: none; }
  .mobile-section-link { display: flex; }
  .category-grid,
  .catalog-hero-grid,
  .product-detail-grid,
  .product-content-grid,
  .faq-grid { grid-template-columns: 1fr; }
  .catalog-hero { padding: 55px 0 62px; }
  .catalog-hero-grid { gap: 32px; }
  .catalog-stat { min-height: 170px; }
  .catalog-toolbar { display: grid; }
  .catalog-toolbar .filter-row { order: 2; }
  .catalog-toolbar .search-box { width: 100%; }
  .product-gallery { position: static; }
  .product-detail-grid { gap: 35px; }
  .product-detail-copy { padding: 0; }
  .faq-grid { gap: 28px; }
  .guide-index-grid,
  .article-hero-grid { grid-template-columns: 1fr; }
  .guide-index-grid,
  .article-hero-grid { gap: 35px; }
  .guide-principles { max-width: 520px; }
  .guide-category-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-hero-media { width: min(100%, 520px); }
  .article-layout { grid-template-columns: 1fr; padding-top: 50px; }
  .article-toc { position: static; }
}

@media (max-width: 580px) {
  body[data-page="product"] { padding-bottom: 76px; }
  .home-products { padding-bottom: 74px; }
  .category-grid { gap: 15px; }
  .category-card { min-height: 0; grid-template-columns: auto 1fr; padding: 24px 20px; gap: 15px; }
  .category-card > span:last-child { display: none; }
  .category-card h3 { font-size: 21px; }
  .catalog-hero h1 { font-size: 40px; }
  .catalog-stat { padding: 25px; }
  .catalog-toolbar .filter-row { width: calc(100vw - 28px); }
  .catalog-product-grid { grid-template-columns: 1fr; gap: 16px; }
  .catalog-product-grid .product-info h3 { min-height: 0; }
  .catalog-count span { display: none; }
  .catalog-help { padding-bottom: 82px; }
  .product-detail-section { padding: 25px 0 70px; }
  .product-breadcrumbs { margin-bottom: 20px; }
  .product-main-media { border-radius: 24px; }
  .product-thumbnail { width: 68px; height: 68px; border-radius: 13px; }
  .product-detail-copy h1 { font-size: 36px; }
  .detail-actions { grid-template-columns: 1fr; }
  .content-panel { padding: 32px 23px; border-radius: 24px; }
  .product-content-section { padding-block: 72px; }
  .product-faq { padding-block: 76px; }
  .guide-grid { grid-template-columns: 1fr; }
  .guide-grid .guide-card:only-child { grid-column: auto; }
  .guide-card-copy { padding: 21px; }
  .guide-card-copy h3 { font-size: 21px; }
  .guide-card-footer { align-items: flex-start; flex-direction: column; gap: 7px; }
  .guide-index-hero,
  .category-landing-hero { padding: 48px 0 58px; }
  .guide-index-hero h1,
  .category-landing-hero h1 { font-size: 39px; }
  .guide-index-hero p,
  .category-landing-hero p { font-size: 15px; }
  .guide-category-links { grid-template-columns: 1fr; }
  .guide-category-links a { min-height: 70px; }
  .article-hero { padding: 34px 0 50px; }
  .article-hero h1 { font-size: 39px; }
  .article-hero-copy > p { font-size: 15px; }
  .article-byline { display: grid; }
  .article-byline span + span::before { display: none; }
  .article-hero-media { border-radius: 22px; }
  .article-layout { width: min(100% - 28px, 760px); padding-bottom: 82px; }
  .article-toc { padding: 18px; }
  .article-quick-answer { padding: 24px 21px; }
  .article-quick-answer h2 { font-size: 24px; }
  .article-section h2 { font-size: 27px; }
  .article-section > p { font-size: 15px; }
  .article-product-cta { grid-template-columns: 1fr; padding: 20px; }
  .article-product-cta > img { width: 100%; height: auto; aspect-ratio: 1.6 / 1; }
  .article-product-actions { align-items: stretch; flex-direction: column; }
  .article-product-actions .primary-button { width: 100%; }
  .update-log-entry { grid-template-columns: 1fr; gap: 7px; }
  .mobile-buy-bar {
    position: fixed;
    z-index: 70;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 14px max(10px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: color-mix(in srgb, var(--surface) 94%, transparent);
    box-shadow: 0 -12px 35px rgba(15, 23, 42, .1);
    backdrop-filter: blur(16px);
  }
  .mobile-buy-bar > div { display: grid; line-height: 1.25; }
  .mobile-buy-bar small { color: var(--muted); font-size: 10px; }
  .mobile-buy-bar strong { font: 800 16px "Manrope"; }
  .mobile-buy-bar a,
  .mobile-buy-bar > span {
    min-height: 46px;
    display: grid;
    place-items: center;
    padding: 0 22px;
    border-radius: 14px;
    background: var(--primary);
    color: white;
    font-size: 13px;
    font-weight: 800;
  }
  .mobile-buy-bar > span.is-disabled {
    cursor: not-allowed;
    background: var(--surface-soft);
    color: var(--muted);
  }
}

.checkout-body {
  min-height: 100vh;
  font-family: "Manrope", system-ui, sans-serif;
  background:
    radial-gradient(circle at 9% 10%, rgba(99, 102, 241, .10), transparent 28rem),
    var(--bg);
}

.checkout-header,
.checkout-footer {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout-header {
  min-height: 92px;
  border-bottom: 1px solid var(--line);
}

.checkout-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}

.checkout-brand img { object-fit: contain; }
.checkout-back,
.checkout-footer { color: var(--muted); font-size: 13px; font-weight: 700; }
.checkout-back:hover,
.checkout-footer a:hover { color: var(--primary); }

.checkout-shell {
  width: min(1060px, calc(100% - 40px));
  margin: 42px auto 80px;
}

.checkout-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.checkout-progress li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.checkout-progress li::after {
  content: "";
  flex: 1;
  height: 1px;
  margin-left: 8px;
  background: var(--line);
}

.checkout-progress li:last-child::after { display: none; }

.checkout-progress span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
}

.checkout-progress .active { color: var(--primary); }
.checkout-progress .active span { border-color: var(--primary); background: var(--primary); color: white; }

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

.checkout-panel,
.checkout-summary,
.checkout-result {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.checkout-panel { padding: 42px; }
.section-kicker { margin: 0 0 8px; color: var(--primary); font-size: 11px; font-weight: 800; letter-spacing: .15em; }
.checkout-panel h1,
.checkout-result h1 { margin: 0; font-size: clamp(29px, 4vw, 42px); line-height: 1.12; letter-spacing: -.045em; }
.checkout-intro { margin: 12px 0 32px; color: var(--muted); font-size: 14px; }
.preorder-notice {
  display: grid;
  gap: 4px;
  margin: -14px 0 30px;
  padding: 15px 17px;
  border: 1px solid rgba(245, 158, 11, .32);
  border-radius: 14px;
  background: rgba(245, 158, 11, .1);
}
.preorder-notice[hidden] { display: none; }
.preorder-notice strong { color: #b45309; font-size: 13px; }
.preorder-notice span { color: var(--muted); font-size: 11px; line-height: 1.55; }

.checkout-form { display: grid; gap: 29px; }
.checkout-form fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.checkout-form legend { margin-bottom: 15px; padding: 0; font-size: 15px; font-weight: 800; }

.checkout-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.checkout-field-wide { grid-column: 1 / -1; }
.checkout-field { display: grid; gap: 7px; }
.checkout-field span { color: var(--muted); font-size: 12px; font-weight: 700; }
.checkout-field input {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface-soft);
  color: var(--text);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.checkout-field input:focus {
  border-color: var(--primary);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, .10);
  outline: 0;
}

.payment-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.payment-loading { grid-column: 1 / -1; margin: 0; padding: 18px; color: var(--muted); text-align: center; }
.payment-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 13px;
  align-items: center;
  min-height: 70px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.payment-option:hover { transform: translateY(-1px); border-color: rgba(99, 102, 241, .45); }
.payment-option:has(input:checked) { border-color: var(--primary); background: var(--surface-accent); }
.payment-option input { width: 18px; height: 18px; accent-color: var(--primary); }
.payment-option span { display: grid; }
.payment-option strong { font-size: 13px; }
.payment-option small { color: var(--muted); font-size: 11px; }
.payment-option em {
  padding: 5px 8px;
  border-radius: 99px;
  background: var(--emerald);
  color: white;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.checkout-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 11px;
}
.checkout-consent input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--primary); }
.checkout-consent a { color: var(--primary); font-weight: 800; }

.checkout-error {
  margin: -12px 0 0;
  padding: 11px 13px;
  border-radius: 11px;
  background: rgba(239, 68, 68, .10);
  color: #dc2626;
  font-size: 12px;
  font-weight: 700;
}

.checkout-submit {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  padding: 0 19px;
  border: 0;
  border-radius: 14px;
  background: var(--primary);
  color: white;
  cursor: pointer;
  font-weight: 800;
  box-shadow: 0 12px 25px rgba(99, 102, 241, .22);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.checkout-submit:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 15px 28px rgba(99, 102, 241, .28); }
.checkout-submit:disabled { cursor: wait; opacity: .65; transform: none; }
.checkout-security { margin: -17px 0 0; color: var(--muted); font-size: 10px; text-align: center; }

.checkout-summary { position: sticky; top: 24px; padding: 28px; }
.checkout-summary h2 { margin: 0 0 22px; font-size: 17px; }
.summary-product { display: grid; grid-template-columns: 96px 1fr; gap: 15px; align-items: center; }
.summary-product img { width: 96px; height: 96px; border-radius: 15px; object-fit: cover; background: var(--surface-soft); }
.summary-product div { display: grid; gap: 5px; min-width: 0; }
.summary-product span { color: var(--primary); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.summary-product strong { font-size: 12px; line-height: 1.45; }
.summary-product small { color: var(--muted); font-size: 10px; }
.summary-lines { display: grid; gap: 11px; margin: 25px 0; padding: 22px 0; border-block: 1px solid var(--line); }
.summary-lines div { display: flex; justify-content: space-between; gap: 20px; font-size: 11px; }
.summary-lines dt { color: var(--muted); }
.summary-lines dd { margin: 0; font-weight: 800; text-align: right; }
.summary-lines .summary-total { padding-top: 8px; font-size: 14px; }
.summary-assurance { display: grid; gap: 4px; padding: 14px; border-radius: 13px; background: var(--surface-soft); }
.summary-assurance strong { color: var(--emerald); font-size: 11px; }
.summary-assurance span { color: var(--muted); font-size: 10px; }

.checkout-result {
  max-width: 620px;
  margin: 70px auto;
  padding: 50px;
  text-align: center;
}
.result-icon { display: grid; width: 58px; height: 58px; margin: 0 auto 22px; place-items: center; border-radius: 50%; background: rgba(16, 185, 129, .12); color: var(--emerald); font-size: 26px; font-weight: 800; }
.checkout-result > p:not(.section-kicker) { color: var(--muted); font-size: 14px; }
.checkout-result dl { display: grid; gap: 9px; margin: 28px 0; padding: 18px; border-radius: 14px; background: var(--surface-soft); text-align: left; }
.checkout-result dl div { display: flex; justify-content: space-between; gap: 20px; }
.checkout-result dt { color: var(--muted); font-size: 11px; }
.checkout-result dd { margin: 0; font-size: 11px; font-weight: 800; overflow-wrap: anywhere; }
.checkout-result .checkout-submit { margin-top: 20px; }
.checkout-back-link { display: inline-block; margin-top: 24px; color: var(--muted); font-size: 12px; font-weight: 800; }

.checkout-footer { min-height: 78px; border-top: 1px solid var(--line); }

/* Legal documents */
.legal-shell {
  width: min(100% - 40px, 920px);
  margin: 42px auto 90px;
}
.legal-shell .breadcrumb {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 12px;
}
.legal-shell .breadcrumb a { color: var(--primary); font-weight: 700; }
.legal-shell .breadcrumb span { margin-left: 8px; }
.legal-document {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.legal-hero {
  padding: clamp(34px, 6vw, 64px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 92% 10%, rgba(99, 102, 241, .16), transparent 34%),
    var(--surface-soft);
}
.legal-hero h1 {
  max-width: 700px;
  margin: 8px 0 14px;
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.04;
  letter-spacing: -.045em;
}
.legal-hero > p:not(.section-kicker) {
  max-width: 620px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.legal-hero small { color: var(--muted); font-size: 11px; font-weight: 700; }
.legal-content { display: grid; gap: 0; padding: 12px clamp(28px, 6vw, 64px); }
.legal-section { padding: 30px 0; border-bottom: 1px solid var(--line); }
.legal-section:last-child { border-bottom: 0; }
.legal-section h2 { margin: 0 0 14px; font-size: 20px; letter-spacing: -.02em; }
.legal-section p { margin: 0 0 12px; color: var(--muted); font-size: 14px; line-height: 1.8; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-support {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin: 0 clamp(28px, 6vw, 64px) clamp(28px, 6vw, 52px);
  padding: 22px;
  border-radius: 18px;
  background: var(--surface-accent);
}
.legal-support div { display: grid; gap: 4px; }
.legal-support strong { font-size: 13px; }
.legal-support span { color: var(--muted); font-size: 11px; }
.legal-support a {
  flex: 0 0 auto;
  padding: 12px 16px;
  border-radius: 11px;
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 800;
}

.guide-directory-hero {
  max-width: 860px;
  text-align: center;
}
.guide-directory-hero .breadcrumbs { justify-content: center; }
.guide-directory-hero h1 {
  max-width: 760px;
  margin: 12px auto 18px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: -.055em;
}
.guide-directory-hero > p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.75;
}
.guide-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  max-width: 650px;
  margin: 30px auto 0;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.guide-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 10px 14px;
  background: transparent;
  color: var(--text);
  font: inherit;
}
.guide-search button {
  min-width: 92px;
  border: 0;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font: 800 12px "Manrope";
  cursor: pointer;
}
.guide-directory-section { padding-top: 58px; }
.guide-directory-shell { max-width: 980px; }
.guide-directory-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.guide-directory-heading h2 { margin: 6px 0 0; font-size: clamp(28px, 4vw, 42px); }
.guide-directory-heading > p { margin: 0; color: var(--muted); font-size: 12px; font-weight: 700; }
.guide-filters {
  display: flex;
  gap: 8px;
  padding-bottom: 24px;
  overflow-x: auto;
  scrollbar-width: thin;
}
.guide-filters a {
  flex: 0 0 auto;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}
.guide-filters a:hover,
.guide-filters a.active {
  border-color: var(--primary);
  background: var(--surface-accent);
  color: var(--primary);
}
.guide-results { border-top: 1px solid var(--line); }
.guide-result {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 26px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.guide-result-media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  background: var(--surface-soft);
}
.guide-result-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.guide-result:hover .guide-result-media img { transform: scale(1.035); }
.guide-result-copy { align-self: center; min-width: 0; }
.guide-result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}
.guide-result-meta a { color: var(--primary); text-transform: uppercase; letter-spacing: .08em; }
.guide-result-copy h2 {
  margin: 9px 0 8px;
  font: 800 clamp(20px, 3vw, 27px)/1.25 "Manrope";
  letter-spacing: -.035em;
}
.guide-result-copy h2:hover { color: var(--primary); }
.guide-result-copy > p {
  display: -webkit-box;
  margin: 0 0 10px;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.guide-result-link { color: var(--primary); font-size: 11px; font-weight: 800; }
.guide-empty {
  margin-top: 26px;
  padding: 42px 24px;
  border: 1px dashed var(--line);
  border-radius: 18px;
  text-align: center;
}
.guide-empty h2 { margin: 0 0 8px; font-size: 22px; }
.guide-empty p { margin: 0 0 16px; color: var(--muted); font-size: 12px; }
.guide-empty a { color: var(--primary); font-size: 11px; font-weight: 800; }
.guide-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 32px;
}
.guide-pagination a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}
.guide-pagination a.active { border-color: var(--primary); background: var(--primary); color: #fff; }

@media (max-width: 760px) {
  .checkout-header,
  .checkout-footer,
  .checkout-shell { width: min(100% - 28px, 620px); }
  .checkout-header { min-height: 74px; }
  .checkout-brand img { width: 38px; height: 38px; }
  .checkout-back { font-size: 11px; }
  .checkout-shell { margin-top: 25px; }
  .checkout-progress { grid-template-columns: 1fr; gap: 8px; }
  .checkout-progress li { display: none; }
  .checkout-progress li.active { display: flex; }
  .checkout-progress li::after { display: block; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { position: static; grid-row: 1; }
  .checkout-panel { padding: 30px 22px; }
  .checkout-field-grid { grid-template-columns: 1fr; }
  .checkout-field-wide { grid-column: auto; }
  .payment-options { grid-template-columns: 1fr; }
  .checkout-result { padding: 38px 22px; }
  .legal-shell { width: min(100% - 28px, 920px); margin-top: 25px; }
  .legal-support { align-items: stretch; flex-direction: column; }
  .legal-support a { text-align: center; }
  .guide-index-hero { padding: 40px 0 48px; }
  .guide-directory-hero { text-align: left; }
  .guide-directory-hero .breadcrumbs { justify-content: flex-start; }
  .guide-directory-hero h1 { margin-inline: 0; }
  .guide-directory-hero > p { margin-inline: 0; }
  .guide-search { margin-inline: 0; }
  .guide-directory-heading { align-items: flex-start; flex-direction: column; gap: 8px; }
  .guide-result { grid-template-columns: 112px minmax(0, 1fr); gap: 16px; padding: 20px 0; }
  .guide-result-media { aspect-ratio: 1; }
  .guide-result-meta time { display: none; }
  .guide-result-copy h2 { margin-top: 7px; font-size: 18px; }
  .guide-result-copy > p { -webkit-line-clamp: 2; }
}

@media (max-width: 430px) {
  .checkout-brand strong { display: none; }
  .checkout-summary { padding: 22px; }
  .payment-option em { display: none; }
  .checkout-footer { display: grid; align-content: center; gap: 2px; }
  .guide-search { grid-template-columns: 1fr; }
  .guide-search button { min-height: 43px; }
  .guide-result { grid-template-columns: 88px minmax(0, 1fr); gap: 13px; }
  .guide-result-copy > p { display: none; }
  .guide-result-meta span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}
