/* ==========================================================================
   GM6 — static site styles
   Brushed-steel on black, matching the GM6 logo.
   ========================================================================== */

:root {
  --bg: #07080a;
  --bg-2: #0d0f13;
  --surface: #12151a;
  --surface-2: #181c22;
  --line: #242a33;
  --line-2: #323a45;
  --text: #e8ebef;
  --muted: #9aa3ae;
  --faint: #6b7480;
  --accent: #9fc3e6;
  --accent-2: #c9d3de;
  --steel: linear-gradient(180deg, #ffffff 0%, #c9cfd6 35%, #8c96a1 60%, #dfe3e8 100%);
  --radius: 14px;
  --radius-sm: 10px;
  --max: 1180px;
  --font-display: "Michroma", "Eurostile", "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "Cascadia Code", Consolas, monospace;
  color-scheme: dark;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 16px; }
@media (min-width: 700px) { .container { padding: 0 32px; } }

.skip-link {
  position: absolute; left: -9999px; top: 8px; z-index: 100;
  background: var(--text); color: var(--bg); padding: 8px 14px; border-radius: 8px;
}
.skip-link:focus { left: 8px; }

/* ---------- Type ---------- */
h1, h2, h3 { line-height: 1.15; margin: 0 0 .5em; font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.2rem, 6vw, 4.2rem); }
h2 { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.01em; font-size: clamp(1.5rem, 3.2vw, 2.3rem); line-height: 1.2; }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }

.steel {
  background: var(--steel);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}
.lede { font-size: 1.15rem; color: var(--muted); max-width: 640px; }
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-radius: 999px;
  font-weight: 600; font-size: .95rem; line-height: 1;
  border: 1px solid var(--line-2);
  color: var(--text); background: var(--surface);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  cursor: pointer;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); border-color: #4a5462; background: var(--surface-2); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--text); color: #0a0b0d; border-color: var(--text); }
