/* =========================================================
   Swiggies B2B Landing Page — Design System
   Primary: deep saturated marine blue
   ========================================================= */

:root {
  /* Brand — deep marine */
  --blue: #0066B2;          /* Primary marine blue */
  --blue-600: #005594;
  --blue-700: #00457A;
  --blue-50: #E6F1F9;
  --blue-100: #C9E0F1;
  --blue-cyan: #1AA8E8;     /* Logo cyan, for accents only */
  --blue-cyan-soft: #BFE5FB;
  --navy: #061E3D;          /* Headlines + grounding */
  --navy-2: #0F2C52;

  /* Neutrals */
  --bg: #F7F8FA;
  --bg-2: #FFFFFF;
  --bg-tinted: #F0F7FB;
  --ink: #0E1726;
  --ink-2: #2A3346;
  --muted: #5A6478;
  --line: #E5E9EF;
  --line-strong: #D7DCE5;

  /* Type */
  --font: "Inter", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  /* Shape */
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(6,30,61,0.06), 0 2px 6px rgba(6,30,61,0.04);
  --shadow: 0 4px 12px rgba(6,30,61,0.06), 0 12px 28px rgba(6,30,61,0.06);
  --shadow-lg: 0 10px 30px rgba(6,30,61,0.10), 0 30px 80px rgba(6,30,61,0.10);

  /* Layout */
  --max: 1200px;
  --pad: clamp(20px, 4vw, 40px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--blue-700); text-decoration: none; }
a:hover { color: var(--blue-600); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.skip {
  position: absolute; left: -9999px;
}
.skip:focus {
  left: 16px; top: 16px; background: var(--navy); color: #fff; padding: 8px 12px; border-radius: 6px; z-index: 100;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 600; letter-spacing: -0.005em;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 16px;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  text-align: center;
  white-space: nowrap;
}
.btn--sm { padding: 9px 16px; font-size: 14.5px; }
.btn--lg { padding: 16px 28px; font-size: 17px; }
.btn--block { width: 100%; }
.btn--primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 1px 0 rgba(255,255,255,.4) inset, 0 8px 20px -6px rgba(0,102,178,.55);
}
.btn--primary:hover { background: var(--blue-600); border-color: var(--blue-600); color: #fff; transform: translateY(-1px); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost {
  background: transparent; color: var(--navy); border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--navy); color: var(--navy); }

/* =========================================================
   Header / Nav
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.nav.is-scrolled {
  background: rgba(255,255,255,0.92);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  height: 36px;
}
.nav__logo img {
  height: 36px;
  width: auto;
  mix-blend-mode: multiply; /* JPG with white bg → blends into nav */
}
.nav__links {
  display: flex; gap: 28px; justify-content: center;
}
.nav__links a {
  color: var(--ink-2);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  position: relative;
  padding: 6px 2px;
}
.nav__links a:hover { color: var(--blue-700); }
.nav__cta {
  display: flex; align-items: center; gap: 18px;
}
.nav__phone {
  font-weight: 600;
  color: var(--navy);
  font-size: 14.5px;
  display: inline-flex; align-items: center; gap: 8px;
}
.nav__phone-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(0,102,178,0.18);
}

@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__inner { grid-template-columns: auto 1fr auto; gap: 12px; }
  .nav__phone span:not(.nav__phone-dot) { display: none; }
}
@media (max-width: 480px) {
  .nav__phone { display: none; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(40px, 7vw, 88px) 0 clamp(40px, 7vw, 96px);
  background:
    radial-gradient(ellipse 1200px 500px at 80% -10%, rgba(0,102,178,0.16), transparent 60%),
    radial-gradient(ellipse 800px 400px at -10% 90%, rgba(0,102,178,0.10), transparent 60%),
    var(--bg-2);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(6,30,61,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 800px 400px at 30% 50%, black, transparent 80%);
}
.hero__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  position: relative;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--navy);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero__eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,102,178,0.22);
}
.hero__h1 {
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 22px;
  text-wrap: balance;
}
.hero__sub {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0 0 32px;
  text-wrap: pretty;
}
.hero__ctas {
  display: flex; flex-wrap: wrap; align-items: center; gap: 22px;
}
.hero__link {
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px;
  font-size: 15.5px;
}
.hero__link:hover { color: var(--blue-700); border-bottom-color: var(--blue); }

