/* OZYNTHA — Rezonbio template language, official logo colors, PDF copy. */

:root {
  --bg: #f4f7fb;
  --bg-soft: #eaf3fa;
  --ink: #203068;
  --ink-soft: #5b7194;
  --ink-fade: rgba(32, 48, 104, 0.28);
  --line: rgba(32, 48, 104, 0.1);
  --blue: #049bd8;
  --blue-deep: #203068;
  --blue-mid: #0878b8;
  --sky: #70cbe1;
  --green: #8fc43a;
  --lime: #c8e45a;
  --panel: #ffffff;
  --dark: #1b2f72;
  --dark-2: #2a4ea8;
  --gutter: clamp(14px, 2.2vw, 28px);
  --max: 1480px;
  --radius: 40px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Outfit", ui-sans-serif, system-ui, sans-serif;
  --cta: linear-gradient(160deg, #e8f07a 0%, #8fc43a 42%, #3dc0e8 130%);
  --hero-grad: linear-gradient(125deg, #163a86 0%, #049bd8 48%, #8fc43a 120%);
  --band: linear-gradient(118deg, #1a2d68 0%, #0878b8 42%, #e08a3a 78%, #f0c45a 100%);
}

*,
*::before,
*::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

html {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  scroll-padding-top: 110px;
  -webkit-font-smoothing: antialiased;
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  min-height: 100%;
  line-height: 1.55;
  font-weight: 400;
}

img, video, canvas { max-width: 100%; display: block; }
button, a { color: inherit; }
button { font: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p, blockquote, figure { margin: 0; }
a { text-decoration: none; }

:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute; left: 16px; top: -48px; z-index: 100;
  background: var(--ink); color: #fff; padding: 8px 12px;
}
.skip-link:focus { top: 16px; }

.eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}

.card-meta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.card-meta span { margin-right: 8px; }
.card-meta.light { color: var(--lime); }

.ico-arrow {
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  vertical-align: -3px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%238fc43a' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'><path d='M8 5l10 7-10 7'/></svg>") center/contain no-repeat;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  width: auto;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(32, 48, 104, 0.08);
  transition: transform 280ms var(--ease), background 280ms var(--ease), color 280ms var(--ease);
}
.btn-pill:hover { background: var(--ink); color: #fff; }
.btn-solid { background: var(--ink); color: #fff; }
.btn-solid:hover { background: var(--blue); color: #fff; }
.btn-on-dark { background: #fff; color: var(--ink); }
.btn-on-cta { background: #fff; color: var(--ink); }
.btn-on-cta.ghost { background: transparent; color: var(--ink); box-shadow: none; border: 1px solid rgba(32,48,104,0.2); }

/* Header */

.site-header {
  position: fixed;
  inset: 14px var(--gutter) auto;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}
.site-header > * { pointer-events: auto; }

.nav-pill {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  height: 68px;
  padding: 0 10px 0 14px;
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  box-shadow: 0 12px 40px rgba(32, 48, 104, 0.1);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: none;
  padding-right: 6px;
}
.wordmark-mark-img { width: 42px; height: 42px; object-fit: contain; }
.wordmark-type { height: 20px; width: auto; }

.nav-desktop { min-width: 0; flex: 1; }
.nav-desktop ul {
  display: none;
  align-items: center;
  gap: 4px;
  min-width: 0;
}
.nav-desktop a {
  display: block;
  padding: 8px 9px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-soft);
  white-space: nowrap;
  border-radius: 999px;
  transition: color 200ms var(--ease), background 200ms var(--ease);
}
.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--ink);
  background: rgba(32, 48, 104, 0.06);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 8px;
  flex: none;
}
.header-cta,
.header-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 12px 40px rgba(32, 48, 104, 0.1);
  transition: background 240ms var(--ease), color 240ms var(--ease);
}
.header-cta {
  background: #fff;
  color: var(--ink);
}
.header-cta:hover { background: var(--ink); color: #fff; }
.header-demo {
  background: var(--ink);
  color: #fff;
}
.header-demo:hover { background: var(--blue); color: #fff; }

.menu-toggle {
  width: 68px; height: 68px;
  display: inline-flex; flex-direction: column;
  justify-content: center; align-items: center; gap: 7px;
  background: #fff; border-radius: 999px;
  box-shadow: 0 12px 40px rgba(32, 48, 104, 0.1);
}
.menu-toggle span {
  display: block; height: 2px; background: var(--ink);
  transition: transform 400ms var(--ease), width 400ms var(--ease);
}
.menu-toggle span:first-child { width: 18px; }
.menu-toggle span:last-child { width: 12px; }
.menu-toggle.is-open span:first-child { transform: translateY(4.5px) rotate(40deg); width: 18px; }
.menu-toggle.is-open span:last-child { transform: translateY(-4.5px) rotate(-40deg); width: 18px; }

.site-header.is-dark .nav-pill,
.site-header.is-dark .menu-toggle {
  background: #fff;
  color: var(--ink);
}
.site-header.is-dark .nav-desktop a { color: var(--ink-soft); }
.site-header.is-dark .nav-desktop a:hover,
.site-header.is-dark .nav-desktop a.is-active {
  color: var(--ink);
  background: rgba(32, 48, 104, 0.06);
}
.site-header.is-dark .menu-toggle span { background: var(--ink); }
.site-header.is-dark .header-cta { background: #fff; color: var(--ink); }

@media (min-width: 1280px) {
  .nav-desktop ul { display: flex; }
  .header-actions { display: flex; }
  .menu-toggle { display: none; }
}

.nav-overlay {
  position: fixed; inset: 0; z-index: 48;
  background: #f4f7fb;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  padding: 96px var(--gutter) 36px;
  overflow-x: hidden;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 480ms var(--ease), visibility 480ms var(--ease);
}
.nav-overlay.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.nav-overlay nav { width: 100%; }
.nav-overlay a {
  display: block;
  font-size: clamp(1.5rem, 6.5vw, 2.3rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.nav-overlay .btn-pill {
  display: inline-flex;
  margin-top: 24px;
  width: auto;
  color: #fff;
  border-bottom: 0;
  padding: 0 26px;
}

body.is-menu-open .site-header.is-dark .nav-pill,
body.is-menu-open .site-header.is-dark .menu-toggle {
  background: #fff;
}
body.is-menu-open .site-header.is-dark .menu-toggle span {
  background: var(--ink);
}

body.is-menu-open { overflow: hidden; }

/* Hero */

.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  color: #fff;
}
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.hero-media,
.hero-video,
.hero-poster,
.hero-veil {
  position: absolute; inset: 0;
}
.hero-video, .hero-poster { width: 100%; height: 100%; object-fit: cover; }
.hero-poster { z-index: 0; }
.hero-video { z-index: 1; }
.hero-veil {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(12, 40, 96, 0.55) 0%, rgba(12, 40, 96, 0.12) 52%, rgba(4, 155, 216, 0.12) 100%),
    linear-gradient(180deg, rgba(12, 40, 96, 0.18) 0%, rgba(12, 40, 96, 0.05) 40%, rgba(8, 20, 48, 0.28) 100%);
}
.hero-frame {
  position: relative;
  z-index: 4;
  height: 100%;
  width: min(1680px, calc(100% - var(--gutter) * 2));
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px 0 120px;
}
.hero-title {
  font-size: clamp(3.6rem, 8.6vw, 7.6rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.9;
  color: #fff;
  max-width: 10ch;
}
.hero-title span { display: block; }
.hero-accent { color: #d6f07a; }
.hero-kicker {
  margin-top: 1.4rem;
  max-width: 22rem;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-style: italic;
  line-height: 1.35;
  color: rgba(255,255,255,0.9);
}
.hero-body {
  margin-top: 1.15rem;
  max-width: 34rem;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.55;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
}

.scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 2.4rem;
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  width: fit-content;
}
.scroll-hint i {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.55);
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='2' viewBox='0 0 24 24'><path d='M5 12h14M13 6l6 6-6 6'/></svg>") center/14px no-repeat;
}

/* Section 03 — 4-step process field */

.approach {
  position: relative;
  height: 420vh;
  color: #fff;
  background: #071428;
}
.approach-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.approach-stage,
.approach-stage canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.approach-stage {
  z-index: 0;
  background: linear-gradient(125deg, #10275c 0%, #0878b8 48%, #1f8f6a 120%);
}
.approach-layout {
  position: relative;
  z-index: 2;
  height: 100%;
  width: min(1680px, calc(100% - var(--gutter) * 2));
  margin-inline: auto;
  pointer-events: none;
}
.approach-copy,
.approach-nav { pointer-events: auto; }
.approach-copy {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: min(36rem, 38%);
  padding: 8px 0 24px;
}
.approach-copy::before {
  content: "";
  position: absolute;
  inset: -48px -80px -48px -40px;
  background: radial-gradient(ellipse at 18% 40%, rgba(7, 20, 40, 0.86), transparent 72%);
  z-index: -1;
  pointer-events: none;
}
.approach h2 {
  font-size: clamp(2.6rem, 6.4vw, 5.6rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
  max-width: 12ch;
  color: #fff;
}
.approach-sub {
  margin-top: 1.35rem;
  max-width: 22rem;
  font-size: clamp(1.08rem, 1.8vw, 1.42rem);
  font-style: italic;
  line-height: 1.35;
  color: rgba(255,255,255,0.92);
}
.approach-lead {
  margin-top: 1.5rem;
  max-width: 26rem;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.55;
  color: rgba(255,255,255,0.84);
}
.approach-kicker {
  margin-top: 1.2rem;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d6f07a;
}
.approach-descs {
  position: relative;
  margin-top: 1.35rem;
  min-height: 4.8em;
  max-width: 28rem;
}
.approach-descs p {
  position: absolute;
  inset: 0 auto auto 0;
  max-width: 28rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition: opacity 480ms var(--ease), transform 480ms var(--ease);
}
.approach-descs p.is-on {
  opacity: 1;
  transform: none;
}
.approach .scroll-hint { margin-top: 1.8rem; }
.approach .scroll-hint i {
  animation: approach-nudge 2.6s var(--ease) infinite;
}
@keyframes approach-nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

.approach-nav {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 6px;
  width: min(240px, 22vw);
}
.approach-nav::before {
  content: "";
  position: absolute;
  inset: -28px -36px -28px -48px;
  background: radial-gradient(ellipse at 90% 50%, rgba(7, 20, 40, 0.7), transparent 72%);
  z-index: -1;
  pointer-events: none;
}
.approach-nav button {
  display: grid;
  grid-template-columns: 2.1rem 1fr;
  align-items: baseline;
  gap: 10px;
  width: 100%;
  padding: 12px 10px 12px 4px;
  text-align: left;
  color: rgba(255,255,255,0.38);
  border-left: 1px solid rgba(255,255,255,0.14);
  transition: color 320ms var(--ease), border-color 320ms var(--ease), background 320ms var(--ease);
}
.approach-nav button span {
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 500;
}
.approach-nav button {
  font-size: 0.92rem;
  letter-spacing: -0.02em;
  font-weight: 500;
  line-height: 1.25;
}
.approach-nav button:hover { color: rgba(255,255,255,0.82); }
.approach-nav button.is-on {
  color: #fff;
  border-left-color: #d6f07a;
  background: linear-gradient(90deg, rgba(214,240,122,0.1), transparent 70%);
}

@media (max-width: 979px) {
  .approach { height: 360vh; }
  .approach-sticky {
    display: flex;
    flex-direction: column;
    height: 100vh;
  }
  .approach-stage {
    position: relative;
    flex: 1 1 auto;
    min-height: 48vh;
    order: 2;
  }
  .approach-layout {
    width: 100%;
    height: auto;
    display: contents;
  }
  .approach-copy {
    position: relative;
    top: auto;
    transform: none;
    width: auto;
    order: 1;
    padding: 84px var(--gutter) 8px;
  }
  .approach-copy::before { display: none; }
  .approach h2 { font-size: clamp(1.85rem, 8.6vw, 2.6rem); }
  .approach-sub { margin-top: 0.7rem; font-size: 1rem; }
  .approach-lead { margin-top: 0.65rem; font-size: 0.95rem; }
  .approach-kicker { margin-top: 0.55rem; }
  .approach-descs { min-height: 3.2em; margin-top: 0.7rem; }
  .approach-descs p { font-size: 0.9rem; }
  .approach .scroll-hint { display: none; }
  .approach-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: 16px;
    transform: none;
    width: auto;
    display: flex;
    gap: 0;
    overflow-x: auto;
    padding: 18px var(--gutter) 8px;
    z-index: 4;
    background: linear-gradient(180deg, transparent, rgba(7, 20, 40, 0.55));
    -webkit-overflow-scrolling: touch;
  }
  .approach-nav::before { display: none; }
  .approach-nav li { flex: none; }
  .approach-nav button {
    width: auto;
    min-width: 160px;
    border-left: 0;
    border-bottom: 1px solid rgba(255,255,255,0.16);
    padding: 8px 12px 10px;
  }
  .approach-nav button.is-on {
    border-left: 0;
    border-bottom-color: #d6f07a;
  }
}

/* Process — cinematic chamber cycle */

.process {
  position: relative;
  height: 460vh;
  color: #fff;
  background: #05080b;
}
.process-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.process-visual {
  position: absolute;
  inset: 0;
  background: #05080b;
}
.process-visual canvas,
.process-fallback,
.process-fallback img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.process-fallback img { object-fit: cover; }

.process-copy {
  position: absolute;
  z-index: 3;
  left: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
  width: min(36rem, 42%);
  padding: 8px 0 24px;
  pointer-events: auto;
}
.process-copy::before {
  content: "";
  position: absolute;
  inset: -48px -80px -48px -40px;
  background: radial-gradient(ellipse at 18% 40%, rgba(5, 8, 11, 0.78), transparent 72%);
  z-index: -1;
  pointer-events: none;
}
.process-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.85rem;
}
.process-copy h2 {
  font-size: clamp(2.4rem, 5.6vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
  max-width: 12ch;
  color: #fff;
}
.process-sub {
  margin-top: 1.2rem;
  max-width: 22rem;
  font-size: clamp(1.02rem, 1.6vw, 1.28rem);
  font-style: italic;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.86);
}
.process-lead,
.process-body {
  margin-top: 1.15rem;
  max-width: 26rem;
  font-size: clamp(0.98rem, 1.3vw, 1.12rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}
.process-kicker {
  margin-top: 1.1rem;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d6f07a;
}
.process .scroll-hint { margin-top: 1.6rem; }
.process .scroll-hint[hidden],
.process-sub[hidden],
.process-lead[hidden],
.process-kicker[hidden],
.process-body[hidden] { display: none !important; }

.process-progress {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 18px;
  z-index: 3;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.process-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: rgba(255, 255, 255, 0.55);
}

.stage-marks {
  position: absolute;
  left: 28px;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(4, 14px);
  gap: 8px 10px;
  opacity: 0.35;
}
.stage-marks i {
  width: 14px;
  height: 14px;
  background: url("../assets/brand/mark-tile.svg") center/contain no-repeat;
}
.svc-marks { position: static; margin-top: auto; padding-top: 28px; }
.svc-marks.on-dark { filter: brightness(2.4); opacity: 0.55; }

@media (max-width: 979px) {
  .process { height: 380vh; }
  .process-copy {
    top: 92px;
    transform: none;
    width: calc(100% - var(--gutter) * 2);
    max-width: none;
  }
  .process-copy::before {
    background: linear-gradient(180deg, rgba(5, 8, 11, 0.72), transparent 80%);
  }
  .process-copy h2 { font-size: clamp(1.85rem, 8.4vw, 2.6rem); }
  .process-sub { margin-top: 0.5rem; font-size: 1rem; }
  .process-lead, .process-body { margin-top: 0.5rem; font-size: 0.92rem; }
  .process .scroll-hint { display: none; }
}

/* Film — sticky photo story */

.film {
  position: relative;
  height: 520vh;
  background: #0b1c3a;
}
.film-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.film-shots img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 700ms var(--ease), transform 8s linear;
}
.film-shots img.is-on {
  opacity: 1;
  transform: scale(1);
}
.film-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 18, 42, 0.72) 0%, rgba(8, 18, 42, 0.28) 52%, rgba(8, 18, 42, 0.18) 100%),
    linear-gradient(180deg, rgba(8, 18, 42, 0.2), rgba(8, 18, 42, 0.45));
  pointer-events: none;
}
.film-stage {
  position: absolute;
  z-index: 2;
  left: var(--gutter);
  top: 100px;
  width: min(520px, calc(100% - 40px));
  height: calc(100vh - 140px);
}
.film-card {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  max-width: 34rem;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 24px, 0);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease), visibility 500ms var(--ease);
  pointer-events: none;
  color: #fff;
}
.film-card.is-on {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}
.film-card h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.04;
  color: #fff;
  margin-bottom: 1rem;
  max-width: 14ch;
}
.film-card h2 em {
  color: var(--lime);
  font-style: normal;
}
.film-card p {
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 34rem;
}
.film-bar {
  position: absolute;
  left: 0;
  right: 40px;
  bottom: 8px;
  height: 3px;
  background: rgba(255,255,255,0.18);
  border-radius: 99px;
  overflow: hidden;
}
.film-bar span {
  display: block; height: 100%; width: 0%;
  background: #fff;
}
.film-card .svc-list { margin-top: 14px; }
@media (max-width: 720px) {
  .hero { height: 100vh; }
  .hero-body { max-width: 36rem; }
  .film-stage {
    top: 88px;
    bottom: 118px;
    height: auto;
  }
  .film-card h2 { font-size: clamp(1.55rem, 7.4vw, 2.1rem); }
  .film-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin-top: 0;
  }
}

