/* Kleervision — glass, clarity, light.
   Palette: night-glass ink, cool daylight, float-glass edge teal, headlight amber. */

:root {
  --ink: #0B1220;
  --deep: #12203A;
  --day: #F2F6F9;
  --edge: #19B899;
  --edge-deep: #0E8A73;
  --beam: #FFC24D;
  --line: rgba(185, 198, 214, .35);
  --white: #FFFFFF;
  --text-on-day: #182335;
  --muted-on-day: #47566E;
  --muted-on-ink: #AFC0D4;
  --head-h: 96px;
  --head-h-solid: 72px;
  --pad: clamp(20px, 4.5vw, 72px);
  --disp: "Unbounded", system-ui, sans-serif;
  --body: "Schibsted Grotesk", system-ui, sans-serif;
}

/* ---------------- fonts ---------------- */
@font-face { font-family: "Unbounded"; src: url("../fonts/unbounded-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Unbounded"; src: url("../fonts/unbounded-700.woff2") format("woff2"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Unbounded"; src: url("../fonts/unbounded-900.woff2") format("woff2"); font-weight: 900; font-display: swap; }
@font-face { font-family: "Schibsted Grotesk"; src: url("../fonts/schibsted-grotesk-regular.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Schibsted Grotesk"; src: url("../fonts/schibsted-grotesk-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Schibsted Grotesk"; src: url("../fonts/schibsted-grotesk-700.woff2") format("woff2"); font-weight: 700; font-display: swap; }

/* ---------------- base ---------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--body);
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.6;
  color: var(--text-on-day);
  background: var(--ink);
}
main { overflow-x: clip; background: var(--day); }
img, video { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--disp); line-height: 1.12; margin: 0 0 .5em; }
h2 { font-size: clamp(26px, 3.4vw, 46px); font-weight: 700; letter-spacing: -.01em; }
h3 { font-size: clamp(17px, 1.5vw, 22px); font-weight: 500; }
p { margin: 0 0 1em; }
a { color: inherit; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.skip { position: fixed; top: -60px; left: 16px; z-index: 200; background: var(--edge); color: var(--ink); padding: 10px 18px; border-radius: 6px; transition: top .2s; font-weight: 700; }
.skip:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--edge); outline-offset: 3px; }

/* drawn rule with lens dot — the section marker */
.rule { display: block; width: 84px; height: 2px; background: var(--text-on-day); position: relative; margin-bottom: 26px; }
.rule::after { content: ""; position: absolute; right: -7px; top: 50%; width: 12px; height: 12px; border: 2px solid currentColor; border-radius: 50%; transform: translateY(-50%); background: transparent; }
.rule--edge { background: var(--edge); color: var(--edge); }
.rule--beam { background: var(--beam); color: var(--beam); }

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-weight: 700; text-decoration: none;
  padding: 13px 26px; border-radius: 999px; border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  position: relative;
}
.btn:hover { transform: translateY(-2px); }
.btn--big { padding: 16px 32px; font-size: 1.05em; }
.btn--edge { background: var(--edge); color: #06281f; box-shadow: 0 8px 28px rgba(25, 184, 153, .35); }
.btn--edge:hover { background: #1ecda9; }
.btn--ghost { border-color: rgba(255, 255, 255, .45); color: var(--white); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, .08); }
.btn--ink { background: var(--ink); color: var(--white); }
.btn--ink:hover { background: var(--deep); }
.btn--beam { background: var(--beam); color: #33230a; }
.btn__pulse { width: 10px; height: 10px; border-radius: 50%; background: currentColor; position: relative; flex: none; }
.is-live .btn__pulse::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid currentColor; opacity: 0; animation: pulse 2.2s infinite; }
@keyframes pulse { 0% { transform: scale(.4); opacity: .9; } 70% { transform: scale(1.25); opacity: 0; } 100% { opacity: 0; } }

/* ---------------- header ---------------- */
.site-head {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; gap: clamp(16px, 3vw, 40px);
  height: var(--head-h); padding: 0 var(--pad);
  background: linear-gradient(rgba(6, 10, 20, .62), rgba(6, 10, 20, 0));
  transition: background .3s ease, height .3s ease, box-shadow .3s ease;
}
.site-head.is-solid {
  height: var(--head-h-solid);
  background: #090E1A;
  box-shadow: 0 10px 30px rgba(4, 8, 16, .45);
}
.lockup { display: flex; align-items: center; gap: 14px; text-decoration: none; margin-right: auto; }
.lockup__mark { height: 70px; width: auto; transition: height .3s ease; filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .5)); }
.is-solid .lockup__mark { height: 48px; }
.lockup__word { font-family: var(--disp); font-weight: 700; font-size: clamp(17px, 1.6vw, 23px); letter-spacing: .14em; color: var(--white); }
.head-nav { display: flex; gap: clamp(14px, 1.8vw, 28px); }
.head-nav a { color: var(--white); text-decoration: none; font-weight: 500; font-size: .98em; opacity: .92; position: relative; padding: 6px 0; }
.head-nav a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--edge); transition: width .25s ease; }
.head-nav a:hover::after, .head-nav a:focus-visible::after { width: 100%; }
.head-call { flex: none; }
.menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 10px; cursor: pointer; }
.menu-btn span:not(.visually-hidden) { width: 26px; height: 3px; background: var(--white); border-radius: 2px; transition: transform .25s, opacity .25s; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.menu-panel { position: fixed; inset: 0; z-index: 90; background: rgba(9, 14, 26, .98); display: flex; align-items: center; justify-content: center; }
.menu-panel[hidden] { display: none; }
.menu-panel nav { display: flex; flex-direction: column; gap: 26px; text-align: center; }
.menu-panel a { color: var(--white); text-decoration: none; font-family: var(--disp); font-weight: 500; font-size: 24px; }
.menu-panel .btn { font-family: var(--body); font-size: 18px; justify-content: center; }

@media (max-width: 900px) {
  .head-nav, .head-call { display: none; }
  .menu-btn { display: flex; }
  :root { --head-h: 76px; --head-h-solid: 62px; }
  .lockup__mark { height: 54px; }
  .is-solid .lockup__mark { height: 42px; }
}

/* ---------------- hero ---------------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: var(--white); overflow: clip; }
.hero__stage { position: absolute; inset: 0; }
.hero__layer { position: absolute; inset: 0; }
.hero__img, .hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 36% 52%; }
.hero__crack { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 36% 52%; mix-blend-mode: screen; opacity: .95; }
.hero__haze { position: absolute; inset: 0; background: rgba(214, 224, 232, .16); backdrop-filter: blur(1.5px); }
.hero__layer--damaged .hero__img { filter: saturate(.68) brightness(.9) contrast(.92); }
/* Without live motion the hero is simply the clean view: damaged layer and video hidden. */
.hero__layer--damaged, .hero__video { display: none; }
.is-live .hero__layer--damaged { display: block; }
.is-live .hero__video { display: block; }
.is-live .hero__img--fallback { display: none; }
/* the repair lens: JS drives --lens-r / --lens-x / --lens-y */
.hero__layer--clear { --lens-x: 30%; --lens-y: 44%; --lens-r: 200vmax; }
.is-live .hero__layer--clear { clip-path: circle(var(--lens-r) at var(--lens-x) var(--lens-y)); }
.hero__ring { position: absolute; left: 30%; top: 44%; width: 12px; height: 12px; border: 2px solid rgba(255, 255, 255, .85); border-radius: 50%; transform: translate(-50%, -50%); opacity: 0; pointer-events: none; box-shadow: 0 0 40px rgba(25, 184, 153, .5), inset 0 0 30px rgba(255, 255, 255, .12); }
.hero__grade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6, 10, 20, .28) 0%, rgba(6, 10, 20, 0) 34%, rgba(6, 10, 20, .12) 62%, rgba(7, 12, 22, .78) 100%); }
.hero__content { position: relative; z-index: 2; width: 100%; padding: calc(var(--head-h) + 30px) var(--pad) clamp(60px, 9vh, 110px); }
.hero__title { font-size: clamp(42px, 7.2vw, 108px); font-weight: 900; letter-spacing: -.015em; margin: 0 0 18px; text-shadow: 0 4px 34px rgba(4, 8, 16, .5); }
.hero__title .line { display: block; }
.hero__sub { max-width: 62ch; font-size: clamp(16px, 1.35vw, 21px); color: #E4ECF4; margin-bottom: 30px; text-shadow: 0 2px 18px rgba(4, 8, 16, .6); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.hero__proof { list-style: none; display: flex; flex-wrap: wrap; gap: clamp(14px, 2.4vw, 34px); margin: 0; padding: 0; }
.hero__proof li {
  display: flex; align-items: baseline; gap: 8px;
  background: rgba(10, 17, 30, .55); border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(8px); border-radius: 14px; padding: 12px 18px;
}
.hero__proof strong { font-family: var(--disp); font-weight: 700; font-size: clamp(20px, 2vw, 30px); color: var(--edge); }
.hero__proof .proof-word { font-size: clamp(16px, 1.4vw, 21px); }
.hero__proof span { font-size: .92em; color: #D7E1EC; }
.hero__cue { position: absolute; right: calc(var(--pad) + 6px); bottom: 26px; z-index: 2; width: 26px; height: 42px; border: 2px solid rgba(255, 255, 255, .5); border-radius: 14px; }
.hero__cue span { position: absolute; left: 50%; top: 7px; width: 4px; height: 8px; background: var(--edge); border-radius: 2px; transform: translateX(-50%); }
.is-live .hero__cue span { animation: cue 1.8s infinite; }
@keyframes cue { 0% { transform: translate(-50%, 0); opacity: 1; } 80% { transform: translate(-50%, 16px); opacity: 0; } 100% { opacity: 0; } }

@media (max-width: 720px) {
  .hero__img, .hero__video, .hero__crack { object-position: 30% 52%; }
  .hero__proof { gap: 10px; }
  .hero__proof li { padding: 10px 14px; }
}

/* ---------------- about ---------------- */
.about {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(30px, 5vw, 80px); align-items: center;
  padding: clamp(70px, 10vw, 140px) var(--pad);
  background:
    radial-gradient(1200px 600px at 110% -10%, rgba(25, 184, 153, .08), transparent 60%),
    var(--day);
}
.about__media { position: relative; min-height: 420px; }
.frame { margin: 0; position: relative; isolation: isolate; }
.frame img { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; }
.frame--ring { width: min(88%, 560px); aspect-ratio: 4 / 3.4; box-shadow: 0 30px 70px rgba(11, 18, 32, .28); border-radius: 18px; }
.frame--ring::before { content: ""; position: absolute; inset: -18px auto auto -18px; width: 64%; height: 64%; border: 2px solid var(--edge); border-radius: 18px; z-index: -1; }
.frame--inset {
  position: absolute; right: 0; bottom: -34px; width: min(46%, 300px);
  background: var(--white); padding: 10px 10px 12px; border-radius: 16px;
  box-shadow: 0 24px 60px rgba(11, 18, 32, .3); transform: rotate(2.2deg);
}
.frame--inset img { aspect-ratio: 3 / 3.6; border-radius: 10px; }
.frame--inset figcaption { font-size: .82em; color: var(--muted-on-day); padding-top: 8px; text-align: center; }
.about__bolt { position: absolute; left: -12%; bottom: -16%; width: 58%; opacity: .05; filter: invert(1); pointer-events: none; }
.about__copy p { color: var(--muted-on-day); max-width: 60ch; }
.about__copy .btn { margin-top: 8px; }

@media (max-width: 980px) {
  .about { grid-template-columns: 1fr; }
  .about__media { order: 2; margin-top: 30px; min-height: 0; }
  .about__copy p { max-width: none; }
}

/* ---------------- services ---------------- */
.services { background: var(--ink); color: var(--white); padding: clamp(70px, 10vw, 140px) 0 clamp(80px, 10vw, 150px); position: relative; overflow: clip; }
.services::before { content: ""; position: absolute; inset: 0; background: radial-gradient(900px 500px at -10% 20%, rgba(25, 184, 153, .10), transparent 55%); pointer-events: none; }
.services__intro { padding: 0 var(--pad); margin-bottom: clamp(36px, 5vw, 70px); position: relative; }
.services__intro .rule { color: var(--edge); }
.services__intro p { color: var(--muted-on-ink); max-width: 72ch; font-size: 1.05em; }
.services__wrap { display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 70px); padding: 0 var(--pad); align-items: start; position: relative; }
.services__list { display: flex; flex-direction: column; }
.svc { border-top: 1px solid var(--line); padding: clamp(22px, 3vw, 36px) 0; cursor: default; transition: padding-left .25s ease; position: relative; }
.svc:last-child { border-bottom: 1px solid var(--line); }
.svc::before { content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 0; border-left: 3px solid var(--edge); opacity: 0; transition: opacity .25s; }
.svc.is-on { padding-left: 22px; }
.svc.is-on::before { opacity: 1; }
.svc h3 { font-size: clamp(20px, 2.2vw, 30px); font-weight: 700; margin-bottom: .4em; transition: color .25s; }
.svc.is-on h3 { color: var(--edge); }
.svc p { color: var(--muted-on-ink); max-width: 58ch; margin: 0; }
.svc__img { display: none; margin: 18px 0 4px; }
.svc__img img { border-radius: 14px; aspect-ratio: 16 / 10; object-fit: cover; }
.services__media { position: sticky; top: calc(var(--head-h-solid) + 30px); }
.services__panel { position: relative; aspect-ratio: 4 / 4.4; border-radius: 20px; overflow: hidden; box-shadow: 0 34px 80px rgba(3, 6, 12, .55); }
.services__panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.06); transition: opacity .5s ease, transform 1.2s ease; }
.services__panel img.is-on { opacity: 1; transform: scale(1); }
.services__panel-ring { position: absolute; inset: 14px; border: 1px solid rgba(255, 255, 255, .25); border-radius: 12px; pointer-events: none; }

