/* ============================================================
   ZvarioCloud — Complexity → Clarity
   Warm / cream · sunlit · calm-luxury · Space Grotesk + Inter
   ============================================================ */

:root {
  --bg: #F7F3EC;            /* warm cream / paper */
  --bg-raised: #FBF8F2;     /* lighter cream — panels */
  --bg-alt: #EFE8DC;        /* warm sand — alt sections */
  --bg-deep: #1E1B16;       /* warm near-black — interlude ONLY */
  --ink: #211C16;           /* heading ink */
  --body: #5A5247;          /* warm taupe-grey */
  --accent: #C2410C;        /* terracotta */
  --accent-2: #B45309;      /* amber-ochre */
  --teal: #0F766E;          /* rare highlight */
  --hairline: rgba(33, 28, 22, 0.08);
  --hairline-strong: rgba(33, 28, 22, 0.14);
  --grad: linear-gradient(100deg, #C2410C 0%, #B45309 100%);
  --shadow-card: 0 1px 2px rgba(33,28,22,0.04), 0 12px 32px rgba(33,28,22,0.06);
  --shadow-card-hover: 0 2px 4px rgba(33,28,22,0.05), 0 18px 44px rgba(33,28,22,0.09);
  --font-display: "Space Grotesk", "Inter", sans-serif;
  --font-body: "Inter", -apple-system, sans-serif;
  --wrap: 1160px;
  --sec-pad: clamp(96px, 14vh, 160px);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-padding-top: 88px;
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  background: var(--bg);
  color: var(--body);
  font-family: var(--font-body);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #FBF8F2; }

img, svg, video, canvas { display: block; max-width: 100%; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-wrap: balance;
}
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); }

p { max-width: 62ch; }

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.wrap { width: min(var(--wrap), 100% - 48px); margin-inline: auto; }
.wrap.narrow { max-width: 780px; }
.wrap.center { text-align: center; }
.wrap.center p, .wrap.center .lede { margin-inline: auto; }

/* ---------- eyebrow cadence ---------- */
.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wrap.center .eyebrow { justify-content: center; }
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  flex: none;
}
@media (prefers-reduced-motion: no-preference) {
  .eyebrow .dot { animation: pulse 2.6s ease-in-out infinite; }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(194,65,12,0.35); }
    50%      { box-shadow: 0 0 0 7px rgba(194,65,12,0); }
  }
}

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  margin-top: 18px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 0.15s var(--ease-out), box-shadow 0.15s var(--ease-out), background-color 0.15s;
}
.btn-primary {
  background: var(--grad);
  color: #FFF8F0;
  box-shadow: 0 1px 2px rgba(33,28,22,0.10), 0 6px 18px rgba(194,65,12,0.22);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(33,28,22,0.10), 0 10px 28px rgba(194,65,12,0.34);
}
.btn-primary:active { transform: translateY(0); }
.btn-sm { padding: 10px 22px; font-size: 0.88rem; }
.btn-lg { padding: 15px 34px; font-size: 1rem; }
.btn-xl { padding: 18px 44px; font-size: 1.08rem; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 22px clamp(20px, 4vw, 48px);
  transition: padding 0.35s var(--ease-out), background-color 0.35s, box-shadow 0.35s;
}
.nav.scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(247, 243, 236, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--hairline);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: none;
}
.nav-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.nav-word em { font-style: normal; color: var(--accent); }
.nav-links {
  display: flex;
  gap: clamp(18px, 2.5vw, 34px);
  margin-left: auto;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover::after { transform: scaleX(1); }
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav { gap: 16px; }
  .nav .btn-sm { margin-left: auto; }
}

/* ============================================================
   A — HERO (the carving)
   ============================================================ */