/* Services — Rezonbio container + sticky stack */

.services {
  width: min(1172px, calc(100% - 48px));
  margin-inline: auto;
  padding: 160px 32px 200px;
  display: block;
  background: transparent;
  position: relative;
  z-index: 2;
  opacity: 1;
  box-sizing: border-box;
}
.services + .services {
  padding-top: 40px;
}
.services-header {
  text-align: center;
  max-width: 912px;
  margin: 0 auto 40px;
  padding: 0;
}
.services-header .eyebrow {
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.services-panels {
  display: flex;
  flex-direction: column;
  gap: 200px;
}
.services-header h2,
.section-intro h2,
.faq h2,
.cert h2,
.contact-cta h2 {
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.96;
  color: var(--ink);
}
.services-header h2 {
  font-size: clamp(2.15rem, 5vw, 4.4rem);
  max-width: 16ch;
  margin-inline: auto;
  line-height: 1.02;
}

.svc {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: sticky;
  top: 120px;
  scroll-margin-top: 120px;
  z-index: auto;
  border-radius: 0;
  overflow: visible;
  height: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  box-shadow: none;
  transform-origin: 50% 50%;
  will-change: transform, filter;
}
.svc-light { background: transparent; }
.svc-dark {
  background: #203068;
  color: #fff;
  border-radius: 32px;
  overflow: hidden;
}
.svc-copy {
  padding: 8px 4px 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  overflow: visible;
  min-height: 0;
}
.svc-copy h3 {
  font-size: clamp(1.85rem, 3.2vw, 2.85rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.08;
  max-width: 16ch;
}
.svc-copy h3.svc-title-wide {
  max-width: 22ch;
}
.svc-copy p { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.7; max-width: 38rem; }
.svc-dark .svc-copy p { color: rgba(255,255,255,0.78); }
.svc-dark .svc-copy h3 { color: #fff; }
.svc-note { color: var(--ink) !important; font-size: 1.35rem !important; letter-spacing: -0.03em; }
.svc-no {
  font-size: clamp(1.8rem, 3.8vw, 2.6rem) !important;
  letter-spacing: -0.045em;
  color: var(--lime) !important;
  line-height: 1;
}
.svc-mini {
  margin-top: 8px;
  font-size: 12px !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue) !important;
}
.svc-list { display: grid; gap: 8px; margin: 4px 0 8px; }
.svc-list li {
  font-size: 1.02rem;
  color: var(--ink);
  padding-left: 16px;
  position: relative;
}
.svc-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
}
.svc-list.on-dark li { color: rgba(255,255,255,0.86); }
.svc-list.on-dark li::before { background: var(--lime); }

.advantage-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 6px 0 8px;
}
.advantage-pills li {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  font-size: 0.98rem;
  color: #fff;
}
.advantage-pills.ink li {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
}

