/* ═══════════════════════════════════════════════════════════════
   IRON × CDYPE 2026 — Delegation Materials Hub
   Palette sampled from the IRON logo itself: red #A21421 (wordmark),
   steel #616263 (mark), white. Red stays a graphic accent on dark —
   it does not carry small text on black, where it fails contrast.
   ═══════════════════════════════════════════════════════════════ */

:root{
  /* — straight off the logo — */
  --red:#A21421;
  --red-lt:#C21B2B;
  --red-dk:#7C0F19;
  --steel:#616263;
  --steel-lt:#8C8D8E;
  --steel-dk:#3A3B3C;

  /* — neutrals — */
  --ink:#0B0B0C;
  --ink-2:#141416;
  --ink-3:#1E1E20;
  --mid:#54565A;
  --muted:#84868A;
  --border:#E3E3E1;
  --paper:#FAFAF9;
  --surface:#F3F3F1;
  --white:#FFFFFF;

  /* — CDYPE event chrome, used sparingly — */
  --navy:#07101F;
  --ng-green:#008751;
  --cn-red:#DE2910;

  --font-serif:'Playfair Display',Georgia,'Times New Roman',serif;
  --font-sans:'Source Sans 3',-apple-system,BlinkMacSystemFont,'Segoe UI',
              'PingFang SC','Microsoft YaHei','Noto Sans SC',sans-serif;

  --wrap:720px;
  --r:3px;
  --ease:cubic-bezier(.22,.61,.36,1);
}

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

html{
  -webkit-text-size-adjust:100%;
  scroll-behavior:smooth;
  scroll-padding-top:24px;
}

body{
  margin:0;
  font-family:var(--font-sans);
  font-size:16px;
  line-height:1.6;
  color:var(--ink);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}

img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}

.wrap{
  width:100%;
  max-width:var(--wrap);
  margin-inline:auto;
  padding-inline:20px;
}

.sprite{position:absolute;width:0;height:0;overflow:hidden}

