/* ============================================================
   Safety Club — Brand System
   Colours & type from the Safety Club Brand Guidelines (Notion)
   ============================================================ */

:root {
  /* Core brand blues */
  --signal: #0057FF;
  --deep:   #0042CC;
  /* Supporting blues */
  --ice:    #D6E2FF;
  --sky:    #7FA0FF;
  --navy:   #0A1A47;
  /* Neutrals — white to ink */
  --white:  #FFFFFF;
  --paper:  #F1F4F9;
  --mist:   #E4E9F2;
  --line:   #D0D8E4;
  --steel:  #98A2B3;
  --slate:  #5C6574;
  --graphite:#2C333F;
  --ink:    #10131A;

  /* Semantic */
  --bg:        var(--paper);
  --surface:   var(--white);
  --border:    var(--line);
  --text:      var(--navy);
  --text-soft: var(--slate);
  --accent:    var(--signal);

  /* Type */
  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* Layout */
  --maxw: 1200px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(16,19,26,.04), 0 2px 8px rgba(16,19,26,.05);
  --shadow-md: 0 8px 30px rgba(16,19,26,.08), 0 2px 8px rgba(16,19,26,.04);
  --shadow-lg: 0 24px 70px rgba(10,26,71,.14), 0 8px 24px rgba(16,19,26,.06);
  --shadow-blue: 0 18px 50px rgba(0,87,255,.28);

  --ease: cubic-bezier(.22,.61,.36,1);
  --nav-h: 74px;
}