.svc-media {
  position: relative;
  background: #dce8f2;
  border-radius: 28px;
  min-height: 0;
  height: auto;
  overflow: hidden;
  isolation: isolate;
}
.js-ripple {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.js-ripple.jquery-ripples > img {
  opacity: 0;
  pointer-events: none;
}
.js-ripple.jquery-ripples canvas {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border-radius: inherit;
  display: block;
  z-index: 1;
  pointer-events: none;
}
.js-ripple.is-ripple-active canvas {
  pointer-events: auto;
}
.svc-dark .svc-media {
  background: #2c4a9a;
  border-radius: 0;
}
.svc-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
  display: block;
  max-width: none;
}
.svc-dark .svc-media img {
  border-radius: 0;
}
.svc-about .svc-media img {
  object-position: 28% 50%;
}

@media (min-width: 860px) {
  .svc {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    align-items: center;
    gap: 36px 48px;
  }
  .svc-dark {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    align-items: stretch;
    gap: 0;
  }
  .svc-copy {
    padding: 12px 8px 12px 0;
    justify-content: center;
    gap: 18px;
  }
  .svc-dark .svc-copy { padding: 44px 40px 44px 44px; }
  .svc-media img {
    aspect-ratio: 5 / 4;
    height: auto;
  }
  .svc-dark .svc-media {
    min-height: 100%;
  }
  .svc-dark .svc-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
    object-fit: cover;
  }
}
.svc-light .btn-pill {
  background: #eaf3fb;
  box-shadow: none;
}
.svc-light .btn-pill:hover { background: var(--ink); color: #fff; }

@media (max-width: 859px) {
  .services {
    width: calc(100% - 32px);
    padding: 88px 16px 120px;
  }
  .services-header { margin-bottom: 40px; }
  .services-panels { gap: 80px; }
  .svc {
    height: auto;
    min-height: 0;
    top: 96px;
    gap: 16px;
  }
  .svc-media img {
    aspect-ratio: 16 / 11;
  }
}

/* About / gallery band */

.about-band {
  margin: 28px var(--gutter) 0;
  padding: 28px 20px 32px;
  border-radius: 48px;
  background: var(--band);
  overflow: hidden;
}
.about-intro {
  padding: 88px 0 56px;
  background: var(--bg);
  position: relative;
  z-index: 2;
}
.about-intro-inner {
  width: min(1172px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  gap: 28px;
  align-items: center;
}
.about-media {
  position: relative;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #dce8f2;
}
.about-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: 28% 50%;
  display: block;
  max-width: none;
}
.about-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.about-copy h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.85rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.08;
  color: var(--ink);
  max-width: 16ch;
}
.about-copy p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 38rem;
}
.about-note {
  color: var(--ink) !important;
  font-size: 1.35rem !important;
  letter-spacing: -0.03em;
}
.btn-gsap {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--green);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 10px 28px rgba(143, 196, 58, 0.28);
  will-change: transform;
}
.btn-gsap-fill {
  position: absolute;
  inset: 0;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left center;
  border-radius: inherit;
  z-index: 0;
  pointer-events: none;
}
.btn-gsap-label {
  position: relative;
  z-index: 1;
  color: inherit;
}
.btn-gsap:hover,
.btn-gsap:focus-visible {
  color: #fff;
}
.btn-gsap:hover .btn-gsap-fill,
.btn-gsap:focus-visible .btn-gsap-fill {
  transform: scaleX(1);
}
@media (prefers-reduced-motion: reduce) {
  .btn-gsap-fill { display: none; }
  .btn-gsap { transition: background 220ms var(--ease), color 220ms var(--ease); }
  .btn-gsap:hover,
  .btn-gsap:focus-visible {
    background: var(--blue);
    color: #fff;
  }
}
@media (min-width: 860px) {
  .about-intro {
    padding: 96px 0 64px;
  }
  .about-intro-inner {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: 40px 56px;
  }
}
@media (max-width: 859px) {
  .about-intro {
    padding: 56px 0 28px;
  }
  .about-intro-inner {
    width: calc(100% - 32px);
  }
  .about-media img {
    aspect-ratio: 16 / 11;
  }
  .about-copy {
    padding-bottom: 100px;
  }
}

