:root {
  --ink: #101411;
  --muted: #657069;
  --paper: #f4f1e8;
  --panel: #fffdf6;
  --line: #d8d8cc;
  --acid: #d9ff52;
  --dark: #161b18;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(16, 20, 17, .1);
}

* {
  box-sizing: border-box;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
p, li { text-wrap: pretty; }
.hero-grid > *,
.stats-grid > *,
.card-grid > *,
.product-grid > *,
.split > *,
.form-layout > *,
.contact-form > *,
.footer-grid > *,
.compliance-strip-grid > *,
.timeline-item > * { min-width: 0; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 200; padding: 10px 14px; background: var(--acid); }
.skip-link:focus { top: 16px; }

.notice-bar {
  padding: 8px 20px;
  color: #e7eee9;
  background: var(--ink);
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
  text-transform: uppercase;
}
.compliance-strip {
  border-bottom: 1px solid #b9d536;
  background: var(--acid);
  color: var(--ink);
}
.compliance-strip-grid {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1fr) minmax(0, 1.35fr);
  gap: 18px;
  align-items: center;
  min-height: 54px;
  font-size: .76rem;
  letter-spacing: .01em;
  text-align: center;
}
.compliance-strip-grid span + span { border-left: 1px solid rgba(16,20,17,.25); }
.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(16,20,17,.1); background: rgba(244,241,232,.92); backdrop-filter: blur(14px); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 900; letter-spacing: -.015em; white-space: nowrap; }
.brand img { width: 38px; height: 38px; }
.nav-links { display: flex; align-items: center; gap: 30px; font-size: .92rem; font-weight: 700; }
.nav-links a { position: relative; white-space: nowrap; }
.nav-links a::after { position: absolute; right: 0; bottom: -6px; left: 0; height: 2px; background: var(--ink); content: ""; transform: scaleX(0); transition: transform .2s; }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: transparent; }

.eyebrow { margin: 0 0 12px; color: var(--muted); font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; line-height: 1.05; letter-spacing: -.025em; text-wrap: balance; }
h1 { max-width: 820px; margin-bottom: 24px; font-size: clamp(3.1rem, 8vw, 7.4rem); }
h2 { margin-bottom: 20px; font-size: clamp(2.2rem, 4.5vw, 4.5rem); }
h3 { margin-bottom: 10px; font-size: 1.35rem; }
.lead { max-width: 650px; color: var(--muted); font-size: clamp(1rem, 2vw, 1.25rem); }
.hero { padding: 78px 0 52px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: 50px; align-items: center; }
.hero-art { position: relative; min-height: 520px; border-radius: 32px; background: var(--dark); box-shadow: var(--shadow); }
.hero-art > img { width: 100%; height: 100%; min-height: 520px; object-fit: contain; }
.hero-stamp { position: absolute; right: -18px; bottom: 34px; width: 132px; height: 132px; display: grid; place-items: center; padding: 18px; border-radius: 50%; background: var(--acid); font-size: .72rem; font-weight: 900; letter-spacing: .05em; text-align: center; text-transform: uppercase; transform: rotate(8deg); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border: 1px solid var(--ink); border-radius: 999px; background: var(--ink); color: var(--white); font-size: .88rem; font-weight: 800; white-space: nowrap; transition: transform .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(16,20,17,.16); }
.button.secondary { background: transparent; color: var(--ink); }
.button.acid { border-color: var(--acid); background: var(--acid); color: var(--ink); }

