/* ==========================================================================
   Krignal — painted edition
   Every colour below is sampled from the hero oil painting.
   ========================================================================== */

/* ---------- 1. Tokens ---------------------------------------------------- */
:root {
  /* Sky, straight off the canvas */
  --sky-deep:   #063f64;
  --sky:        #1c668c;
  --sky-mid:    #2e779c;
  --sky-soft:   #5a8ea2;

  /* Cloud and gessoed canvas */
  --cloud:      #cbc5b1;
  --cloud-lt:   #e6e2d4;
  --canvas:     #f6f3ea;
  --canvas-2:   #efebdd;

  /* The lamp */
  --gold:       #dfbf73;
  --gold-lt:    #f0dcab;
  --gold-dk:    #9c7a26;

  /* The tower */
  --brick:      #742d1f;
  --brick-lt:   #a8442e;

  /* Meadow */
  --meadow:     #ad9129;
  --moss:       #5b5e3e;
  --earth:      #533f1b;

  /* Ink — a deep teal-black, never neutral grey */
  --ink:        #12303a;
  --ink-2:      #2f5462;
  --ink-3:      #64818b;
  --ink-inv:    #eee9dc;

  /* Legacy aliases kept so existing rules keep resolving */
  --sky-zenith: var(--sky-deep);
  --sky-high:   var(--sky);
  --sky-low:    var(--sky-soft);
  --sky-warm:   var(--gold-lt);
  --hill-0:     var(--moss);
  --hill-1:     var(--moss);
  --hill-2:     var(--meadow);
  --paper:      var(--canvas);
  --paper-2:    var(--canvas-2);
  --paper-3:    #e7e7d6;
  --night:      #0b2029;
  --night-2:    #12303a;
  --line:       rgba(18, 48, 58, .16);
  --line-inv:   rgba(238, 233, 220, .18);

  /* Type */
  --serif: "Bodoni Moda", "Didot", "Playfair Display", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Space and shape */
  --wrap: 1200px;
  --pad: clamp(20px, 5vw, 48px);
  --r-sm: 6px;
  --r: 10px;
  --r-lg: 16px;
  --shadow-s: 0 2px 10px rgba(18, 48, 58, .07), 0 1px 2px rgba(18, 48, 58, .05);
  --shadow:   0 20px 44px -22px rgba(18, 48, 58, .34), 0 2px 8px rgba(18, 48, 58, .06);
  --shadow-l: 0 44px 90px -34px rgba(18, 48, 58, .44);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- 2. Reset ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p, figure, blockquote, ul, ol { margin: 0; }
ul, ol { list-style: none; padding: 0; }

:focus-visible {
  outline: 2.5px solid var(--gold-dk);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute; left: 50%; top: -100px; transform: translateX(-50%);
  z-index: 200; background: var(--ink); color: #fff;
  padding: 12px 22px; border-radius: 0 0 var(--r-sm) var(--r-sm);
  transition: top .2s var(--ease);
}
.skip:focus { top: 0; }
.vh {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- 3. Layout and type utilities --------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.wrap-wide { max-width: 1360px; }
.section { padding-block: clamp(64px, 9vw, 128px); position: relative; }

.eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-3); display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--gold); flex: none;
}
.eyebrow--plain::before { display: none; }
.eyebrow--inv { color: rgba(234, 244, 251, .62); }

.h-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.1rem, 5.4vw, 3.9rem);
  line-height: 1.06;
  letter-spacing: -.022em;
}
.h-sec {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.85rem, 4.2vw, 3.05rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.h-card {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.1rem, 1.9vw, 1.4rem);
  line-height: 1.25;
  letter-spacing: -.01em;
}
.lede {
  font-size: clamp(1.02rem, 1.55vw, 1.2rem);
  line-height: 1.62;
  color: var(--ink-2);
  max-width: 62ch;
}
.muted { color: var(--ink-3); }
.sec-head { max-width: 62ch; }
.sec-head .h-sec { margin-top: 18px; }
.sec-head .lede { margin-top: 18px; }

/* Soft highlight for emphasis words */
.mark { position: relative; white-space: nowrap; color: var(--gold-dk); }
.mark::after {
  content: ""; position: absolute; left: -1%; right: -1%; bottom: .04em; height: .3em;
  background: linear-gradient(90deg, rgba(232, 195, 126, .5), rgba(232, 195, 126, .16));
  border-radius: 999px; z-index: -1;
}