/* Rezon Bio–style about stage: full-bleed pin + contained header */
.about-stage {
  position: relative;
  z-index: 3;
  width: 100%;
  margin: 0;
}
.about-stage-pin {
  position: relative;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 0;
  color: #fff;
  background: #1a2d68;
  isolation: isolate;
}
.about-stage-container {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}
.about-stage-pin::before {
  content: "";
  position: absolute;
  inset: -24px;
  z-index: 0;
  background:
    radial-gradient(70% 80% at 8% 92%, rgba(232, 122, 48, 0.95) 0%, transparent 58%),
    radial-gradient(55% 50% at 88% 8%, rgba(4, 155, 216, 0.72) 0%, transparent 52%),
    radial-gradient(50% 45% at 70% 78%, rgba(240, 196, 90, 0.55) 0%, transparent 48%),
    linear-gradient(118deg, #16285c 0%, #0878b8 46%, #e08a3a 82%, #f0c45a 100%);
  filter: blur(10px);
  pointer-events: none;
}
.about-stage-head,
.about-stage-horizon {
  position: relative;
  z-index: 1;
}
.about-stage-head {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 112px 12px 28px;
}
.about-stage-kicker {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}
.about-stage-head h2 {
  max-width: 16ch;
  margin-inline: auto;
  font-size: clamp(1.65rem, 3.2vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.08;
  color: #fff;
}
.about-stage-horizon {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  padding: 0 0 20px;
}
.about-stage-track {
  display: flex;
  align-items: stretch;
  gap: 10px;
  height: 100%;
  width: max-content;
  padding-left: max(var(--gutter), calc((100vw - min(var(--max), calc(100vw - var(--gutter) * 2))) / 2));
  padding-right: max(var(--gutter), calc((100vw - min(var(--max), calc(100vw - var(--gutter) * 2))) / 2));
  will-change: transform;
}
.about-stage-card {
  position: relative;
  flex: none;
  width: min(282px, 78vw);
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.about-stage-card.is-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 20px 24px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(48px);
  -webkit-backdrop-filter: blur(48px);
}
.about-stage-icon {
  margin: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff;
  display: grid;
  place-items: center;
}
.about-stage-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.about-stage-quote {
  margin-top: auto;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.28;
  color: #fff;
}
.about-stage-quote-sub {
  font-size: 0.98rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}
.about-stage-quote::before {
  content: "";
  display: inline-block;
  width: 0.42em;
  height: 0.42em;
  margin-right: 0.4em;
  background: #f0a35a;
  transform: rotate(45deg) translateY(-0.08em);
  vertical-align: 0.12em;
}
.about-stage-card-kicker {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.about-stage-card.is-list .svc-list {
  margin: 0;
  gap: 6px;
}
.about-stage-card.is-list .svc-list li {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
}
.about-stage-card.is-photo img,
.about-stage-card.is-benefit img,
.about-stage-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}
.about-stage-photo {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  border-radius: inherit;
  z-index: 0;
}
.about-stage-card.is-benefit img {
  transform: scale(1.001);
  transition: transform 720ms var(--ease);
}
.about-stage-card.is-benefit:hover img,
.about-stage-card.is-benefit:focus-within img {
  transform: scale(1.08);
}
.about-stage-card.is-benefit .about-stage-card-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}
.about-stage-benefit {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 10px;
  padding: 80px 20px 22px;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 16, 40, 0.55) 42%, rgba(8, 16, 40, 0.92) 100%);
  pointer-events: none;
}
.about-stage-benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #fff;
  color: var(--green);
  display: grid;
  place-items: center;
  flex: none;
  overflow: hidden;
}
.about-stage-benefit-icon svg {
  width: 22px;
  height: 22px;
  overflow: visible;
}
.ico-orbit,
.ico-hour,
.ico-min,
.ico-gear {
  transform-origin: 12px 12px;
  transform-box: fill-box;
}
.ico-orbit { animation: ico-spin 7s linear infinite; }
.ico-hour { animation: ico-spin 16s linear infinite; }
.ico-min { animation: ico-spin 4s linear infinite; }
.ico-gear { animation: ico-spin 5.5s linear infinite; }
.ico-pulse { transform-origin: 12px 12.2px; animation: ico-pulse 1.8s ease-in-out infinite; }
.ico-drip { animation: ico-drip 1.7s ease-in infinite; }
.ico-drip-b { animation-delay: 0.7s; }
.ico-layer { animation: ico-layer 2.2s ease-in-out infinite; }
.ico-layer-b { animation-delay: 0.55s; }
.ico-sway { transform-origin: 6px 19px; animation: ico-sway 2.6s ease-in-out infinite; }
.ico-spark { animation: ico-spark 1.5s ease-in-out infinite; }
.ico-bubble { animation: ico-bubble 2s ease-out infinite; }
.ico-bubble-b { animation-delay: 0.7s; }
.ico-leaf { transform-origin: 15px 8px; animation: ico-sway 2.8s ease-in-out infinite; }
@keyframes ico-spin { to { transform: rotate(360deg); } }
@keyframes ico-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.45); opacity: 0.35; }
}
@keyframes ico-drip {
  0% { transform: translateY(-3px); opacity: 0; }
  28% { opacity: 1; }
  100% { transform: translateY(5px); opacity: 0; }
}
@keyframes ico-layer {
  0%, 100% { opacity: 1; transform: translateX(0); }
  50% { opacity: 0.25; transform: translateX(3px); }
}
@keyframes ico-sway {
  0%, 100% { transform: rotate(-6deg); }
  50% { transform: rotate(7deg); }
}
@keyframes ico-spark {
  0%, 100% { opacity: 0.2; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1.15); }
}
@keyframes ico-bubble {
  0% { transform: translateY(3px); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: translateY(-7px); opacity: 0; }
}
.about-stage-benefit h3 {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.18;
  color: #fff;
}
@media (min-width: 768px) {
  .about-stage-pin {
    height: 100vh;
  }
  .about-stage-head {
    padding: 120px 24px 40px;
  }
  .about-stage-kicker {
    margin: 0 0 18px;
  }
  .about-stage-head h2 {
    max-width: 16ch;
  }
  .about-stage-horizon {
    padding-bottom: 32px;
  }
  .about-stage-track {
    gap: 16px;
  }
  .about-stage-card {
    width: 440px;
    border-radius: 26px;
  }
  .about-stage-card.is-copy {
    padding: 32px 32px 36px;
    gap: 16px;
    width: 480px;
  }
  .about-stage-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
  }
  .about-stage-icon img {
    width: 46px;
    height: 46px;
  }
  .about-stage-quote {
    font-size: 1.35rem;
  }
  .about-stage-quote-sub {
    font-size: 1.02rem;
  }
  .about-stage-card.is-list .svc-list li {
    font-size: 1.02rem;
  }
  .about-stage-benefit {
    gap: 12px;
    padding: 88px 28px 28px;
  }
  .about-stage-benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
  .about-stage-benefit-icon svg {
    width: 24px;
    height: 24px;
  }
  .about-stage-benefit h3 {
    font-size: 1.65rem;
    max-width: 15ch;
  }
}
@media (max-width: 767px) {
  .about-stage-pin {
    padding-bottom: 136px;
  }
  .about-stage-head {
    padding: 108px 8px 24px;
  }
  .about-stage-head h2 {
    font-size: clamp(1.45rem, 7vw, 1.85rem);
  }
}
body.is-reduced .about-stage {
  height: auto;
}
body.is-reduced .about-stage-pin {
  height: auto;
  min-height: 100vh;
}
body.is-reduced .about-stage-horizon {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
body.is-reduced .about-stage-benefit-icon * { animation: none !important; }
.quote-band {
  margin: 0;
  padding: 0;
  width: 100%;
  background:
    radial-gradient(90% 70% at 50% 115%, rgba(4, 155, 216, 0.42) 0%, transparent 58%),
    radial-gradient(70% 50% at 80% 0%, rgba(32, 48, 104, 0.35) 0%, transparent 50%),
    linear-gradient(180deg, #05070d 0%, #0a1224 32%, #122048 68%, #163a86 100%);
}
.quote-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 28px;
  width: min(1172px, calc(100% - var(--gutter) * 2));
  margin-inline: auto;
  min-height: 280px;
  padding: clamp(56px, 8vh, 96px) 0;
  color: #fff;
}
.quote-mark {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.quote-panel blockquote {
  margin: 0;
  max-width: 36rem;
}
.quote-panel p {
  font-size: clamp(1.55rem, 3.1vw, 2.55rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.28;
  color: #fff;
}
.quote-panel p::after {
  content: "”";
}

/* Before / After */

.ba-section {
  padding: 88px 0 72px;
  background: var(--bg-soft);
}
.ba-head {
  margin-bottom: 36px;
}
.ba-kicker {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}
.ba-grid {
  width: min(var(--max), calc(100% - var(--gutter) * 2));
  margin: 0 auto;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.ba-compare {
  margin: 0;
}
.ba-compare-frame {
  position: relative;
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: hidden;
  background: #dce8f2;
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
}
.ba-after,
.ba-before {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.ba-after {
  z-index: 0;
}
.ba-before {
  z-index: 1;
  width: 50%;
}
.ba-after img,
.ba-before img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  max-width: none;
  object-fit: cover;
  object-position: left center;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.ba-before img {
  filter: grayscale(55%) sepia(18%) brightness(86%) contrast(92%);
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 2;
  width: 44px;
  margin-left: -22px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.ba-handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  margin-left: -1px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}
.ba-handle-grip {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(32, 48, 104, 0.1);
  box-shadow: 0 8px 24px rgba(32, 48, 104, 0.16);
}
.ba-handle-grip::before,
.ba-handle-grip::after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -5px;
  border: 5px solid transparent;
}
.ba-handle-grip::before {
  left: 11px;
  border-right-color: var(--ink);
}
.ba-handle-grip::after {
  right: 11px;
  border-left-color: var(--ink);
}
.ba-tag {
  position: absolute;
  bottom: 14px;
  z-index: 3;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
}
.ba-tag--before {
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}
.ba-tag--after {
  right: 14px;
  background: var(--green);
  color: var(--ink);
}
.ba-compare figcaption {
  margin-top: 12px;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink-soft);
}
.ba-legend {
  width: min(var(--max), calc(100% - var(--gutter) * 2));
  margin: 32px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 28px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.ba-legend span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ba-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.ba-dot--before {
  background: #f0b429;
}
.ba-dot--after {
  background: var(--green);
}
@media (min-width: 700px) {
  .ba-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .ba-compare-frame {
    border-radius: 28px;
  }
}
@media (min-width: 1100px) {
  .ba-section {
    padding: 108px 0 88px;
  }
  .ba-grid {
    gap: 28px;
  }
}

.quote-panel p::before {
  content: "“";
}
.about-inner {
  display: grid;
  gap: 18px;
}
.about-quote {
  background: linear-gradient(160deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06));
  backdrop-filter: blur(16px);
  border-radius: 32px;
  padding: 36px 28px;
  color: #fff;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.about-mark { width: 56px; height: 56px; object-fit: contain; margin-bottom: auto; }
.about-quote p {
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.2;
  color: #fff;
}
@media (min-width: 980px) {
  .quote-panel {
    min-height: 340px;
  }
}
@media (min-width: 980px) {
  .about-inner { grid-template-columns: 0.72fr 1.28fr; align-items: stretch; }
  .quote-band .about-inner { grid-template-columns: 1fr; }
  .about-band { padding: 22px; }
}

.mark-field {
  height: 140px;
  margin: 8px var(--gutter);
  background-image: url("../assets/brand/mark-tile.svg");
  background-size: 28px;
  background-repeat: repeat;
  opacity: 0.28;
}

/* Reduce */

.reduce { padding: 120px 0 24px; }
.reduce-row {
  width: min(var(--max), calc(100% - var(--gutter) * 2));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.reduce-row article {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  padding: 0 0 18px;
}
.reduce-photo {
  margin: 0;
  height: 180px;
  overflow: hidden;
  background: #dce8f2;
}
.reduce-row img { width: 100%; height: 180px; object-fit: cover; display: block; }
.reduce-row h3 {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  padding: 16px 18px 8px;
}
.reduce-row li { color: var(--ink-soft); padding: 3px 18px; }
@media (min-width: 900px) {
  .reduce-row { grid-template-columns: repeat(4, 1fr); }
  .reduce-row img,
  .reduce-photo { height: 200px; }
}

.section-intro {
  width: min(var(--max), calc(100% - var(--gutter) * 2));
  margin: 0 auto 28px;
}
.section-intro h2 {
  font-size: clamp(2.4rem, 5.4vw, 4.8rem);
  max-width: 16ch;
}
.section-intro p {
  margin-top: 1.1rem;
  max-width: 40rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Value addition — card grid */

.value {
  padding: 100px var(--gutter) 80px;
  background: var(--bg-soft);
  border-radius: 48px 48px 0 0;
  margin-top: 24px;
}
.value .section-intro {
  text-align: center;
  margin-bottom: 48px;
}
.value .section-intro h2 {
  margin-inline: auto;
  max-width: none;
}
.value .section-intro p {
  margin-inline: auto;
  max-width: 46rem;
}
.value-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.value-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  padding: 22px 22px 24px;
  background: #fff;
  border: 1px solid rgba(32, 48, 104, 0.08);
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(32, 48, 104, 0.05);
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(32, 48, 104, 0.1);
}
.value-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.value-card-ico {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--ico, var(--blue));
  color: #fff;
  flex: none;
}
.value-card-ico svg {
  width: 22px;
  height: 22px;
  display: block;
}
.value-card-num {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--ink-fade);
}
.value-card h3 {
  margin-top: auto;
  font-size: clamp(1.12rem, 1.6vw, 1.32rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--ink);
}
@media (min-width: 720px) {
  .value-card { width: calc(50% - 8px); }
}
@media (min-width: 1100px) {
  .value-card { width: calc(25% - 12px); padding: 24px 24px 26px; }
}
@media (max-width: 719px) {
  .value { padding: 64px 16px 120px; }
  .value .section-intro { margin-bottom: 28px; }
}

/* Suitable — GSAP text marquee */
.suitable {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 96px 0 72px;
  color: #fff;
  background: var(--blue-deep);
}
.suitable::before {
  content: "";
  position: absolute;
  inset: -24px;
  z-index: 0;
  background:
    radial-gradient(70% 70% at 88% 12%, rgba(143, 196, 58, 0.55) 0%, transparent 52%),
    radial-gradient(55% 50% at 8% 88%, rgba(4, 155, 216, 0.45) 0%, transparent 50%),
    linear-gradient(125deg, #203068 0%, #0878b8 48%, #049bd8 78%, #8fc43a 120%);
  pointer-events: none;
}
.suitable > * { position: relative; z-index: 1; }
.suitable .section-intro {
  text-align: center;
  margin-bottom: 36px;
}
.suitable .section-intro h2 {
  margin-inline: auto;
  color: #fff;
}
.suitable .section-intro p {
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.78);
}
.suit-marquee {
  overflow: hidden;
  margin-top: 28px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.suit-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
}
.suit-marquee-track ul {
  display: flex;
  align-items: center;
  flex: none;
  margin: 0;
  padding: 0;
}
.suit-marquee-track li {
  flex: none;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 10px 0 10px 28px;
  font-size: clamp(1.35rem, 3.2vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #fff;
  white-space: nowrap;
}
.suit-marquee-track li::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  flex: none;
}
@media (max-width: 720px) {
  .suitable { padding: 56px 0 40px; }
  .suit-marquee-track li { gap: 18px; padding-left: 18px; }
}
body.is-reduced .suit-marquee {
  overflow-x: auto;
  -webkit-mask-image: none;
  mask-image: none;
}

/* Difference — Rezon photo-tiles / capabilities */
.diff-tiles {
  padding: 72px var(--gutter) 88px;
  background: #eef1fa;
}
.diff-tiles-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}
.diff-tiles-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto 40px;
  max-width: 46rem;
}
.diff-tiles-kicker {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}
.diff-tiles-head h2 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.98;
  color: var(--ink);
}
.diff-tiles-head p {
  margin: 0 auto 22px;
  max-width: 38rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
}
.diff-tiles-head .btn-pill {
  align-self: center;
}
.diff-tiles-list {
  display: flex;
  flex-direction: column;
  gap: 24vh;
  padding-bottom: 12vh;
}
.diff-tile {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 0;
  min-height: 0;
  border: 0;
  border-radius: 28px;
  padding: 10px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(32, 48, 104, 0.1);
  overflow: hidden;
  transform-origin: 50% 0%;
  will-change: transform;
}
.diff-tile:nth-child(1) { top: 104px; z-index: 1; }
.diff-tile:nth-child(2) { top: 118px; z-index: 2; }
.diff-tile:nth-child(3) { top: 132px; z-index: 3; }
.diff-tile:nth-child(4) { top: 146px; z-index: 4; }
.diff-tile-photo {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  height: 200px;
  background: #dce8f2;
}
.diff-tile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.diff-tile-copy {
  padding: 22px 14px 12px;
}
.diff-tile-copy h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: var(--ink);
}
.diff-tile-copy p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 36rem;
}
.diff-tile-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #eef1fa;
  color: var(--ink);
}
.diff-tile-icon svg {
  width: 22px;
  height: 22px;
}
@media (min-width: 860px) {
  .diff-tiles { padding: 88px var(--gutter) 40px; }
  .diff-tiles-head { margin-bottom: 40px; }
  .diff-tiles-list { gap: 28vh; padding-bottom: 14vh; }
  .diff-tile {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    height: 320px;
    min-height: 320px;
    max-height: 320px;
    border-radius: 32px;
    padding: 12px;
  }
  .diff-tile-photo {
    order: 2;
    height: 100%;
    min-height: 0;
    max-height: none;
    border-radius: 24px;
  }
  .diff-tile-photo img {
    aspect-ratio: auto;
    height: 100%;
  }
  .diff-tile-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 28px 20px 20px;
  }
  .diff-tile-copy h3 {
    margin: 0;
    font-size: clamp(1.8rem, 2.6vw, 2.4rem);
    max-width: 12ch;
    min-height: 2.5em;
  }
  .diff-tile-copy p {
    margin: 0;
    max-width: 34ch;
    font-size: 1.05rem;
  }
  .diff-tile-icon {
    order: -1;
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }
  .diff-tile-icon svg { width: 24px; height: 24px; }
}
@media (max-width: 859px) {
  .diff-tiles { padding: 48px 16px 32px; }
  .diff-tiles-list { gap: 28vh; padding-bottom: 16vh; }
  .diff-tile { top: 96px; }
  .diff-tile:nth-child(1) { top: 92px; }
  .diff-tile:nth-child(2) { top: 104px; }
  .diff-tile:nth-child(3) { top: 116px; }
  .diff-tile:nth-child(4) { top: 128px; }
}
body.is-reduced .diff-tiles-list {
  gap: 16px;
  padding-bottom: 0;
}
body.is-reduced .diff-tile {
  position: relative;
  top: 0 !important;
}