.hero { height: 250vh; position: relative; }
.hero-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.hero-halo {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(58% 48% at 50% 46%, rgba(194, 65, 12, 0.13) 0%, rgba(180, 83, 9, 0.07) 42%, rgba(247, 243, 236, 0) 72%),
    radial-gradient(90% 70% at 50% 110%, rgba(239, 232, 220, 0.9) 0%, rgba(247, 243, 236, 0) 60%);
  pointer-events: none;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-fallback {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  padding: 8vh 6vw;
}
.hero-fallback svg { width: min(70vmin, 640px); height: auto; opacity: 0.85; }
html.no-webgl .hero-fallback { display: grid; }
html.no-webgl #hero-canvas { display: none; }
html.no-webgl .hero { height: auto; }
html.no-webgl .hero-pin { position: relative; height: 100vh; }

.hero-copy {
  position: relative;
  z-index: 3;
  text-align: center;
  width: min(920px, 100% - 48px);
  padding-bottom: 4vh;
}
.hero-h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  letter-spacing: -0.03em;
  margin: 0 auto 26px;
  max-width: 18ch;
}
.hero-h1 .w {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.hero-h1 .w > span { display: inline-block; }
.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  margin: 0 auto 34px;
  max-width: 46ch;
}
.hero-copy .eyebrow { justify-content: center; margin-bottom: 26px; }

/* load-in choreography (CSS-driven, independent of JS) */
@media (prefers-reduced-motion: no-preference) {
  .hero-copy .eyebrow,
  .hero-sub,
  .hero-copy .btn {
    opacity: 0;
    animation: rise 0.9s var(--ease-out) forwards;
  }
  .hero-copy .eyebrow { animation-delay: 0.15s; }
  .hero-h1 .w > span {
    transform: translateY(110%);
    animation: maskUp 0.85s var(--ease-out) forwards;
  }
  .hero-h1 .w:nth-child(1) > span  { animation-delay: 0.30s; }
  .hero-h1 .w:nth-child(2) > span  { animation-delay: 0.37s; }
  .hero-h1 .w:nth-child(3) > span  { animation-delay: 0.44s; }
  .hero-h1 .w:nth-child(4) > span  { animation-delay: 0.51s; }
  .hero-h1 .w:nth-child(5) > span  { animation-delay: 0.58s; }
  .hero-h1 .w:nth-child(6) > span  { animation-delay: 0.65s; }
  .hero-h1 .w:nth-child(7) > span  { animation-delay: 0.72s; }
  .hero-h1 .w:nth-child(8) > span  { animation-delay: 0.79s; }
  .hero-h1 .w:nth-child(9) > span  { animation-delay: 0.86s; }
  .hero-h1 .w:nth-child(10) > span { animation-delay: 0.93s; }
  .hero-h1 .w:nth-child(11) > span { animation-delay: 1.00s; }
  .hero-sub { animation-delay: 1.15s; }
  .hero-copy .btn { animation-delay: 1.3s; }
  @keyframes rise {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: none; }
  }
  @keyframes maskUp {
    to { transform: translateY(0); }
  }
}

.hero-resolution {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.2vw, 3.4rem);
  letter-spacing: -0.025em;
  color: var(--ink);
  text-align: center;
  width: min(800px, 100% - 48px);
  opacity: 0;
  pointer-events: none;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--body);
  transition: opacity 0.5s;
}
.scroll-cue .cue-bar {
  width: 1.5px;
  height: 44px;
  background: linear-gradient(var(--accent), transparent);
  overflow: hidden;
  position: relative;
}
@media (prefers-reduced-motion: no-preference) {
  .scroll-cue .cue-bar::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--bg);
    animation: cueSweep 2.1s var(--ease-out) infinite;
  }
  @keyframes cueSweep {
    0%   { transform: translateY(-100%); }
    60%  { transform: translateY(100%); }
    100% { transform: translateY(100%); }
  }
}
.scroll-cue.hidden { opacity: 0; }

@media (max-width: 768px) {
  .hero-pin { padding-top: 84px; }
}