/* ---------- 4. Buttons --------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; border: 1px solid transparent;
  font-size: .875rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--gold {
  background: linear-gradient(140deg, var(--gold-lt), var(--gold));
  color: #2a1c05;
  box-shadow: 0 10px 26px -12px rgba(165, 118, 42, .8), inset 0 1px 0 rgba(255, 255, 255, .5);
}
.btn--gold:hover { box-shadow: 0 18px 34px -12px rgba(165, 118, 42, .85), inset 0 1px 0 rgba(255, 255, 255, .6); }

.btn--ink { background: var(--ink); color: #fff; box-shadow: var(--shadow); }
.btn--ink:hover { background: #143252; }

.btn--ghost { border-color: var(--line); background: rgba(255, 255, 255, .55); color: var(--ink); backdrop-filter: blur(6px); }
.btn--ghost:hover { border-color: var(--gold); background: #fff; }

.btn--ghost-inv { border-color: var(--line-inv); color: var(--ink-inv); }
.btn--ghost-inv:hover { border-color: var(--gold-lt); background: rgba(255, 255, 255, .07); }

.btn--sm { padding: 10px 18px; font-size: .74rem; }

.tlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-2); border-bottom: 1px solid var(--line); padding-bottom: 4px;
  transition: color .25s, border-color .25s;
}
.tlink:hover { color: var(--gold-dk); border-color: var(--gold); }
.tlink svg { transition: transform .3s var(--ease); }
.tlink:hover svg { transform: translateX(4px); }
.tlink--inv { color: rgba(234, 244, 251, .8); border-color: var(--line-inv); }
.tlink--inv:hover { color: var(--gold-lt); border-color: var(--gold); }

/* ---------- 5. Header ---------------------------------------------------- */
.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background-color .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.hdr__in { display: flex; align-items: center; gap: clamp(16px, 3vw, 40px); height: 72px; }

/* Over the hero sky, the header goes light; once stuck on paper, it goes dark. */
.hdr:not(.is-stuck) { color: #fff; }
.hdr:not(.is-stuck) .logo__word { color: #fff; }
.hdr:not(.is-stuck) .nav a,
.hdr:not(.is-stuck) .hdr__login { color: rgba(255, 255, 255, .84); }
.hdr:not(.is-stuck) .nav a:hover,
.hdr:not(.is-stuck) .hdr__login:hover { color: #fff; }
.hdr:not(.is-stuck) .burger { border-color: rgba(255, 255, 255, .34); }
.hdr:not(.is-stuck) .burger span,
.hdr:not(.is-stuck) .burger span::before,
.hdr:not(.is-stuck) .burger span::after { background: #fff; }
.hdr.is-stuck {
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(13, 36, 56, .5);
}

.logo { display: inline-flex; align-items: center; gap: 11px; flex: none; }
.logo__mark { width: 26px; height: 30px; flex: none; }
.logo__word {
  font-family: var(--serif); font-weight: 600; font-size: 1.06rem;
  letter-spacing: .3em; text-transform: uppercase; padding-left: 2px;
}

.nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav a {
  font-size: .78rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink-2); position: relative; padding-block: 6px;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px;
  background: var(--gold); transition: right .3s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { right: 0; }

.hdr__cta { display: flex; align-items: center; gap: 14px; flex: none; }
.hdr__login {
  font-size: .78rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-2);
}
.hdr__login:hover { color: var(--gold-dk); }

.burger {
  display: none; width: 44px; height: 44px; margin-left: auto;
  background: none; border: 1px solid var(--line); border-radius: 50%;
  align-items: center; justify-content: center; cursor: pointer;
}
.burger span { display: block; width: 17px; height: 1.5px; background: var(--ink); position: relative; transition: background .2s; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 17px; height: 1.5px; background: var(--ink);
  transition: transform .3s var(--ease), top .3s var(--ease);
}
.burger span::before { top: -5.5px; }
.burger span::after  { top:  5.5px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

.mnav {
  position: fixed; inset: 72px 0 auto 0; z-index: 99;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  padding: 12px var(--pad) 28px;
  display: grid; gap: 2px;
  transform: translateY(-8px); opacity: 0; visibility: hidden;
  transition: transform .35s var(--ease), opacity .3s var(--ease), visibility .3s;
}
.mnav.is-open { transform: none; opacity: 1; visibility: visible; }
.mnav a {
  padding: 15px 4px; border-bottom: 1px solid var(--line);
  font-size: .95rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  display: flex; justify-content: space-between; align-items: center;
}
.mnav .btn { margin-top: 18px; justify-content: center; }

/* ---------- 6. Hero ------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: 96px; padding-bottom: clamp(48px, 8vw, 96px);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: var(--sky-deep);
}
.hero__art { position: absolute; inset: 0; z-index: 0; }
.hero__art img {
  width: 100%; height: 100%; object-fit: cover; object-position: 64% 46%;
  will-change: transform;
}
/* Darkens the left sky so the copy has ground to stand on, and leaves the
   lighthouse and its starburst untouched on the right. */
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(101deg,
      rgba(4, 30, 50, .90) 0%, rgba(4, 30, 50, .78) 26%,
      rgba(4, 30, 50, .40) 48%, rgba(4, 30, 50, .06) 66%, rgba(4, 30, 50, 0) 80%),
    linear-gradient(180deg, rgba(4, 30, 50, .55) 0%, rgba(4, 30, 50, 0) 26%);
}
/* A whisper of canvas tooth over the whole frame */
.hero__grain {
  position: absolute; inset: 0; opacity: .5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}
.hero__in { position: relative; z-index: 3; text-align: left; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 16px 7px 12px; border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(240, 220, 171, .34);
  backdrop-filter: blur(8px);
  font-size: .7rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-lt);
}

/* Rotating taglines */
.rotator {
  position: relative;
  margin-top: 22px;
  min-height: clamp(88px, 10vw, 132px);
  display: grid;
  place-items: center;
}
.rot {
  grid-area: 1 / 1;
  opacity: 0; visibility: hidden;
  transform: translateY(14px);
  transition: opacity .7s var(--ease), transform .7s var(--ease), visibility .7s;
  width: 100%; max-width: 760px; margin-inline: auto;
}
.rot.is-on { opacity: 1; visibility: visible; transform: none; }
.rot__line {
  display: block;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.3rem, 2.45vw, 2rem); line-height: 1.2; letter-spacing: -.018em;
  text-wrap: balance;
}
.rot__line em { font-style: italic; color: var(--gold-lt); }
.rot__sub { display: block; margin-top: 10px; font-size: clamp(.88rem, 1.4vw, 1.02rem); color: rgba(255, 255, 255, .82); }

.dots { display: flex; justify-content: center; gap: 9px; margin-top: 4px; }
.dots button {
  width: 26px; height: 3px; padding: 0; border: 0; border-radius: 999px; cursor: pointer;
  background: rgba(255, 255, 255, .3); transition: background .35s var(--ease), width .35s var(--ease);
}
.dots button:hover { background: rgba(255, 255, 255, .55); }
.dots button[aria-current="true"] { background: var(--gold-lt); width: 42px; }

.hero__word {
  margin-top: 24px;
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.7rem, 8.4vw, 5.8rem); line-height: .95; letter-spacing: .012em;
  color: #fff;
  text-shadow: 0 2px 40px rgba(4, 26, 50, .35);
}
.hero__tag { margin-top: 10px; font-size: clamp(.9rem, 1.55vw, 1.08rem); color: rgba(255, 255, 255, .86); }
.hero__tag em { font-family: var(--serif); font-style: italic; color: var(--gold-lt); font-size: 1.1em; }