/* ---------- Reset / base ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { margin: 0; font-weight: 800; letter-spacing: -.02em; line-height: 1.05; }
h2 { font-size: clamp(2rem, 4.4vw, 3.25rem); letter-spacing: -.03em; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); font-weight: 700; letter-spacing: -.02em; }
p  { margin: 0; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(0,87,255,.15);
}
.eyebrow--muted { color: var(--slate); }
.eyebrow--muted::before { background: var(--steel); box-shadow: 0 0 0 4px rgba(152,162,179,.18); }

.section-lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--text-soft);
  max-width: 58ch;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
section { position: relative; }
.section-pad { padding-block: clamp(72px, 10vw, 130px); }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head .eyebrow { margin-bottom: 18px; }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: -.01em;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.btn-primary { background: var(--signal); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { background: var(--deep); transform: translateY(-2px); box-shadow: 0 22px 60px rgba(0,87,255,.36); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost { background: var(--white); color: var(--navy); border-color: var(--border); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--sky); box-shadow: var(--shadow-md); }
.btn-lg { padding: 17px 30px; font-size: 1.02rem; }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo__img { height: 30px; width: auto; display: block; transition: transform .4s var(--ease); }
.logo:hover .logo__img { transform: scale(1.03); }
.footer .logo__img { height: 30px; }
/* legacy inline-svg logo fallback (unused when image present) */
.logo__mark { width: 30px; height: 30px; flex: none; }
.logo__word { font-weight: 800; font-size: 1.28rem; letter-spacing: -.03em; color: var(--navy); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(241,244,249,.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  font-size: .93rem; font-weight: 600; color: var(--slate);
  position: relative; transition: color .2s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--signal); transition: width .28s var(--ease);
}
.nav__links a:hover { color: var(--navy); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.nav__burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }
.nav.open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__links, .nav__cta .btn-ghost { display: none; }
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: var(--white); padding: 20px 24px 28px;
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg);
    transform: translateY(-120%); transition: transform .35s var(--ease);
  }
  .nav.open .nav__links { display: flex; transform: translateY(0); }
  .nav__links a { font-size: 1.1rem; padding: 10px 0; width: 100%; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: calc(var(--nav-h) + clamp(40px, 7vw, 90px)); padding-bottom: clamp(60px, 8vw, 110px); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__glow {
  position: absolute; width: 900px; height: 900px; border-radius: 50%;
  top: -420px; right: -260px;
  background: radial-gradient(circle, rgba(0,87,255,.18), rgba(127,160,255,.06) 45%, transparent 70%);
  filter: blur(10px);
}
.hero__glow2 {
  position: absolute; width: 620px; height: 620px; border-radius: 50%;
  bottom: -340px; left: -220px;
  background: radial-gradient(circle, rgba(214,226,255,.7), transparent 68%);
}
.dot-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(10,26,71,.16) 2.2px, transparent 2.2px);
  background-size: 20px 20px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 70% 20%, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 70% 20%, #000 0%, transparent 75%);
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--border);
  padding: 7px 14px 7px 8px; border-radius: 999px;
  font-size: .8rem; font-weight: 600; color: var(--slate);
  box-shadow: var(--shadow-sm); margin-bottom: 26px;
}
.hero__badge b { color: var(--navy); font-weight: 700; }
.hero__badge .pill {
  font-family: var(--font-mono); font-size: .66rem; letter-spacing: .08em;
  background: var(--ice); color: var(--deep); padding: 3px 9px; border-radius: 999px; text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  letter-spacing: -.04em; line-height: .98;
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--signal); white-space: nowrap; }
.hero__sub { font-size: clamp(1.08rem, 1.7vw, 1.28rem); color: var(--text-soft); max-width: 40ch; margin-bottom: 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero__trust { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.hero__trust-item { display: flex; align-items: center; gap: 9px; font-size: .88rem; color: var(--slate); font-weight: 600; }
.hero__trust-item svg { width: 18px; height: 18px; color: var(--signal); flex: none; }

/* hero visual — floating glass stack */
.hero__visual { position: relative; height: 100%; min-height: 440px; }
.hero__photo {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.6);
  aspect-ratio: 4/5; background: linear-gradient(135deg, var(--navy), var(--deep));
}
.hero__photo--video { aspect-ratio: 4 / 4.4; height: auto; min-height: 0; }
.hero__visual { display: flex; }
.hero__visual .hero__photo { width: 100%; }
.hero__photo img, .hero__photo video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__photo::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,87,255,.14), transparent 42%, rgba(10,26,71,.34));
}
.float-card {
  position: absolute; z-index: 3;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 14px 16px; display: flex; align-items: center; gap: 12px;
}
.float-card__icon {
  width: 40px; height: 40px; border-radius: 11px; flex: none;
  display: grid; place-items: center; color: #fff; background: var(--signal);
}
.float-card__icon svg { width: 20px; height: 20px; }
.float-card__icon.green { background: var(--signal); }
.float-card__t { font-size: .82rem; font-weight: 700; color: var(--navy); line-height: 1.2; }
.float-card__s { font-size: .72rem; color: var(--slate); font-family: var(--font-mono); letter-spacing: .02em; }
.float-card--tl { top: 26px; left: -34px; animation: floaty 6s ease-in-out infinite; }
.float-card--br { bottom: 44px; right: -30px; animation: floaty 7s ease-in-out infinite .8s; }
.float-card--ml { bottom: -18px; left: 20px; animation: floaty 6.5s ease-in-out infinite .4s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .hero__visual { min-height: 380px; max-width: 420px; }
  .float-card--tl { left: -12px; }
  .float-card--br { right: -12px; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-block: 1px solid var(--border);
  background: var(--white);
  padding-block: 20px; overflow: hidden;
}
.marquee__label { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--steel); text-align: center; margin-bottom: 14px; }
.marquee__track { display: flex; gap: 44px; width: max-content; animation: scrollx 34s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 1.02rem; color: var(--navy); white-space: nowrap; }
.marquee__item svg { width: 18px; height: 18px; color: var(--signal); }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ============================================================
   STATS
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { padding: 8px 22px 8px 0; }
.stat + .stat { border-left: 1px solid var(--border); padding-left: 26px; }
.stat__num { font-size: clamp(2.2rem, 3.6vw, 3rem); font-weight: 800; letter-spacing: -.03em; color: var(--navy); line-height: 1; }
.stat__num .u { color: var(--signal); }
.stat__label { margin-top: 10px; font-size: .92rem; color: var(--slate); }
@media (max-width: 820px) { .stats { grid-template-columns: repeat(2,1fr); gap: 28px 20px; } .stat + .stat { border-left: none; padding-left: 0; } }

/* ============================================================
   CLIENTS — Begleitete Firmen
   ============================================================ */
.clients { padding-block: clamp(30px, 5vw, 56px) clamp(50px, 7vw, 90px); }
.clients__title {
  text-align: center; font-family: var(--font-mono);
  font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--slate); margin-bottom: 34px;
}
.logos-marquee {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.logos-track { display: flex; align-items: center; gap: 20px; width: max-content; animation: scrollx 55s linear infinite reverse; }
.logos-marquee:hover .logos-track { animation-play-state: paused; }
.client {
  width: 180px; height: 104px; flex: none;
  background: var(--white); border: 1px solid var(--border); border-radius: 16px;
  display: grid; place-items: center; padding: 20px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.client:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sky); }
