/* ══════════════════════════════════════
   FORSOUND · CSS
   ══════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #0A0A0A;
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Tokens ── */
:root {
  --ink:    #0A0A0A;
  --white:  #FFFFFF;
  --off:    #F5F3F0;
  --blue:   #0052FF;
  --mid:    #767676;
  --border: #E5E5E5;
  --dark:   #0F0F0F;
  --pad:    clamp(24px, 5vw, 80px);
}

/* ── Reveal ── */
[data-r] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
[data-r].in { opacity: 1; transform: none; }

/* ── Shared text ── */
.eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 12px;
}
.eyebrow.light { color: rgba(255,255,255,.4); }

/* ── Buttons ── */
.btn-dark {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 32px;
  background: var(--ink); color: #fff;
  font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .08em;
  transition: background .2s, transform .2s;
}
.btn-dark:hover { background: var(--blue); transform: translateY(-2px); }
.btn-dark.full-w { width: 100%; }

.btn-ghost {
  display: inline-flex; align-items: center;
  font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .06em;
  color: rgba(255,255,255,.55);
  border-bottom: 1px solid rgba(255,255,255,.2);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}
.btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,.6); }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 32px;
  background: transparent; color: var(--ink);
  font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .08em;
  border: 1.5px solid #ccc;
  transition: border-color .2s, background .2s, color .2s, transform .2s;
}
.btn-outline:hover { border-color: var(--ink); background: var(--ink); color: #fff; transform: translateY(-2px); }

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
#site-header.scrolled {
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(20px);
  border-bottom-color: rgba(255,255,255,.07);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px; padding: 0 var(--pad);
  max-width: 1400px; margin: 0 auto;
}
.nav-logo {
  font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800;
  color: #fff; letter-spacing: -.02em;
}
.nav-logo span { color: var(--blue); }
.nav-logo:hover span { color: #3d7bff; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,.5);
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .1em;
  color: #fff; background: var(--blue); padding: 9px 20px;
  transition: background .2s;
}
.nav-cta:hover { background: #003ecc; }
.burger { display: none; flex-direction: column; gap: 6px; padding: 4px; }
.burger span { display: block; width: 22px; height: 1.5px; background: #fff; transition: all .3s; }
.mobile-menu {
  display: none; flex-direction: column;
  background: #111; border-top: 1px solid rgba(255,255,255,.07);
  padding: 8px 0 20px;
}
.mobile-menu a {
  display: block; padding: 14px var(--pad);
  font-size: 14px; color: rgba(255,255,255,.6);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .2s;
}
.mobile-menu a:hover { color: #fff; }
.mobile-menu .mm-cta { color: var(--blue); font-weight: 600; border: none; margin-top: 8px; }

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
#hero {
  background: var(--dark);
  min-height: 100vh;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.hero-content {
  flex: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: 1400px; margin: 0 auto; width: 100%;
  padding: 0 var(--pad);
  align-items: center;
  padding-top: 80px;
}
.hero-text { padding: 60px 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid rgba(255,255,255,.1); padding: 7px 15px;
  font-family: 'Syne', sans-serif; font-size: 9px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.38); margin-bottom: 34px;
}
.hero-badge-dot {
  width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0;
  background: #00cc6a;
  box-shadow: 0 0 8px rgba(0,204,106,.55);
  animation: dotpulse 2.4s ease-in-out infinite;
}
@keyframes dotpulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(.65); }
}
/* USA flag — hero intro */
.hero-flag {
  display: inline-flex; align-items: center; gap: 20px;
  margin-bottom: 34px;
  padding: 12px 20px 12px 12px;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(0,82,255,.10), rgba(179,25,66,.08));
  border: 1px solid rgba(255,255,255,.12);
}
.hero-flag-frame {
  flex-shrink: 0;
  width: 190px;
  border-radius: 7px; overflow: hidden;
  border: 1.5px solid rgba(255,255,255,.28);
  box-shadow: 0 16px 40px rgba(0,0,0,.55), 0 0 0 4px rgba(255,255,255,.05);
  animation: flagwave 6s ease-in-out infinite;
}
.usflag-svg { display: block; width: 100%; height: auto; }
@keyframes flagwave {
  0%, 100% { transform: perspective(420px) rotateY(0deg); }
  50% { transform: perspective(420px) rotateY(-12deg); }
}
.hero-flag-cap { display: flex; flex-direction: column; gap: 3px; }
.hero-flag-cap strong {
  font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800;
  letter-spacing: .02em; color: #fff; text-transform: uppercase;
}
.hero-flag-cap span {
  font-size: 12px; color: rgba(255,255,255,.55); font-weight: 300;
  letter-spacing: .03em;
}
#hero h1 {
  display: flex; flex-direction: column; line-height: .9; margin-bottom: 32px;
}
.ht-1, .ht-3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(70px, 8.5vw, 120px);
  font-weight: 800; color: #fff; letter-spacing: -.045em;
}
.ht-2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(80px, 10vw, 138px);
  font-style: italic; font-weight: 500;
  color: var(--blue); letter-spacing: -.025em; line-height: .86;
}
.hero-sub {
  font-size: 15px; color: rgba(255,255,255,.45);
  line-height: 1.75; max-width: 360px; margin-bottom: 36px; font-weight: 300;
}
.hero-btns { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-img-wrap {
  position: relative; display: flex;
  align-items: center; justify-content: center;
  height: 100%; min-height: 520px;
}
.hero-bg-word {
  position: absolute; z-index: 0;
  font-family: 'Syne', sans-serif;
  font-size: clamp(100px, 18vw, 260px);
  font-weight: 800; letter-spacing: -.05em;
  color: rgba(255,255,255,.025);
  pointer-events: none; user-select: none;
  white-space: nowrap;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.hero-halo {
  position: absolute; width: 680px; height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,82,255,.26) 0%, rgba(0,82,255,.06) 45%, transparent 70%);
  pointer-events: none;
}
.hero-prod {
  position: relative; z-index: 1;
  width: 82%; max-width: 480px;
  filter:
    drop-shadow(0 40px 80px rgba(0,82,255,.35))
    drop-shadow(0 8px 24px rgba(0,0,0,.6));
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-14px);} }