/* People / Opportunities cyclers */
.cyclers {
  margin: 26px auto 0; max-width: 620px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.cyc {
  background: rgba(9, 40, 72, .3);
  border: 1px solid rgba(255, 255, 255, .24);
  backdrop-filter: blur(10px);
  border-radius: var(--r); padding: 16px 18px; text-align: left;
  box-shadow: 0 12px 30px -22px rgba(4, 22, 42, .7);
}
.cyc__k {
  display: flex; align-items: center; gap: 8px;
  font-size: .66rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255, 255, 255, .66);
}
.cyc__k svg { width: 13px; height: 13px; color: var(--gold-lt); }
.cyc__v {
  margin-top: 6px; height: 1.6em; overflow: hidden; position: relative;
  font-family: var(--serif); font-size: clamp(1.05rem, 2vw, 1.35rem); color: #fff;
}
.cyc__v span {
  position: absolute; inset: 0; opacity: 0; transform: translateY(100%);
  white-space: nowrap;
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.cyc__v span.is-on  { opacity: 1; transform: none; }
.cyc__v span.is-out { opacity: 0; transform: translateY(-100%); }

.hero__actions { margin-top: 26px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.hero__actions .row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px; }

/* ---- Golden-section layout -------------------------------------------------
   The lighthouse stands at x = W / phi. From 900px up, the copy moves off the
   centre line and holds the left of the frame so the two never collide.       */
@media (min-width: 700px) {
  .hero__in { text-align: left; }
  .hero__in > *,
  .hero__word,
  .hero__tag { max-width: min(600px, 46%); }
  .rotator { place-items: center start; min-height: clamp(112px, 12vw, 168px); }
  .rot { margin-inline: 0; max-width: min(560px, 46%); }
  .dots { justify-content: flex-start; }
  .cyclers { margin-left: 0; margin-right: auto; max-width: min(560px, 46%); }
  .hero__actions { align-items: flex-start; }
  .hero__actions .row { justify-content: flex-start; }
}
.hero__note { display: inline-flex; align-items: center; gap: 7px; font-size: .78rem; color: rgba(255, 255, 255, .75); }
.hero__note svg { width: 14px; height: 14px; color: var(--gold-lt); }

/* Buttons sitting on the sky */
.hero .btn--ghost {
  background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .38); color: #fff;
}
.hero .btn--ghost:hover { background: rgba(255, 255, 255, .18); border-color: var(--gold-lt); }