/* reduced-motion hero: no pin, both text blocks in flow */
html.reduced-motion #hero-canvas { opacity: 0.5; }
html.reduced-motion .hero { height: auto; }
html.reduced-motion .hero-pin {
  position: relative;
  height: auto;
  min-height: 100vh;
  padding: 140px 0 80px;
  align-content: center;
}
html.reduced-motion .hero-resolution {
  position: static;
  transform: none;
  opacity: 1;
  margin: 40px auto 0;
}
html.reduced-motion .scroll-cue { display: none; }
html.no-webgl.reduced-motion .hero-pin { height: auto; }

/* ============================================================
   sections — shared
   ============================================================ */
.section { padding: var(--sec-pad) 0; position: relative; }
.sec-alt {
  background:
    linear-gradient(165deg, rgba(251,248,242,0.0) 0%, rgba(251,248,242,0.55) 100%),
    var(--bg-alt);
}
@media (prefers-reduced-motion: no-preference) {
  .sec-alt {
    background-size: 200% 200%, auto;
    animation: bgDrift 48s ease-in-out infinite alternate;
  }
  @keyframes bgDrift {
    from { background-position: 0% 0%, 0 0; }
    to   { background-position: 100% 100%, 0 0; }
  }
}
.sec-head { margin-bottom: clamp(44px, 6vw, 72px); }

/* reveal-on-scroll (gated on html.js — content always visible without JS) */
html.js .reveal:not(.done) {
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--rd, 0s);
}
html.js .reveal:not(.in) {
  opacity: 0;
  transform: translateY(28px);
}
html.js.reduced-motion .reveal,
html.js.reduced-motion .reveal:not(.in) { opacity: 1; transform: none; transition: none; }

/* panels (paper cards) */
.panel {
  background: var(--bg-raised);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
}

/* ============================================================
   B — friction problem
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.col-statement .strong-close {
  margin-top: 26px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.shift-panel { padding: clamp(28px, 3.4vw, 44px); position: relative; overflow: hidden; }
.shift-panel::before {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194,65,12,0.07) 0%, transparent 70%);
  top: -120px; right: -120px;
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .shift-panel::before { animation: orbDrift 38s ease-in-out infinite alternate; }
  @keyframes orbDrift {
    from { transform: translate(0, 0); }
    to   { transform: translate(-60px, 70px); }
  }
}
.panel-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 22px;
}
.shift-list li {
  display: grid;
  grid-template-columns: 1fr 40px 1.2fr;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  font-size: 0.95rem;
}
.shift-list li + li { border-top: 1px solid var(--hairline); }
.shift-list .from { color: var(--body); }
.shift-list .to { color: var(--ink); font-weight: 600; }
.shift-list .arrow { color: var(--accent); width: 40px; }
.shift-list .arrow svg path {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  transition: stroke-dashoffset 0.9s var(--ease-out);
}
.reveal.in .shift-list .arrow svg path { stroke-dashoffset: 0; }
.reveal.in .shift-list li:nth-child(1) .arrow svg path { transition-delay: 0.15s; }
.reveal.in .shift-list li:nth-child(2) .arrow svg path { transition-delay: 0.30s; }
.reveal.in .shift-list li:nth-child(3) .arrow svg path { transition-delay: 0.45s; }
.reveal.in .shift-list li:nth-child(4) .arrow svg path { transition-delay: 0.60s; }
.reveal.in .shift-list li:nth-child(5) .arrow svg path { transition-delay: 0.75s; }
html.reduced-motion .shift-list .arrow svg path { stroke-dashoffset: 0; transition: none; }

@media (max-width: 880px) {
  .two-col { grid-template-columns: 1fr; }
}
@media (max-width: 460px) {
  .shift-list li { grid-template-columns: 1fr 28px 1.15fr; gap: 8px; font-size: 0.85rem; }
  .shift-list .arrow { width: 28px; }
}

/* ============================================================
   C — carving interlude (THE one deep-contrast moment)
   ============================================================ */