@media (max-width: 980px) {
  .services__wrap { grid-template-columns: 1fr; }
  .services__media { display: none; }
  .svc__img { display: block; }
  .svc.is-on { padding-left: 0; }
  .svc.is-on::before { opacity: 0; }
}

/* ---------------- reel ---------------- */
.reel { background: var(--ink); color: var(--white); }
.reel__track { height: 400vh; position: relative; }
.reel__stage { position: sticky; top: 0; height: 100svh; overflow: clip; }
.reel__slide { position: absolute; inset: 0; opacity: 0; transition: opacity .45s ease; }
.reel__slide.is-on { opacity: 1; }
.ba { position: absolute; inset: 0; }
.ba__after, .ba__before { position: absolute; inset: 0; }
.ba__after img, .ba__before img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__before img:first-child { filter: saturate(.68) brightness(.88) contrast(.92); }
.ba__crack { mix-blend-mode: screen; }
.ba__haze { position: absolute; inset: 0; background: rgba(214, 224, 232, .15); }
/* JS drives --wipe (0-100): before layer covers the RIGHT side */
.ba__before { clip-path: inset(0 0 0 calc(var(--wipe, 30) * 1%)); }
.ba__divider { position: absolute; top: 0; bottom: 0; left: calc(var(--wipe, 30) * 1%); width: 3px; background: var(--edge); box-shadow: 0 0 24px rgba(25, 184, 153, .8); }
.ba__divider::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 44px; height: 44px; border: 2px solid var(--edge); border-radius: 50%; background: rgba(9, 14, 26, .55); backdrop-filter: blur(4px); }
.ba--single .ba__after img { transform: scale(1); }
.reel__slide.is-on .ba--single .ba__after img { animation: none; }
.is-live .reel__slide.is-on .ba--single .ba__after img { animation: slowzoom 14s linear forwards; }
@keyframes slowzoom { from { transform: scale(1); } to { transform: scale(1.12); } }
.reel__title {
  position: absolute; top: calc(var(--head-h-solid) + 26px); left: var(--pad); z-index: 3;
  font-size: clamp(22px, 2.6vw, 38px); margin: 0; max-width: 14ch;
  text-shadow: 0 3px 26px rgba(4, 8, 16, .65);
}
.reel__label {
  position: absolute; left: var(--pad); bottom: clamp(26px, 5vh, 54px); z-index: 3; margin: 0;
  background: rgba(9, 14, 26, .62); border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(8px); border-radius: 14px; padding: 14px 20px; max-width: min(84vw, 520px);
  color: #DCE6F0;
}
.reel__label strong { display: block; font-family: var(--disp); font-weight: 700; color: var(--white); margin-bottom: 2px; }
.reel__dots { position: absolute; right: calc(var(--pad) / 1.4); top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 14px; z-index: 3; }
.reel__dots button { width: 12px; height: 12px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, .55); background: transparent; cursor: pointer; padding: 0; transition: background .25s, border-color .25s, transform .25s; }
.reel__dots button.is-on { background: var(--edge); border-color: var(--edge); transform: scale(1.25); }