/* Encyclopedia — Rezon why-hero: gradient + glass cards */
.ency-hero {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 100vh;
  color: #fff;
  background: #16285c;
  isolation: isolate;
  overflow: hidden;
}
.ency-hero::before {
  content: "";
  position: absolute;
  inset: -32px;
  z-index: 0;
  background:
    radial-gradient(70% 80% at 92% 18%, rgba(232, 122, 48, 0.88) 0%, transparent 55%),
    radial-gradient(50% 45% at 78% 88%, rgba(240, 196, 90, 0.42) 0%, transparent 50%),
    radial-gradient(60% 50% at 8% 80%, rgba(4, 155, 216, 0.35) 0%, transparent 48%),
    linear-gradient(125deg, #12204e 0%, #1a3a88 42%, #049bd8 72%, #e08a3a 100%);
  filter: blur(12px);
  pointer-events: none;
}
.ency-hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - var(--gutter) * 2));
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 128px 0 48px;
}
.ency-kicker {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.ency-hero-inner h2 {
  max-width: 16ch;
  margin: 0 auto 22px;
  font-size: clamp(2.1rem, 5.4vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.02;
  color: #fff;
}
.ency-lead {
  max-width: 38rem;
  margin: 0 auto 48px;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}
.ency-lead strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--lime);
}
.ency-cards {
  width: 100%;
  margin-top: auto;
  display: grid;
  gap: 12px;
}
.ency-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  min-height: 220px;
  padding: 24px 22px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.ency-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #fff;
}
.ency-card p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.98rem;
  line-height: 1.5;
  max-width: 36ch;
}
.ency-card-go {
  margin-top: auto;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #f0c45a;
  display: grid;
  place-items: center;
  transition: transform 280ms var(--ease), background 280ms var(--ease);
}
.ency-card-go span {
  display: block;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23203068' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'><path d='M8 5l10 7-10 7'/></svg>") center/contain no-repeat;
}
.ency-card-go:hover,
.ency-card-go:focus-visible {
  transform: scale(1.08);
  background: #fff;
}
@media (min-width: 860px) {
  .ency-hero-inner { padding: 132px 0 36px; }
  .ency-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
  .ency-card {
    min-height: 260px;
    padding: 28px 26px 24px;
    border-radius: 24px;
  }
}
@media (max-width: 859px) {
  .ency-hero-inner { padding: 108px 0 120px; }
}

