:root {
  color-scheme: dark;
  --ink: #f7f4ee;
  --muted: #bbb6ac;
  --muted-2: #8c8982;
  --bg: #070708;
  --bg-soft: #0d0d10;
  --panel: #121216;
  --panel-2: #18181d;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(235, 190, 95, 0.34);
  --gold: #e9bd67;
  --gold-soft: #ffe1a0;
  --gold-deep: #a66b16;
  --green: #80d8a2;
  --danger: #ffb18d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --content: 1180px;
  --header-height: 72px;
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 5%, rgba(210, 154, 55, 0.12), transparent 31rem),
    radial-gradient(circle at 12% 28%, rgba(87, 100, 190, 0.08), transparent 28rem),
    var(--bg);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold-soft);
  outline-offset: 4px;
}

::selection {
  color: #151006;
  background: var(--gold-soft);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #111;
  background: #fff;
  border-radius: 8px;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.topbar {
  position: relative;
  z-index: 22;
  padding: 8px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #ece5d8;
  background: #0b0b0d;
  font-size: 0.78rem;
  text-align: center;
}

.topbar strong {
  color: var(--gold-soft);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 7, 8, 0.82);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-name {
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.brand-sub {
  margin-top: 5px;
  color: var(--muted-2);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav > a:not(.button) {
  color: #cfcbc2;
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav > a:not(.button):hover {
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--panel);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  content: "";
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span {
  margin: 4px 0;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(5.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-5.5px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #171006;
  background: linear-gradient(135deg, #ffe0a0, #d99d35 52%, #f1c66e);
  box-shadow: 0 10px 28px rgba(210, 154, 55, 0.2);
}

.button-primary:hover {
  box-shadow: 0 14px 36px rgba(210, 154, 55, 0.34);
}

.button-secondary {
  border-color: var(--line-strong);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.035);
}

.button-secondary:hover {
  border-color: rgba(245, 210, 140, 0.65);
  background: rgba(255, 255, 255, 0.075);
}

.button-small {
  min-height: 42px;
  padding: 9px 15px;
  font-size: 0.82rem;
}

.icon-arrow {
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(58px, 8vw, 110px) 0 76px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -240px;
  right: -240px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(233, 189, 103, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 120px rgba(196, 128, 27, 0.12), inset 0 0 90px rgba(214, 160, 60, 0.07);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--gold-soft);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 1px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3 {
  margin-top: 0;
  color: #fff;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 800px;
  margin-bottom: 22px;
  font-size: clamp(2.75rem, 6.6vw, 6.2rem);
  font-weight: 870;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.3vw, 4.1rem);
  font-weight: 840;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.14rem, 2vw, 1.48rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.gradient-text {
  color: var(--gold-soft);
  background: linear-gradient(120deg, #fff1c7 5%, #dfac4f 48%, #fff0b6 83%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  max-width: 650px;
  margin: 0 0 28px;
  color: #d4d0c8;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.micro-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  color: #c4c0b8;
  font-size: 0.82rem;
  list-style: none;
}

.micro-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.micro-trust li::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(128, 216, 162, 0.5);
  content: "";
}

.hero-visual {
  position: relative;
  width: min(100%, 510px);
  margin-inline: auto;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  inset: 16% -8% 8%;
  border-radius: 48%;
  background: radial-gradient(circle, rgba(222, 165, 61, 0.35), transparent 67%);
  filter: blur(30px);
  content: "";
}

.hero-visual img {
  width: 100%;
  max-height: 690px;
  object-fit: contain;
  filter: drop-shadow(0 28px 45px rgba(0, 0, 0, 0.55));
}

.visual-label {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #d9d5cd;
  background: rgba(6, 6, 8, 0.74);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.fact-band {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fact {
  min-width: 0;
  padding: 25px clamp(14px, 3vw, 32px);
  border-right: 1px solid var(--line);
}

.fact:first-child {
  padding-left: 0;
}

.fact:last-child {
  border-right: 0;
}

.fact-value {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: clamp(1.14rem, 2vw, 1.55rem);
  font-weight: 850;
  line-height: 1.1;
}

.fact-label {
  display: block;
  color: var(--muted-2);
  font-size: 0.75rem;
}

.section {
  position: relative;
  padding: clamp(76px, 10vw, 130px) 0;
}

.section-tight {
  padding-block: clamp(58px, 8vw, 92px);
}

.section-muted {
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  background: #0b0b0e;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.section-head > div:first-child {
  max-width: 760px;
}

.section-head p,
.body-copy {
  color: var(--muted);
}

.section-head p {
  max-width: 600px;
  margin: 0;
  font-size: 1.02rem;
}

.kicker {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.privacy-split,
.pack-split,
.seller-split,
.guide-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(34px, 7vw, 90px);
}

.media-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #030304;
  box-shadow: var(--shadow);
}

.media-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.media-card.privacy-angle-visual {
  border-color: rgba(233, 189, 103, 0.24);
  background: #030304;
}

.media-card.privacy-angle-visual img {
  object-fit: contain;
}

.media-card.wide img {
  aspect-ratio: 16 / 9;
}

.media-card.document-card img {
  aspect-ratio: 970 / 867;
  object-fit: contain;
}

.angle-copy h2,
.pack-copy h2 {
  max-width: 640px;
}

.angle-list,
.check-list,
.spec-list,
.plain-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.angle-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.angle-list li,
.check-list li {
  position: relative;
  padding-left: 27px;
  color: #dad6ce;
}

.angle-list li::before,
.check-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 9px;
  height: 9px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  content: "";
}

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

.model-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.055), transparent 43%),
    var(--panel);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.model-card:hover {
  border-color: var(--line-strong);
  background:
    linear-gradient(155deg, rgba(241, 197, 110, 0.09), transparent 48%),
    var(--panel);
  transform: translateY(-5px);
}

.model-card::after {
  position: absolute;
  top: -80px;
  right: -75px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(233, 189, 103, 0.16);
  border-radius: 50%;
  content: "";
}

.model-chip {
  align-self: flex-start;
  margin-bottom: 38px;
  padding: 5px 9px;
  border: 1px solid rgba(128, 216, 162, 0.24);
  border-radius: 999px;
  color: #bceacf;
  background: rgba(128, 216, 162, 0.07);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.model-card h3 {
  font-size: 1.55rem;
}

.model-size {
  margin: 0 0 8px;
  color: var(--gold-soft);
  font-size: 0.84rem;
  font-weight: 750;
}

.model-card p:not(.model-size) {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.model-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.model-actions .button {
  flex: 1 1 130px;
}

.model-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 177, 141, 0.26);
  border-radius: var(--radius-sm);
  color: #e7d5cb;
  background: rgba(255, 177, 141, 0.05);
  font-size: 0.88rem;
}

.model-note strong {
  color: #ffd0b9;
}

.lineup {
  position: relative;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #030304;
}

.lineup img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

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

.feature-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.feature-card img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
}

.feature-card-copy {
  padding: 23px 24px 26px;
}

.feature-card-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.video-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  grid-template-areas: "video copy";
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}

.video-frame {
  grid-area: video;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #000;
  box-shadow: var(--shadow);
}

.video-frame video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-copy {
  grid-area: copy;
}

.video-copy p {
  color: var(--muted);
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
  gap: 16px;
}

.document-item {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(233, 189, 103, 0.07), transparent 48%),
    var(--panel);
}

.document-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  border: 1px solid rgba(233, 189, 103, 0.28);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(233, 189, 103, 0.06);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.document-item h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
}