/* Ticker */
.ticker-bar {
  height: 48px; background: var(--blue);
  overflow: hidden; display: flex; align-items: center; flex-shrink: 0;
}

/* USA flag pin — fixed left side */
.ticker-flag-pin {
  flex-shrink: 0;
  display: flex; align-items: center;
  height: 100%;
  padding: 0 16px 0 20px;
  border-right: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.14);
  position: relative; z-index: 2;
}
.tfp-badge {
  display: flex; align-items: center; gap: 7px;
}
.tfp-flag {
  font-size: 17px;
  line-height: 1;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.25));
}
.tfp-label {
  font-family: 'Syne', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: .2em;
  color: #fff;
  white-space: nowrap;
}

/* Scrolling tape */
.ticker-scroll-wrap {
  flex: 1; overflow: hidden; min-width: 0;
}
.ticker-inner {
  display: flex; white-space: nowrap;
  animation: ticker 28s linear infinite;
}
.ticker-inner span {
  font-family: 'Syne', sans-serif; font-size: 9.5px; font-weight: 700;
  letter-spacing: .16em; color: rgba(255,255,255,.85); padding: 0 18px;
}
.ticker-inner b { color: rgba(255,255,255,.3); font-weight: 400; font-size: 8px; }
@keyframes ticker { from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* ══════════════════════════════════════
   STATS
   ══════════════════════════════════════ */
#stats { background: #fff; border-bottom: 1px solid var(--border); }
.stats-row {
  display: flex; align-items: center; justify-content: center;
  max-width: 960px; margin: 0 auto; flex-wrap: wrap;
}
.stat-col { padding: 34px 48px; text-align: center; }
.stat-col strong {
  display: block;
  font-family: 'Syne', sans-serif; font-size: 30px; font-weight: 800;
  color: var(--ink); letter-spacing: -.04em;
}
.stat-col span { font-size: 10px; color: var(--mid); display: block; margin-top: 6px; letter-spacing: .1em; text-transform: uppercase; }
.stat-div { width: 1px; height: 40px; background: var(--border); }

/* ══════════════════════════════════════
   ABOUT
   ══════════════════════════════════════ */
#about { background: var(--off); padding: 100px 0; }
.about-wrap {
  max-width: 1400px; margin: 0 auto; padding: 0 var(--pad);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-img-side { display: flex; flex-direction: column; gap: 16px; }
.about-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.about-cert-block { display: flex; gap: 10px; }
.about-cert-block img {
  height: 44px; width: auto; object-fit: contain;
  border: 1px solid var(--border); background: #fff; padding: 4px 8px;
}
.about-text-side blockquote {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(22px, 2.5vw, 32px); color: var(--ink); line-height: 1.4;
  margin-bottom: 28px; position: relative;
}
.about-text-side blockquote::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif; font-style: normal;
  font-size: 110px; line-height: 0.7; letter-spacing: 0;
  color: var(--blue); opacity: 0.22;
  display: block; margin-bottom: -8px;
}
.about-text-side p {
  font-size: 14px; color: var(--mid); line-height: 1.85; margin-bottom: 14px; font-weight: 300;
}
.about-nums {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin-top: 32px;
}
.about-nums div { padding: 20px 0; text-align: center; border-right: 1px solid var(--border); }
.about-nums div:last-child { border-right: none; }
.about-nums strong {
  display: block; font-family: 'Syne', sans-serif; font-size: 22px;
  font-weight: 800; color: var(--ink); letter-spacing: -.02em;
}
.about-nums span { font-size: 10px; color: var(--mid); letter-spacing: .08em; text-transform: uppercase; }

/* ══════════════════════════════════════
   FEATURES
   ══════════════════════════════════════ */
#features { background: #fff; padding: 100px 0; }
.feat-wrap { max-width: 1400px; margin: 0 auto; padding: 0 var(--pad); }
.feat-head { margin-bottom: 72px; }
.feat-head h2 {
  font-family: 'Syne', sans-serif; font-size: clamp(32px, 4vw, 52px);
  font-weight: 700; letter-spacing: -.03em; color: var(--ink); line-height: 1.1;
}
.feat-showcase { display: flex; flex-direction: column; gap: 0; }
.feat-row-img {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; border-top: 1px solid var(--border);
  min-height: 420px;
}
.feat-row-img:last-child { border-bottom: 1px solid var(--border); }
.feat-row-img--right .fri-text { order: 1; border-right: 1px solid var(--border); }
.feat-row-img--right .fri-media { order: 2; }
.feat-row-img--left .fri-media { order: 1; border-right: 1px solid var(--border); }
.feat-row-img--left .fri-text { order: 2; }
.fri-text {
  padding: 60px; display: flex; flex-direction: column; justify-content: center;
}
.fri-n {
  font-family: 'Syne', sans-serif; font-size: 9px; font-weight: 700;
  letter-spacing: .2em; color: var(--blue); display: block; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.fri-n::before { content: ''; display: block; width: 22px; height: 1px; background: var(--blue); flex-shrink: 0; }
.fri-text h3 {
  font-family: 'Syne', sans-serif; font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700; letter-spacing: -.02em; color: var(--ink); line-height: 1.2; margin-bottom: 18px;
}
.fri-text p { font-size: 14px; color: var(--mid); line-height: 1.85; font-weight: 300; max-width: 440px; }
.fri-media {
  background: var(--off); display: flex; align-items: center; justify-content: center;
  padding: 48px; overflow: hidden; position: relative;
}
.fri-media img {
  max-height: 300px; object-fit: contain; position: relative; z-index: 1;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,.14));
  transition: transform .55s cubic-bezier(.16,1,.3,1);
}
.feat-row-img:hover .fri-media img { transform: scale(1.06) translateY(-8px); }