.hero__media {
  position: relative;
  aspect-ratio: 5/5;
  background:
    radial-gradient(circle at 50% 50%, var(--blue-50), transparent 70%),
    var(--bg-2);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 95%, rgba(0,102,178,0.18), transparent 50%);
  pointer-events: none;
}
.hero__photo {
  position: relative;
  width: 92%;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.hero__photo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 30px 40px rgba(6,30,61,0.18));
}
.hero__floater {
  position: absolute;
  bottom: 18px; left: 18px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 12px 16px;
  box-shadow: var(--shadow);
  z-index: 2;
}
.hero__floater-num {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--navy);
  display: flex; align-items: baseline; gap: 2px;
}
.hero__floater-num span { color: var(--blue); padding: 0 2px; }
.hero__floater-lbl {
  font-size: 12.5px; color: var(--muted); font-weight: 500; letter-spacing: 0.02em; text-transform: uppercase;
}

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 520px; margin: 0 auto; width: 100%; }
}

/* =========================================================
   Trust bar
   ========================================================= */
.trust {
  background: var(--bg-tinted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust__cell {
  position: relative;
  padding: 0 12px;
}
.trust__cell + .trust__cell::before {
  content: "";
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 1px;
  background: var(--line-strong);
}
.trust__num {
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--navy);
  line-height: 1;
}
.trust__num span { color: var(--blue); }
.trust__num--text { color: var(--blue-700); }
.trust__lbl {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 500;
}

@media (max-width: 740px) {
  .trust__inner { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .trust__cell + .trust__cell::before { display: none; }
}

/* =========================================================
   Section heads
   ========================================================= */
.kicker {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-700);
  margin-bottom: 14px;
}
.kicker--light { color: rgba(255,255,255,0.78); }
.section-head {
  max-width: 720px;
  margin: 0 0 48px;
}
.section-head--tight { margin-bottom: 32px; }
.section-h2 {
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 0;
  text-wrap: balance;
}
.section-h2--light { color: #fff; }
.section-sub {
  font-size: clamp(16px, 1.2vw, 19px);
  color: var(--muted);
  margin: 16px 0 0;
  max-width: 60ch;
  text-wrap: pretty;
}
.section-sub--light { color: rgba(255,255,255,0.78); }

/* =========================================================
   Verticals grid
   ========================================================= */
.verticals {
  padding: clamp(60px, 8vw, 110px) 0;
  background: var(--bg-2);
}
.vgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.vtile {
  display: flex; flex-direction: column;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.vtile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--line-strong);
  color: inherit;
}
.vtile:hover .vtile__cta { color: var(--blue-700); transform: translateX(3px); }

.vtile__art {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  background: var(--bg-tinted);
}
.vtile__art img {
  width: 100%; height: 100%; object-fit: cover;
  mix-blend-mode: multiply;
  background: linear-gradient(135deg, var(--blue-50), #fff);
}
.vtile__art--photo img { object-fit: contain; padding: 18px; }
/* Lifestyle/full-bleed photos override the contain+padding default */
.vtile__art--photo img.vtile__art-img--cover { object-fit: cover; padding: 0; mix-blend-mode: normal; }
.vtile__art--photo img.vtile__art-img--runner { object-fit: cover; object-position: 60% center; padding: 0; mix-blend-mode: normal; }
.vtile__art--photo img[src*="kids_camp"] { object-fit: cover; padding: 0; mix-blend-mode: normal; object-position: center 35%; }

/* Swatch placeholders for tiles without photos (race + charity) */
.vtile__art--swatch[data-swatch="marathon"] {
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--blue-700) 60%, var(--blue) 100%);
}
.vtile__art--swatch[data-swatch="marathon"]::after {
  content: "Race-context photo";
  position: absolute; left: 18px; bottom: 18px;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
  font-size: 11.5px; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 4px 9px; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.vtile__art--swatch[data-swatch="charity"] {
  background:
    linear-gradient(135deg, #FFB347 0%, #FF7E5F 50%, var(--blue) 100%);
}
.vtile__art--swatch[data-swatch="charity"]::after {
  content: "Charity-event photo";
  position: absolute; left: 18px; bottom: 18px;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
  font-size: 11.5px; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.92);
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.28);
  padding: 4px 9px; border-radius: 999px;
}
.vtile__art--swatch[data-swatch="youth"] {
  background:
    radial-gradient(circle at 25% 30%, #FFD66B 0%, transparent 35%),
    radial-gradient(circle at 80% 25%, #6FE3B6 0%, transparent 35%),
    radial-gradient(circle at 70% 80%, #FF8FB4 0%, transparent 35%),
    radial-gradient(circle at 25% 80%, #C39BFF 0%, transparent 35%),
    linear-gradient(135deg, var(--blue-100), #fff);
}
.vtile__art--swatch[data-swatch="youth"]::after {
  content: "Kids product · 6 colors";
  position: absolute; left: 18px; bottom: 18px;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
  font-size: 11.5px; letter-spacing: 0.04em;
  color: var(--navy);
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--line);
  padding: 4px 9px; border-radius: 999px;
}

.vtile__num {
  position: absolute;
  top: 14px; right: 16px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.85);
  background: rgba(6,30,61,0.55);
  padding: 4px 9px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.vtile__art--photo .vtile__num {
  color: var(--navy);
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--line);
}

.vtile__body {
  padding: 22px 24px 24px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.vtile__h {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0;
}
.vtile__p {
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0;
}
.vtile__cta {
  margin-top: auto;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--blue-700);
  display: inline-block;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  margin-top: 14px;
  transition: color .2s ease, transform .2s ease;
}

@media (max-width: 980px) {
  .vgrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .vgrid { grid-template-columns: 1fr; }
}

/* =========================================================
   Case study block (dark)
   ========================================================= */
.cases {
  padding: clamp(60px, 8vw, 110px) 0;
  background:
    radial-gradient(ellipse 1000px 400px at 80% 0%, rgba(0,102,178,0.18), transparent 60%),
    var(--navy);
  color: #fff;
}
.case-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}
.case {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-lg);
  padding: 32px 28px 28px;
  display: flex; flex-direction: column;
  gap: 4px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.case:hover { transform: translateY(-3px); background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.18); }
.case--feature {
  background:
    radial-gradient(ellipse 600px 300px at 50% 0%, rgba(0,102,178,0.20), transparent 60%),
    rgba(255,255,255,0.06);
  border-color: rgba(0,102,178,0.35);
}
.case__brand {
  font-size: 14px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin-bottom: 22px;
}
.case__num {
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  color: #fff;
}
.case--feature .case__num {
  background: linear-gradient(180deg, #fff 0%, #BFE5FB 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.case__lbl {
  font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
}
.case__event {
  margin-top: 14px;
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
}
.cases__footer {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  margin: 0;
}
.cases__footer a {
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 1px;
}
.cases__footer a:hover { border-bottom-color: var(--blue); color: #BFE5FB; }

@media (max-width: 820px) {
  .case-row { grid-template-columns: 1fr; }
}

/* =========================================================
   Custom branding
   ========================================================= */
.branding {
  padding: clamp(60px, 8vw, 110px) 0;
  background: var(--bg-2);
}
.branding__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.gallery__item {
  margin: 0;
  background: var(--bg-tinted);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.gallery__item:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.gallery__item img {
  flex: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  mix-blend-mode: multiply;
}
.gallery__item figcaption {
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted);
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 8px 12px;
  text-align: center;
}
.gallery__item:nth-child(1) { grid-column: span 2; aspect-ratio: 2/1; }

.branding__right {
  display: flex; flex-direction: column; gap: 22px;
  position: sticky;
  top: 96px;
}
.vp {
  border-left: 3px solid var(--blue);
  padding: 4px 0 4px 18px;
}
.vp__num {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  color: var(--blue-700);
  margin-bottom: 6px;
}
.vp__h {
  font-size: 19px; font-weight: 700; letter-spacing: -0.01em; color: var(--navy);
  margin: 0 0 6px;
}
.vp__p {
  font-size: 15.5px; color: var(--ink-2); margin: 0; line-height: 1.55;
}

@media (max-width: 980px) {
  .branding__grid { grid-template-columns: 1fr; gap: 32px; }
  .branding__right { position: static; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item:nth-child(1) { grid-column: span 2; }
}
@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery__item:nth-child(1) { grid-column: auto; aspect-ratio: 1; }
}

/* =========================================================
   How it works
   ========================================================= */
.how {
  padding: clamp(60px, 8vw, 110px) 0;
  background: var(--bg-tinted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.steps {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 8%; right: 8%;
  height: 2px;
  background-image: linear-gradient(to right, var(--line-strong) 50%, transparent 0%);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  z-index: 0;
}
.step {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 26px 26px;
  z-index: 1;
}
.step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-top: -52px;
  margin-bottom: 18px;
  border: 4px solid var(--bg-tinted);
  box-shadow: 0 6px 16px -4px rgba(0,102,178,0.5);
}
.step__h {
  font-size: 19px; font-weight: 700; color: var(--navy); margin: 0 0 8px; letter-spacing: -0.01em;
}
.step__p {
  font-size: 15.5px; color: var(--ink-2); margin: 0; line-height: 1.55;
}

@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr; gap: 18px; }
  .steps::before { display: none; }
  .step__num { margin-top: -52px; }
}

/* =========================================================
   Inventor
   ========================================================= */
.inventor {
  padding: clamp(60px, 8vw, 110px) 0;
  background: var(--bg-2);
}
.inventor__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.inventor__p {
  font-size: 17.5px;
  color: var(--ink-2);
  margin: 22px 0 28px;
  max-width: 56ch;
  line-height: 1.6;
}
.inventor__facts {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.inventor__facts li {
  display: flex; flex-direction: column; gap: 2px;
}
.inventor__facts li span {
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}
.inventor__facts li strong {
  font-size: 17px; font-weight: 700; color: var(--navy); letter-spacing: -0.01em;
}

.inventor__photo {
  margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.inventor__photo figcaption {
  font-size: 13.5px; color: var(--muted); font-weight: 500;
}

.placeholder {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  border: 1px dashed var(--line-strong);
  background: var(--bg-tinted);
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.placeholder__stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0px, transparent 10px,
    rgba(6,30,61,0.04) 10px, rgba(6,30,61,0.04) 11px
  );
}
.placeholder__caption {
  position: relative;
  padding: 20px;
  background: linear-gradient(to top, rgba(247,248,250,0.95) 0%, rgba(247,248,250,0) 100%);
  width: 100%;
}
.placeholder__label {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 4px;
}
.placeholder__hint {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.4;
}

@media (max-width: 820px) {
  .inventor__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* =========================================================
   Wear-proof interstitial (between hero and trust bar)
   ========================================================= */
.wear {
  padding: 36px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.wear__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.wear__h {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 6px 0 8px;
  text-wrap: balance;
}
.wear__p {
  font-size: 16.5px; color: var(--ink-2); margin: 0; max-width: 50ch;
}
.wear__photo {
  margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.wear__photo img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 14px;
  mix-blend-mode: multiply;
}
.wear__photo figcaption {
  font-size: 13px; color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
  letter-spacing: 0.04em;
}
@media (max-width: 740px) {
  .wear__inner { grid-template-columns: 1fr; gap: 18px; }
}

/* =========================================================
   Press / Media (logo lockup + magazine covers + videos)
   ========================================================= */
.press {
  padding: clamp(60px, 8vw, 110px) 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head--center {
  margin-left: auto; margin-right: auto;
  text-align: center;
}
.section-head--center .section-sub { margin-left: auto; margin-right: auto; }
code {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
  font-size: 0.92em;
  background: var(--blue-50);
  color: var(--blue-700);
  padding: 1px 6px;
  border-radius: 4px;
}
.press__lockup-lbl {
  display: block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin: 0 0 22px;
}

/* Logo strip */
.press__lockup { margin-top: 14px; }
.logos {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  align-items: stretch;
}
.logo {
  display: flex; align-items: center; justify-content: center;
  height: 84px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.logo:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); border-color: var(--blue); }
.logo__img {
  max-width: 80%;
  max-height: 44px;
  width: auto; height: auto;
  object-fit: contain;
  display: block;
}
.logo__img--tall { max-height: 56px; }
.logo__img--square { max-height: 60px; max-width: 70%; }
@media (max-width: 980px) { .logos { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 520px) { .logos { grid-template-columns: repeat(2, 1fr); } }

/* Native video player styling */
.video__embed video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  background: var(--navy);
  display: block;
}

/* Magazine marquee */
.press__covers { margin-top: 56px; }
.marquee {
  position: relative;
  overflow: hidden;
  margin-top: 6px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.marquee__track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 60s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.mag {
  margin: 0;
  width: 200px;
  flex-shrink: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.mag img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--bg-2);
  box-shadow: var(--shadow-sm);
}
.mag figcaption {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
}
.marquee__fade { display: none; }
@media (max-width: 600px) { .mag { width: 150px; } }

/* YouTube embed video */
.video__embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.video__embed iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* TV still */
.tv-still {
  margin: 32px 0 0;
  display: flex; flex-direction: column; gap: 10px;
}
.tv-still img {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--r);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.tv-still figcaption {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
  letter-spacing: 0.04em;
}

/* Trust bar NASDAQ badge */
.trust__badge {
  height: 36px;
  width: auto;
  margin: 0 auto 6px;
  display: block;
  border-radius: 4px;
  object-fit: contain;
}

/* Inventor real photo */
.inventor__img {
  width: 100%;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* Video press hits */
.press__videos { margin-top: 56px; }
.videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.video { margin: 0; }
.video__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  display: block;
  transition: transform .2s ease, box-shadow .2s ease;
}
.video__player:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.video__poster {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(0,102,178,0.5), transparent 60%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  display: flex; align-items: flex-end; padding: 14px;
}
.video__poster-stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent 0, transparent 14px, rgba(255,255,255,0.04) 14px, rgba(255,255,255,0.04) 15px);
}
.video__poster-tag {
  position: relative;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
  font-size: 11.5px;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 4px 9px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.video__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(0,102,178,0.7);
}
.video__player:hover .video__play { background: var(--blue-600); }
.video figcaption {
  margin-top: 12px;
  display: flex; flex-direction: column; gap: 2px;
}
.video figcaption strong {
  font-size: 15px; color: var(--navy); font-weight: 700; letter-spacing: -0.005em;
}
.video figcaption span {
  font-size: 13px; color: var(--muted);
}
.press__videos-note {
  margin: 18px 0 0;
  text-align: center;
  font-size: 13px; color: var(--muted);
}
@media (max-width: 740px) { .videos { grid-template-columns: 1fr; } }

/* =========================================================
   Quote form
   ========================================================= */
.quote {
  padding: clamp(60px, 8vw, 120px) 0;
  background:
    radial-gradient(ellipse 1000px 600px at 100% 0%, rgba(0,102,178,0.12), transparent 60%),
    var(--bg-2);
  position: relative;
}
.quote__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.quote__bullets {
  list-style: none; margin: 28px 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.quote__bullets li {
  font-size: 15.5px;
  color: var(--ink-2);
  padding-left: 26px;
  position: relative;
  line-height: 1.5;
}
.quote__bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 2px;
  background: var(--blue);
}

.form {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-lg);
  position: relative;
  display: flex; flex-direction: column; gap: 18px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: flex; flex-direction: column;
  gap: 6px;
  border: 0; padding: 0; margin: 0; min-width: 0;
}
.field--full { grid-column: 1/-1; }
.field__lbl {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.field__lbl em {
  color: var(--blue);
  font-style: normal;
  margin-left: 2px;
}
.field__opt {
  color: var(--muted);
  font-weight: 500;
  margin-left: 4px;
}
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  padding: 12px 14px;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%;
  font-family: inherit;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder,
.field textarea::placeholder { color: #9098AB; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,102,178,0.18);
}
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: #C0392B;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.12);
}
.field__err {
  display: none;
  font-size: 13px;
  color: #C0392B;
  font-weight: 500;
}
.field.is-invalid .field__err { display: block; }
.field.is-invalid .field__err::before {
  content: "⚠ ";
}

.field--toggle .field__lbl { margin-bottom: 4px; }
.toggle {
  display: flex; gap: 8px;
}
.toggle label {
  flex: 1;
  position: relative;
}
.toggle label input {
  position: absolute; opacity: 0; pointer-events: none;
}
.toggle label span {
  display: block;
  text-align: center;
  padding: 11px 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
  background: var(--bg-2);
  transition: all .15s ease;
}
.toggle label:hover span { border-color: var(--ink-2); }
.toggle label input:checked + span {
  border-color: var(--blue);
  background: var(--blue-50);
  color: var(--blue-700);
  font-weight: 600;
  box-shadow: 0 0 0 3px rgba(0,102,178,0.14);
}
.toggle label input:focus-visible + span {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.form__submit {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  margin-top: 6px;
}
.form__micro {
  font-size: 13.5px; color: var(--muted);
}

.form__success {
  text-align: center;
  padding: 28px 8px 12px;
}
.form__success-mark {
  width: 56px; height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 30px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px -6px rgba(0,102,178,0.55);
}
.form__success h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.form__success p {
  font-size: 15.5px; color: var(--ink-2); max-width: 48ch; margin: 0 auto;
}

@media (max-width: 880px) {
  .quote__grid { grid-template-columns: 1fr; gap: 32px; }
  .form__row { grid-template-columns: 1fr; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  padding: clamp(60px, 8vw, 110px) 0;
  background: var(--bg);
}
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}
.faq__list {
  list-style: none; margin: 0; padding: 0;
  border-top: 1px solid var(--line-strong);
}
.qa { border-bottom: 1px solid var(--line-strong); }
.qa__q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 4px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  text-align: left;
  font: inherit;
  font-size: 17.5px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  letter-spacing: -0.01em;
}
.qa__q:hover { color: var(--blue-700); }
.qa__icon {
  position: relative;
  width: 20px; height: 20px;
  flex-shrink: 0;
}
.qa__icon::before, .qa__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 2px;
  background: var(--navy);
  transform: translate(-50%, -50%);
  transition: transform .25s ease;
  border-radius: 2px;
}
.qa__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.qa[aria-expanded="true"] .qa__icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.qa__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.qa__a p {
  font-size: 16px;
  color: var(--ink-2);
  margin: 0 0 22px;
  max-width: 64ch;
  line-height: 1.6;
  padding: 0 4px;
}
.qa[aria-expanded="true"] .qa__a {
  max-height: 600px;
}

@media (max-width: 820px) {
  .faq__grid { grid-template-columns: 1fr; gap: 24px; }
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.78);
  padding: clamp(48px, 6vw, 72px) 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer__logo {
  background: #fff;
  border-radius: var(--r-sm);
  padding: 10px 14px;
  display: inline-block;
  margin-bottom: 14px;
}
.footer__logo img { height: 30px; width: auto; }
.footer__tag {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin: 0 0 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.footer__addr {
  font-size: 14.5px;
  color: rgba(255,255,255,0.7);
  margin: 0;
  line-height: 1.65;
}
.footer__h {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 14px;
}
.footer__contact {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}
.footer__contact a { color: #fff; font-weight: 500; }
.footer__contact a:hover { color: var(--blue); }
.footer__small { font-size: 13.5px; color: rgba(255,255,255,0.55); margin: 8px 0 0; }
.footer__links {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.footer__links a {
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  font-weight: 500;
}
.footer__links a:hover { color: var(--blue); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13.5px; color: rgba(255,255,255,0.55);
  gap: 16px; flex-wrap: wrap;
}
.footer__bottom-inner a { color: rgba(255,255,255,0.85); font-weight: 500; }
.footer__bottom-inner a:hover { color: var(--blue); }

@media (max-width: 820px) {
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}