.ic{
  width:20px;height:20px;
  flex:none;
  fill:none;
  stroke:currentColor;
  stroke-width:1.6;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.skip{
  position:absolute;left:-9999px;
  background:var(--ink);color:#fff;
  padding:12px 18px;z-index:200;
}
.skip:focus{left:12px;top:12px}

/* ═══════════════ EVENT RIBBON ═══════════════ */
.ribbon{
  position:relative;z-index:12;
  background:var(--navy);
  color:rgba(255,255,255,.88);
}
.ribbon__in{
  max-width:var(--wrap);
  margin-inline:auto;
  padding:9px 20px;
  display:flex;align-items:center;gap:7px;
  font-size:clamp(9.5px,2.7vw,11px);
  font-weight:600;
  letter-spacing:clamp(.04em,.9vw,.1em);
  text-transform:uppercase;
  white-space:nowrap;
  overflow:hidden;
}
.ribbon__flags{display:flex;gap:4px;flex:none}
.fl{
  width:16px;height:11px;display:block;border-radius:1px;
  box-shadow:0 0 0 1px rgba(255,255,255,.18);
}
.fl--ng{background:linear-gradient(90deg,
  var(--ng-green) 0 33.33%,#fff 33.33% 66.66%,var(--ng-green) 66.66%)}
.fl--cn{background:var(--cn-red);position:relative}
.fl--cn::after{
  content:"";position:absolute;left:2.5px;top:2.5px;width:3px;height:3px;
  background:#FFDE00;
  clip-path:polygon(50% 0,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}
.ribbon__txt{overflow:hidden;text-overflow:ellipsis}
.ribbon__dot{width:3px;height:3px;border-radius:50%;background:var(--red-lt);flex:none}
.ribbon__date{color:#fff;flex:none;margin-left:auto}

/* ═══════════════ HERO ═══════════════ */
.hero{
  position:relative;
  min-height:92svh;
  display:flex;
  color:#fff;
  background:var(--ink);
  overflow:hidden;
}
.hero__media{position:absolute;inset:0;z-index:0}
.hero__media video,
.hero__media img{
  width:100%;height:100%;
  object-fit:cover;
  display:block;
  /* Slow push-in. The footage is a locked-off drone shot, so a touch of
     camera movement is what makes it read as film rather than wallpaper. */
  animation:kenburns 34s var(--ease) infinite alternate;
  transform-origin:58% 62%;
  will-change:transform;
}
@keyframes kenburns{
  from{transform:scale(1.02)}
  to{transform:scale(1.13)}
}
/* Legibility veil — the footage is bright at the horizon, and the headline
   has to hold against a sunrise. */
/* Three layers, not one flat veil. The footage peaks at 153/255, so a single
   gradient dark enough for white type would bury the picture. Instead: a light
   overall tint, a scrim that only bites in the lower half where the copy sits,
   and a short top scrim for the logo. Upper frame stays bright; headline still
   clears ~8:1. */
.hero__media::after{
  content:"";position:absolute;inset:0;
  background:
    linear-gradient(180deg, rgba(11,11,12,.62) 0%, rgba(11,11,12,0) 24%),
    linear-gradient(180deg, rgba(11,11,12,0) 36%, rgba(11,11,12,.55) 66%,
                    rgba(11,11,12,.93) 100%),
    linear-gradient(100deg, rgba(11,11,12,.34) 0%, rgba(11,11,12,0) 54%),
    rgba(11,11,12,.2);
}
.hero__in{position:relative;z-index:2;padding-block:20px 40px;align-self:flex-end;width:100%}

.hero__top{
  display:flex;align-items:flex-start;justify-content:space-between;
  gap:16px;margin-bottom:auto;padding-bottom:44px;
}
.hero__logo{width:auto;height:60px;filter:drop-shadow(0 2px 14px rgba(0,0,0,.7))}

.lang{
  flex:none;
  display:inline-flex;align-items:center;gap:5px;
  margin-top:6px;padding:7px 12px;
  font-family:inherit;font-size:11px;font-weight:600;letter-spacing:.08em;
  color:rgba(255,255,255,.7);
  background:rgba(0,0,0,.32);
  backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.22);
  border-radius:2px;cursor:pointer;
  transition:border-color .25s var(--ease),color .25s var(--ease);
}
.lang:hover{color:#fff;border-color:var(--red-lt)}
.lang__sep{opacity:.35}
.lang[aria-pressed="false"] .lang__a,
.lang[aria-pressed="true"]  .lang__b{color:#fff}

/* eyebrow: white text, red mark — red type on near-black fails contrast */
.eyebrow{
  display:flex;align-items:center;gap:10px;
  font-size:11px;font-weight:600;
  letter-spacing:.19em;text-transform:uppercase;
  color:var(--red);
  margin:0 0 18px;
}
.eyebrow--light{color:rgba(255,255,255,.9)}
.eyebrow--light::before{
  content:"";width:26px;height:2px;background:var(--red-lt);flex:none;
}

.hero__h1{
  font-family:var(--font-serif);
  font-weight:600;
  font-size:clamp(2.15rem,8.4vw,3.5rem);
  line-height:1.04;letter-spacing:-.02em;
  margin:0 0 20px;text-wrap:balance;
  text-shadow:0 2px 30px rgba(0,0,0,.5);
}
.hero__lede{
  font-size:clamp(1rem,3.6vw,1.1rem);
  font-weight:300;line-height:1.62;
  color:rgba(255,255,255,.84);
  margin:0 0 30px;max-width:38em;
}

.facts{
  display:grid;grid-template-columns:1fr;gap:0;margin:0 0 30px;
  border-top:1px solid rgba(255,255,255,.18);
}
.fact{padding:12px 0;border-bottom:1px solid rgba(255,255,255,.18)}
.fact dt{
  font-size:10px;font-weight:700;letter-spacing:.17em;text-transform:uppercase;
  color:rgba(255,255,255,.52);margin-bottom:3px;
}
.fact dd{margin:0;font-size:14.5px;color:#fff}

.hero__cue{
  display:inline-flex;align-items:center;gap:9px;
  font-size:12px;font-weight:600;letter-spacing:.13em;text-transform:uppercase;
  color:#fff;padding:4px 0;
}
.hero__cue .ic{width:16px;height:16px;animation:bob 2.4s var(--ease) infinite}
@keyframes bob{0%,100%{transform:translateY(0)}50%{transform:translateY(4px)}}

/* ═══════════════ CINEMA — the scroll-told story ═══════════════ */
/* A tall scroll track with a pinned viewport. Scroll position drives the
   video's currentTime, so the build sequence advances as you read. */

.cine{
  position:relative;
  height:520vh;              /* the scroll runway; JS maps it to 0–8s */
  background:var(--ink);
}
.cine__sticky{
  position:sticky;top:0;
  height:100svh;
  overflow:hidden;
  display:grid;
  place-items:end stretch;
}
.cine__v,.cine__still{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  z-index:0;
  /* Pulled back so it reads as ground, not as a photograph competing with the
     headline. The story is the words; the plant is the atmosphere behind them. */
  filter:saturate(.78) contrast(1.04) brightness(.92);
}
.cine__still{display:none}

/* Two scrims: one vertical for overall legibility, one anchored to the side the
   copy sits on. The far edge stays picture, so the frame still reads as film. */
.cine__veil{
  position:absolute;inset:0;z-index:1;
  background:
    linear-gradient(180deg, rgba(11,11,12,.6) 0%, rgba(11,11,12,.2) 26%,
                    rgba(11,11,12,.5) 60%, rgba(11,11,12,.96) 100%),
    linear-gradient(90deg, rgba(11,11,12,.8) 0%, rgba(11,11,12,.5) 34%,
                    rgba(11,11,12,0) 74%);
}

.cine__beats{
  position:relative;z-index:2;
  width:100%;
  /* full-bleed and left-anchored — a centred column strands the copy in the
     middle of a wide screen with dead space on both sides */
  padding:0 20px calc(96px + env(safe-area-inset-bottom));
  display:grid;
}
.beat{
  grid-area:1/1;
  opacity:0;
  transform:translateY(26px);
  transition:opacity .5s var(--ease),transform .5s var(--ease);
  pointer-events:none;
}
.beat.is-live{opacity:1;transform:none;pointer-events:auto}
.beat__n{
  display:flex;align-items:center;gap:11px;
  width:fit-content;            /* don't stretch a label across the whole frame */
  font-size:11px;font-weight:700;letter-spacing:.22em;text-transform:uppercase;
  color:#fff;margin-bottom:16px;
  text-shadow:0 1px 3px rgba(0,0,0,.7), 0 1px 14px rgba(0,0,0,.85);
}
.beat__n::before{content:"";width:30px;height:2px;background:var(--red-lt);flex:none}
.beat__h{
  font-family:var(--font-serif);font-weight:600;
  font-size:clamp(1.9rem,7.4vw,3.1rem);
  line-height:1.08;letter-spacing:-.018em;
  color:#fff;margin:0 0 16px;
  max-width:17ch;
  /* Layered shadow: a tight one for edge definition against light pixels, a
     wide soft one to lift the whole block off a busy frame. */
  text-shadow:0 1px 3px rgba(0,0,0,.55), 0 4px 38px rgba(0,0,0,.75);
}
.beat__p{
  font-size:clamp(1rem,3.5vw,1.16rem);
  font-weight:400;line-height:1.58;
  color:rgba(255,255,255,.94);
  margin:0;max-width:46ch;
  text-shadow:0 1px 3px rgba(0,0,0,.6), 0 2px 20px rgba(0,0,0,.7);
}

/* progress rail — pinned to the top, where the dock can't cover it */
.cine__rail{
  position:absolute;left:0;right:0;top:0;z-index:4;
  height:2px;background:rgba(255,255,255,.16);
}
.cine__rail i{
  display:block;height:100%;width:0%;
  background:var(--red-lt);
  transition:width .12s linear;
}
.cine__chapters{
  position:absolute;right:20px;top:50%;transform:translateY(-50%);
  z-index:3;display:flex;flex-direction:column;gap:9px;
}
.cine__chapters b{
  width:6px;height:6px;border-radius:50%;
  background:rgba(255,255,255,.3);
  transition:background .3s var(--ease),transform .3s var(--ease);
}
.cine__chapters b.on{background:var(--red-lt);transform:scale(1.5)}

/* Static fallback: reduced motion, a saved-data connection, or no video.
   Five beats share one frame here, so the still is pushed much further back
   than in the scrubbed version — otherwise the plant competes with every
   heading at once and the whole panel turns to noise. */
.cine.is-static{height:auto}
.cine.is-static .cine__sticky{position:relative;height:auto;display:block}
.cine.is-static .cine__v{display:none}
.cine.is-static .cine__still{
  display:block;position:absolute;inset:0;
  filter:saturate(.45) contrast(.95) brightness(.7);
}
.cine.is-static .cine__veil{
  background:
    linear-gradient(180deg, rgba(11,11,12,.9) 0%, rgba(11,11,12,.8) 26%,
                    rgba(11,11,12,.82) 70%, rgba(11,11,12,.95) 100%),
    linear-gradient(90deg, rgba(11,11,12,.7) 0%, rgba(11,11,12,.35) 60%);
}
.cine.is-static .cine__beats{display:block;padding-block:72px}
.cine.is-static .beat{
  opacity:1;transform:none;pointer-events:auto;
  padding-block:38px;
}
.cine.is-static .beat+.beat{border-top:1px solid rgba(255,255,255,.16)}
.cine.is-static .cine__rail,
.cine.is-static .cine__chapters{display:none}

/* ═══════════════ SECTIONS ═══════════════ */
.sec{padding-block:46px}
.sec--first{padding-top:52px}

.sec__head{margin-bottom:22px}
.num{
  display:inline-block;
  font-family:var(--font-serif);
  font-size:12px;font-weight:700;letter-spacing:.06em;
  color:var(--red);
  padding-bottom:7px;margin-bottom:10px;
  border-bottom:2px solid var(--red);
}
.sec__h{
  font-family:var(--font-serif);font-weight:600;
  font-size:clamp(1.5rem,5.4vw,1.95rem);
  line-height:1.18;letter-spacing:-.012em;
  margin:0 0 8px;color:var(--ink);
}
.sec__sub{margin:0;font-size:15px;color:var(--mid);max-width:40em;line-height:1.55}

/* 3D context so cards tip toward the reader as they arrive */
.stack{display:flex;flex-direction:column;gap:10px;perspective:1100px}

/* ═══════════════ RESOURCE BUTTONS ═══════════════ */
.card{
  position:relative;
  display:flex;align-items:center;gap:14px;
  min-height:74px;padding:15px 14px;
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--r);
  transform-origin:center top;
  transition:border-color .28s var(--ease),
             box-shadow .28s var(--ease),
             transform .28s var(--ease);
}
.card::before{
  content:"";position:absolute;left:-1px;top:-1px;bottom:-1px;width:2px;
  background:var(--red);
  transform:scaleY(0);transform-origin:center;
  transition:transform .32s var(--ease);
}
.card:hover,.card:focus-visible{
  border-color:#CDCDCA;
  box-shadow:0 10px 28px -14px rgba(11,11,12,.45);
  transform:translateY(-2px);
  outline:none;
}
.card:hover::before,.card:focus-visible::before{transform:scaleY(1)}
.card:active{transform:translateY(0) scale(.995)}

.card__ic{
  display:grid;place-items:center;
  width:44px;height:44px;flex:none;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:2px;
  color:var(--red);
  transition:background .28s var(--ease),color .28s var(--ease),border-color .28s var(--ease);
}
.card:hover .card__ic{background:var(--ink);color:#fff;border-color:var(--ink)}

.card__ic--org{
  font-family:var(--font-sans);
  font-size:11px;font-weight:700;letter-spacing:.04em;
  color:var(--red);background:#fff;
}
.card:hover .card__ic--org{color:#fff}
.card__ic--grp{color:var(--steel);font-size:10px;letter-spacing:.08em}

.card__body{display:flex;flex-direction:column;gap:2px;min-width:0;flex:1}
.card__t{
  font-size:15.5px;font-weight:600;line-height:1.34;
  color:var(--ink);letter-spacing:-.005em;
}
.card__m{font-size:12.5px;color:var(--muted);letter-spacing:.012em;line-height:1.45}
.card__d{font-size:13.5px;color:var(--mid);line-height:1.5;margin-top:6px}

.card__go{
  width:17px;height:17px;flex:none;color:#B4B5B7;
  transition:color .28s var(--ease),transform .28s var(--ease);
}
.card:hover .card__go{color:var(--red);transform:translateX(3px)}

/* featured — the one card we want opened first */
.card--feat{
  flex-wrap:wrap;align-items:flex-start;
  padding:20px 16px 18px;
  background:linear-gradient(150deg,#17171A 0%,#0B0B0C 100%);
  border-color:#2A2A2D;
}
.card--feat::before{background:var(--red);transform:scaleY(1);width:3px}
.card--feat:hover{border-color:var(--red-dk);box-shadow:0 14px 36px -18px rgba(0,0,0,.85)}
.card--feat .card__ic{
  background:rgba(162,20,33,.18);border-color:rgba(194,27,43,.45);color:#fff;
}
.card--feat:hover .card__ic{background:var(--red);border-color:var(--red)}
.card--feat .card__t{color:#fff;font-size:16.5px}
.card--feat .card__m{color:rgba(255,255,255,.55)}
.card--feat .card__d{color:rgba(255,255,255,.72)}
.card--feat .card__go{color:#fff}

.card__tag{
  order:-1;width:100%;margin-bottom:14px;
  font-size:10px;font-weight:700;letter-spacing:.17em;text-transform:uppercase;
  color:#fff;
}
.card__tag::before{
  content:"";display:inline-block;width:5px;height:5px;
  margin-right:7px;margin-bottom:2px;border-radius:50%;
  background:var(--ng-green);box-shadow:0 0 0 2px rgba(0,135,81,.25);
  vertical-align:middle;
}

/* ═══════════════ OFFICES ═══════════════ */
.sec--offices{background:var(--surface);border-block:1px solid var(--border);margin-top:14px}
.offices{list-style:none;margin:0;padding:0;display:grid;gap:18px}
.offices li{display:grid;grid-template-columns:20px 1fr;gap:4px 12px;align-items:start}
.offices .ic{grid-row:span 2;color:var(--red);margin-top:2px}
.offices b{font-size:11px;font-weight:700;letter-spacing:.15em;text-transform:uppercase;color:var(--ink)}
.offices span{font-size:14px;color:var(--mid);line-height:1.5}

/* ═══════════════ FOOTER ═══════════════ */
.foot{
  background:var(--ink);color:rgba(255,255,255,.58);
  padding-block:44px;padding-bottom:calc(44px + 76px);
  text-align:center;
}
.foot__logo{height:44px;width:auto;margin:0 auto 18px;opacity:.95}
.foot__tag{
  font-family:var(--font-serif);font-size:14px;font-style:italic;
  color:#fff;margin:0 0 22px;
}
.foot__note{
  font-size:11.5px;line-height:1.65;max-width:46em;
  margin:0 auto 18px;color:rgba(255,255,255,.46);
}
.foot__c{font-size:11px;margin:0;color:rgba(255,255,255,.34)}

/* ═══════════════ STICKY DOCK ═══════════════ */
.dock{
  position:fixed;left:0;right:0;bottom:0;z-index:40;
  display:flex;gap:8px;
  padding:10px 14px calc(10px + env(safe-area-inset-bottom));
  background:rgba(250,250,249,.94);
  backdrop-filter:saturate(180%) blur(14px);
  -webkit-backdrop-filter:saturate(180%) blur(14px);
  border-top:1px solid var(--border);
  transform:translateY(105%);
  transition:transform .4s var(--ease);
}
.dock.is-on{transform:translateY(0)}
.dock__b{
  flex:1;display:inline-flex;align-items:center;justify-content:center;gap:8px;
  min-height:48px;padding:0 14px;
  font-size:14px;font-weight:600;letter-spacing:.01em;border-radius:2px;
  transition:background .25s var(--ease),border-color .25s var(--ease),color .25s var(--ease);
}
.dock__b .ic{width:17px;height:17px}
.dock__b--ghost{color:var(--ink);background:var(--white);border:1px solid var(--border)}
.dock__b--ghost:hover{border-color:var(--red);color:var(--red)}
.dock__b--solid{color:#fff;background:var(--red);border:1px solid var(--red)}
.dock__b--solid:hover{background:var(--red-lt);border-color:var(--red-lt)}

/* ═══════════════ REVEAL (3D) ═══════════════ */
.reveal{
  opacity:0;
  transform:translateY(30px) rotateX(-9deg) scale(.985);
}
.reveal.is-in{
  opacity:1;transform:none;
  transition:opacity .62s var(--ease),transform .62s var(--ease);
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (min-width:560px){
  .hero__in{padding-block:26px 52px}
  .hero__logo{height:72px}
  .facts{grid-template-columns:repeat(3,1fr);gap:0 22px;border-top:none}
  .fact{border-top:1px solid rgba(255,255,255,.18);border-bottom:none;padding:12px 0 0}
  .card{padding:16px 18px;gap:16px}
  .card--feat{padding:22px 20px 20px}
  .offices{grid-template-columns:repeat(3,1fr);gap:24px}
  .sec{padding-block:56px}
  .cine__beats{padding-bottom:90px}
}

@media (min-width:768px){
  .dock{
    left:auto;right:22px;bottom:22px;width:auto;padding:8px;
    border:1px solid var(--border);border-radius:3px;
    box-shadow:0 14px 40px -18px rgba(11,11,12,.5);
    transform:translateY(160%);
  }
  .dock.is-on{transform:translateY(0)}
  .dock__b{flex:none;min-height:44px}
  .foot{padding-bottom:44px}
  .hero__h1{font-size:3.5rem}
  .cine__chapters{right:32px}

  /* Hero and story both go full-bleed and left-anchored from here up: the copy
     sits near the left edge with the plant running out to the right, instead of
     a narrow column marooned in the middle of a wide screen. The materials list
     below keeps its measured column — that one is a list, not a picture. */
  .hero__in{max-width:none;padding-inline:clamp(34px,6.5vw,120px)}
  .hero__h1{max-width:14ch}
  .hero__lede{max-width:46ch;font-size:1.18rem}
  .facts{max-width:860px}

  .cine__beats{padding-left:clamp(34px,6.5vw,120px);padding-right:34px}
  .beat__h{font-size:clamp(2.4rem,4.6vw,3.7rem);max-width:15ch}
  .beat__p{font-size:1.2rem;max-width:44ch}
  .beat__n{font-size:12px;margin-bottom:20px}
  .beat__n::before{width:44px}
  .cine.is-static .beat{padding-block:46px}
}

@media (min-width:1280px){
  .beat__h{font-size:3.9rem}
  .beat__p{font-size:1.26rem}
  .cine__veil{
    background:
      linear-gradient(180deg, rgba(11,11,12,.56) 0%, rgba(11,11,12,.16) 26%,
                      rgba(11,11,12,.46) 60%, rgba(11,11,12,.95) 100%),
      linear-gradient(90deg, rgba(11,11,12,.85) 0%, rgba(11,11,12,.5) 42%,
                      rgba(11,11,12,0) 78%);
  }
}

/* ═══════════════ ACCESSIBILITY ═══════════════ */
@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}
  .hero__cue .ic{animation:none}
}

a:focus-visible,button:focus-visible{outline:2px solid var(--red);outline-offset:3px}

/* ═══════════════ PRINT ═══════════════ */
@media print{
  .dock,.hero__cue,.lang,.skip,.cine__rail,.cine__chapters{display:none!important}
  .hero,.foot,.ribbon,.cine{background:#fff!important;color:#000!important}
  .hero__media,.cine__v,.cine__veil{display:none!important}
  .hero__h1,.hero__lede,.fact dd,.foot__note,.beat__h,.beat__p,.beat__n{color:#000!important}
  .hero{min-height:0}
  .cine{height:auto}
  .cine__sticky{position:relative;height:auto}
  .beat{opacity:1!important;transform:none!important;grid-area:auto!important}
  .hero__logo,.foot__logo{filter:invert(1)}
  .card{break-inside:avoid;border-color:#999}
}