.document-item p {
  color: var(--muted);
  font-size: 0.9rem;
}

.document-item .document-ref {
  margin-top: auto;
  padding-top: 8px;
  color: var(--muted-2);
  font-size: 0.72rem;
}

.document-item .button {
  width: 100%;
  margin-top: 10px;
}

.document-note {
  max-width: 940px;
  margin: 20px 0 0;
  padding-left: 16px;
  border-left: 2px solid var(--gold);
  color: var(--muted-2);
  font-size: 0.76rem;
  line-height: 1.65;
}

.fine-print {
  color: var(--muted-2);
  font-size: 0.74rem;
  line-height: 1.55;
}

.comparison {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-spacing: 0;
  background: var(--panel);
}

.comparison th,
.comparison td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison tr:last-child th,
.comparison tr:last-child td {
  border-bottom: 0;
}

.comparison thead th {
  color: var(--gold-soft);
  background: rgba(233, 189, 103, 0.06);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison tbody th {
  width: 25%;
  color: #fff;
}

.comparison td {
  color: var(--muted);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  counter-reset: steps;
}

.step {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  counter-increment: steps;
}

.step::before {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 32px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--gold-soft);
  background: rgba(233, 189, 103, 0.06);
  font-weight: 850;
  content: counter(steps, decimal-leading-zero);
}

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

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 23px 48px 23px 0;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 760;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 15px;
  height: 1.5px;
  background: var(--gold-soft);
  content: "";
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

.faq-list summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-answer {
  max-width: 760px;
  padding: 0 48px 23px 0;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
}

.seller-card {
  padding: clamp(26px, 5vw, 52px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 8%, rgba(233, 189, 103, 0.11), transparent 20rem),
    var(--panel);
}

.seller-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.seller-point {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
}

.seller-point strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
}

.seller-point span {
  color: var(--muted-2);
  font-size: 0.78rem;
}

.purchase-box {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0b0b0d;
}

.purchase-box h3 {
  margin-bottom: 14px;
}

.purchase-box p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.purchase-box .button {
  width: 100%;
}

.disclosure {
  margin-top: 20px;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  color: #cbc7be;
  background: rgba(233, 189, 103, 0.05);
  font-size: 0.82rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050506;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 42px;
  padding-block: 58px 40px;
}