/* ---------- 7. The scene (SVG) ------------------------------------------- */

/* ---------- 7. Painted bands --------------------------------------------- */
.privacy { position: relative; isolation: isolate; background: var(--night); }
.privacy__art {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 42%; z-index: 0;
}
.privacy::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(95deg,
      rgba(6, 26, 38, .90) 0%, rgba(6, 26, 38, .70) 34%,
      rgba(6, 26, 38, .30) 62%, rgba(6, 26, 38, .12) 100%),
    linear-gradient(180deg, rgba(6, 26, 38, .3), rgba(6, 26, 38, .3));
}
/* the band needs height or the painting is just a sliver */
.privacy { padding: clamp(44px, 6vw, 88px) clamp(30px, 4.5vw, 64px); min-height: clamp(340px, 38vw, 460px); display: flex; align-items: center; }
.privacy__grid { width: 100%; }
.privacy::after { display: none; }
.privacy__grid { position: relative; z-index: 2; }

.closer { position: relative; isolation: isolate; overflow: hidden; background: var(--night); }
.closer__art { position: absolute; inset: 0; z-index: 0; }
.closer__art img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 58%; }
.closer__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 26, 40, .62) 0%, rgba(5, 26, 40, .30) 38%,
                            rgba(5, 26, 40, .44) 72%, rgba(6, 21, 35, .86) 100%),
    radial-gradient(56% 42% at 50% 32%, rgba(5, 26, 40, .80), rgba(5, 26, 40, 0) 74%);
}
.closer .wrap { position: relative; z-index: 2; }
.closer .h-sec { text-shadow: 0 2px 26px rgba(4, 20, 34, .75); }
.closer p { text-shadow: 0 1px 14px rgba(4, 20, 34, .8); }

/* ---------- 8. Reveal on scroll ------------------------------------------ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }

/* ---------- 9. The problem ----------------------------------------------- */
.problem { background: var(--paper); }
.problem__head { text-align: center; margin-inline: auto; }
.problem__head .h-sec { max-width: 20ch; margin-inline: auto; }