/* Why Choose — Rezon facilities layout */
.why-choose {
  padding: 72px var(--gutter) 80px;
  background: var(--bg);
}
.why-choose-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.why-choose-photo {
  margin: 0;
  border-radius: 32px;
  overflow: hidden;
  min-height: 280px;
  background: #dce8f2;
}
.why-choose-photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center 70%;
  display: block;
}
.why-choose-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 8px 4px 4px;
}
.why-choose-copy h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.85rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.1;
  color: var(--ink);
  max-width: 14ch;
}
.why-choose-copy > p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 38rem;
}
.why-points-kicker {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}
.why-points {
  display: grid;
  gap: 8px;
  margin: 0;
}
.why-points li {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  padding: 8px 14px 8px 8px;
  background: #eef1fa;
  border-radius: 18px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.why-point-ico {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}
.why-point-ico svg {
  width: 100%;
  height: 100%;
  display: block;
}
@media (min-width: 980px) {
  .why-choose-grid {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: stretch;
    gap: 28px;
  }
  .why-choose-photo,
  .why-choose-photo img {
    min-height: 100%;
    height: 100%;
  }
  .why-choose-copy { padding: 12px 8px 12px 4px; gap: 16px; }
  .why-points { gap: 10px; }
}
@media (max-width: 979px) {
  .why-choose { padding: 40px 16px 56px; }
}

/* Industries — image-top card carousel */

.industries {
  padding: 100px var(--gutter) 72px;
  background: var(--bg);
}
.industries .section-intro {
  text-align: center;
  margin-bottom: 48px;
}
.industries .section-intro h2 {
  margin-inline: auto;
  max-width: none;
}
.industries .section-intro p {
  margin-inline: auto;
  max-width: 46rem;
}

.ind-carousel {
  width: min(var(--max), 100%);
  margin: 0 auto;
}
.ind-stage {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  column-gap: 14px;
  align-items: center;
}
.ind-viewport {
  min-width: 0;
  grid-column: 2;
  overflow: hidden;
  container-type: inline-size;
  outline: none;
}
.no-js .ind-viewport,
body.is-reduced .ind-viewport {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.ind-viewport::-webkit-scrollbar { display: none; }
.ind-track {
  display: flex;
  align-items: stretch;
  width: max-content;
  gap: 18px;
  will-change: transform;
  backface-visibility: hidden;
}
.ind-card {
  flex: none;
  width: 86cqi;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(32, 48, 104, 0.08);
  box-shadow: 0 18px 40px rgba(32, 48, 104, 0.06);
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}
.ind-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(32, 48, 104, 0.12);
}
.ind-card-media {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dceef8;
}
.ind-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms var(--ease);
}
.ind-card:hover .ind-card-media img {
  transform: scale(1.06);
}
.ind-card-index {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  min-width: 42px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-align: center;
  box-shadow: 0 8px 20px rgba(32, 48, 104, 0.12);
}
.ind-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 22px 26px;
  flex: 1;
  text-align: left;
}
.ind-card-body h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ink);
}
.ind-card-body p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