/* no-JS / reduced-motion fallback: stacked, everything visible */
.no-motion .reel__track { height: auto; }
.no-motion .reel__stage { position: static; height: auto; overflow: visible; }
.no-motion .reel__slide { position: relative; opacity: 1; height: 72vh; min-height: 420px; }
.no-motion .ba__before { clip-path: inset(0 0 0 50%); }
.no-motion .ba__divider { left: 50%; }
.no-motion .reel__dots { display: none; }
.no-motion .reel__title { position: static; padding: 70px var(--pad) 26px; max-width: none; }

/* ---------------- headlights ---------------- */
.lights { position: relative; color: var(--white); padding: clamp(80px, 11vw, 150px) var(--pad); overflow: clip; background: #0A0E18; }
.lights__bg { position: absolute; inset: 0; }
.lights__bg img, .lights__bg video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 62% 60%; }
.lights__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(92deg, rgba(7, 10, 18, .92) 0%, rgba(7, 10, 18, .72) 44%, rgba(7, 10, 18, .18) 100%); }
.lights__content { position: relative; z-index: 2; max-width: 640px; }
.lights h2 { color: var(--beam); font-size: clamp(30px, 4vw, 54px); }
.lights p { color: #E8E2D2; }
.lights__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 28px 0; }
.lights__pair figure { margin: 0; position: relative; border-radius: 14px; overflow: hidden; border: 1px solid rgba(255, 194, 77, .35); }
.lights__pair img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.lights__pair figcaption { position: absolute; left: 10px; bottom: 10px; background: rgba(10, 14, 24, .78); color: var(--beam); font-weight: 700; font-size: .85em; padding: 4px 12px; border-radius: 999px; }
.lights__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------------- how ---------------- */
.how { position: relative; background: var(--deep); color: var(--white); padding: clamp(80px, 11vw, 150px) var(--pad); overflow: clip; }
.how__bg { position: absolute; inset: 0; opacity: .5; }
.how__bg img { width: 100%; height: 100%; object-fit: cover; }
.how__content { position: relative; z-index: 2; }
.how .rule { color: var(--edge); }
.how h2 { max-width: 18ch; }
.steps { list-style: none; margin: clamp(30px, 5vw, 60px) 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.4vw, 34px); counter-reset: step; }
.step { background: rgba(9, 14, 26, .66); border: 1px solid rgba(255, 255, 255, .14); backdrop-filter: blur(6px); border-radius: 18px; padding: 26px 24px 20px; position: relative; }
.step__n { font-family: var(--disp); font-weight: 900; font-size: 44px; color: transparent; -webkit-text-stroke: 1.5px var(--edge); display: block; margin-bottom: 10px; }
.step h3 { font-family: var(--body); font-weight: 700; font-size: 1.12em; }
.step p { color: var(--muted-on-ink); margin: 0; font-size: .97em; }
@media (max-width: 1080px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .steps { grid-template-columns: 1fr; } }