.marquee { margin-top: clamp(36px, 5vw, 60px); display: grid; gap: 18px; }
.marquee__row {
  display: flex; gap: 18px; width: max-content;
  animation: slide 64s linear infinite;
}
.marquee__row--b { animation-duration: 78s; animation-direction: reverse; }
.marquee:hover .marquee__row { animation-play-state: paused; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.marquee__mask {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.qcard {
  flex: none; width: 330px;
  background: linear-gradient(160deg, #fff, var(--paper-2));
  border: 1px solid var(--line); border-radius: var(--r);
  padding: 22px 24px; box-shadow: var(--shadow-s);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.qcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(200, 150, 62, .45); }
.qcard__who { display: flex; align-items: center; gap: 10px; }
.qcard__av {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: .82rem; font-weight: 600; color: #fff;
  background: linear-gradient(150deg, var(--hill-2), var(--hill-0));
}
.qcard:nth-child(even) .qcard__av { background: linear-gradient(150deg, var(--gold-lt), var(--gold-dk)); }
.qcard__role { font-size: .64rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; color: var(--ink-3); }
.qcard__q {
  margin-top: 13px; font-family: var(--serif); font-size: 1.02rem; line-height: 1.45; color: var(--ink);
}

/* ---------- 10. Benefits ------------------------------------------------- */
.benefits { background: linear-gradient(180deg, var(--paper) 0%, var(--paper-3) 100%); }
.bgrid {
  margin-top: clamp(34px, 4.5vw, 56px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.bcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 26px 32px; box-shadow: var(--shadow-s);
  position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.bcard::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-lt), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.bcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.bcard:hover::after { transform: scaleX(1); }
.bcard__ico {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--paper-3), #dff0e6);
  color: var(--hill-0); border: 1px solid rgba(47, 122, 76, .18);
}
.bcard__ico svg { width: 22px; height: 22px; }
.bcard h3 { margin-top: 20px; }
.bcard p { margin-top: 10px; font-size: .93rem; color: var(--ink-2); line-height: 1.6; }

/* ---------- 11. How it works --------------------------------------------- */
.how { background: var(--paper); }
.step { margin-top: clamp(48px, 7vw, 96px); }
.step__grid {
  display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 72px); align-items: center;
}
.step--flip .step__grid > .step__txt { order: 2; }
.step__num {
  font-family: var(--serif); font-size: 3.1rem; line-height: 1; color: var(--gold);
  opacity: .55; letter-spacing: -.03em;
}
.step__txt h3 { margin-top: 12px; font-family: var(--serif); font-weight: 400; font-size: clamp(1.5rem, 3vw, 2.15rem); line-height: 1.15; letter-spacing: -.018em; }
.step__txt p { margin-top: 16px; color: var(--ink-2); font-size: 1.02rem; line-height: 1.65; }
.step__txt p .accent { color: var(--ink); font-weight: 500; }

.panel {
  background: linear-gradient(165deg, #fff, var(--paper-2));
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.panel::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(90% 60% at 80% 0%, rgba(159, 212, 251, .22), transparent 60%);
  pointer-events: none;
}
.panel__cap {
  margin-top: 18px; text-align: center;
  font-size: .64rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3);
}

/* Relationship map */
.map { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(10px, 2vw, 22px); align-items: center; position: relative; }
.map__col { display: grid; gap: 9px; }
.map__h {
  font-size: .6rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 3px;
}
.map__col--r { text-align: right; }
.chip {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 14px; font-size: .82rem; font-weight: 500; box-shadow: var(--shadow-s);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.chip:hover { transform: translateX(3px); border-color: var(--gold); }
.map__col--r .chip { flex-direction: row-reverse; text-align: right; }
.map__col--r .chip:hover { transform: translateX(-3px); }
.chip__d { width: 6px; height: 6px; border-radius: 50%; background: var(--hill-2); flex: none; }
.chip--gold .chip__d { background: var(--gold); }
.chip__tag {
  font-size: .52rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-3); background: var(--paper-2); border-radius: 999px; padding: 3px 7px; margin-left: auto;
}
.map__col--r .chip__tag { margin-left: 0; margin-right: auto; }

.you {
  width: clamp(74px, 12vw, 106px); aspect-ratio: 1; border-radius: 50%;
  display: grid; place-items: center; flex: none;
  background: radial-gradient(circle at 34% 28%, #fff, var(--paper-3));
  border: 1px solid rgba(200, 150, 62, .5);
  font-family: var(--serif); font-size: .8rem; font-weight: 600; letter-spacing: .2em;
  color: var(--ink);
  box-shadow: 0 0 0 8px rgba(200, 150, 62, .07), 0 0 0 18px rgba(200, 150, 62, .04), var(--shadow);
  position: relative;
}
.you::after {
  content: ""; position: absolute; inset: -8px; border-radius: 50%;
  border: 1px dashed rgba(200, 150, 62, .4);
  animation: spin 26s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Request + assistant cards */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mini {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 18px;
  box-shadow: var(--shadow-s); position: relative;
}
.mini__k {
  display: flex; align-items: center; gap: 8px;
  font-size: .58rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3);
}
.mini__badge {
  display: inline-flex; align-items: center; gap: 6px; margin-left: auto;
  background: var(--paper-3); border-radius: 999px; padding: 3px 9px;
  font-size: .54rem; letter-spacing: .1em; color: var(--hill-0);
}
.mini__badge .d { width: 5px; height: 5px; border-radius: 50%; background: var(--hill-2); animation: pulse-dot 2s infinite; }
.mini__title { margin-top: 14px; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); }
.mini__body {
  margin-top: 10px; min-height: 4.6em;
  font-family: var(--serif); font-size: .98rem; line-height: 1.45; color: var(--ink-2);
}
.caret { display: inline-block; width: 2px; height: 1em; background: var(--gold); vertical-align: -.15em; animation: blink 1.05s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.mini__foot { margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--line); font-size: .78rem; color: var(--ink-3); }
.step-a { display: inline-grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: var(--ink); color: #fff; font-size: .62rem; font-weight: 700; }

/* Scanning radar */
.radar { display: grid; grid-template-columns: auto 1fr; gap: clamp(18px, 3vw, 32px); align-items: center; }
.radar__dial {
  width: clamp(120px, 18vw, 168px); aspect-ratio: 1; border-radius: 50%; position: relative;
  background: radial-gradient(circle, rgba(159, 212, 251, .3), rgba(159, 212, 251, .05) 70%);
  border: 1px solid rgba(47, 122, 76, .2); flex: none; overflow: hidden;
}
.radar__dial::before, .radar__dial::after {
  content: ""; position: absolute; inset: 18%; border-radius: 50%; border: 1px solid rgba(47, 122, 76, .18);
}
.radar__dial::after { inset: 36%; }
.radar__sweep {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(200, 150, 62, .5), rgba(200, 150, 62, 0) 42%);
  animation: spin 4.5s linear infinite;
}
.radar__pip {
  position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-dk);
  box-shadow: 0 0 8px rgba(200, 150, 62, .9);
  animation: node-pulse 4.5s ease-in-out infinite;
}
.radar__list { display: flex; flex-wrap: wrap; gap: 9px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); border-radius: 999px; background: #fff;
  padding: 9px 15px; font-size: .84rem; box-shadow: var(--shadow-s);
}
.pill .k { font-size: .54rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-3); }
.pill--found { border-color: rgba(200, 150, 62, .55); background: linear-gradient(150deg, #fffaf0, #fff); }

/* Privacy strip */
.privacy {
  margin-top: clamp(52px, 7vw, 92px);
  background: linear-gradient(150deg, var(--night), var(--night-2));
  border-radius: var(--r-lg); padding: clamp(30px, 4.5vw, 56px);
  color: var(--ink-inv); position: relative; overflow: hidden;
}
.privacy::after {
  content: ""; position: absolute; right: -80px; top: -80px; width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(200, 150, 62, .22), transparent 68%);
  pointer-events: none;
}
.privacy__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 4vw, 56px); align-items: center; position: relative; z-index: 1; }
.privacy .h-sec { color: #fff; margin-top: 16px; }
.privacy p { margin-top: 14px; color: rgba(234, 244, 251, .74); font-size: 1rem; line-height: 1.65; }
.privacy__chips { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pchip {
  display: flex; align-items: center; gap: 11px;
  background: rgba(7, 27, 40, .58); backdrop-filter: blur(8px);
  border: 1px solid rgba(240, 220, 171, .26);
  border-radius: var(--r); padding: 15px 17px; font-size: .88rem; font-weight: 500;
}
.pchip svg { width: 17px; height: 17px; color: var(--gold-lt); flex: none; }

/* ---------- 12. Segments (Individuals / Companies) ----------------------- */
.seg { position: relative; }
.seg--ind { background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%); }
.seg--org { background: linear-gradient(165deg, var(--night) 0%, #0c2b3f 100%); color: var(--ink-inv); }
.seg--org .h-sec { color: #fff; }
.seg--org .lede { color: rgba(234, 244, 251, .74); }
.seg__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(30px, 5vw, 76px); align-items: start; }
.seg__idx {
  font-size: .66rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-dk); margin-bottom: 14px;
}
.seg--org .seg__idx { color: var(--gold-lt); }
.seg__list { margin-top: 24px; display: grid; gap: 12px; }
.seg__list li { display: flex; gap: 11px; align-items: flex-start; font-size: .95rem; color: var(--ink-2); }
.seg--org .seg__list li { color: rgba(234, 244, 251, .8); }
.seg__list svg { width: 18px; height: 18px; flex: none; margin-top: 2px; color: var(--hill-1); }
.seg--org .seg__list svg { color: var(--gold-lt); }
.seg__meta {
  margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line);
  font-size: .78rem; letter-spacing: .04em; color: var(--ink-3);
}
.seg--org .seg__meta { border-color: var(--line-inv); color: rgba(234, 244, 251, .55); }
.seg__cta { margin-top: 22px; }

.tagbox {
  background: rgba(255, 255, 255, .7); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(22px, 3vw, 34px); box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.seg--org .tagbox { background: rgba(255, 255, 255, .04); border-color: var(--line-inv); box-shadow: none; }
.tagbox__k { font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); }
.seg--org .tagbox__k { color: rgba(234, 244, 251, .5); }
.tagrow { margin-top: 22px; }
.tagrow + .tagrow { margin-top: 26px; }
.tagrow__h {
  display: flex; align-items: center; gap: 9px;
  font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-2);
}
.seg--org .tagrow__h { color: rgba(234, 244, 251, .82); }
.tagrow__h svg { width: 14px; height: 14px; color: var(--gold-dk); }
.seg--org .tagrow__h svg { color: var(--gold-lt); }
.tags { margin-top: 13px; display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  border: 1px solid var(--line); border-radius: 999px; background: #fff;
  padding: 8px 14px; font-size: .82rem; color: var(--ink-2);
  transition: border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease), background-color .3s var(--ease);
}
.tag:hover { border-color: var(--gold); color: var(--ink); transform: translateY(-2px); }
.seg--org .tag { background: rgba(255, 255, 255, .05); border-color: var(--line-inv); color: rgba(234, 244, 251, .82); }
.seg--org .tag:hover { border-color: var(--gold-lt); background: rgba(255, 255, 255, .1); }
.tagbox__foot { margin-top: 26px; padding-top: 18px; border-top: 1px dashed var(--line); font-size: .86rem; color: var(--ink-3); font-style: italic; }
.seg--org .tagbox__foot { border-color: var(--line-inv); color: rgba(234, 244, 251, .55); }