/* ══════════════════════════════════════
   MODELS
   ══════════════════════════════════════ */
#models { background: var(--off); padding: 100px 0; }
.models-wrap { max-width: 1400px; margin: 0 auto; padding: 0 var(--pad); }
.models-head { margin-bottom: 40px; }
.models-head h2 {
  font-family: 'Syne', sans-serif; font-size: clamp(32px, 4vw, 52px);
  font-weight: 700; letter-spacing: -.03em; color: var(--ink); margin-bottom: 10px;
}
.models-head p { font-size: 14px; color: var(--mid); font-weight: 300; }

/* ── Filter tabs ── */
.mf-wrap { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 44px; }
.mf-btn {
  padding: 9px 22px; border-radius: 100px; border: 1px solid rgba(10,10,10,.14);
  background: transparent; font-family: 'Syne', sans-serif; font-size: 11px;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase; cursor: pointer;
  color: var(--ink); transition: background .2s, border-color .2s, color .2s;
}
.mf-btn:hover { background: rgba(10,10,10,.06); }
.mf-btn.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ── Product grid ── */
.models-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.mc2-card {
  background: #fff; border: 1px solid rgba(10,10,10,.07); border-radius: 18px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .28s cubic-bezier(.16,1,.3,1), box-shadow .28s, border-color .28s;
}
.mc2-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0,0,0,.11);
  border-color: rgba(0,82,255,.18);
}
.mc2-card--featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 1.5px var(--blue), 0 8px 32px rgba(0,82,255,.12);
}
.mc2-card--featured:hover {
  box-shadow: 0 0 0 1.5px var(--blue), 0 24px 56px rgba(0,82,255,.18);
}