/* ---------------- insurance ---------------- */
.insure { background: var(--day); padding: clamp(70px, 9vw, 120px) var(--pad); position: relative; overflow: clip; }
.insure__inner { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(30px, 5vw, 80px); align-items: center; }
.insure p { color: var(--muted-on-day); font-size: 1.08em; max-width: 62ch; margin: 0; }
.frame--lens { border-radius: 20px; overflow: visible; }
.frame--lens img { aspect-ratio: 16 / 10.5; object-fit: cover; border-radius: 20px; box-shadow: 0 26px 60px rgba(11, 18, 32, .25); }
.frame--lens::before { content: ""; position: absolute; right: -22px; top: -22px; width: 42%; height: 58%; border: 2px solid var(--edge); border-radius: 20px; z-index: -1; }
.frame--lens figcaption { position: absolute; left: 14px; bottom: 14px; background: rgba(9, 14, 26, .78); color: var(--white); font-size: .85em; font-weight: 700; padding: 6px 14px; border-radius: 999px; }
@media (max-width: 900px) { .insure__inner { grid-template-columns: 1fr; } }

/* ---------------- contact ---------------- */
.contact { background: var(--ink); color: var(--white); position: relative; overflow: clip; padding-bottom: clamp(70px, 9vw, 120px); }
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; overflow: hidden; }
.marquee__row { display: flex; gap: 44px; white-space: nowrap; will-change: transform; width: max-content; }
.marquee__row span { font-family: var(--disp); font-weight: 500; font-size: 15px; color: var(--muted-on-ink); position: relative; }
.marquee__row span::after { content: ""; position: absolute; right: -26px; top: 50%; width: 6px; height: 6px; border-radius: 50%; background: var(--edge); transform: translateY(-50%); opacity: .6; }
.contact__bolt { position: absolute; right: -6%; bottom: -10%; width: 44%; max-width: 560px; opacity: .06; pointer-events: none; }
.contact__inner { padding: clamp(60px, 8vw, 110px) var(--pad) 0; position: relative; z-index: 2; }
.contact h2 { font-size: clamp(28px, 3.6vw, 52px); }
.contact__phone { display: inline-block; font-family: var(--disp); font-weight: 900; font-size: clamp(34px, 6.4vw, 92px); letter-spacing: .01em; color: var(--edge); text-decoration: none; margin: 6px 0 18px; transition: color .2s; }
.contact__phone:hover { color: #2adfba; }
.contact__meta { color: var(--muted-on-ink); font-size: 1.06em; max-width: 60ch; }
.contact__meta a { color: var(--white); }
.contact__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 26px; }