.footer-brand p {
  max-width: 420px;
  margin: 18px 0 0;
  color: var(--muted-2);
  font-size: 0.84rem;
}

.footer-col h2 {
  margin-bottom: 16px;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.84rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-legal {
  padding: 24px 0 34px;
  border-top: 1px solid var(--line);
  color: #918d85;
  font-size: 0.78rem;
  line-height: 1.55;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
}

.footer-bottom a {
  color: #aaa69e;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 28px;
  padding: 0;
  color: var(--muted-2);
  font-size: 0.78rem;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 7px;
  content: "/";
}

.breadcrumbs a {
  color: #cbc7bf;
}

.product-hero {
  padding: clamp(50px, 7vw, 86px) 0 70px;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(36px, 7vw, 92px);
}

.product-hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.1rem);
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
}

.pill {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d9d5cc;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.7rem;
  font-weight: 750;
}

.product-panel {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.product-panel img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-panel-copy {
  padding: 24px;
}

.product-panel-copy .button {
  width: 100%;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.spec-list li {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel);
}

.spec-list strong,
.spec-list span {
  display: block;
}

.spec-list strong {
  color: #fff;
}

.spec-list span {
  margin-top: 3px;
  color: var(--muted-2);
  font-size: 0.78rem;
}

.article-copy {
  color: var(--muted);
}

.article-copy h2 {
  margin-top: 1.6em;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.article-copy h3 {
  margin-top: 1.5em;
}

.article-copy p,
.article-copy li {
  max-width: 760px;
}

.article-copy strong {
  color: #e7e3db;
}

.article-copy a {
  color: var(--gold-soft);
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(25px, 5vw, 48px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(120deg, rgba(233, 189, 103, 0.09), transparent 60%),
    var(--panel);
}

.cta-banner h2 {
  max-width: 700px;
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
}

.cta-banner p {
  margin: 0;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 960px) {
  .hero-grid,
  .product-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
    gap: 38px;
  }

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

  .feature-card:last-child {
    grid-column: 1 / -1;
  }

  .video-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "video";
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--content));
  }

  .topbar {
    padding-inline: 10px;
    font-size: 0.7rem;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    z-index: 21;
    inset: var(--header-height) 0 auto;
    display: grid;
    max-height: calc(100dvh - var(--header-height));
    gap: 0;
    padding: 18px 20px 26px;
    overflow: auto;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 7, 8, 0.98);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav > a:not(.button) {
    padding: 14px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .site-nav .button {
    margin-top: 16px;
  }

  .hero,
  .product-hero {
    padding-top: 48px;
  }

  .hero-grid,
  .product-hero-grid,
  .privacy-split,
  .pack-split,
  .seller-split,
  .guide-split {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 10.2vw, 3.1rem);
  }

  .hero-visual {
    width: min(100%, 410px);
    order: -1;
  }

  .hero-visual img {
    max-height: 470px;
  }

  .hero-actions {
    display: grid;
  }

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

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

  .fact {
    padding: 19px 14px;
    border-bottom: 1px solid var(--line);
  }

  .fact:nth-child(2) {
    border-right: 0;
  }

  .fact:nth-child(3),
  .fact:nth-child(4) {
    border-bottom: 0;
  }

  .fact:first-child {
    padding-left: 0;
  }

  .fact:nth-child(3) {
    padding-left: 0;
  }

  .fact-label {
    font-size: 0.69rem;
  }

  .section-head {
    display: block;
  }

  .model-grid,
  .feature-grid,
  .step-grid,
  .seller-points,
  .spec-list {
    grid-template-columns: 1fr;
  }

  .feature-card:last-child {
    grid-column: auto;
  }

  .model-card {
    min-height: 310px;
  }

  .angle-list {
    grid-template-columns: 1fr;
  }

  .comparison-wrap {
    margin-inline: -14px;
    overflow-x: auto;
    padding-inline: 14px;
    -webkit-overflow-scrolling: touch;
  }

  .comparison {
    min-width: 650px;
  }

  .cta-banner {
    display: block;
  }

  .cta-banner .button {
    width: 100%;
    margin-top: 22px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span,
  .footer-bottom a {
    display: block;
    margin-top: 7px;
  }
}

@media (max-width: 390px) {
  .brand-name {
    font-size: 0.76rem;
    letter-spacing: 0.09em;
  }

  .brand-sub {
    font-size: 0.57rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .model-card,
  .step,
  .purchase-box {
    padding: 22px;
  }

  .fact-value {
    font-size: 1.05rem;
  }
}

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

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

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

@media print {
  .topbar,
  .site-header,
  .hero-actions,
  .button,
  video {
    display: none !important;
  }

  body {
    color: #111;
    background: #fff;
  }

  h1,
  h2,
  h3 {
    color: #000;
  }

  .section,
  .hero {
    padding-block: 28px;
  }
}