/* ---------- 13. Krignal TV ----------------------------------------------- */
.tv { background: #060d16; color: var(--ink-inv); overflow: hidden; }
.tv__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.tv__word {
  font-family: var(--serif); font-weight: 400; text-transform: lowercase;
  font-size: clamp(2.6rem, 7vw, 5.2rem); line-height: .98; letter-spacing: -.03em; color: #fff;
}
.tv__sub { margin-top: 14px; font-size: clamp(1rem, 1.8vw, 1.22rem); color: rgba(234, 244, 251, .66); }
.tv__mission { margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--line-inv); }
.tv__mission h3 {
  margin-top: 16px; font-family: var(--serif); font-weight: 400; text-transform: lowercase;
  font-size: clamp(1.35rem, 2.6vw, 1.95rem); line-height: 1.2; color: #fff; letter-spacing: -.015em;
}
.tv__mission h3 span { color: var(--gold-lt); font-style: italic; }
.tv__mission p { margin-top: 14px; color: rgba(234, 244, 251, .66); font-size: .98rem; line-height: 1.65; max-width: 52ch; }
.tv__cta { margin-top: 26px; }

.tvframe {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4 / 5; border: 1px solid var(--line-inv);
  background: linear-gradient(170deg, #0f2537, #060d16);
  box-shadow: var(--shadow-l);
}
.tvframe svg { width: 100%; height: 100%; }
.tvframe__scan {
  position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(255, 255, 255, .03) 0 1px, transparent 1px 3px);
}
.tvframe__rec {
  position: absolute; top: 16px; left: 16px; display: flex; align-items: center; gap: 7px;
  font-size: .58rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255, 255, 255, .78);
}
.tvframe__rec .d { width: 7px; height: 7px; border-radius: 50%; background: #e0553f; animation: blink 1.6s steps(2) infinite; }
.tvframe__cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 20px 18px;
  background: linear-gradient(0deg, rgba(6, 13, 22, .92), transparent);
  font-size: .74rem; letter-spacing: .13em; text-transform: uppercase; color: rgba(234, 244, 251, .8);
}