/* ---------------- footer ---------------- */
.foot { background: #070C16; color: var(--muted-on-ink); padding: clamp(46px, 6vw, 70px) var(--pad) 30px; }
.foot__top { display: flex; flex-wrap: wrap; gap: 34px; align-items: flex-start; justify-content: space-between; padding-bottom: 34px; border-bottom: 1px solid rgba(185, 198, 214, .18); }
.lockup--foot img { height: 56px; }
.lockup--foot .lockup__word { font-size: 18px; }
.foot__nav { display: flex; flex-direction: column; gap: 10px; }
.foot__nav a, .foot__contact a { color: var(--muted-on-ink); text-decoration: none; }
.foot__nav a:hover, .foot__contact a:hover { color: var(--white); }
.foot__contact { display: flex; flex-direction: column; gap: 10px; font-weight: 700; }
.foot__base { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; padding-top: 22px; font-size: .92em; }
.foot__base a { color: var(--white); }

/* ---------------- reveal states (JS adds .is-live to <html>) ---------------- */
.is-live [data-rise] { opacity: 0; transform: translateY(22px); }
.is-live [data-rise].in { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s cubic-bezier(.22, .8, .32, 1); }
.is-live [data-wipe] img { clip-path: inset(0 100% 0 0 round 18px); }
.is-live [data-wipe].in img { clip-path: inset(0 0 0 0 round 18px); transition: clip-path 1s cubic-bezier(.6, .05, .25, 1); }