.client { align-content: center; }
.client img {
  max-width: 100%; max-height: 64px; width: auto; object-fit: contain; object-position: center; margin: auto;
  filter: grayscale(1); opacity: .66;
  transition: filter .35s var(--ease), opacity .35s var(--ease);
}
.client:hover img { filter: none; opacity: 1; }
@media (max-width: 560px) { .client { width: 150px; height: 92px; padding: 16px 20px; } }

/* ============================================================
   PROBLEM
   ============================================================ */
.problem { background: var(--ink); color: #fff; }
.problem .dot-grid {
  background-image: radial-gradient(rgba(127,160,255,.18) 2.2px, transparent 2.2px);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 30% 10%, #000, transparent 70%);
  mask-image: radial-gradient(ellipse 70% 60% at 30% 10%, #000, transparent 70%);
}
.problem h2 { color: #fff; }
.problem .eyebrow { color: var(--signal); }
.problem .eyebrow::before { background: var(--signal); box-shadow: 0 0 0 4px rgba(0,87,255,.25); }
.problem .section-lead { color: #c3cbd9; }
.trigger-heading { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--signal); margin-bottom: 20px; }
.trigger-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 12px; }
.trigger h3 { margin-top: 0; }
.trigger {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(127,160,255,.16);
  border-radius: var(--radius); padding: 26px 24px;
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.trigger:hover { transform: translateY(-4px); background: rgba(0,87,255,.12); border-color: var(--sky); }
.trigger__k { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; color: var(--signal); text-transform: uppercase; }
.trigger h3 { color: #fff; margin: 12px 0 8px; font-size: 1.18rem; }
.trigger p { color: #aab4c8; font-size: .94rem; }
@media (max-width: 820px) { .trigger-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FEATURES / SOLUTION
   ============================================================ */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feature {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 34px; position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.feature::before {
  content: ""; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(600px circle at var(--mx,50%) var(--my,0%), rgba(0,87,255,.06), transparent 40%);
  transition: opacity .3s var(--ease);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(0,87,255,.35); }
.feature:hover::before { opacity: 1; }
.feature__icon {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--signal), var(--sky)); color: #fff;
  box-shadow: var(--shadow-blue); margin-bottom: 22px;
}
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { margin-bottom: 10px; }
.feature p { color: var(--text-soft); font-size: .98rem; }
.feature__list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 9px; }
.feature__list li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: var(--navy); }
.feature__list svg { width: 18px; height: 18px; color: var(--signal); flex: none; margin-top: 2px; }
@media (max-width: 820px) { .feature-grid { grid-template-columns: 1fr; } }

/* wide split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 22px; }
.split__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 5/4; background: linear-gradient(135deg, var(--mist), var(--ice)); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__badge {
  position: absolute; left: 20px; bottom: 20px; z-index: 2;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px;
}
.split__badge svg { width: 22px; height: 22px; color: var(--signal); }
.split__badge b { font-size: .9rem; }
.split__badge span { display:block; font-size: .74rem; color: var(--slate); font-family: var(--font-mono); }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; gap: 30px; } .split--rev .split__media { order: -1; } }

/* ============================================================
   PROCESS / STEPS
   ============================================================ */
.process { background: var(--white); }
.process-head { max-width: none; display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.process-head__text { max-width: 640px; }
.process-head__cta { flex: none; margin-bottom: 6px; }
@media (max-width: 820px) { .process-head { flex-direction: column; align-items: flex-start; gap: 24px; } }
.timeline { max-width: 780px; margin: 8px auto 0; }
.tstep { display: grid; grid-template-columns: 60px 1fr; gap: 28px; padding-bottom: 42px; }
.tstep:last-child { padding-bottom: 0; }
.tstep__marker { position: relative; display: flex; justify-content: center; }
.tstep__num {
  width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center; flex: none;
  background: linear-gradient(140deg, var(--graphite), var(--ink));
  font-family: var(--font-mono); font-weight: 600; font-size: 1.05rem; color: #fff;
  position: relative; z-index: 2; box-shadow: var(--shadow-md);
  transition: background .5s var(--ease), box-shadow .5s var(--ease), transform .5s var(--ease);
}
.tstep__num::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(140deg, rgba(255,255,255,.35), rgba(255,255,255,0));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.tstep.is-on .tstep__num { background: linear-gradient(140deg, var(--signal), var(--sky)); box-shadow: var(--shadow-blue); transform: translateY(-2px) scale(1.04); }
.tstep:not(:last-child) .tstep__marker::after {
  content: ""; position: absolute; top: 62px; bottom: -42px; left: 50%; transform: translateX(-50%);
  width: 2px; background: var(--line);
}
.tstep.is-on:not(:last-child) .tstep__marker::after { background: linear-gradient(180deg, var(--signal), var(--line)); }
.tstep__content { padding-top: 6px; }
.tstep__k { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--signal); }
.tstep__content h3 { margin: 8px 0 8px; font-size: 1.3rem; }
.tstep__content p { color: var(--text-soft); font-size: .98rem; max-width: 56ch; }
@media (max-width: 560px) {
  .tstep { grid-template-columns: 48px 1fr; gap: 18px; }
  .tstep__num { width: 46px; height: 46px; font-size: .9rem; }
  .tstep:not(:last-child) .tstep__marker::after { top: 46px; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about__media { position: relative; }
.about__media .img-reveal { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; background: linear-gradient(135deg,var(--navy),var(--deep)); }
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about__quote {
  position: absolute; right: -22px; bottom: 34px; max-width: 260px; z-index: 2;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; box-shadow: var(--shadow-lg);
}
.about__quote p { font-size: .96rem; font-weight: 600; color: var(--navy); }
.about__quote span { display: block; margin-top: 8px; font-size: .78rem; color: var(--slate); font-family: var(--font-mono); }
.vision-card {
  margin-top: 28px; background: linear-gradient(135deg, var(--signal), var(--deep));
  color: #fff; border-radius: var(--radius-lg); padding: 30px 32px; box-shadow: var(--shadow-blue);
  position: relative; overflow: hidden;
}
.vision-card .dot-grid { background-image: radial-gradient(rgba(255,255,255,.22) 2px, transparent 2px); -webkit-mask-image:none; mask-image:none; opacity:.5; }
.vision-card .eyebrow { color: rgba(255,255,255,.85); }
.vision-card .eyebrow::before { background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.25); }
.vision-card h3 { color: #fff; font-size: 1.5rem; margin: 14px 0 0; position: relative; }
.about__values { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.about__values li { display: flex; gap: 14px; align-items: flex-start; }
.about__values .ic { width: 40px; height: 40px; border-radius: 11px; flex: none; display: grid; place-items: center; background: var(--ice); color: var(--deep); }
.about__values .ic svg { width: 20px; height: 20px; }
.about__values b { display: block; font-size: 1rem; }
.about__values span { font-size: .92rem; color: var(--text-soft); }
@media (max-width: 900px) { .about__grid { grid-template-columns: 1fr; gap: 40px; } .about__media { max-width: 420px; } }

/* ============================================================
   GUARANTEES
   ============================================================ */
.guarantees { background: var(--mist); }
.guar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.guar {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.guar:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.guar__ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--ice); color: var(--deep); margin-bottom: 18px; }
.guar__ic svg { width: 23px; height: 23px; }
.guar h3 { font-size: 1.08rem; margin-bottom: 8px; }
.guar p { font-size: .92rem; color: var(--text-soft); }
@media (max-width: 900px) { .guar-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .guar-grid { grid-template-columns: 1fr; } }

/* ============================================================
   GALLERY (slide-in band)
   ============================================================ */
.gallery { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: 220px 220px; gap: 16px; margin-top: 12px; }
.gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: var(--shadow-sm); background: linear-gradient(135deg,var(--mist),var(--ice)); }
.gallery figure:nth-child(1) { grid-row: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute; left: 14px; bottom: 12px; z-index: 2; color: #fff;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.gallery figure::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(10,26,71,.5)); }
@media (max-width: 820px) { .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px 180px; } .gallery figure:nth-child(1) { grid-row: span 1; grid-column: span 2; } }

/* ============================================================
   CTA + CONTACT
   ============================================================ */
.contact { background: var(--ink); color: #fff; }
.contact .dot-grid { background-image: radial-gradient(rgba(127,160,255,.18) 2.2px, transparent 2.2px); -webkit-mask-image: radial-gradient(ellipse 60% 80% at 80% 50%, #000, transparent 72%); mask-image: radial-gradient(ellipse 60% 80% at 80% 50%, #000, transparent 72%); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; position: relative; z-index: 1; }
.contact h2 { color: #fff; }
.contact .eyebrow { color: var(--signal); }
.contact .eyebrow::before { background: var(--signal); box-shadow: 0 0 0 4px rgba(0,87,255,.25); }
.contact__lead { color: #c3cbd9; margin: 18px 0 30px; font-size: 1.08rem; }
.contact__points { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.contact__points li { display: flex; gap: 14px; align-items: center; }
.contact__points .ic { width: 44px; height: 44px; border-radius: 12px; flex: none; display: grid; place-items: center; background: rgba(0,87,255,.16); color: var(--signal); }
.contact__points .ic svg { width: 21px; height: 21px; }
.contact__points b { display: block; font-size: 1rem; color: #fff; }
.contact__points a, .contact__points span { color: #aab4c8; font-size: .92rem; }
.contact__points a:hover { color: var(--sky); }

.form {
  background: var(--white); color: var(--navy); border-radius: var(--radius-lg);
  padding: 34px; box-shadow: var(--shadow-lg);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .82rem; font-weight: 700; margin-bottom: 7px; color: var(--navy); }
.field label .req { color: var(--signal); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-family: inherit; font-size: .95rem; color: var(--navy); background: var(--paper);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--signal); background: #fff;
  box-shadow: 0 0 0 4px rgba(0,87,255,.14);
}
.form__check { display: flex; gap: 10px; align-items: flex-start; font-size: .82rem; color: var(--slate); margin-bottom: 20px; }
.form__check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--signal); flex: none; }
.form__check a { color: var(--signal); text-decoration: underline; }
.form .btn-primary { width: 100%; }
.form__note { text-align: center; font-size: .78rem; color: var(--slate); margin-top: 14px; font-family: var(--font-mono); }
@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); color: #c3cbd9; padding-block: 64px 34px; position: relative; overflow: hidden; }
.footer .container { position: relative; z-index: 1; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .logo__word { color: #fff; }
.footer__blurb { margin-top: 18px; font-size: .92rem; max-width: 30ch; color: #94a0ba; }
.footer__col h4 { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--signal); margin-bottom: 16px; font-weight: 500; }
.footer__col a, .footer__col p { display: block; font-size: .92rem; color: #c3cbd9; margin-bottom: 10px; transition: color .2s var(--ease); }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; flex-wrap: wrap; gap: 12px; }
.footer__bottom p { font-size: .82rem; color: #7f8aa6; }
.footer__legal { display: flex; gap: 22px; }
.footer__legal a { font-size: .82rem; color: #94a0ba; }
.footer__legal a:hover { color: #fff; }
@media (max-width: 820px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 520px) { .footer__top { grid-template-columns: 1fr; } }

/* ============================================================
   FOUNDERS
   ============================================================ */
.founders { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.founder {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.founder:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(0,87,255,.3); }
.founder__photo {
  position: relative; aspect-ratio: 4/3; overflow: hidden; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--navy), var(--deep));
  background-repeat: no-repeat;
}
.founder__photo:not(.founder__photo--img)::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.16) 2px, transparent 2px);
  background-size: 20px 20px; opacity: .55;
}
/* photo cards link straight to LinkedIn (whole image is the link, no visible badge) */
.founder__photo--img { transition: filter .3s var(--ease); }
.founder:hover .founder__photo--img { filter: brightness(1.05) saturate(1.05); }
.founder__mono { position: relative; font-weight: 800; font-size: 2.9rem; letter-spacing: -.03em; color: rgba(255,255,255,.94); }
.founder__ph { position: absolute; bottom: 12px; left: 0; right: 0; text-align: center; font-family: var(--font-mono); font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.founder__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.founder__body h3 { font-size: 1.2rem; }
.founder__role { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--signal); margin-top: 7px; }
.founder__bio { color: var(--text-soft); font-size: .92rem; line-height: 1.6; margin: 13px 0 0; flex: 1; }
@media (max-width: 820px) { .founders { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; } }

/* ============================================================
   CHROME ORB — metallic accent
   ============================================================ */
/* ============================================================
   CHROME — Chrome.mp4 as clean, self-contained video boxes
   (no blended / flowing edges into the video)
   ============================================================ */
/* full-container-width box (same width as the other content elements) */
.chrome-box {
  position: relative; margin: clamp(28px, 5vw, 60px) auto; width: calc(100% - 48px);
  max-width: var(--maxw); height: clamp(160px, 18vw, 220px);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.55);
}
.chrome-box video { width: 100%; height: 100%; object-fit: cover; display: block; filter: contrast(1.08) saturate(1.06) brightness(1.02); }
/* first divider: same width & edges as the box, only slimmer */
.chrome-box--band { height: clamp(92px, 9vw, 122px); }

/* chrome video panel inside the vision card */
.vision-chrome { position: absolute; top: 0; right: 0; bottom: 0; width: 40%; z-index: 0; overflow: hidden; }
.vision-chrome video { width: 100%; height: 100%; object-fit: cover; display: block; }
.vision-chrome { border-left: 1px solid rgba(255,255,255,.25); }
@media (max-width: 700px) { .vision-chrome { width: 55%; } }

.vision-card > .eyebrow, .vision-card > h3 { position: relative; z-index: 1; }
.vision-card > h3 { max-width: 620px; }

/* ============================================================
   CONTACT BOOKING + FOOTER SOCIAL
   ============================================================ */
.contact__book { margin-bottom: 12px; }
.contact__book svg { width: 19px; height: 19px; }
.contact__book-note { color: #aab4c8; font-size: .84rem; margin-bottom: 30px; }
.footer__social {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 20px;
  padding: 9px 16px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px;
  font-size: .86rem; font-weight: 600; color: #c3cbd9;
  transition: color .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.footer__social svg { width: 18px; height: 18px; }
.footer__social:hover { color: #fff; border-color: var(--sky); background: rgba(127,160,255,.12); }
.footer__li { display: inline-flex; align-items: center; color: #94a0ba; transition: color .2s var(--ease); }
.footer__li svg { width: 18px; height: 18px; }
.footer__li:hover { color: #fff; }

/* ============================================================
   COHESIVE TRANSITIONS — dark sections as rising rounded panels
   ============================================================ */
.problem, .contact {
  border-top-left-radius: clamp(28px, 4vw, 46px);
  border-top-right-radius: clamp(28px, 4vw, 46px);
  margin-top: clamp(-46px, -4vw, -28px);
  overflow: hidden; z-index: 2;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-l { opacity: 0; transform: translateX(-40px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-l.in { opacity: 1; transform: none; }
.reveal-r { opacity: 0; transform: translateX(40px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-r.in { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(.94); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-scale.in { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: .08s; }
[data-delay="2"] { transition-delay: .16s; }
[data-delay="3"] { transition-delay: .24s; }
[data-delay="4"] { transition-delay: .32s; }
[data-delay="5"] { transition-delay: .40s; }

/* image reveal clip */
.img-reveal { position: relative; }
.img-reveal img { clip-path: inset(0 100% 0 0); transition: clip-path 1.1s var(--ease); }
.img-reveal.in img { clip-path: inset(0 0 0 0); }

/* legal pages */
.legal { padding-top: calc(var(--nav-h) + 60px); }
.legal .container { max-width: 820px; }
.legal h1 { font-size: clamp(2rem,4vw,3rem); margin-bottom: 10px; }
.legal .updated { font-family: var(--font-mono); font-size: .8rem; color: var(--steel); margin-bottom: 40px; display:block; }
.legal h2 { font-size: 1.4rem; margin: 40px 0 14px; }
.legal h3 { font-size: 1.1rem; margin: 26px 0 8px; }
.legal p, .legal li { color: var(--navy); margin-bottom: 12px; }
.legal a { color: var(--signal); text-decoration: underline; }
.legal .card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 30px; box-shadow: var(--shadow-sm); }
.legal .ph { background: #fff6d6; border: 1px dashed #e0b800; color: #7a5c00; padding: 1px 7px; border-radius: 6px; font-family: var(--font-mono); font-size: .82em; }
.backlink { display:inline-flex; align-items:center; gap:8px; font-weight:700; color:var(--signal); margin-bottom: 30px; }
.backlink svg { width:18px;height:18px; transition: transform .25s var(--ease);}
.backlink:hover svg { transform: translateX(-3px); }