/* ---------- 14. Events --------------------------------------------------- */
.events { background: linear-gradient(180deg, var(--paper-2), var(--paper)); }
.events__head { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: end; }
.events__word {
  font-family: var(--serif); font-weight: 400; text-transform: lowercase;
  font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1; letter-spacing: -.03em; margin-top: 14px;
}
.events__sub { margin-top: 10px; font-family: var(--serif); font-size: clamp(1.05rem, 2vw, 1.4rem); color: var(--ink-2); }
.events__sub span { color: var(--gold-dk); font-style: italic; }
.events__note { margin-top: 18px; max-width: 52ch; color: var(--ink-2); font-size: .96rem; }
.events__note b { color: var(--ink); font-weight: 600; }

.ecards {
  margin-top: clamp(34px, 4.5vw, 54px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.ecard {
  border-radius: var(--r-lg); overflow: hidden; position: relative;
  border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-s);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  display: flex; flex-direction: column;
}
.ecard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.ecard__art { aspect-ratio: 5 / 4; position: relative; overflow: hidden; }
.ecard__art svg { width: 100%; height: 100%; }
.ecard__tag {
  position: absolute; top: 13px; left: 13px;
  background: rgba(255, 255, 255, .92); backdrop-filter: blur(6px);
  border-radius: 999px; padding: 5px 11px;
  font-size: .54rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--ink);
}
.ecard__body { padding: 20px 20px 24px; flex: 1; }
.ecard__body h3 { font-family: var(--serif); font-weight: 500; font-size: 1.18rem; text-transform: lowercase; letter-spacing: -.01em; }
.ecard__body p { margin-top: 9px; font-size: .88rem; color: var(--ink-2); line-height: 1.55; }

/* ---------- 15. FAQ ------------------------------------------------------ */
.faq { background: var(--paper); }
.faq__grid { display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr); gap: clamp(30px, 5vw, 72px); align-items: start; }
.faq__aside { position: sticky; top: 108px; }
.faq__list { border-top: 1px solid var(--line); }
.qa { border-bottom: 1px solid var(--line); }
.qa summary {
  list-style: none; cursor: pointer; padding: 24px 44px 24px 0; position: relative;
  font-family: var(--serif); font-size: clamp(1.02rem, 1.8vw, 1.22rem); line-height: 1.35; color: var(--ink);
  transition: color .25s;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--gold-dk); }