/* ── Stage background — unified, on-brand ── */
.mc2-stage {
  display: flex; align-items: center; justify-content: center;
  padding: 32px 24px; aspect-ratio: 1 / 1; position: relative; overflow: hidden;
  background: #EBF0FF;
}

.mc2-stage img {
  width: 88%; max-height: 155px; object-fit: contain; position: relative; z-index: 1;
  filter: drop-shadow(0 12px 28px rgba(0,30,80,.18)) drop-shadow(0 2px 8px rgba(0,30,80,.10));
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.mc2-card:hover .mc2-stage img { transform: scale(1.08) translateY(-5px); }

.mc2-body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; gap: 0; }

/* ── Type badges per category ── */
.mc2-badge {
  display: inline-block; font-family: 'Syne', sans-serif; font-size: 9px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; padding: 4px 9px; border-radius: 5px;
  margin-bottom: 10px; width: fit-content;
  color: var(--blue); background: rgba(0,82,255,.08);
}
.mc2-badge--cic  { color: #0052FF; background: rgba(0,82,255,.08); }
.mc2-badge--ric  { color: #5B2FD4; background: rgba(91,47,212,.09); }
.mc2-badge--bte  { color: #B05A00; background: rgba(176,90,0,.09); }
.mc2-badge--ite  { color: #00785A; background: rgba(0,120,90,.09); }
.mc2-badge--pop  { background: var(--blue); color: #fff; }
.mc2-badge--gray { background: rgba(10,10,10,.07); color: var(--mid); }

.mc2-body h3 {
  font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700;
  letter-spacing: -.01em; color: var(--ink); margin-bottom: 12px; line-height: 1.25;
}
.mc2-feats {
  list-style: none; padding: 0; margin: 0 0 18px;
  display: flex; flex-direction: column; gap: 6px;
}
.mc2-feats li {
  font-size: 12px; color: rgba(10,10,10,.56); line-height: 1.55;
  padding-left: 15px; position: relative;
}
.mc2-feats li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 8px; height: 1.5px; background: var(--blue); opacity: .5;
}

.mc2-cta {
  margin-top: auto; font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--blue);
  text-decoration: none; display: inline-flex; align-items: center; gap: 5px;
  transition: gap .2s, opacity .2s;
}
.mc2-cta:hover { gap: 9px; opacity: .75; }
[data-cat="ric"]  .mc2-cta { color: #5B2FD4; }
[data-cat="bte"]  .mc2-cta { color: #B05A00; }
[data-cat="ite"]  .mc2-cta { color: #00785A; }

/* ══════════════════════════════════════
   BENEFITS
   ══════════════════════════════════════ */
#benefits { background: var(--dark); padding: 100px 0; }
.ben-wrap {
  max-width: 1400px; margin: 0 auto; padding: 0 var(--pad);
  display: grid; grid-template-columns: 420px 1fr; gap: 80px; align-items: start;
}
.ben-left h2 {
  font-family: 'Syne', sans-serif; font-size: clamp(32px, 4vw, 52px);
  font-weight: 700; letter-spacing: -.03em; color: #fff; line-height: 1.1; margin-bottom: 40px;
}
.ben-img-stack { position: relative; }
.bi-top { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.bi-bot {
  position: absolute; bottom: -24px; right: -24px;
  width: 52%; aspect-ratio: 1; object-fit: cover;
  border: 3px solid var(--dark);
}
.ben-right { padding-top: 56px; }
.ben-item {
  display: flex; gap: 24px; padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  align-items: flex-start;
}
.ben-item:first-child { border-top: 1px solid rgba(255,255,255,.08); }
.ben-num {
  font-family: 'Syne', sans-serif; font-size: 50px; font-weight: 800;
  letter-spacing: -.03em; color: rgba(255,255,255,.06); flex-shrink: 0;
  line-height: 1; min-width: 70px;
}
.ben-item h3 { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 8px; letter-spacing: -.01em; }
.ben-item p { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.8; font-weight: 300; }

/* ══════════════════════════════════════
   VIDEO
   ══════════════════════════════════════ */
#video {
  background: #0A0A0A;
  position: relative; overflow: hidden;
  min-height: 78vh;
  display: flex; align-items: center;
}
.vid-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: .45; pointer-events: none;
}
.vid-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to right, rgba(0,0,0,.88) 0%, rgba(0,0,0,.15) 65%),
    linear-gradient(to bottom, rgba(0,0,0,.25) 0%, transparent 35%, transparent 65%, rgba(0,0,0,.4) 100%);
}
.vid-content {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto; width: 100%;
  padding: 110px var(--pad);
}
.vid-content .eyebrow { margin-bottom: 18px; }
.vid-content h2 {
  font-family: 'Syne', sans-serif; font-size: clamp(44px, 7vw, 96px);
  font-weight: 800; letter-spacing: -.045em; color: #fff; line-height: .92;
  margin-bottom: 44px;
}
.vid-content h2 em {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500;
  color: var(--blue); letter-spacing: -.02em;
  font-size: 1.08em;
}
.vid-yt-link {
  display: inline-flex; align-items: center; gap: 14px;
  color: rgba(255,255,255,.5);
  font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  transition: color .2s;
}
.vid-yt-link:hover { color: #fff; }
.vid-yt-icon {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, border-color .3s;
}
.vid-yt-icon svg { margin-left: 2px; }
.vid-yt-link:hover .vid-yt-icon { background: var(--blue); border-color: var(--blue); }

/* ══════════════════════════════════════
   GALLERY
   ══════════════════════════════════════ */
#gallery { background: #fff; padding: 100px 0; }
.gallery-head-wrap {
  max-width: 1400px; margin: 0 auto 40px; padding: 0 var(--pad);
  display: flex; align-items: baseline; gap: 20px;
}
.gallery-head-wrap h2 {
  font-family: 'Syne', sans-serif; font-size: clamp(56px, 7.5vw, 104px);
  font-weight: 800; letter-spacing: -.05em; color: var(--ink); line-height: 1;
}
.gallery-mosaic {
  max-width: 1400px; margin: 0 auto; padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  grid-template-rows: 300px 260px 260px;
  gap: 10px;
}
.gm-item {
  position: relative; overflow: hidden; cursor: pointer;
  background: var(--off);
}
.gm-tall { grid-row: span 2; }
.gm-wide { grid-column: span 2; }
.gm-item img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform .55s cubic-bezier(.16,1,.3,1);
  background: var(--off);
}
/* Lifestyle/photo shots use cover */
.gm-item:nth-child(2) img,
.gm-item:nth-child(5) img,
.gm-item:nth-child(6) img,
.gm-item:nth-child(8) img { object-fit: cover; padding: 0; }
.gm-item:hover img { transform: scale(1.04); }
.gm-item span {
  position: absolute; bottom: 12px; left: 12px;
  font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.9);
  background: rgba(10,10,10,.55); backdrop-filter: blur(6px);
  padding: 5px 10px;
  opacity: 0; transform: translateY(4px);
  transition: opacity .3s, transform .3s;
}
.gm-item:hover span { opacity: 1; transform: none; }

/* ══════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════ */
#testimonials { background: var(--dark); padding: 100px 0; }
.testi-wrap { max-width: 900px; margin: 0 auto; padding: 0 var(--pad); }
.testi-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 52px; }
.testi-counter {
  font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.25); letter-spacing: .1em;
}
.testi-counter em { color: rgba(255,255,255,.55); font-style: normal; }
.ts-slide { display: none; animation: fadeUp .45s ease; }
.ts-slide.active { display: block; }
@keyframes fadeUp { from{opacity:0;transform:translateY(14px);} to{opacity:1;transform:none;} }
.ts-slide blockquote {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(22px, 3.2vw, 40px); font-weight: 500;
  color: rgba(255,255,255,.88); line-height: 1.45; margin-bottom: 28px;
  position: relative;
}
.ts-slide blockquote::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif; font-style: normal;
  font-size: 220px; line-height: 0.55; color: rgba(255,255,255,.05);
  display: block; margin-bottom: -44px; margin-left: -8px; letter-spacing: 0;
}
.ts-slide cite { font-size: 12px; color: rgba(255,255,255,.3); letter-spacing: .08em; font-style: normal; }
.testi-nav { display: flex; align-items: center; gap: 16px; margin-top: 44px; }
.testi-nav button {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.4);
  font-size: 18px; display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, color .2s;
}
.testi-nav button:hover { border-color: rgba(255,255,255,.6); color: #fff; }
.testi-dots { flex: 1; display: flex; gap: 6px; }
.tdot {
  height: 2px; width: 18px; background: rgba(255,255,255,.18); cursor: pointer;
  transition: width .3s, background .3s;
}
.tdot.on { width: 32px; background: #fff; }

/* ══════════════════════════════════════
   TUTORIAL
   ══════════════════════════════════════ */
#tutorial {
  background: #08091a;
  padding: 110px 0;
}
.tut-wrap {
  max-width: 1200px; margin: 0 auto; padding: 0 var(--pad);
}
.tut-head {
  text-align: center; margin-bottom: 64px;
}
.tut-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 60px); font-weight: 600;
  color: #fff; line-height: 1.12; margin-bottom: 16px;
}
.tut-head h2 em { font-style: italic; color: rgba(255,255,255,.55); }
.tut-head p {
  font-size: 15px; color: rgba(255,255,255,.5);
  max-width: 440px; margin: 0 auto; line-height: 1.6;
}
.tut-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.tut-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.55);
}
.tut-video-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none;
}
.tut-steps {
  display: flex; flex-direction: column; gap: 32px;
}
.tut-step {
  display: flex; gap: 20px; align-items: flex-start;
}
.tut-step-n {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  color: var(--blue);
  background: rgba(0,82,255,.12);
  border: 1px solid rgba(0,82,255,.25);
  border-radius: 2px;
  padding: 4px 8px;
  flex-shrink: 0;
  margin-top: 3px;
}
.tut-step strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 14px; font-weight: 700;
  color: #fff; margin-bottom: 6px; letter-spacing: .01em;
}
.tut-step p {
  font-size: 13.5px; color: rgba(255,255,255,.45); line-height: 1.65;
}