.ind-nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 28px rgba(32, 48, 104, 0.14);
  display: grid;
  place-items: center;
  justify-self: center;
  align-self: center;
  transition: background 240ms var(--ease), transform 240ms var(--ease);
}
.ind-nav-prev { grid-column: 1; }
.ind-nav-next { grid-column: 3; }
.ind-nav:hover,
.ind-nav:focus-visible {
  background: var(--ink);
  transform: scale(1.05);
}
.ind-nav span {
  display: block;
  width: 16px;
  height: 16px;
  background: center / contain no-repeat
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23203068' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'><path d='M15 6l-6 6 6 6'/></svg>");
}
.ind-nav:hover span,
.ind-nav:focus-visible span {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'><path d='M15 6l-6 6 6 6'/></svg>");
}
.ind-nav-next span {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23203068' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'><path d='M9 6l6 6-6 6'/></svg>");
}
.ind-nav-next:hover span,
.ind-nav-next:focus-visible span {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'><path d='M9 6l6 6-6 6'/></svg>");
}

.ind-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 22px 0 0;
}
.ind-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 999px;
  background: rgba(32, 48, 104, 0.22);
  transition: width 240ms var(--ease), background 240ms var(--ease);
}
.ind-dot.is-active {
  width: 26px;
  background: var(--blue);
}

@media (min-width: 720px) {
  .ind-card { width: calc((100cqi - 18px) / 2.18); }
}
@media (min-width: 1100px) {
  .ind-card { width: calc((100cqi - 36px) / 3.18); }
  .ind-card-body { padding: 24px 24px 28px; }
}
@media (max-width: 719px) {
  .industries { padding: 64px 16px 120px; }
  .industries .section-intro { margin-bottom: 28px; }
  .ind-stage {
    display: block;
    position: relative;
  }
  .ind-nav {
    position: absolute;
    top: 22%;
    z-index: 2;
    width: 40px;
    height: 40px;
  }
  .ind-nav-prev { left: 8px; }
  .ind-nav-next { right: 8px; }
  .ind-dots { margin-top: 18px; }
}
body.is-reduced .ind-card:hover,
body.is-reduced .ind-card:hover .ind-card-media img,
body.is-reduced .value-card:hover {
  transform: none;
}
body.is-reduced .ind-track {
  will-change: auto;
  transform: none !important;
}

/* FAQ */

.faq { padding: 110px var(--gutter) 48px; }
.faq-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  gap: 24px;
}
@media (min-width: 900px) {
  .faq-grid { grid-template-columns: 0.8fr 1.2fr; align-items: start; }
}
.faq-item {
  background: #fff;
  border-radius: 22px;
  margin-bottom: 10px;
  padding: 0 8px;
}
.faq-item h3 button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  padding: 1.2rem 12px;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}
.faq-item h3 span { width: 12px; height: 12px; position: relative; flex: none; margin-top: 6px; }
.faq-item h3 span::before,
.faq-item h3 span::after {
  content: ""; position: absolute; background: var(--ink);
}
.faq-item h3 span::before { left: 0; right: 0; top: 5px; height: 1.5px; }
.faq-item h3 span::after { top: 0; bottom: 0; left: 5px; width: 1.5px; }
.faq-item.is-open h3 span::after { opacity: 0; }
.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 420ms var(--ease), opacity 320ms var(--ease);
}
.faq-item.is-open .faq-panel { grid-template-rows: 1fr; opacity: 1; }
.faq-panel p {
  overflow: hidden;
  min-height: 0;
  color: var(--ink-soft);
  max-width: 38rem;
  padding: 0 12px;
  line-height: 1.7;
}
.faq-item.is-open .faq-panel p { padding-bottom: 1.2rem; }