.interlude {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--bg-deep);
  padding: 18vh 24px;
}
.interlude video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.interlude-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 70% at 50% 50%, rgba(30,27,22,0.30) 0%, rgba(30,27,22,0.78) 100%),
    linear-gradient(rgba(30,27,22,0.30), rgba(30,27,22,0.30));
}
/* warm ease in/out of the dark moment — deliberate, not a theme switch */
.interlude-fade {
  position: absolute;
  left: 0; right: 0;
  height: 140px;
  z-index: 2;
  pointer-events: none;
}
.interlude-fade-top    { top: 0;    background: linear-gradient(var(--bg), rgba(247,243,236,0)); }
.interlude-fade-bottom { bottom: 0; background: linear-gradient(rgba(247,243,236,0), var(--bg-alt)); }
.interlude-copy {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 860px;
}
.interlude-line {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.8vw, 3.1rem);
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: #F5EFE5;
  text-wrap: balance;
  max-width: none;
}
.interlude-line + .interlude-line { margin-top: 18px; }
.interlude-line .word { display: inline-block; }

/* ============================================================
   D — outcomes
   ============================================================ */
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.outcome {
  background: var(--bg-raised);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 26px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.outcome:hover {
  border-color: var(--hairline-strong);
  box-shadow: var(--shadow-card-hover);
}
.outcome svg {
  width: 24px; height: 24px;
  flex: none;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 980px) { .outcome-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .outcome-grid { grid-template-columns: 1fr; } }

/* ============================================================
   E — who we serve
   ============================================================ */
.serve-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 32px);
}
.serve-card { padding: clamp(30px, 3.6vw, 46px); }
.serve-card h3 { margin-bottom: 20px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip-row li {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 16px;
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  background: var(--bg);
}
@media (max-width: 760px) { .serve-cards { grid-template-columns: 1fr; } }

/* ============================================================
   F — technology, shaped to you
   ============================================================ */
.solution-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.sol-card {
  background: var(--bg-raised);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.25s var(--ease-out);
}
.sol-card:hover {
  border-color: var(--hairline-strong);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}
.sol-card img {
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: cover;
  filter: saturate(0.82) sepia(0.16) brightness(1.05);
}
.sol-body { padding: 20px 22px 24px; }
.sol-body h3 { font-size: 1.08rem; margin-bottom: 8px; }
.sol-body p { font-size: 0.9rem; line-height: 1.5; }
@media (max-width: 980px) { .solution-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .solution-cards { grid-template-columns: 1fr; } }

.ticker {
  margin-top: clamp(40px, 5vw, 64px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.ticker-track {
  display: flex;
  gap: 44px;
  width: max-content;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--body);
  white-space: nowrap;
}
.ticker-track span { position: relative; }
.ticker-track span::after {
  content: "·";
  position: absolute;
  right: -26px;
  color: var(--accent);
}
@media (prefers-reduced-motion: no-preference) {
  .ticker-track { animation: tick 46s linear infinite; }
  @keyframes tick { to { transform: translateX(-50%); } }
}
.ticker-caption {
  margin-top: 22px;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--body);
  max-width: none;
}

/* ============================================================
   G — process
   ============================================================ */
.process { position: relative; }
.process-line {
  position: absolute;
  top: 27px;
  left: calc(12.5% );
  right: calc(12.5%);
  height: 2px;
  background: var(--hairline-strong);
  border-radius: 2px;
  overflow: hidden;
}
.process-fill {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
}
html.reduced-motion .process-fill { transform: scaleX(1); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.step { text-align: center; padding: 0 8px; }
.step-num {
  display: inline-grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--bg-raised);
  border: 1px solid var(--hairline-strong);
  box-shadow: var(--shadow-card);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.step h3 { margin-bottom: 10px; font-size: 1.12rem; }
.step p { font-size: 0.92rem; margin-inline: auto; }
@media (max-width: 820px) {
  .process-line {
    top: 0; bottom: 0;
    left: 26px; right: auto;
    width: 2px; height: auto;
  }
  .process-fill { transform-origin: top; transform: scaleY(0); width: 100%; height: 100%; }
  html.reduced-motion .process-fill { transform: scaleY(1); }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .step { text-align: left; padding-left: 76px; position: relative; }
  .step-num { position: absolute; left: 0; top: 0; margin: 0; }
  .step p { margin-inline: 0; }
}

/* ============================================================
   H — friction audit
   ============================================================ */
.sec-audit { position: relative; overflow: hidden; }
.audit-glow {
  position: absolute;
  width: 760px; height: 760px;
  border-radius: 50%;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(194,65,12,0.10) 0%, rgba(180,83,9,0.05) 45%, transparent 70%);
  pointer-events: none;
}
.audit-panel {
  padding: clamp(36px, 5vw, 64px);
  text-align: center;
  position: relative;
}
.audit-panel .lede { margin-inline: auto; }
.audit-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 36px 0 32px;
}
.chip {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  padding: 11px 20px;
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  background: var(--bg);
  transition: background-color 0.18s var(--ease-out), color 0.18s, border-color 0.18s,
              transform 0.18s var(--ease-out), box-shadow 0.18s;
}
.chip:hover { border-color: var(--accent); transform: translateY(-1px); }
.chip.active {
  background: var(--grad);
  border-color: transparent;
  color: #FFF8F0;
  box-shadow: 0 4px 14px rgba(194,65,12,0.28);
}
.audit-promise {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 auto 30px;
}