/* ══════════════════════════════════════
   FAQ
   ══════════════════════════════════════ */
#faq { background: #fff; padding: 100px 0; }
.faq-wrap {
  max-width: 1400px; margin: 0 auto; padding: 0 var(--pad);
  display: grid; grid-template-columns: 280px 1fr; gap: 80px; align-items: start;
}
.faq-head h2 {
  font-family: 'Syne', sans-serif; font-size: clamp(26px, 3vw, 38px);
  font-weight: 700; letter-spacing: -.03em; color: var(--ink); line-height: 1.2;
}
.faq-col { border-top: 1px solid var(--border); }
.fq { border-bottom: 1px solid var(--border); }
.fq button {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 20px; padding: 20px 0; font-size: 14px; font-weight: 500;
  color: var(--ink); text-align: left; transition: color .2s;
}
.fq button:hover { color: var(--blue); }
.fq button[aria-expanded="true"] { color: var(--blue); }
.fq button span {
  font-size: 20px; font-weight: 300; color: var(--mid); flex-shrink: 0; line-height: 1;
  transition: transform .3s, color .2s;
}
.fq button[aria-expanded="true"] span { transform: rotate(45deg); color: var(--blue); }
.fa { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.16,1,.3,1); }
.fa.open { max-height: 280px; }
.fa p { font-size: 13px; color: var(--mid); line-height: 1.85; padding: 0 0 20px; font-weight: 300; }