.qa summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 12px; height: 12px; margin-top: -6px;
  border-right: 1.6px solid var(--ink-3); border-bottom: 1.6px solid var(--ink-3);
  transform: rotate(45deg); transform-origin: center; transition: transform .35s var(--ease), border-color .25s;
}
.qa[open] summary::after { transform: rotate(-135deg); border-color: var(--gold-dk); }
.qa__a { overflow: hidden; }
.qa__a p { padding: 0 8% 26px 0; color: var(--ink-2); font-size: .97rem; line-height: 1.7; }
.qa[open] .qa__a { animation: unfold .45s var(--ease); }
@keyframes unfold { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ---------- 16. Closing call --------------------------------------------- */
.closer {
  position: relative; overflow: hidden; text-align: center;
  background: var(--night);
  color: var(--ink-inv);
  padding-block: clamp(96px, 12vw, 168px);
  min-height: clamp(540px, 62vw, 780px);
  display: flex; align-items: center;
}
.closer .h-sec { color: #fff; max-width: 20ch; margin-inline: auto; }
.closer p { margin: 18px auto 0; color: rgba(234, 244, 251, .72); max-width: 52ch; }
.closer__actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.closer__scene { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: auto; z-index: 0; }
.closer .wrap { position: relative; z-index: 2; }
.closer .h-sec { text-shadow: 0 2px 26px rgba(4, 20, 34, .75); }
.closer p { text-shadow: 0 1px 14px rgba(4, 20, 34, .8); }
 50% { opacity: .95; } }

/* ---------- 17. Footer --------------------------------------------------- */
.ftr { background: #061523; color: rgba(234, 244, 251, .72); padding-block: clamp(48px, 6vw, 76px) 32px; }
.ftr__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: clamp(26px, 4vw, 56px); }
.ftr .logo__word, .ftr__brand p { color: var(--ink-inv); }
.ftr__brand p { margin-top: 18px; font-size: .92rem; line-height: 1.65; color: rgba(234, 244, 251, .6); max-width: 34ch; }
.ftr__k { font-size: .64rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(234, 244, 251, .45); }
.ftr__col ul { margin-top: 16px; display: grid; gap: 11px; }
.ftr__col a { font-size: .9rem; color: rgba(234, 244, 251, .72); transition: color .25s; }
.ftr__col a:hover { color: var(--gold-lt); }
.ftr__bot {
  margin-top: clamp(38px, 5vw, 62px); padding-top: 24px; border-top: 1px solid var(--line-inv);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(234, 244, 251, .45);
}

.totop {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  border: 1px solid var(--line); background: rgba(255, 255, 255, .9); backdrop-filter: blur(10px);
  display: grid; place-items: center; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s, border-color .25s;
}
.totop.is-on { opacity: 1; visibility: visible; transform: none; }
.totop:hover { border-color: var(--gold); }
.totop svg { width: 17px; height: 17px; color: var(--ink); }

/* ---------- 18. Responsive ----------------------------------------------- */
@media (max-width: 1080px) {
  .bgrid  { grid-template-columns: repeat(2, 1fr); }
  .ecards { grid-template-columns: repeat(2, 1fr); }
  .ftr__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav, .hdr__cta { display: none; }
  .burger { display: flex; }
  .step__grid,
  .seg__grid,
  .tv__grid,
  .faq__grid,
  .privacy__grid { grid-template-columns: 1fr; }
  .step--flip .step__grid > .step__txt { order: 0; }
  .faq__aside { position: static; }
  .tvframe { aspect-ratio: 16 / 11; }
  .events__head { grid-template-columns: 1fr; align-items: start; }
  .radar { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .radar__list { justify-content: center; }
}

@media (max-width: 699px) {
  .hero { min-height: 100svh; padding-bottom: clamp(40px, 9vw, 72px); }
  .hero__word { font-size: clamp(2.5rem, 13vw, 4rem); }
  .rotator { min-height: clamp(78px, 20vw, 110px); }
  /* the copy runs full width here, so the scrim has to come from the top down */
  .hero__veil {
    background:
      linear-gradient(180deg, rgba(4, 28, 48, .90) 0%, rgba(4, 28, 48, .74) 38%,
                              rgba(4, 28, 48, .48) 66%, rgba(4, 28, 48, .70) 100%);
  }
  .hero__art img { object-position: 66% 42%; }
}

@media (max-width: 620px) {
  .cyclers { gap: 8px; max-width: 420px; }
  .cyc { padding: 12px 14px; }
  .duo, .bgrid, .ecards, .privacy__chips { grid-template-columns: 1fr; }
  .map { grid-template-columns: 1fr; gap: 16px; }
  .map__col--r { text-align: left; }
  .map__col--r .chip { flex-direction: row; text-align: left; }
  .map__col--r .chip__tag { margin-left: auto; margin-right: 0; }
  .you { margin-inline: auto; }
  .qcard { width: 268px; }
  .ftr__grid { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
  .cyclers { grid-template-columns: 1fr; max-width: 340px; }
}

/* ---------- 19. Motion preferences --------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .rot { position: static; }
  .marquee__mask { overflow-x: auto; }
}

/* ---------- 20. Print ---------------------------------------------------- */
@media print {
  .hdr, .mnav, .totop, .marquee { display: none !important; }
  body { color: #000; background: #fff; }
  .qa__a { display: block !important; }
}

