:root {
  --ink: #0b1120;
  --surface: #131c2e;
  --surface-2: #1b2740;
  --card: #141e31;
  --card-hi: #1a2740;
  --text: #eaf0f8;
  --muted: #9aa9c0;
  --line: rgba(148, 170, 200, .18);
  --line-strong: rgba(148, 170, 200, .32);
  --amber: #ffb63d;
  --amber-hot: #ff7a18;
  --cyan: #34e0d0;
  --good: #3ddc97;
  --shadow: 0 24px 60px -28px rgba(0, 0, 0, .75);
  --maxw: 1120px;
  --radius: 20px;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

@media (prefers-color-scheme: light) {
  :root {
    --ink: #f7f9fc;
    --surface: #fff;
    --surface-2: #eef3fa;
    --card: #fff;
    --card-hi: #f3f7fd;
    --text: #0b1120;
    --muted: #5a6b84;
    --line: rgba(11, 17, 32, .1);
    --line-strong: rgba(11, 17, 32, .2);
    --shadow: 0 24px 54px -32px rgba(11, 17, 32, .3);
  }
}

:root[data-theme="dark"] {
  --ink: #0b1120;
  --surface: #131c2e;
  --surface-2: #1b2740;
  --card: #141e31;
  --card-hi: #1a2740;
  --text: #eaf0f8;
  --muted: #9aa9c0;
  --line: rgba(148, 170, 200, .18);
  --line-strong: rgba(148, 170, 200, .32);
  --shadow: 0 24px 60px -28px rgba(0, 0, 0, .75);
}

:root[data-theme="light"] {
  --ink: #f7f9fc;
  --surface: #fff;
  --surface-2: #eef3fa;
  --card: #fff;
  --card-hi: #f3f7fd;
  --text: #0b1120;
  --muted: #5a6b84;
  --line: rgba(11, 17, 32, .1);
  --line-strong: rgba(11, 17, 32, .2);
  --shadow: 0 24px 54px -32px rgba(11, 17, 32, .3);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3 { margin: 0; line-height: 1.1; letter-spacing: -.03em; text-wrap: balance; }
p { margin: 0; }
.wrap { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 12px; z-index: 100; padding: .7rem 1rem; background: var(--amber); color: #0b1120; border-radius: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--ink) 88%, transparent);
  backdrop-filter: blur(16px);
}
.nav { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; color: var(--text); text-decoration: none; font-weight: 850; letter-spacing: -.02em; }
.brand-mark { width: 30px; height: 30px; flex: none; border-radius: 9px; background: radial-gradient(circle at 32% 30%, var(--amber), var(--amber-hot) 72%); box-shadow: 0 0 18px -2px var(--amber-hot); }
.brand b { color: var(--amber); }
.nav-links { display: flex; align-items: center; gap: 1.2rem; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: .94rem; font-weight: 650; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--amber); }
.theme-button { width: 40px; height: 40px; border: 1px solid var(--line-strong); border-radius: 11px; background: transparent; color: var(--text); cursor: pointer; font-size: 1rem; }

.hero { position: relative; isolation: isolate; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(60% 70% at 82% 10%, rgba(255, 182, 61, .15), transparent 70%), radial-gradient(45% 60% at 8% 30%, rgba(52, 224, 208, .1), transparent 68%);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr); gap: clamp(36px, 6vw, 76px); align-items: center; padding: clamp(60px, 8vw, 104px) 0; }
.eyebrow { display: inline-flex; align-items: center; gap: .55rem; color: var(--amber); font-family: var(--serif); font-style: italic; }
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; }
.hero h1 { max-width: 16ch; margin: .8rem 0 1rem; font-size: clamp(2.35rem, 5.6vw, 4.5rem); }
.hero .lead { max-width: 42rem; color: var(--muted); font-size: clamp(1.04rem, 2vw, 1.24rem); }
.price { margin: 1.4rem 0 1.2rem; color: var(--amber); font-size: clamp(2.1rem, 5vw, 3.25rem); font-weight: 850; letter-spacing: -.04em; }
.price small { color: var(--muted); font-size: .92rem; font-weight: 600; letter-spacing: 0; }
.cta { display: inline-flex; justify-content: center; align-items: center; min-height: 56px; padding: .9rem 1.65rem; border-radius: 999px; background: linear-gradient(180deg, var(--amber), var(--amber-hot)); box-shadow: 0 14px 36px -14px var(--amber-hot); color: #0b1120; text-decoration: none; font-size: 1.04rem; font-weight: 850; transition: transform .18s, box-shadow .18s; }
.cta:hover { transform: translateY(-2px); box-shadow: 0 20px 42px -16px var(--amber-hot); }
.microcopy { max-width: 46rem; margin-top: .75rem; color: var(--muted); font-size: .78rem; line-height: 1.5; }
.price-compare { max-width: 42rem; margin: -0.35rem 0 1.15rem; padding-left: 14px; border-left: 3px solid var(--cyan); color: var(--muted); font-size: .92rem; }
.hero-media { position: relative; }
.product-image { width: min(100%, 520px); margin-inline: auto; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.format-badge { position: absolute; right: -8px; bottom: 22px; padding: .6rem .9rem; border: 1px solid var(--line-strong); border-radius: 999px; background: var(--surface); color: var(--cyan); font-size: .82rem; font-weight: 800; box-shadow: var(--shadow); }

section { padding: clamp(66px, 9vw, 104px) 0; }
section.alt { border-block: 1px solid var(--line); background: var(--surface); }
.section-head { max-width: 720px; margin-bottom: 2.2rem; }
.section-head h2 { margin: .65rem 0 .8rem; font-size: clamp(1.85rem, 4vw, 3rem); }
.section-head p { color: var(--muted); font-size: 1.04rem; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: linear-gradient(180deg, var(--card-hi), var(--card)); box-shadow: var(--shadow); }
.feature-card .icon { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: .85rem; border: 1px solid color-mix(in srgb, var(--cyan) 38%, transparent); border-radius: 12px; background: color-mix(in srgb, var(--cyan) 10%, var(--card)); color: var(--cyan); font-weight: 900; }
.feature-card h3 { margin-bottom: .4rem; font-size: 1.06rem; }
.feature-card p { color: var(--muted); font-size: .92rem; }
.check-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 28px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 15px 16px 15px 48px; border: 1px solid var(--line); border-radius: 13px; background: var(--card); }
.check-list li::before { content: "✓"; position: absolute; left: 17px; color: var(--good); font-weight: 900; }
.legal-note { max-width: 860px; padding: 20px 22px; border: 1px solid var(--line-strong); border-left: 4px solid var(--amber); border-radius: 13px; background: var(--card); color: var(--muted); }
.legal-note strong { color: var(--text); }
.format-line { margin-top: 22px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 13px; background: var(--card); color: var(--muted); }
.format-line strong { color: var(--text); }
.audience { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.audience-card { padding: clamp(24px, 4vw, 34px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); }
.audience-card h3 { margin-bottom: .9rem; font-size: 1.3rem; }
.audience-card ul { display: grid; gap: .8rem; margin: 0; padding-left: 1.25rem; color: var(--muted); }
.audience-card.good { border-top: 3px solid var(--cyan); }
.audience-card.neutral { border-top: 3px solid var(--amber); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step; }
.step { counter-increment: step; padding: 25px; border: 1px solid var(--line); border-radius: 16px; background: var(--card); }
.step::before { content: "0" counter(step); display: block; margin-bottom: .65rem; color: var(--amber); font-family: var(--serif); font-size: 2rem; line-height: 1; }
.step h3 { margin-bottom: .4rem; font-size: 1.15rem; }
.step p { color: var(--muted); font-size: .93rem; }
.steps.steps-five { grid-template-columns: repeat(5, 1fr); }
.faq { max-width: 840px; }
details { margin-bottom: 10px; padding: 0 20px; border: 1px solid var(--line); border-radius: 13px; background: var(--card); }
summary { padding: 18px 28px 18px 0; cursor: pointer; font-weight: 760; }
details p { padding: 0 0 20px; color: var(--muted); }
.buy-panel { padding: clamp(32px, 7vw, 64px); border: 1px solid color-mix(in srgb, var(--amber) 42%, var(--line)); border-radius: 24px; background: radial-gradient(circle at 80% 0, rgba(255, 182, 61, .16), transparent 45%), linear-gradient(180deg, var(--card-hi), var(--card)); text-align: center; box-shadow: var(--shadow); }
.buy-panel h2 { max-width: 18ch; margin: .65rem auto .7rem; font-size: clamp(2rem, 4.5vw, 3.2rem); }
.buy-panel p:not(.microcopy) { max-width: 640px; margin-inline: auto; color: var(--muted); }
.buy-panel .price { margin: 1rem 0; }
.buy-panel .microcopy { margin-inline: auto; }
.disclaimer { margin-top: 1.2rem; color: var(--muted); font-size: .8rem; }

.catalog-hero { padding: clamp(64px, 9vw, 110px) 0 64px; text-align: center; }
.catalog-hero h1 { max-width: 17ch; margin: .8rem auto 1rem; font-size: clamp(2.5rem, 6vw, 4.8rem); }
.catalog-hero p { max-width: 680px; margin-inline: auto; color: var(--muted); font-size: 1.12rem; }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; padding-bottom: clamp(70px, 10vw, 120px); }
.product-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, var(--card-hi), var(--card)); box-shadow: var(--shadow); }
.product-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: center; border-bottom: 1px solid var(--line); }
.product-card-body { padding: 26px; }
.product-card h2 { margin-bottom: .65rem; font-size: clamp(1.35rem, 3vw, 1.75rem); }
.product-card p { min-height: 3.3em; color: var(--muted); }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 1.3rem; }
.card-price { color: var(--amber); font-size: 1.55rem; font-weight: 850; }
.detail-link { display: inline-flex; padding: .72rem 1.05rem; border-radius: 999px; background: var(--amber); color: #0b1120; text-decoration: none; font-weight: 800; }

.site-footer { padding: 40px 0; border-top: 1px solid var(--line); background: var(--surface); color: var(--muted); font-size: .86rem; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.footer-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-links a:hover { color: var(--amber); }

@media (max-width: 850px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero h1, .hero .lead, .microcopy { margin-inline: auto; }
  .feature-grid, .steps, .steps.steps-five { grid-template-columns: 1fr; }
  .hero-media { max-width: 560px; margin-inline: auto; }
  .price-compare { margin-inline: auto; text-align: left; }
}

@media (max-width: 680px) {
  .wrap { width: min(100% - 28px, var(--maxw)); }
  .nav { min-height: 62px; }
  .brand { font-size: .95rem; }
  .nav-links { gap: .7rem; }
  .nav-links a:first-child { display: none; }
  .check-list, .audience, .product-grid { grid-template-columns: 1fr; }
  .product-card-footer, .footer-grid { align-items: flex-start; flex-direction: column; }
  .product-card p { min-height: auto; }
  .format-badge { right: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; }
}

/* BEGIN GENERATED PRODUCT LAYOUT FIXES */
.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  column-gap: clamp(48px, 6vw, 80px);
}
.hero-copy,
.hero-media { min-width: 0; }
.hero h1 {
  max-width: none;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
  -webkit-hyphens: auto;
  hyphens: auto;
  font-size: clamp(2.35rem, 4.65vw, 3.95rem);
}
.hero-media {
  width: 100%;
  max-width: 420px;
  justify-self: end;
}
.product-image {
  width: 100%;
  max-width: 420px;
}
.microcopy {
  color: color-mix(in srgb, var(--text) 72%, var(--muted));
  font-size: max(.9rem, 14px);
  font-weight: 600;
  line-height: 1.55;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 720px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--card) 82%, transparent);
  color: color-mix(in srgb, var(--text) 76%, var(--muted));
  font-size: max(.75rem, 12px);
  font-weight: 650;
  line-height: 1.3;
}
.trust-row li::before {
  content: "✓";
  color: var(--good);
  font-weight: 900;
}
.benefits-section {
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 58%, var(--ink));
}
.benefit-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.benefit-stack li {
  position: relative;
  min-width: 0;
  padding: 22px 22px 22px 54px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, var(--card-hi), var(--card));
  box-shadow: var(--shadow);
}
.benefit-stack li::before {
  content: "✓";
  position: absolute;
  top: 21px;
  left: 22px;
  color: var(--good);
  font-size: 1.15rem;
  font-weight: 900;
}
.benefit-stack strong,
.benefit-stack span { display: block; }
.benefit-stack strong { margin-bottom: 5px; color: var(--text); font-size: 1.08rem; }
.benefit-stack span { color: var(--muted); font-size: .92rem; line-height: 1.55; }
.anti-abo {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding: 22px 24px;
  border: 1px solid color-mix(in srgb, var(--cyan) 50%, var(--line));
  border-left: 5px solid var(--cyan);
  border-radius: 15px;
  background: color-mix(in srgb, var(--cyan) 8%, var(--card));
}
.anti-abo span { color: var(--cyan); font-size: .78rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.anti-abo strong { color: var(--text); font-size: clamp(1.05rem, 2vw, 1.3rem); }
.anti-abo small { color: var(--muted); font-size: .8rem; }
.buy-panel .trust-row { justify-content: center; margin-inline: auto; }
.product-card img {
  width: 100%;
  height: clamp(220px, 25vw, 280px);
  aspect-ratio: auto;
  padding: 18px;
  object-fit: contain;
  object-position: center;
  background: color-mix(in srgb, var(--surface-2) 72%, var(--card));
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); row-gap: 44px; }
  .hero-media { justify-self: center; }
  .hero .trust-row { justify-content: center; margin-inline: auto; }
}

@media (max-width: 680px) {
  .hero h1 { overflow-wrap: normal; }
  .benefit-stack { grid-template-columns: minmax(0, 1fr); }
  .trust-row { gap: 6px; }
  .trust-row li { border-radius: 12px; }
  .product-card img { height: 240px; padding: 16px; }
}
/* END GENERATED PRODUCT LAYOUT FIXES */