/* ══════════════════════════════════════
   CONTACT
   ══════════════════════════════════════ */
#contact { background: var(--off); padding: 100px 0; }
.contact-wrap {
  max-width: 1400px; margin: 0 auto; padding: 0 var(--pad);
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start;
}
.contact-left h2 {
  font-family: 'Syne', sans-serif; font-size: clamp(28px, 3vw, 42px);
  font-weight: 700; letter-spacing: -.03em; color: var(--ink); line-height: 1.15; margin-bottom: 14px;
}
.contact-left > p { font-size: 14px; color: var(--mid); margin-bottom: 36px; font-weight: 300; line-height: 1.7; }
.contact-info { border-top: 1px solid var(--border); margin-bottom: 28px; }
.ci-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 15px 0; border-bottom: 1px solid var(--border);
}
.ci-row label { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); }
.ci-row span { font-size: 13px; font-weight: 500; color: var(--ink); }
.guarantee-box {
  display: flex; align-items: flex-start; gap: 14px;
  background: #fff; border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  padding: 18px 18px 18px 16px; margin-bottom: 24px;
}
.guarantee-box span { font-size: 20px; flex-shrink: 0; }
.guarantee-box strong { display: block; font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.guarantee-box p { font-size: 12px; color: var(--mid); }
.cert-row { display: flex; gap: 10px; }
.cert-row img { height: 42px; width: auto; object-fit: contain; border: 1px solid var(--border); background: #fff; padding: 3px 8px; }
.contact-form {
  background: #fff; border: 1px solid var(--border); padding: 44px;
}
.contact-form h3 {
  font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700;
  letter-spacing: -.02em; color: var(--ink); margin-bottom: 28px;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.fg label {
  font-family: 'Syne', sans-serif; font-size: 9px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink);
}
.fg small { font-size: 9px; color: var(--mid); font-weight: 400; }
.fg input, .fg select, .fg textarea {
  padding: 12px 14px; border: 1px solid var(--border); outline: none;
  font-size: 13px; font-family: 'Inter', sans-serif; color: var(--ink);
  background: #fff; -webkit-appearance: none;
  transition: border-color .2s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--ink); }
.fg textarea { resize: vertical; }
.form-note { font-size: 11px; color: var(--mid); margin-top: 12px; text-align: center; }

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
#footer { background: #0A0A0A; }
.footer-grid {
  max-width: 1400px; margin: 0 auto; padding: 72px var(--pad) 56px;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 64px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.fc-brand .nav-logo { display: inline-block; margin-bottom: 16px; }
.fc-brand p { font-size: 13px; color: rgba(255,255,255,.35); line-height: 1.75; max-width: 280px; margin-bottom: 20px; font-weight: 300; }
.fc-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.fc-badges span {
  font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.3); border: 1px solid rgba(255,255,255,.1); padding: 4px 10px;
}
.fc-nav h4, .fc-contact h4 {
  font-family: 'Syne', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.2); margin-bottom: 18px;
}
.fc-nav a { display: block; font-size: 13px; color: rgba(255,255,255,.4); margin-bottom: 10px; transition: color .2s; font-weight: 300; }
.fc-nav a:hover { color: rgba(255,255,255,.8); }
.fc-contact span { display: block; font-size: 13px; color: rgba(255,255,255,.4); margin-bottom: 10px; font-weight: 300; }
.footer-bar {
  max-width: 1400px; margin: 0 auto; padding: 20px var(--pad);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-bar p { font-size: 11px; color: rgba(255,255,255,.18); font-weight: 300; }

/* ══════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════ */
#lb {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.93);
  align-items: center; justify-content: center;
}
#lb.open { display: flex; }
#lbImg { max-width: 88vw; max-height: 88vh; object-fit: contain; }
#lbClose, #lbPrev, #lbNext {
  position: absolute; color: rgba(255,255,255,.45); font-size: 18px;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  transition: color .2s, border-color .2s;
}
#lbClose:hover, #lbPrev:hover, #lbNext:hover { color: #fff; border-color: rgba(255,255,255,.5); }
#lbClose { top: 20px; right: 20px; }
#lbPrev { left: 20px; top: 50%; transform: translateY(-50%); font-size: 22px; }
#lbNext { right: 20px; top: 50%; transform: translateY(-50%); font-size: 22px; }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-content { gap: 32px; }
  .about-wrap { gap: 48px; }
  .feat-row-img { min-height: 360px; }
  .fri-text { padding: 40px; }
  .ben-wrap { grid-template-columns: 340px 1fr; gap: 52px; }
  .contact-wrap { gap: 52px; }
  .footer-grid { gap: 40px; }
  .models-grid { grid-template-columns: repeat(3, 1fr); }
  .tut-body { gap: 40px; }
}
@media (max-width: 900px) {
  #video { min-height: 60vh; }
  .vid-content { padding: 80px var(--pad); }
  .vid-content h2 { margin-bottom: 32px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .burger { display: flex; }
  #hero { min-height: auto; }
  .hero-content { grid-template-columns: 1fr; padding-top: 66px; }
  .hero-text { padding: 56px 0 40px; }
  .hero-img-wrap { min-height: 360px; }
  .hero-prod { width: 72%; max-width: 340px; }
  .about-wrap { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { aspect-ratio: 16/9; }
  .feat-row-img { grid-template-columns: 1fr; min-height: auto; }
  .feat-row-img--right .fri-text,
  .feat-row-img--left .fri-media { border-right: none; }
  .fri-media { min-height: 260px; }
  .feat-row-img--right .fri-text { order: 1; }
  .feat-row-img--right .fri-media { order: 2; }
  .feat-row-img--left .fri-media { order: 1; }
  .feat-row-img--left .fri-text { order: 2; }
  .models-panels { grid-template-columns: 1fr; }
  .models-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .ben-wrap { grid-template-columns: 1fr; gap: 40px; }
  .bi-bot { display: none; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gm-tall { grid-row: span 1; }
  .gm-wide { grid-column: span 2; }
  .tut-body { grid-template-columns: 1fr; gap: 44px; }
  .faq-wrap { grid-template-columns: 1fr; gap: 36px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 28px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bar { flex-direction: column; gap: 6px; }
  .stat-div { display: none; }
  .stats-row { gap: 0; }
  .stat-col { padding: 20px 24px; }
}
@media (max-width: 600px) {
  .models-grid { grid-template-columns: 1fr; }
  #video { min-height: 55vh; }
  .vid-content { padding: 64px var(--pad); }
  .vid-overlay {
    background: linear-gradient(to right, rgba(0,0,0,.92) 0%, rgba(0,0,0,.6) 100%);
  }
  .hero-img-wrap { display: none; }
  .gallery-mosaic { grid-template-columns: 1fr; }
  .gm-wide { grid-column: span 1; }
  .feat-row-img { border-top: none; }
  .feat-row-img + .feat-row-img { border-top: 1px solid var(--border); }
  .fri-text { padding: 32px 0; }
  .form-row-2 { grid-template-columns: 1fr; }
  .about-nums { grid-template-columns: repeat(3, 1fr); }
  .testi-wrap { padding: 0 24px; }
  .faq-wrap { padding: 0 24px; }
  .contact-wrap { padding: 0 24px; }
  .contact-form { padding: 24px 16px; }
}

/* ═══════════════════════════════════════
   MOBILE RESPONSIVENESS FIXES
   ═══════════════════════════════════════ */
html { overflow-x: hidden; }
/* stable digit widths so count-up never reflows */
.stat-col strong { font-variant-numeric: tabular-nums; }

/* keep the product feature images visible on tablet & phone */
@media (max-width: 900px) {
  .fri-media { display: flex; }
}

@media (max-width: 600px) {
  /* Flag: shrink and let the caption wrap so it never pushes the page wide */
  .hero-flag {
    display: flex; max-width: 100%;
    gap: 13px; padding: 10px 13px; align-items: center;
  }
  .hero-flag-frame { width: 110px; flex-shrink: 0; }
  .hero-flag-cap { flex: 1 1 auto; min-width: 0; }
  .hero-flag-cap strong { font-size: 15px; }
  .hero-flag-cap span { font-size: 11px; line-height: 1.3; }

  /* Stats: 3 equal, fixed-width columns → number can count without shifting layout */
  .stats-row { flex-wrap: nowrap; width: 100%; }
  .stat-col { flex: 1 1 0; min-width: 0; padding: 22px 6px; }
  .stat-col strong { font-size: 21px; }
  .stat-col span { font-size: 9px; }

  /* Feature product images stay visible on phones */
  .fri-media { display: flex; min-height: 210px; padding: 20px; }
  .fri-media img { max-width: 78%; max-height: 190px; object-fit: contain; }
}

@media (max-width: 380px) {
  .hero-flag-frame { width: 92px; }
  .stat-col strong { font-size: 18px; }
  #hero h1 { margin-bottom: 26px; }
}