.btn-primary:hover { background: #fff; border-color: #fff; }
.btn-yt { background: #ff0033; border-color: #ff0033; color: #fff; }
.btn-yt:hover { background: #ff2a50; border-color: #ff2a50; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7, 8, 10, .78);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--text); }
.brand:hover { text-decoration: none; }
.brand img { width: 48px; height: 48px; }
.brand-name { font-family: var(--font-display); font-size: .95rem; letter-spacing: .08em; }
.brand-name span { color: var(--muted); }

.nav-links { display: none; list-style: none; margin: 0; padding: 0; gap: 28px; }
.nav-links a { color: var(--muted); font-size: .93rem; font-weight: 500; }
.nav-links a:hover { color: var(--text); text-decoration: none; }
.nav-cta { display: none; padding: 9px 16px; font-size: .88rem; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 10px;
  border: 1px solid var(--line-2); background: transparent; color: var(--text); cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }

.mobile-menu { display: none; border-top: 1px solid var(--line); padding: 8px 0 18px; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 12px 0; color: var(--text); font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile-menu a:hover { text-decoration: none; color: var(--accent); }
.mobile-menu .btn { margin-top: 16px; border-bottom: 0; justify-content: center; width: 100%; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle, .mobile-menu, .mobile-menu.open { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: 72px 0 64px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(600px 300px at 80% 10%, rgba(159, 195, 230, .12), transparent 70%),
    radial-gradient(500px 300px at 10% 90%, rgba(201, 211, 222, .06), transparent 70%);
}
.hero-grid-bg {
  position: absolute; inset: 0; z-index: -1; opacity: .35;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 60% 30%, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 30%, #000 20%, transparent 70%);
}
.hero-inner { display: grid; gap: 48px; align-items: center; }
.hero h1 { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.02em; line-height: 1.15; font-size: clamp(1.55rem, 4vw, 2.9rem); }
.hero h1 span { white-space: nowrap; }
.hero .lede { margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.pivot-badge {
  display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding: 6px 14px 6px 6px; margin-bottom: 22px;
  border: 1px solid var(--line-2); border-radius: 999px; background: var(--surface);
  font-size: .85rem; color: var(--muted);
}
.pivot-badge .old { padding: 3px 10px; border-radius: 999px; background: var(--surface-2); text-decoration: line-through; text-decoration-color: var(--faint); }
.pivot-badge .new { color: var(--text); font-weight: 600; }
.pivot-badge .arrow { color: var(--accent); }

.hero-logo { display: none; justify-self: center; position: relative; }
.hero-logo img { width: 340px; height: 340px; filter: drop-shadow(0 30px 60px rgba(0,0,0,.6)); }
.hero-logo::after {
  content: ""; position: absolute; inset: -18px; border-radius: 50%;
  border: 1px dashed var(--line-2); animation: spin 60s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (min-width: 960px) {
  .hero { padding: 110px 0 96px; }
  .hero-inner { grid-template-columns: 1.35fr 1fr; }
  .hero-logo { display: block; }
}

.stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  margin-top: 56px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.stat { background: var(--bg-2); padding: 20px 22px; }
.stat-value { font-family: var(--font-display); font-size: clamp(1.3rem, 3vw, 1.8rem); }
.stat-label { color: var(--muted); font-size: .85rem; }
@media (min-width: 700px) { .stats { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Sections ---------- */
section { padding: 80px 0; }
.section-alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ---------- Featured video ---------- */
.featured { display: grid; gap: 32px; align-items: center; }
@media (min-width: 960px) { .featured { grid-template-columns: 1.4fr 1fr; gap: 48px; } }

.video-frame {
  position: relative; aspect-ratio: 16 / 9; width: 100%;
  border-radius: var(--radius); overflow: hidden;
  background: #000; border: 1px solid var(--line-2);
  box-shadow: 0 30px 80px -30px rgba(159, 195, 230, .18);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.yt-facade { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; cursor: pointer; background: #000; }
.yt-facade img { width: 100%; height: 100%; object-fit: cover; opacity: .9; transition: opacity .2s ease, transform .4s ease; }
.yt-facade:hover img { opacity: 1; transform: scale(1.02); }
.play-btn {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 78px; height: 78px; border-radius: 50%;
  background: rgba(255, 0, 51, .92); display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.5); transition: transform .15s ease;
}
.yt-facade:hover .play-btn { transform: translate(-50%, -50%) scale(1.08); }
.play-btn svg { width: 30px; height: 30px; margin-left: 4px; fill: #fff; }

.tag {
  display: inline-block; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px; border: 1px solid var(--line-2); color: var(--muted);
}
.tag-new { color: var(--accent); border-color: rgba(159,195,230,.4); background: rgba(159,195,230,.08); }
.featured-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.featured h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }

/* ---------- Cards: what we're building ---------- */
.cards { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cards { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; transition: border-color .2s ease, transform .2s ease;
}
.card:hover { border-color: var(--line-2); transform: translateY(-2px); }
.card-icon {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(159,195,230,.18), rgba(201,211,222,.08));
  border: 1px solid var(--line-2); color: var(--accent);
}
.card-icon svg { width: 22px; height: 22px; }
.card p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- Timeline / story ---------- */
.story { display: grid; gap: 48px; }
@media (min-width: 960px) { .story { grid-template-columns: 1fr 1fr; gap: 64px; } }
.story-copy p { color: var(--muted); }
.story-copy p strong { color: var(--text); font-weight: 600; }

.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--line-2), var(--accent)); }
.timeline li { position: relative; padding: 0 0 28px 36px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--bg-2); border: 2px solid var(--line-2);
}
.timeline li.now::before { border-color: var(--accent); background: var(--accent); box-shadow: 0 0 0 6px rgba(159,195,230,.15); }
.timeline .when { font-family: var(--font-mono); font-size: .78rem; color: var(--accent); letter-spacing: .08em; text-transform: uppercase; }
.timeline h3 { margin: 4px 0 4px; }
.timeline p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- Archive ---------- */
.archive-controls { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font: inherit; font-size: .88rem; font-weight: 500;
  padding: 8px 14px; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--line-2); background: transparent; color: var(--muted);
  transition: all .15s ease;
}
.chip:hover { color: var(--text); border-color: #4a5462; }
.chip[aria-pressed="true"] { background: var(--text); color: #0a0b0d; border-color: var(--text); }

.sort { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .88rem; }
.sort select {
  font: inherit; color: var(--text); background: var(--surface); border: 1px solid var(--line-2);
  border-radius: 8px; padding: 7px 10px;
}

.video-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .video-grid { grid-template-columns: repeat(3, 1fr); } }

.vcard { display: flex; flex-direction: column; color: var(--text); border-radius: var(--radius-sm); }
.vcard:hover { text-decoration: none; }
.vcard[hidden] { display: none; }
.vthumb {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius-sm); overflow: hidden;
  background: var(--surface); border: 1px solid var(--line);
}
.vthumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; filter: saturate(.9); }
.vcard:hover .vthumb img { transform: scale(1.04); filter: saturate(1.05); }
.vlen {
  position: absolute; right: 8px; bottom: 8px; padding: 2px 7px; border-radius: 6px;
  background: rgba(0,0,0,.82); font-size: .78rem; font-weight: 600; font-family: var(--font-mono);
}
.vtitle { font-size: 1rem; font-weight: 600; line-height: 1.35; margin: 12px 0 4px; }
.vcard:hover .vtitle { color: var(--accent); }
.vmeta { font-size: .85rem; color: var(--faint); }

.archive-empty { color: var(--muted); padding: 24px 0; }

/* ---------- Subscribe CTA ---------- */
.cta {
  position: relative; overflow: hidden;
  border: 1px solid var(--line-2); border-radius: 22px;
  padding: 48px 24px; text-align: center;
  background:
    radial-gradient(500px 220px at 50% 0%, rgba(159,195,230,.16), transparent 70%),
    var(--surface);
}
.cta img { width: 72px; height: 72px; margin: 0 auto 20px; }
.cta p { color: var(--muted); max-width: 560px; margin: 0 auto 28px; }
.cta .hero-actions { justify-content: center; }
@media (min-width: 700px) { .cta { padding: 64px 48px; } }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 36px 0; color: var(--faint); font-size: .88rem; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); }

/* ---------- 404 ---------- */
.notfound { min-height: 80vh; display: grid; place-items: center; text-align: center; padding: 40px 16px; }
.notfound img { width: 120px; height: 120px; margin: 0 auto 24px; }
.notfound .code { font-family: var(--font-display); font-size: clamp(3rem, 12vw, 6rem); margin: 0; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Brand wordmark in headings (matches the GM6 logo lettering) ---------- */
.display { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.01em; }

/* ---------- Page header (inner pages) ---------- */
.page-hero { position: relative; padding: 72px 0 40px; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(700px 260px at 50% 0%, rgba(159,195,230,.10), transparent 70%);
}
.page-hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.8rem, 4.6vw, 3rem); }
.nav-links a[aria-current="page"] { color: var(--text); }

/* ---------- Products ---------- */
.product-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }

.product {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line); border-radius: 18px; padding: 28px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.product:hover { border-color: var(--line-2); transform: translateY(-3px); box-shadow: 0 24px 60px -30px rgba(159,195,230,.25); }
.product.featured-product { border-color: rgba(159,195,230,.45); }
.product::before {
  /* thin brushed-steel edge along the top, echoing the logo */
  content: ""; position: absolute; left: 24px; right: 24px; top: -1px; height: 1px;
  background: linear-gradient(90deg, transparent, #dfe3e8, transparent); opacity: .5;
}
.product-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.product-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: #000; border: 1px solid var(--line-2);
  font-family: var(--font-display); font-size: .95rem;
}
.product-icon span { background: var(--steel); -webkit-background-clip: text; background-clip: text; color: transparent; }
.product h3 { font-size: 1.3rem; margin-bottom: 6px; }
.product .tagline { color: var(--muted); font-size: .95rem; margin-bottom: 18px; }
.product ul { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 8px; font-size: .93rem; }
.product li { display: flex; gap: 10px; align-items: flex-start; color: var(--text); }
.product li svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--accent); }
.product-foot { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding-top: 20px; border-top: 1px solid var(--line); }
.price { font-family: var(--font-display); font-size: 1.6rem; line-height: 1; }
.price small { display: block; font-family: var(--font-body); font-size: .78rem; color: var(--faint); margin-top: 6px; letter-spacing: 0; }
.product .btn[aria-disabled="true"] { opacity: .55; pointer-events: none; }
.platforms { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }

.trust { display: grid; gap: 16px; grid-template-columns: 1fr; margin-top: 40px; }
@media (min-width: 720px) { .trust { grid-template-columns: repeat(3, 1fr); } }
.trust div { display: flex; gap: 14px; align-items: flex-start; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-2); }
.trust svg { width: 22px; height: 22px; flex: none; color: var(--accent); margin-top: 2px; }
.trust strong { display: block; font-size: .95rem; }
.trust span { color: var(--muted); font-size: .88rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; }
.faq details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq summary { cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-family: var(--font-mono); font-size: 1.2rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); margin: 12px 0 0; }

.section-foot { margin-top: 32px; display: flex; justify-content: center; }