.stats { padding: 24px 0 68px; }
.stats-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-block: 1px solid var(--line); }
.stat { padding: 26px 18px; text-align: center; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat strong { display: block; font-size: 1.5rem; letter-spacing: -.02em; }
.stat span { color: var(--muted); font-size: .84rem; }
.section { padding: 88px 0; }
.section.dark { color: var(--white); background: var(--dark); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 38px; }
.section-head h2 { max-width: 760px; margin-bottom: 0; }
.section-head p { max-width: 430px; margin: 0; color: var(--muted); }
.dark .section-head p, .dark .eyebrow { color: #aab5ae; }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.dark .card { border-color: #343b36; background: #1f2521; }
.card-number {
  display: grid;
  width: 36px;
  min-width: 36px;
  height: 36px;
  aspect-ratio: 1;
  flex: 0 0 36px;
  place-items: center;
  margin-bottom: 42px;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  font-size: .8rem;
  font-weight: 900;
  line-height: 1;
}
.card p { margin-bottom: 0; color: var(--muted); }
.dark .card p { color: #aab5ae; }

.page-hero { padding: 74px 0 48px; }
.page-hero h1 { max-width: 960px; font-size: clamp(3rem, 7vw, 6.2rem); }
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.filter { padding: 10px 17px; border: 1px solid var(--line); border-radius: 999px; background: transparent; font-size: .82rem; font-weight: 800; white-space: nowrap; }
.filter.active { border-color: var(--ink); background: var(--ink); color: var(--white); }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.product-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.product-visual { position: relative; display: grid; min-height: 280px; place-items: center; background: #e7e4d9; }
.product-device { width: 82px; height: 190px; border: 4px solid rgba(255,255,255,.3); border-radius: 22px; background: var(--device); box-shadow: inset -12px -16px 22px rgba(0,0,0,.2), 0 20px 30px rgba(0,0,0,.16); transform: rotate(7deg); }
.product-device::before { display: block; width: 48px; height: 35px; margin: -26px auto 0; border-radius: 11px 11px 4px 4px; background: #141816; content: ""; }
.badge { position: absolute; top: 16px; left: 16px; padding: 6px 10px; border-radius: 999px; background: var(--acid); font-size: .67rem; font-weight: 900; letter-spacing: .04em; white-space: nowrap; text-transform: uppercase; }
.product-info { padding: 22px; }
.product-meta { display: flex; justify-content: space-between; gap: 12px; margin-top: 18px; color: var(--muted); font-size: .8rem; }
.product-status { display: grid; gap: 7px; margin: 18px 0 0; padding: 16px; border-radius: 12px; background: #f0eee5; color: #444d47; font-size: .78rem; font-weight: 700; }
.product-status span::before { margin-right: 7px; color: #708000; content: "•"; }
.prelaunch-panel { margin-top: 28px; padding: 20px 24px; border: 1px solid #b9d536; border-radius: 14px; background: #f4ffd0; }
.prelaunch-panel strong { display: block; margin-bottom: 5px; }
.product-card[hidden] { display: none; }

.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 70px; align-items: start; }
.quote-block { padding: 48px; border-radius: 24px; background: var(--acid); }
.quote-block blockquote { margin: 0; font-size: clamp(1.8rem, 4vw, 3.4rem); font-weight: 900; line-height: 1.05; letter-spacing: -.025em; text-wrap: balance; }
.timeline { border-top: 1px solid var(--line); }
.timeline-item { display: grid; grid-template-columns: 110px minmax(0, 1fr); gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.timeline-item strong { font-size: .83rem; letter-spacing: .05em; text-transform: uppercase; }
.timeline-item p { margin: 0; color: var(--muted); }

.form-layout { display: grid; grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr); gap: 60px; align-items: start; }
.contact-list { display: grid; gap: 20px; margin-top: 35px; }
.contact-item { padding-top: 18px; border-top: 1px solid var(--line); }
.contact-item small { display: block; color: var(--muted); font-weight: 800; text-transform: uppercase; }
.contact-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; padding: 30px; border-radius: 24px; background: var(--panel); box-shadow: var(--shadow); }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .78rem; font-weight: 800; text-transform: uppercase; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 13px 14px; background: #fff; color: var(--ink); }
.field textarea { min-height: 150px; resize: vertical; }
.form-note { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: .78rem; }
.success { display: none; grid-column: 1 / -1; padding: 12px; border-radius: 10px; background: #e5f5cf; font-weight: 700; }
.success.show { display: block; }

.policy { max-width: 820px; padding: 70px 0 100px; }
.policy h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); }
.policy h2 { margin-top: 48px; font-size: 1.7rem; letter-spacing: -.015em; }
.policy p, .policy li { color: #4f5952; }
.policy-meta { padding-bottom: 24px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .85rem; }

.site-footer { padding: 56px 0 28px; color: #dbe2dd; background: #0c0f0d; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr); gap: 50px; }
.footer-review-grid { grid-template-columns: minmax(0, .9fr) minmax(0, 1.6fr) minmax(0, 1fr); }
.footer-brand p { max-width: 380px; color: #8d9891; }
.footer-links { display: grid; align-content: start; gap: 8px; font-size: .85rem; }
.footer-links span { color: #aeb8b1; }
.footer-links strong { margin-bottom: 8px; color: var(--acid); font-size: .72rem; letter-spacing: .07em; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 24px; border-top: 1px solid #283029; color: #78837c; font-size: .75rem; }

.age-gate { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; background: rgba(7,9,8,.9); backdrop-filter: blur(10px); }
.age-gate[hidden] { display: none; }
.age-card { width: min(540px, 100%); padding: 42px; border: 1px solid #454f48; border-radius: 24px; background: var(--dark); color: var(--white); text-align: center; box-shadow: 0 30px 100px rgba(0,0,0,.5); }
.age-card img { width: 54px; margin: 0 auto 22px; }
.age-card h2 { font-size: clamp(2rem, 6vw, 3.5rem); }
.age-card p { color: #aab5ae; }
.age-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.age-declined { display: none; color: #ffc4c4 !important; font-size: .83rem; }

@media (max-width: 860px) {
  .menu-toggle { display: grid; place-items: center; }
  .nav-links { position: absolute; top: 76px; right: 20px; left: 20px; display: none; padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: var(--panel); box-shadow: var(--shadow); }
  .nav-links.open { display: grid; }
  .hero-grid, .split, .form-layout { grid-template-columns: 1fr; }
  .hero-art { min-height: 400px; }
  .hero-art > img { min-height: 400px; }
  .card-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid, .footer-review-grid { grid-template-columns: 1fr; }
  .compliance-strip-grid { grid-template-columns: 1fr; gap: 3px; padding-block: 10px; }
  .compliance-strip-grid span + span { border-left: 0; }
  .section-head { display: block; }
  .section-head p { margin-top: 18px; }
}

@media (max-width: 580px) {
  .container { width: min(100% - 28px, 1160px); }
  .hero, .page-hero { padding-top: 50px; }
  .hero-art { min-height: 340px; }
  .hero-art > img { min-height: 340px; }
  .hero-stamp { right: 10px; width: 104px; height: 104px; }
  .stats-grid, .card-grid, .product-grid, .footer-grid, .contact-form { grid-template-columns: 1fr; }
  .stat + .stat { border-top: 1px solid var(--line); border-left: 0; }
  .section { padding: 64px 0; }
  .field.full { grid-column: auto; }
  .form-note, .success { grid-column: auto; }
  .quote-block, .age-card { padding: 28px; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; }
  .footer-bottom span + span { margin-top: 8px; }
  .age-actions { grid-template-columns: 1fr; }
}

/* V7: force natural English word wrapping across all page types. */
html,
body {
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

body,
p,
span,
a,
li,
button,
input,
textarea,
label,
small,
strong,
div,
h1,
h2,
h3,
h4,
h5,
h6 {
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
  text-wrap: normal;
}

p,
li,
small,
.card,
.notice,
.footer,
.footer *,
.site-footer,
.site-footer *,
.hero *,
.category *,
.product-card *,
.policy *,
.feature *,
.support * {
  text-align: left;
  word-spacing: normal !important;
  letter-spacing: normal;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
}

.hero-grid > :first-child,
.section-head > *,
.card,
.card > *,
.product-card,
.product-info,
.product-status,
.timeline-item > :last-child,
.contact-item,
.footer-links {
  min-width: 0;
  width: auto;
}

.card-grid,
.product-grid {
  grid-template-columns: repeat(3, minmax(300px, 1fr));
}

.footer-review-grid {
  grid-template-columns: minmax(240px, .8fr) minmax(420px, 1.7fr) minmax(220px, .8fr);
}

.footer-links span,
.footer-links a,
.contact-item span,
.policy p,
.policy li,
.product-info p,
.product-status span {
  max-width: none;
  white-space: normal;
}

.brand,
.nav-links a,
.button,
.filter,
.badge {
  white-space: nowrap;
}

.notice-bar,
.compliance-strip-grid,
.compliance-strip-grid *,
.hero-stamp,
.hero-stamp *,
.stat,
.stat *,
.card-number,
.badge,
.filter,
.button,
.age-card,
.age-card * {
  text-align: center;
}

@media (max-width: 1040px) {
  .card-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }

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

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .card-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }
}
