:root {
  --bg: #171d23;
  --surface: #11171c;
  --surface-2: #151b21;
  --surface-3: #1b232b;
  --text: #f2f5f8;
  --muted: #a4afbc;
  --subtle: #74808d;
  --gold: #00d3ad;
  --gold-light: #28e3c1;
  --gold-dark: #287b70;
  --violet: #5d57e8;
  --violet-light: #7771f3;
  --line: #26313a;
  --line-gold: rgba(0, 211, 173, .36);
  --max: 1180px;
  --header-height: 76px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --font-sans: "Montserrat", "Noto Sans JP", "Yu Gothic", system-ui, sans-serif;
  --font-serif: "Montserrat", "Noto Sans JP", "Yu Gothic", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--gold-dark) var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

::selection { color: var(--bg); background: var(--gold); }

.wrap { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.section { padding: 136px 0; scroll-margin-top: var(--header-height); }
.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; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--bg);
  background: var(--gold);
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  transition: opacity .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease), background-color .25s var(--ease);
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .text-link:focus-visible, .primary-nav a:focus-visible, .gallery-thumbs button:focus-visible, summary:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 4px; }
.button-primary { color: #111015; background: var(--gold); border-color: var(--gold); }
.button-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.button-secondary { color: var(--text); background: var(--surface-3); border-color: var(--line); }
.button-secondary:hover { border-color: var(--gold-dark); }
.button-ghost { color: var(--text); background: transparent; border-color: #53515a; }
.button-ghost:hover { border-color: var(--gold); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 650;
  transition: opacity .2s ease, transform .2s ease;
}
.text-link:hover { opacity: .76; transform: translateX(2px); }

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background-color .25s ease, border-color .25s ease;
}
.site-header.is-scrolled { background: rgba(10, 10, 15, .96); border-color: var(--line); }
.header-inner { display: flex; width: min(calc(100% - 48px), 1380px); height: 100%; align-items: center; justify-content: space-between; margin-inline: auto; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 13px; font-weight: 750; letter-spacing: .17em; }
.brand-mark { display: block; width: 32px; height: 32px; flex: 0 0 32px; object-fit: cover; }
.primary-nav { display: flex; align-items: center; gap: 34px; }
.primary-nav a { position: relative; color: #c7c4c0; font-size: 12px; font-weight: 650; letter-spacing: .08em; }
.primary-nav > a:not(.nav-cta)::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; content: ""; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .25s var(--ease); }
.primary-nav > a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
.primary-nav .nav-cta { padding: 10px 16px; border: 1px solid var(--line-gold); color: var(--gold-light); }
.nav-toggle { display: none; width: 44px; height: 44px; place-items: center; border: 1px solid var(--line); background: var(--surface); cursor: pointer; }

/* Hero */
.hero { position: relative; display: grid; min-height: 790px; height: 100svh; max-height: 980px; align-items: center; overflow: hidden; background: #08080d; }
.hero::before { position: absolute; z-index: 1; inset: 0; content: ""; background: linear-gradient(90deg, rgba(8,8,13,.98) 0%, rgba(8,8,13,.91) 43%, rgba(8,8,13,.28) 78%, rgba(8,8,13,.5) 100%); }
.hero::after { position: absolute; z-index: 1; right: 0; bottom: 0; left: 0; height: 210px; content: ""; background: linear-gradient(180deg, transparent, var(--bg)); }
.hero-backdrop { position: absolute; inset: 0 0 0 42%; background-image: url("../images/site/hero.jpg"); background-position: center; background-size: cover; filter: saturate(.45) contrast(1.08); opacity: .74; transform: scale(1.04); }
.hero-content { position: relative; z-index: 2; padding-top: 58px; }
.hero h1 { max-width: 830px; margin: 0; font-family: var(--font-serif); font-size: clamp(54px, 7.2vw, 104px); font-weight: 600; line-height: 1.18; letter-spacing: -.055em; }
.hero h1 .hero-line { display: block; white-space: nowrap; }
.hero h1 .hero-accent { color: var(--gold-light); }
.hero-copy { max-width: 640px; margin: 32px 0 0; color: #b8b4b0; font-size: 16px; line-height: 1.9; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.hero-metrics { display: flex; max-width: 690px; gap: 0; margin: 72px 0 0; }
.hero-metrics div { min-width: 170px; padding: 0 34px; border-left: 1px solid #3a3840; }
.hero-metrics div:first-child { padding-left: 0; border-left: 0; }
.hero-metrics dt { color: var(--text); font-family: var(--font-serif); font-size: 22px; font-weight: 500; }
.hero-metrics dd { margin: 5px 0 0; color: var(--subtle); font-size: 11px; letter-spacing: .1em; }
.scroll-cue { position: absolute; z-index: 3; right: 35px; bottom: 72px; display: flex; align-items: center; gap: 13px; color: #817f85; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; transform: rotate(90deg); transform-origin: right bottom; }
.scroll-cue span { display: block; width: 54px; height: 1px; background: #4a4850; }

/* Shared headings */
.section-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .6fr); align-items: end; gap: 80px; margin-bottom: 58px; }
.section-heading h2 { margin: 0; font-family: var(--font-serif); font-size: clamp(40px, 5vw, 68px); font-weight: 600; line-height: 1.25; letter-spacing: -.045em; }
.section-heading > p { max-width: 460px; margin: 0 0 6px; color: var(--muted); }
.section-heading.compact { margin-bottom: 48px; }
.section-heading.compact h2 { font-size: clamp(38px, 4.5vw, 60px); }

/* Catalog */
.catalog { position: relative; border-bottom: 1px solid var(--line); }
.catalog::before { position: absolute; top: 118px; left: 0; width: 9%; height: 1px; content: ""; background: var(--gold-dark); }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
.product-card { position: relative; overflow: hidden; border: 1px solid var(--line); background: var(--surface); transition: transform .28s var(--ease), border-color .28s var(--ease); }
.product-card:hover { border-color: #45434b; transform: translateY(-5px); }
.product-card-featured { border-color: var(--line-gold); }
.product-card-featured::after { position: absolute; inset: 0; border: 1px solid rgba(201,169,110,.12); content: ""; pointer-events: none; }
.card-media { position: relative; aspect-ratio: 1.25 / 1; overflow: hidden; background: #0d0d13; }
.card-media::after { position: absolute; inset: 40% 0 0; content: ""; background: linear-gradient(180deg, transparent, rgba(18,18,26,.95)); }
.card-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.55); transition: opacity .3s ease, transform .5s var(--ease); }
.product-card:hover .card-media img { opacity: .84; transform: scale(1.025); }
.card-badge { position: absolute; z-index: 2; top: 18px; right: 18px; padding: 7px 10px; color: #17130c; background: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.card-body { display: flex; min-height: 360px; flex-direction: column; padding: 30px; }
.card-kicker { display: flex; align-items: center; gap: 12px; color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.card-kicker span { color: #5f5d66; }
.card-body h3 { margin: 18px 0 8px; font-family: var(--font-serif); font-size: 42px; font-weight: 600; line-height: 1.15; letter-spacing: -.025em; }
.card-body > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
.card-price { display: flex; align-items: end; justify-content: space-between; margin-top: auto; padding-top: 32px; border-top: 1px solid var(--line); }
.card-price span { color: var(--subtle); font-size: 11px; letter-spacing: .09em; text-transform: uppercase; }
.card-price strong { font-family: var(--font-serif); font-size: 28px; font-weight: 600; }
.card-actions { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 24px; }
.card-actions .button { min-height: 44px; padding: 10px 18px; }

/* Comparison */
.comparison { border-bottom: 1px solid var(--line); background: #0d0d13; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); background: var(--surface); }
.comparison-table { width: 100%; min-width: 760px; border-collapse: collapse; }
.comparison-table th, .comparison-table td { padding: 20px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.comparison-table th:last-child, .comparison-table td:last-child { border-right: 0; }
.comparison-table tbody tr:last-child th, .comparison-table tbody tr:last-child td { border-bottom: 0; }
.comparison-table thead th { height: 96px; color: var(--muted); background: #101017; font-size: 13px; letter-spacing: .08em; }
.comparison-table thead th:first-child, .comparison-table tbody th { width: 32%; text-align: left; }
.comparison-table thead .is-premium { position: relative; color: var(--gold-light); background: #18160f; }
.comparison-table thead .is-premium span { position: absolute; top: 8px; right: 8px; color: var(--gold); font-size: 8px; letter-spacing: .16em; }
.comparison-table tbody th { color: #b9b6b2; font-size: 16px; font-weight: 550; }
.comparison-table tbody td { color: #aaa7a5; font-size: 16px; }
.comparison-table .is-premium { border-right-color: var(--line-gold); border-left: 1px solid var(--line-gold); background: rgba(201,169,110,.035); }
.comparison-table .check { color: var(--text); font-weight: 650; }
.comparison-table .is-premium .check { color: var(--gold-light); }
.comparison-table .muted { color: #4e4d55; }
.comparison-table .price-row strong { font-family: var(--font-serif); font-size: 24px; font-weight: 600; }

/* Product details */
.product-detail { position: relative; border-bottom: 1px solid var(--line); }
.product-detail-premium { background: #0d0c0c; }
.product-detail-premium::before { position: absolute; top: 0; right: 0; left: 0; height: 1px; content: ""; background: var(--gold-dark); }
.detail-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 52px; }
.detail-heading > div:first-child { position: relative; padding-left: 48px; }
.detail-number { position: absolute; top: 12px; left: 0; color: #484750; font-size: 11px; letter-spacing: .12em; }
.detail-heading .eyebrow { margin-bottom: 13px; }
.detail-heading h2 { margin: 0; font-family: var(--font-serif); font-size: clamp(58px, 7vw, 92px); font-weight: 600; line-height: 1; letter-spacing: -.045em; }
.detail-summary { text-align: right; }
.detail-summary p { margin: 0 0 8px; color: var(--muted); }
.detail-summary span { color: var(--subtle); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.detail-summary strong { margin-left: 8px; color: var(--gold-light); font-family: var(--font-serif); font-size: 27px; font-weight: 600; letter-spacing: 0; }
.detail-layout { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr); gap: 28px; align-items: start; }
.gallery-main { position: relative; aspect-ratio: 1.28 / 1; overflow: hidden; border: 1px solid var(--line); background: var(--surface); }
.gallery-main::after { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.02); content: ""; pointer-events: none; }
.gallery-main img { width: 100%; height: 100%; object-fit: contain; filter: saturate(.68); transition: opacity .2s ease, transform .35s var(--ease); }
.gallery-main img.is-changing { opacity: .4; transform: scale(.99); }
.gallery-thumbs { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 10px; margin-top: 10px; }
.gallery-thumbs button { position: relative; aspect-ratio: 1.55 / 1; overflow: hidden; padding: 0; border: 1px solid var(--line); background: var(--surface); cursor: pointer; transition: opacity .2s ease, border-color .2s ease, transform .2s ease; }
.gallery-thumbs button:hover { opacity: .8; transform: translateY(-2px); }
.gallery-thumbs button.is-active { border-color: var(--gold); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: contain; filter: saturate(.45); }
.feature-panel { padding: 36px; border: 1px solid var(--line); background: var(--surface); }
.product-detail-premium .feature-panel { border-color: var(--line-gold); }
.feature-panel-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; padding-bottom: 27px; border-bottom: 1px solid var(--line); }
.feature-panel-head .eyebrow { margin-bottom: 9px; }
.feature-panel-head h3 { margin: 0; font-family: var(--font-serif); font-size: 31px; font-weight: 600; line-height: 1.35; letter-spacing: -.025em; }
.feature-panel-head > span { color: var(--subtle); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.feature-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 34px; padding: 30px 0; }
.feature-group h4 { margin: 0 0 12px; color: var(--gold); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.check-list { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 18px; color: #bab7b4; font-size: 16px; line-height: 1.8; }
.check-list li::before { position: absolute; top: .72em; left: 0; width: 6px; height: 1px; content: ""; background: var(--gold-dark); }
.premium-note { padding: 20px; border: 1px solid var(--line-gold); background: #17150f; }
.premium-note span { color: var(--gold); font-size: 9px; font-weight: 750; letter-spacing: .18em; }
.premium-note p { margin: 7px 0 0; color: #c7c0b3; font-size: 16px; line-height: 1.8; }
.upgrade-callout { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 20px; border-left: 2px solid var(--gold-dark); background: #17171f; }
.upgrade-callout p { margin: 0; color: #a8a5a5; font-size: 16px; line-height: 1.8; }
.upgrade-callout p strong { display: block; margin-bottom: 2px; color: var(--text); }
.upgrade-callout a { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 8px; color: var(--gold-light); font-size: 11px; font-weight: 700; }
.detail-actions { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 24px; }

/* Support */
.support { background: var(--surface); }
.support-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.support-intro { position: sticky; top: 120px; align-self: start; }
.support-intro h2 { margin: 0; font-family: var(--font-serif); font-size: clamp(44px, 5vw, 70px); font-weight: 600; line-height: 1.25; letter-spacing: -.045em; }
.support-intro > p:not(.eyebrow) { max-width: 420px; margin: 24px 0 32px; color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 28px 48px 28px 0; cursor: pointer; color: #d8d5d0; font-size: 15px; font-weight: 600; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span::before, .faq-list summary span::after { position: absolute; top: 50%; right: 8px; width: 15px; height: 1px; content: ""; background: var(--gold); transition: transform .2s ease; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { max-width: 660px; margin: -5px 0 28px; color: var(--muted); font-size: 16px; line-height: 1.8; }

/* Footer */
.site-footer { padding: 70px 0 28px; border-top: 1px solid var(--line); background: #08080c; }
.footer-top { display: flex; align-items: start; justify-content: space-between; gap: 40px; padding-bottom: 58px; }
.footer-top p { margin: 18px 0 0; color: var(--subtle); font-size: 12px; letter-spacing: .07em; }
.footer-top nav { display: flex; flex-wrap: wrap; gap: 30px; }
.footer-top nav a { color: var(--muted); font-size: 12px; transition: color .2s ease; }
.footer-top nav a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 25px; border-top: 1px solid var(--line); color: #55545c; font-size: 10px; letter-spacing: .06em; }

/* Product pages */
.subpage { padding-top: var(--header-height); }
.subpage-hero { padding: 100px 0 76px; border-bottom: 1px solid var(--line); background: #0d0d13; }
.subpage-breadcrumb { margin-bottom: 36px; color: var(--subtle); font-size: 11px; letter-spacing: .09em; }
.subpage-breadcrumb a { color: var(--gold); }
.subpage-title { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.subpage-title h1 { margin: 0; font-family: var(--font-serif); font-size: clamp(68px, 9vw, 120px); font-weight: 600; line-height: 1; letter-spacing: -.05em; }
.subpage-title p { max-width: 500px; margin: 0; color: var(--muted); }
.subpage-content { padding: 92px 0 130px; }
.full-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; }
.full-feature-card { padding: 26px; border: 1px solid var(--line); background: var(--surface); }
.full-feature-card h3 { margin: 0 0 17px; color: var(--gold-light); font-family: var(--font-serif); font-size: 24px; font-weight: 600; letter-spacing: -.025em; }
.subpage-buy { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 54px; padding: 32px; border: 1px solid var(--line-gold); background: #17150f; }
.subpage-buy p { margin: 0; color: var(--muted); }
.subpage-buy strong { display: block; color: var(--text); font-family: var(--font-serif); font-size: 36px; font-weight: 600; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .section { padding: 110px 0; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card-featured { grid-column: span 2; display: grid; grid-template-columns: 1.05fr .95fr; }
  .product-card-featured .card-media { height: 100%; aspect-ratio: auto; }
  .detail-layout { grid-template-columns: 1fr; }
  .gallery-main { aspect-ratio: 1.55 / 1; }
  .feature-panel { padding: 32px; }
  .support-grid { gap: 60px; }
  .full-feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  :root { --header-height: 66px; }
  .wrap, .header-inner { width: min(calc(100% - 32px), var(--max)); }
  .section { padding: 86px 0; }
  .nav-toggle { display: grid; }
  .primary-nav { position: fixed; top: var(--header-height); right: 0; bottom: 0; left: 0; display: flex; align-items: stretch; flex-direction: column; gap: 0; padding: 20px 24px 40px; border-top: 1px solid var(--line); background: var(--bg); opacity: 0; pointer-events: none; transform: translateY(-10px); transition: opacity .2s ease, transform .2s ease; }
  .primary-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .primary-nav a { padding: 18px 8px; border-bottom: 1px solid var(--line); font-size: 15px; }
  .primary-nav .nav-cta { margin-top: 16px; text-align: center; }
  .hero { min-height: 760px; height: 100svh; max-height: 900px; }
  .hero::before { background: linear-gradient(180deg, rgba(8,8,13,.88), rgba(8,8,13,.97) 72%); }
  .hero-backdrop { inset: 0; opacity: .42; }
  .hero-content { padding-top: 40px; }
  .hero h1 { font-size: clamp(34px, 10vw, 52px); line-height: 1.28; letter-spacing: -.06em; }
  .hero-copy { font-size: 14px; }
  .hero-actions .button { flex: 1; }
  .hero-metrics { margin-top: 52px; }
  .hero-metrics div { min-width: 0; flex: 1; padding: 0 14px; }
  .hero-metrics dt { font-size: 18px; }
  .hero-metrics dd { font-size: 9px; line-height: 1.4; }
  .scroll-cue { display: none; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .section-heading h2 { font-size: 42px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card-featured { grid-column: auto; display: block; }
  .product-card-featured .card-media { aspect-ratio: 1.25 / 1; }
  .card-body { min-height: 340px; padding: 26px; }
  .detail-heading { align-items: start; flex-direction: column; margin-bottom: 36px; }
  .detail-summary { padding-left: 48px; text-align: left; }
  .detail-heading h2 { font-size: 64px; }
  .gallery-main { aspect-ratio: 1.1 / 1; }
  .feature-panel { padding: 24px; }
  .feature-panel-head { align-items: start; flex-direction: column; }
  .feature-columns { grid-template-columns: 1fr; gap: 25px; }
  .upgrade-callout { align-items: start; flex-direction: column; }
  .detail-actions { align-items: stretch; flex-direction: column; }
  .detail-actions .text-link { padding: 8px 0; }
  .support-grid { grid-template-columns: 1fr; gap: 52px; }
  .support-intro { position: static; }
  .footer-top, .footer-bottom { align-items: start; flex-direction: column; }
  .footer-top nav { display: grid; grid-template-columns: repeat(2, 1fr); width: 100%; }
  .subpage-title { align-items: start; flex-direction: column; }
  .full-feature-grid { grid-template-columns: 1fr; }
  .subpage-buy { align-items: stretch; flex-direction: column; }
}

@media (max-width: 430px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-metrics div:nth-child(3) { display: none; }
  .card-actions { align-items: stretch; flex-direction: column; }
  .card-actions .text-link { padding: 7px 0; }
  .gallery-thumbs { gap: 6px; }
}

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

/* Resilient text layout and information pages */
.private-cheat-grid > *,
.private-cheat-copy {
  min-width: 0;
}

.private-cheat h2 {
  max-width: 100%;
}

.private-cheat h2 span {
  white-space: normal;
  overflow-wrap: anywhere;
}

/* Store features */
.store-features {
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 211, 179, .08), transparent 28%),
    #0d1318;
  border-block: 1px solid var(--line);
}

.delivery-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 34px 0 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 211, 179, .24);
  border-radius: 12px;
  background: rgba(3, 10, 14, .72);
}

.delivery-flow span {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 68px;
  padding: 15px 26px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: .03em;
}

.delivery-flow span:not(:last-child) {
  border-right: 1px solid var(--line);
}

.delivery-flow b {
  margin-right: 12px;
  color: var(--accent);
  font: 800 11px/1 var(--font-mono);
  letter-spacing: .12em;
}

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

.store-feature-card {
  position: relative;
  min-width: 0;
  min-height: 218px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(18, 27, 33, .96), rgba(8, 14, 18, .96));
}

.store-feature-card::after {
  content: "";
  position: absolute;
  inset: auto -34px -54px auto;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(0, 211, 179, .13);
  border-radius: 50%;
}

.store-feature-number {
  display: inline-block;
  margin-bottom: 35px;
  color: var(--accent);
  font: 800 11px/1 var(--font-mono);
  letter-spacing: .18em;
}

.store-feature-card h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: clamp(19px, 2vw, 24px);
}

.store-feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

@media (max-width: 1040px) {
  .store-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .delivery-flow,
  .store-feature-grid {
    grid-template-columns: 1fr;
  }

  .delivery-flow span:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .store-feature-card {
    min-height: 0;
    padding: 24px;
  }

  .store-feature-number {
    margin-bottom: 24px;
  }
}

/* Keep the FAQ intro copy on one line on desktop. */
.faq-page .info-hero .subpage-title > p {
  max-width: none;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .faq-page .info-hero .subpage-title > p {
    white-space: normal;
  }
}

.info-hero .subpage-title {
  align-items: end;
}

.info-hero .subpage-title h1 {
  font-size: clamp(48px, 6vw, 78px);
}

.info-hero .subpage-title > p {
  line-height: 1.9;
}

.info-layout {
  display: grid;
  grid-template-columns: minmax(220px, .35fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}

.info-side {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.info-side p {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
}

.info-side nav {
  display: grid;
}

.info-side a {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.info-side a:last-child {
  border-bottom: 0;
}

.info-side a:hover {
  color: var(--gold-light);
}

.info-content {
  min-width: 0;
}

.template-notice {
  margin-bottom: 38px;
  padding: 20px 22px;
  border-left: 2px solid var(--gold-dark);
  background: var(--surface);
  color: var(--muted);
  line-height: 1.8;
}

.template-notice strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.legal-section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.legal-section:last-child {
  border-bottom: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.45;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  line-height: 1.95;
}

.legal-section ul {
  margin: 14px 0 0;
  padding-left: 1.4em;
}

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

.faq-page .faq-list details {
  padding-inline: 24px;
}

.faq-page .faq-list summary {
  font-size: 16px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal a {
  color: var(--muted);
}

@media (max-width: 760px) {
  .info-hero .subpage-title {
    align-items: start;
  }

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

  .info-side {
    position: static;
  }

  .faq-page .faq-list details {
    padding-inline: 18px;
  }
}

/* Fcheats-inspired dark catalog refinement */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  line-height: 1.8;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

input,
textarea,
select,
[contenteditable="true"] {
  -webkit-user-select: auto;
  user-select: auto;
}

p,
li,
dd,
td,
th,
a,
button {
  overflow-wrap: break-word;
  word-break: normal;
  line-break: strict;
  text-wrap: pretty;
}

:lang(ja) p,
:lang(ja) li,
:lang(ja) dd,
:lang(ja) td,
:lang(ja) th {
  word-break: auto-phrase;
}

h1,
h2,
h3,
h4 {
  overflow-wrap: normal;
  word-break: keep-all;
  line-break: strict;
  text-wrap: balance;
}

img {
  -webkit-user-drag: none;
  user-drag: none;
}

::selection {
  color: inherit;
  background: transparent;
}

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

.section {
  padding: 92px 0;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .16em;
}

.button {
  min-height: 46px;
  padding: 11px 22px;
  border-radius: 3px;
  font-size: 12px;
  letter-spacing: .035em;
}

.button-primary {
  color: #fff;
  background: var(--violet);
  border-color: var(--violet);
}

.button-primary:hover {
  background: var(--violet-light);
  border-color: var(--violet-light);
}

.button-secondary,
.button-ghost {
  color: var(--text);
  background: var(--surface-3);
  border-color: var(--line);
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: #52606c;
}

.site-header {
  background: rgba(18, 24, 30, .98);
  border-bottom-color: rgba(255, 255, 255, .035);
}

.site-header.is-scrolled {
  background: rgba(18, 24, 30, .98);
  border-color: var(--line);
}

.header-inner {
  width: min(calc(100% - 48px), 1240px);
}

.brand {
  font-size: 12px;
  letter-spacing: .12em;
}

.brand-mark {
  width: 29px;
  height: 29px;
  flex-basis: 29px;
}

.primary-nav {
  gap: 28px;
}

.primary-nav a {
  color: #b9c2cd;
  font-size: 11px;
  letter-spacing: .04em;
}

.primary-nav .nav-cta {
  padding: 9px 14px;
  border-color: #55616c;
  color: var(--text);
}

.hero {
  display: block;
  min-height: 0;
  height: auto;
  max-height: none;
  padding: 148px 0 86px;
  background: var(--bg);
}

.hero::before {
  background: radial-gradient(circle at 50% 18%, rgba(58, 70, 82, .18), transparent 44%);
}

.hero::after {
  display: none;
}

.hero-backdrop,
.scroll-cue {
  display: none;
}

.hero-content {
  padding-top: 0;
  text-align: center;
}

.hero h1 {
  max-width: none;
  margin-inline: auto;
  font-size: clamp(35px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -.035em;
  white-space: nowrap;
}

.hero h1 .hero-line {
  white-space: nowrap;
}

.hero h1 .hero-accent {
  color: var(--text);
}

.hero-copy {
  max-width: 830px;
  margin: 22px auto 0;
  color: var(--muted);
  line-height: 1.85;
}

.copy-line {
  display: block;
}

.phrase-keep {
  white-space: nowrap;
}

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

.hero-metrics {
  justify-content: center;
  max-width: 630px;
  margin: 48px auto 0;
}

.hero-metrics div {
  min-width: 0;
  flex: 1;
  padding: 0 24px;
  border-color: var(--line);
}

.hero-metrics dt {
  font-size: 18px;
  font-weight: 700;
}

.hero-metrics dd {
  color: var(--subtle);
  font-size: 9px;
}

.private-cheat {
  padding: 84px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #12181e;
}

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

.private-cheat h2 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 750;
  line-height: 1.45;
  letter-spacing: -.035em;
}

.private-cheat h2 span {
  display: block;
  white-space: nowrap;
}

.private-cheat-copy {
  display: grid;
  gap: 18px;
}

.private-cheat-copy > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.private-proof {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 10px !important;
  padding: 20px 22px;
  border-left: 2px solid var(--gold-dark);
  background: var(--surface);
}

.private-proof strong {
  flex: 0 0 auto;
  color: var(--text);
  font-size: 17px;
  white-space: nowrap;
}

.private-proof span {
  color: var(--subtle);
  font-size: 11px;
  line-height: 1.7;
}

.section-heading {
  grid-template-columns: minmax(0, 1.15fr) minmax(440px, .85fr);
  gap: 48px;
  margin-bottom: 42px;
}

.section-heading h2,
.section-heading.compact h2 {
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: -.03em;
}

.section-heading > p {
  max-width: 580px;
}

#compare-title,
#support-title {
  max-width: none;
  white-space: nowrap;
}

.catalog::before {
  display: none;
}

.catalog-showcase {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.product-grid {
  grid-template-columns: 1fr;
  gap: 14px;
}

.product-card,
.product-card-featured {
  display: grid;
  grid-column: auto;
  grid-template-columns: 112px minmax(0, 1fr);
  min-height: 178px;
  overflow: hidden;
  border-color: #202a32;
  border-radius: 5px;
  background: var(--surface);
  cursor: default;
}

.product-card:hover,
.product-card:focus-visible,
.product-card.is-active {
  border-color: #3c4954;
  outline: 0;
  transform: translateY(-2px);
}

.product-card-featured,
.product-card-featured:hover,
.product-card-featured.is-active {
  border-color: rgba(0, 211, 173, .48);
}

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

.card-media,
.product-card-featured .card-media {
  height: 100%;
  min-height: 178px;
  aspect-ratio: auto;
}

.card-media::after {
  background: linear-gradient(90deg, transparent 30%, rgba(17, 23, 28, .76));
}

.card-media img {
  filter: saturate(.62) brightness(.82);
}

.card-badge {
  top: 10px;
  right: 9px;
  padding: 5px 7px;
  color: #05241e;
  background: var(--gold);
  font-size: 8px;
}

.card-body {
  min-height: 0;
  padding: 18px 18px 16px;
}

.card-kicker {
  font-size: 8px;
  letter-spacing: .12em;
}

.card-body h3 {
  margin: 8px 0 5px;
  font-size: 24px;
  font-weight: 750;
}

.card-body > p {
  display: -webkit-box;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-price {
  margin-top: 14px;
  padding-top: 10px;
}

.card-price span {
  font-size: 8px;
}

.card-price strong {
  font-size: 19px;
}

.card-actions {
  margin-top: 11px;
}

.card-actions .button {
  min-height: 34px;
  padding: 7px 12px;
  font-size: 10px;
}

.card-actions .text-link {
  font-size: 10px;
}

.card-detail-button {
  width: 100%;
  min-height: 48px !important;
  justify-content: space-between;
  padding: 11px 16px !important;
  font-size: 12px !important;
}

.catalog-preview {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  min-height: 562px;
  overflow: hidden;
  border: 1px solid #202a32;
  border-radius: 5px;
  background: var(--surface);
}

.preview-image {
  position: relative;
  aspect-ratio: 16 / 8.6;
  overflow: hidden;
  background: #0c1115;
}

.preview-image::after {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  content: "";
  background: linear-gradient(180deg, transparent, var(--surface));
  pointer-events: none;
}

.preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.68) brightness(.72);
  transition: opacity .2s ease;
}

.preview-content {
  padding: 26px 30px 30px;
}

.preview-content > div:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(0, 211, 173, .08);
}

.preview-content h3 {
  margin: 12px 0 4px;
  font-size: 34px;
  font-weight: 750;
}

.preview-content p {
  margin: 0;
  color: var(--muted);
}

.preview-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.preview-footer strong {
  font-size: 25px;
}

.preview-detail-button {
  min-height: 52px;
  padding-inline: 26px;
  font-size: 13px;
}

.comparison,
.product-detail-premium,
.support,
.subpage-hero {
  background: var(--surface-2);
}

.table-wrap,
.feature-panel,
.full-feature-card,
.subpage-buy {
  border-color: #222d35;
  border-radius: 4px;
  background: var(--surface);
}

.comparison-table thead th {
  background: #12181d;
}

.comparison-table thead .is-premium,
.comparison-table .is-premium,
.premium-note,
.subpage-buy {
  background: rgba(0, 211, 173, .035);
}

.detail-heading {
  margin-bottom: 38px;
}

.detail-heading h2 {
  font-size: clamp(45px, 5.4vw, 66px);
  font-weight: 750;
}

.detail-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  gap: 20px;
}

.gallery-main {
  aspect-ratio: 1.7 / 1;
  border-radius: 4px;
}

.gallery-main img,
.gallery-thumbs img {
  background: #080a0f;
  filter: none;
}

.feature-panel {
  padding: 28px;
}

.feature-panel-head h3 {
  font-size: 25px;
  font-weight: 700;
}

.feature-columns {
  gap: 24px 28px;
  padding: 24px 0;
}

.feature-group h4 {
  color: var(--gold-light);
}

.check-list {
  gap: 7px;
}

.check-list li {
  color: #b7c0ca;
  font-size: 14px;
  line-height: 1.75;
}

.premium-note {
  border-color: var(--line-gold);
}

.upgrade-callout {
  background: var(--surface-3);
}

.support-grid {
  grid-template-columns: minmax(310px, .78fr) minmax(0, 1.22fr);
  gap: 84px;
}

.support-intro h2 {
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 750;
  letter-spacing: -.03em;
}

.faq-list summary {
  color: var(--text);
}

.site-footer {
  padding-top: 58px;
  background: #10161b;
}

.subpage-hero {
  padding: 78px 0 58px;
}

.subpage-title h1 {
  font-size: clamp(50px, 6.5vw, 82px);
  font-weight: 750;
}

.subpage-content {
  padding: 78px 0 100px;
}

.full-feature-grid {
  gap: 12px;
}

.full-feature-card {
  padding: 23px;
}

.full-feature-card h3 {
  font-size: 20px;
  font-weight: 700;
}

.card-media::before,
.gallery-main::before,
.preview-image::before {
  position: absolute;
  z-index: 4;
  right: 12px;
  bottom: 10px;
  content: "NONU.TOP";
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  opacity: .18;
  pointer-events: none;
}

/* License plans */
.license-plans {
  background: var(--surface-2);
}

.access-policy {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 52px;
  margin-bottom: 28px;
  padding: 34px;
  border: 1px solid var(--line-gold);
  border-radius: 5px;
  background: rgba(0, 211, 173, .035);
}

.access-policy h3,
.payment-methods h3 {
  margin: 0;
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 750;
  line-height: 1.4;
  letter-spacing: -.025em;
}

.access-policy-copy > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.85;
}

.access-policy-copy .policy-note {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--subtle);
  font-size: 13px;
}

.policy-points {
  display: grid;
  gap: 10px;
}

.policy-points div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.policy-points strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 750;
  white-space: nowrap;
}

.policy-points span {
  color: #c1cbd5;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
  text-align: right;
}

.plan-products {
  display: grid;
  gap: 16px;
}

.shared-duration-card {
  padding: 28px;
  border: 1px solid var(--line-gold);
  border-radius: 5px;
  background: var(--surface);
}

.shared-duration-head {
  margin-bottom: 22px;
}

.shared-duration-head span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
}

.shared-duration-head h3 {
  margin: 5px 0 0;
  font-size: 24px;
  font-weight: 750;
  line-height: 1.4;
}

.plan-product-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface);
}

.plan-product-featured {
  border-color: var(--line-gold);
}

.plan-product-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.plan-product-head span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
}

.plan-product-head h3 {
  margin: 4px 0 0;
  font-size: 30px;
  font-weight: 750;
  line-height: 1.2;
}

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

.duration-option {
  display: flex;
  min-width: 0;
  min-height: 94px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface-3);
}

.duration-option.is-featured {
  border-color: rgba(0, 211, 173, .28);
}

.duration-option strong {
  color: var(--text);
  font-size: 22px;
  font-weight: 750;
  line-height: 1.3;
  white-space: nowrap;
}

.duration-option span {
  margin-top: 6px;
  color: var(--subtle);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
}

.product-plan-section {
  margin-top: 88px;
  padding-top: 88px;
  border-top: 1px solid var(--line);
  scroll-margin-top: var(--header-height);
}

.product-plan-section .section-heading {
  margin-bottom: 32px;
}

.duration-grid-large .duration-option {
  min-height: 126px;
}

.duration-grid-large .duration-option strong {
  font-size: 28px;
}

.payment-methods {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 54px;
  margin-top: 28px;
  padding: 30px 34px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface);
}

.payment-methods p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.payment-methods ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.payment-methods li {
  position: relative;
  padding: 15px 16px 15px 34px;
  border: 1px solid var(--line);
  color: #c2cad2;
  background: var(--surface-3);
  font-size: 13px;
  font-weight: 650;
}

.payment-methods li::before {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--gold);
  transform: translateY(-50%);
}

.payment-inline {
  margin: 20px 0 0;
  padding: 17px 20px;
  border-left: 2px solid var(--gold-dark);
  color: var(--muted);
  background: var(--surface-3);
  font-size: 13px;
  line-height: 1.8;
}

@media (max-width: 1040px) {
  .section {
    padding: 82px 0;
  }

  .catalog-showcase {
    grid-template-columns: 330px minmax(0, 1fr);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading > p {
    max-width: 720px;
  }

  .access-policy {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .gallery-main {
    aspect-ratio: 1.55 / 1;
  }
}

@media (max-width: 760px) {
  .wrap,
  .header-inner {
    width: min(calc(100% - 40px), var(--max));
  }

  .section {
    padding: 68px 0;
  }

  .primary-nav {
    padding: 18px 20px 40px;
    background: #12181e;
  }

  .primary-nav a {
    min-height: 52px;
    display: flex;
    align-items: center;
    font-size: 14px;
  }

  .primary-nav .nav-cta {
    justify-content: center;
  }

  .hero {
    min-height: 0;
    height: auto;
    max-height: none;
    padding: 118px 0 64px;
  }

  .hero::before {
    background: radial-gradient(circle at 50% 16%, rgba(58, 70, 82, .18), transparent 48%);
  }

  .hero-content {
    padding-top: 0;
  }

  .hero h1 {
    font-size: clamp(30px, 8.2vw, 42px);
    line-height: 1.35;
    letter-spacing: -.045em;
    white-space: normal;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions .button {
    flex: 0 1 auto;
    min-height: 48px;
  }

  .hero-metrics {
    margin-top: 40px;
  }

  .hero-metrics div {
    padding: 0 12px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 34px;
  }

  .private-cheat-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-heading h2,
  .section-heading.compact h2 {
    font-size: clamp(28px, 7.8vw, 38px);
  }

  #compare-title,
  #support-title {
    max-width: 12em;
    white-space: normal;
  }

  .catalog-showcase {
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-card-featured {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .catalog-preview {
    position: static;
    min-height: 0;
  }

  .preview-content {
    padding: 24px;
  }

  .detail-heading {
    gap: 24px;
  }

  .detail-heading h2 {
    font-size: 50px;
  }

  .detail-summary {
    padding-left: 48px;
  }

  .feature-columns,
  .full-feature-grid {
    grid-template-columns: 1fr;
  }

  .support-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .support-intro {
    position: static;
  }

  .support-intro h2 {
    font-size: clamp(30px, 8vw, 39px);
  }

  .subpage-title h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .plan-product-card {
    padding: 22px;
  }

  .shared-duration-card {
    padding: 22px;
  }

  .access-policy,
  .payment-methods {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 24px;
  }

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

  .duration-grid .duration-option:last-child {
    grid-column: 1 / -1;
  }

  .product-plan-section {
    margin-top: 68px;
    padding-top: 68px;
  }
}

@media (max-width: 430px) {
  .wrap,
  .header-inner {
    width: min(calc(100% - 32px), var(--max));
  }

  .hero h1 {
    font-size: clamp(24px, 6.2vw, 28px);
  }

  .hero-metrics div:nth-child(3) {
    display: block;
  }

  .hero-metrics dt {
    font-size: 14px;
  }

  .hero-metrics dd {
    font-size: 8px;
    letter-spacing: .04em;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .product-card,
  .product-card-featured {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .card-body {
    padding: 16px 14px 14px;
  }

  .card-body h3 {
    font-size: 22px;
  }

  .card-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .card-actions .button {
    width: 100%;
    min-height: 42px;
  }

  .preview-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .preview-footer .button {
    width: 100%;
  }

  .plan-product-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .duration-option {
    min-height: 88px;
    padding: 16px;
  }

  .policy-points div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .policy-points span {
    text-align: left;
  }

  .payment-methods ul {
    grid-template-columns: 1fr;
  }

  .private-proof {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
}

/* Final safeguard: never allow the introduction heading to overlap its copy. */
.private-cheat-grid > *,
.private-cheat-copy {
  min-width: 0;
}

.private-cheat h2 {
  max-width: 100%;
}

.private-cheat h2 span {
  white-space: normal;
  overflow-wrap: anywhere;
}