/* ---------- Silver header bar (lets the black logo circle stand out) ---------- */
.site-header {
  background: linear-gradient(180deg, #f4f6f8 0%, #dfe3e8 55%, #c9cfd6 100%);
  backdrop-filter: none; -webkit-backdrop-filter: none;
  border-bottom: 1px solid #aeb6bf;
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 8px 24px rgba(0,0,0,.35);
}
.site-header.scrolled { border-bottom-color: #aeb6bf; }
.nav { height: 76px; }
.brand img { width: 58px; height: 58px; filter: drop-shadow(0 2px 4px rgba(0,0,0,.35)); }
.nav-links a { color: #3a424c; font-weight: 600; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: #07080a; }
.site-header .btn-primary { background: #07080a; color: #fff; border-color: #07080a; }
.site-header .btn-primary:hover { background: #1b2027; border-color: #1b2027; }
.nav-toggle { color: #07080a; border-color: #9aa3ae; }
.mobile-menu { border-top-color: #aeb6bf; }
.mobile-menu a { color: #07080a; border-bottom-color: #bcc3cb; }
.mobile-menu a:hover { color: #3a424c; }
html { scroll-padding-top: 88px; }

/* ---------- Hero: brushed-steel light streaks ---------- */
.hero-streaks {
  position: relative; overflow: hidden; text-align: center;
  min-height: calc(100vh - 76px); display: flex; align-items: center; justify-content: center;
  padding: 80px 0;
}
.hero-streaks .streaks { position: absolute; inset: -20% -10%; pointer-events: none; }
.hero-streaks .streaks span {
  position: absolute; top: -10%; height: 140%; width: 160px; border-radius: 80px;
  background: linear-gradient(90deg, transparent, rgba(223,227,232,.75) 50%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 35%, #000 65%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 35%, #000 65%, transparent);
  transform: rotate(35deg); opacity: .6; will-change: transform;
  animation: drift 9s ease-in-out infinite alternate;
}
.hero-streaks .streaks span:nth-child(1) { left: 22%; }
.hero-streaks .streaks span:nth-child(2) { left: 34%; width: 60px; opacity: .35; animation-delay: -2s; }
.hero-streaks .streaks span:nth-child(3) { left: 46%; width: 120px; animation-delay: -4s; background: linear-gradient(90deg, transparent, rgba(159,195,230,.8) 50%, transparent); }
.hero-streaks .streaks span:nth-child(4) { left: 58%; width: 70px; opacity: .4; animation-delay: -6s; }
.hero-streaks .streaks span:nth-child(5) { left: 70%; width: 100px; opacity: .3; animation-delay: -3s; }
@keyframes drift { to { transform: rotate(35deg) translateY(6%); } }
.hero-streaks::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(7,8,10,.15), rgba(7,8,10,.85) 80%); pointer-events: none; }
.hero-streaks .container { position: relative; z-index: 2; }
.hero-streaks h1 { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.02em; line-height: 1.08; font-size: clamp(2.2rem, 6.5vw, 4.8rem); margin: 0 0 36px; }
.hero-streaks .hero-actions { justify-content: center; }
@media (prefers-reduced-motion: reduce) { .hero-streaks .streaks span { animation: none; } }
.hero-streaks h1 { margin-bottom: 18px; }
.hero-streaks .hero-sub { color: var(--muted); font-size: clamp(1.02rem, 1.7vw, 1.2rem); max-width: 600px; margin: 0 auto 34px; }

/* Four products: 2 x 2 grid on desktop */
@media (min-width: 1040px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- "Also from GM6" strip ---------- */
.also { padding-top: 0; }
.also-strip {
  display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between;
  padding: 32px; border: 1px solid var(--line-2); border-radius: 18px;
  background: linear-gradient(90deg, var(--surface-2), var(--surface));
}
.also-strip h3 { font-size: 1.4rem; margin-bottom: 6px; }
.also-strip p:not(.eyebrow) { color: var(--muted); margin: 0; max-width: 560px; }
.also-strip .eyebrow { margin-bottom: 8px; }
.also-strip .btn[aria-disabled="true"] { opacity: .55; pointer-events: none; }
@media (min-width: 720px) { .trust { grid-template-columns: repeat(2, 1fr); } }

/* Hero headline: Michroma only has one (thin) weight, so thicken it with a steel stroke */
.hero-streaks h1 .steel { -webkit-text-stroke: 2px #c9cfd6; }

/* Mobile menu button: keep the pill layout (a generic .mobile-menu a rule sets display:block) */
.mobile-menu a.btn { display: flex; justify-content: center; padding: 14px 20px; color: #fff; }

/* ---------- Contact form ---------- */
.contact-grid { display: grid; gap: 32px; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start; } }
.contact-form { display: grid; gap: 16px; padding: 28px; border: 1px solid var(--line-2); border-radius: 18px; background: linear-gradient(180deg, var(--surface-2), var(--surface)); }
.contact-form label { display: grid; gap: 8px; font-size: .9rem; font-weight: 600; color: var(--text); }
.contact-form input, .contact-form textarea {
  font: inherit; font-weight: 400; color: var(--text); width: 100%;
  background: var(--bg); border: 1px solid var(--line-2); border-radius: 10px; padding: 12px 14px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(159,195,230,.2); }
.field-row { display: grid; gap: 16px; }
@media (min-width: 640px) { .field-row { grid-template-columns: 1fr 1fr; } }
.contact-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.form-status { margin: 0; font-size: .92rem; color: var(--muted); }
.form-status.ok { color: #8fe3b0; }
.form-status.err { color: #ff9a9a; }
.contact-form button[disabled] { opacity: .6; cursor: wait; }
.contact-grid .section-head { margin-bottom: 0; }