/* ============================================================
   I — why zvariocloud
   ============================================================ */
.contrast-rows li {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 22px 0;
}
.contrast-rows li + li { border-top: 1px solid var(--hairline); }
.contrast-rows .they {
  color: var(--body);
  font-size: 1rem;
  position: relative;
  width: fit-content;
}
.contrast-rows .they::after {
  content: "";
  position: absolute;
  left: 0; top: 56%;
  width: 100%; height: 1.5px;
  background: var(--body);
  opacity: 0.65;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease-out) 0.35s;
}
.reveal.in .they::after { transform: scaleX(1); }
html.reduced-motion .they::after { transform: scaleX(1); transition: none; }
.contrast-rows .we {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 1.9vw, 1.45rem);
  letter-spacing: -0.015em;
  color: var(--ink);
}
.why-close {
  margin-top: 44px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--ink);
}
@media (max-width: 640px) {
  .contrast-rows li { grid-template-columns: 1fr; gap: 6px; }
}

/* ============================================================
   J — apply
   ============================================================ */
.sec-apply {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--sec-pad) * 1.15);
  padding-bottom: calc(var(--sec-pad) * 1.15);
}
.apply-glow {
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  left: 50%; top: 55%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(194,65,12,0.12) 0%, rgba(15,118,110,0.04) 52%, transparent 70%);
  pointer-events: none;
}
.apply-drift {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.sec-apply .lede { max-width: 52ch; }
.sec-apply .btn-xl { margin-top: 38px; }
.sec-apply h2 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); }

/* ============================================================
   K — footer
   ============================================================ */
.footer {
  border-top: 1px solid var(--hairline);
  padding: 56px 0 48px;
  background: var(--bg-raised);
}
.footer-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-line { font-size: 0.95rem; color: var(--body); }
.footer-legal { font-size: 0.8rem; color: var(--body); opacity: 0.75; }

/* ---------- small-screen hygiene ---------- */
@media (max-width: 480px) {
  .hero { height: 180vh; }
  .hero-h1 { font-size: clamp(2.2rem, 11vw, 2.6rem); }
  .hero-copy { padding-bottom: 12vh; }
  .scroll-cue { bottom: 18px; }
  .btn-xl { padding: 16px 30px; font-size: 1rem; }
  .nav .btn-sm { padding: 9px 16px; font-size: 0.8rem; }
}