.cert {
  padding: 110px var(--gutter) 16px;
}
.cert h2 { font-size: clamp(2.4rem, 5.4vw, 4.8rem); }

/* Contact CTA — SDI-style horizon */

.contact-cta {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 110px 0 0;
  text-align: center;
}
.contact-cta-copy {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
}
.contact-cta h2 {
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  max-width: 16ch;
  margin-inline: auto;
  background: linear-gradient(180deg, #203068 0%, #049bd8 160%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.contact-cta-copy p {
  margin: 1.35rem auto 0;
  max-width: 38rem;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.55;
  letter-spacing: -0.02em;
}
.contact-cta-anims {
  position: relative;
  height: 320px;
  margin-top: 72px;
}
.contact-cta-lines {
  position: absolute;
  top: 50%;
  width: min(532px, 48vw);
  height: 675px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}
.contact-cta-lines.is-right { right: -10%; }
.contact-cta-lines.is-left {
  left: -10%;
  transform: translateY(-50%) scaleX(-1);
}
.contact-cta-lines svg { width: 100%; height: 100%; display: block; }
.contact-cta-code {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 3;
  width: min(925px, 86%);
  height: 458px;
  transform: translateX(-50%);
  background: url("../assets/cta-code.svg") center / cover no-repeat;
  opacity: 0.22;
  mix-blend-mode: color-dodge;
  pointer-events: none;
}
.contact-cta-glow {
  position: absolute;
  left: 50%;
  top: 8px;
  z-index: 2;
  width: min(680px, 70%);
  height: 180px;
  transform: translate(-50%, -42%);
  background: linear-gradient(90deg, #70cbe1, #049bd8 56%, #203068);
  filter: blur(88px);
  opacity: 0.92;
  pointer-events: none;
}
.contact-cta-btn-wrap {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 5;
  transform: translate(-50%, -50%);
}
.contact-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  min-width: 220px;
  padding: 0 46px;
  border-radius: 999px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  background: linear-gradient(90deg, #203068 0%, #049bd8 52%, #70cbe1 120%);
  box-shadow:
    0 10px 28px rgba(4, 155, 216, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: filter 280ms var(--ease), box-shadow 280ms var(--ease);
}
.contact-cta-btn::before {
  content: "";
  position: absolute;
  inset: 4px -8px auto;
  height: 70%;
  border-radius: inherit;
  background: linear-gradient(90deg, #203068, #3866f1 44%, #70cbe1);
  filter: blur(10px);
  z-index: -1;
  opacity: 0.85;
}
.contact-cta-btn:hover,
.contact-cta-btn:focus-visible {
  filter: brightness(1.08);
  box-shadow:
    0 14px 36px rgba(4, 155, 216, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
@media (max-width: 719px) {
  .contact-cta { padding: 72px 0 0; }
  .contact-cta-anims { height: 260px; margin-top: 52px; }
  .contact-cta-lines { width: 78vw; height: 480px; }
  .contact-cta-code { height: 300px; }
  .contact-cta-glow { width: 92%; height: 150px; }
  .contact-cta-btn { min-height: 50px; min-width: 0; padding: 0 28px; }
}

/* Footer — SharpLink-style grid + giant wordmark */

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 0;
  padding: 56px var(--gutter) 0;
  color: #fff;
  background:
    radial-gradient(80% 60% at 80% 0%, rgba(4, 155, 216, 0.28) 0%, transparent 55%),
    linear-gradient(180deg, #2a4ea8 0%, #203068 48%, #10162c 100%);
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(to right, rgba(255,255,255,0.1) 0 1px, transparent 1px 25%),
    repeating-linear-gradient(to bottom, rgba(255,255,255,0.07) 0 1px, transparent 1px 56px);
  mask-image: linear-gradient(#000 0%, #000 72%, transparent 100%);
  opacity: 0.55;
}
.footer-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  gap: 0;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-left: 0;
  border-right: 0;
}
.footer-top > * {
  padding: 28px 0 32px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.16);
}
.footer-kicker,
.footer-label {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.footer-cta-title {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}
.footer-cta-lead {
  margin: 0 0 22px;
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.55;
}
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
  transition: background 240ms var(--ease), border-color 240ms var(--ease);
}
.footer-cta-btn span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-right: -8px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}
.footer-cta-btn:hover,
.footer-cta-btn:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.5);
}
.footer-nav-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 28px;
}
.footer-nav a,
.footer-aside a {
  display: block;
  padding: 4px 0;
  color: #fff;
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.footer-nav a:hover,
.footer-aside a:hover {
  color: var(--lime);
}
.footer-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.footer-top-btn span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 16px;
}
.footer-top-btn:hover,
.footer-top-btn:focus-visible { color: #fff; }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px 28px;
  padding: 22px 0 8px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.16);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 28rem;
  color: #fff;
}
.footer-mark { width: 48px; height: 48px; object-fit: contain; flex: none; }
.footer-wordmark {
  height: 20px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.footer-brand small {
  display: block;
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: 0.34em;
  color: var(--sky);
}
.footer-brand em {
  display: block;
  margin-top: 6px;
  font-style: italic;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
}
.footer-copy {
  align-self: end;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.footer-word {
  position: relative;
  z-index: 1;
  margin: 12px calc(var(--gutter) * -1) -0.16em;
  overflow: hidden;
  line-height: 0.72;
  pointer-events: none;
}
.footer-word span {
  display: block;
  padding: 0 var(--gutter);
  font-size: clamp(5.2rem, 24vw, 18rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  background: linear-gradient(180deg, rgba(255,255,255,0.42) 0%, rgba(255,255,255,0.06) 78%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  user-select: none;
}
.footer-word-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
@media (min-width: 980px) {
  .footer-top {
    grid-template-columns: 1.05fr 1.2fr 0.75fr;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
  }
  .footer-top > * {
    padding: 32px 28px 40px;
    border-bottom: 0;
    border-right: 1px dashed rgba(255, 255, 255, 0.18);
  }
  .footer-top > *:last-child { border-right: 0; padding-right: 0; }
  .footer-top > *:first-child { padding-left: 0; }
}
@media (max-width: 979px) {
  .site-footer { padding: 36px 16px 0; }
  .footer-aside { display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center; }
  .footer-aside .footer-label { width: 100%; }
  .footer-top-btn { margin-top: 8px; margin-left: auto; }
  .footer-word { margin-inline: -16px; }
}

[data-reveal] { opacity: 0; transform: translate3d(0, 36px, 0); }
.no-js [data-reveal],
body.is-reduced [data-reveal] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .stage-card, .faq-panel, [data-reveal], .approach-descs p,
  .about-stage-card.is-benefit img,
  .ind-card, .ind-card-media img,
  .value-card { transition: none !important; }
  .about-stage-benefit-icon * { animation: none !important; }
  .about-stage-card.is-benefit:hover img { transform: none; }
}
body.is-reduced .process { height: 100vh; }

@media (max-width: 720px) {
  .hero-frame { padding: 100px 0 140px; }
  .approach { height: 340vh; }
  .blob { min-height: 360px; }
  .blob-a, .blob-b, .blob-c { border-radius: 56px; }
  .process { height: 340vh; }
  .svc-copy { padding-bottom: 108px; }
  .stage-card { padding-bottom: 100px; }
}
