/* ============================================================
   KYRA — cut the bullshit
   washi bone / sumi ink / vermilion
   ============================================================ */

:root {
  --bone: #f4efe3;
  --paper: #faf7ee;
  --ink: #101014;
  --ink-2: #17171f;
  --ink-3: #23233a;
  --verm: #ff3b2f;
  --verm-dark: #d92b20;
  --pink: #ffc9d6;
  --gold: #d9a441;
  --line: rgba(16, 16, 20, .14);
  --line-light: rgba(244, 239, 227, .16);
  --hair: #1d1d31;
  --skin: #ffe6cf;
  --font-d: "Archivo", system-ui, sans-serif;
  --font-jp: "Shippori Mincho", serif;
  --font-m: "IBM Plex Mono", monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--font-d);
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--verm); color: var(--bone); }
img, svg { max-width: 100%; }
a { color: inherit; }

.mono { font-family: var(--font-m); font-size: 12px; letter-spacing: .06em; }
.jp { font-family: var(--font-jp); font-weight: 500; }

/* paper grain */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 999; pointer-events: none;
  opacity: .05; mix-blend-mode: multiply;
  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='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ KYRA SVG ============ */
.kyra { display: block; position: relative; }
.kyra-svg { display: block; width: 100%; height: auto; overflow: visible; }

.k-skin { fill: var(--skin); }
.k-face { stroke: rgba(16,16,20,.08); stroke-width: 1; }
.k-hair { fill: var(--hair); }
.k-tie { fill: var(--verm); }
.k-gi, .k-gi-arm { fill: var(--ink-3); }
.k-collar { fill: var(--bone); }
.k-obi { fill: var(--verm); }
.k-obi-knot { fill: var(--verm-dark); }
.k-boot { fill: var(--ink-3); }
.k-saya { fill: #2c2c4a; }
.k-saya-tip { fill: var(--verm-dark); }
.k-cord { fill: var(--verm); }
.k-shadow { fill: rgba(16,16,20,.14); }
.k-tsuka { fill: var(--verm-dark); }
.k-tsuka-wrap { fill: var(--hair); }
.k-tsuba { fill: var(--gold); }
.k-blade { fill: #eceaf2; stroke: rgba(16,16,20,.35); stroke-width: 1; }
.k-blade-hi { fill: #ffffff; }
.k-plate { fill: var(--gold); stroke: rgba(16,16,20,.25); stroke-width: 1; }
.k-plate-dot { fill: var(--ink); }
.k-eye { fill: #15151f; }
.k-hi { fill: #fff; }
.k-sparkle { fill: #fff; stroke: rgba(16,16,20,.12); }
.k-glint { fill: var(--verm); }
.k-brow { stroke: var(--hair); stroke-width: 4.5; stroke-linecap: round; fill: none; }
.k-arc-eye { stroke: #15151f; stroke-width: 4.5; stroke-linecap: round; fill: none; }
.k-blush { fill: var(--pink); opacity: .85; }
.k-mouth { stroke: #b3564d; stroke-width: 3; stroke-linecap: round; fill: none; }
.k-mouth-o { fill: #7c3a34; stroke: none; }
.k-speed line { stroke: var(--ink); stroke-width: 4; stroke-linecap: round; opacity: 0; }
.k-arc { fill: none; stroke: var(--verm); stroke-width: 5; stroke-linecap: round; opacity: 0; }

/* faces */
.kyra .k-eyes, .kyra .k-mouth { display: none; }
.kyra[data-face="cute"]  .k-eyes-cute,  .kyra[data-face="cute"]  .k-mouth-cute  { display: block; }
.kyra[data-face="focus"] .k-eyes-focus, .kyra[data-face="focus"] .k-mouth-focus { display: block; }
.kyra[data-face="happy"] .k-eyes-happy, .kyra[data-face="happy"] .k-mouth-happy { display: block; }
.kyra[data-face="o"]     .k-eyes-cute,  .kyra[data-face="o"]     .k-mouth-o     { display: block; }

/* poses */
.kyra .k-arm-r { transform-origin: 164px 216px; transition: transform .45s cubic-bezier(.6,-.3,.3,1.4); }
.kyra .k-sword { transition: opacity .2s; }
.kyra[data-pose="idle"]  .k-arm-r { transform: rotate(6deg); }
.kyra[data-pose="idle"]  .k-sword { opacity: 0; }
.kyra[data-pose="ready"] .k-arm-r { transform: rotate(-132deg); }
.kyra[data-pose="ready"] .k-sword { opacity: 1; }
.kyra[data-pose="slash"] .k-arm-r { transform: rotate(-98deg); }
.kyra[data-pose="slash"] .k-sword { opacity: 1; }
.kyra[data-pose="slash"] .k-root  { transform: rotate(-7deg); }
.kyra[data-pose="slash"] .k-speed line { opacity: .5; }
.kyra .k-root { transform-origin: 130px 240px; transition: transform .4s ease; }

/* eye tracking */
.kyra .k-eyes { transition: transform .18s ease-out; }

/* ============ SLICEABLE ============ */
.sliceable { position: relative; }
.sliceable .slice-half {
  position: absolute; inset: 0; overflow: visible;
  will-change: transform;
}
.sliceable .slice-half > * { position: absolute; inset: 0; }
.sliceable.is-sliced { background: transparent !important; border-color: transparent !important; box-shadow: none !important; }
.sliceable.is-sliced > .slice-orig { opacity: 0; }
.sliceable .slice-cutline {
  position: absolute; left: -6%; right: -6%; top: 50%; height: 3px;
  background: var(--verm); opacity: 0; transform-origin: left center;
  pointer-events: none; z-index: 3;
  box-shadow: 0 0 14px rgba(255,59,47,.55);
}

/* ============ LOADER ============ */
.loader {
  position: fixed; inset: 0; z-index: 1000; background: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.loader-inner { text-align: center; }
.loader .kyra-loader { width: 130px; margin: 0 auto 14px; }
.loader-word { color: var(--bone); opacity: .7; }
.loader-dots span { animation: dotpulse 1s infinite; display: inline-block; }
.loader-dots span:nth-child(2) { animation-delay: .2s; }
.loader-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes dotpulse { 0%,100% { opacity: .2 } 50% { opacity: 1 } }
.loader-slash {
  position: absolute; left: -10%; right: -10%; top: 50%; height: 4px;
  background: var(--verm); transform: rotate(-16deg) scaleX(0);
  transform-origin: left center; box-shadow: 0 0 30px rgba(255,59,47,.8);
}

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 56px);
  transition: background .3s, box-shadow .3s, padding .3s;
}
.nav.is-solid { background: rgba(244,239,227,.9); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line); padding-block: 12px; }
.nav-brand { display: flex; align-items: baseline; gap: 10px; text-decoration: none; }
.nav-mark {
  width: 22px; height: 22px; border-radius: 50%; background: var(--ink);
  position: relative; overflow: hidden; align-self: center;
}
.nav-mark::after {
  content: ""; position: absolute; left: -4px; right: -4px; top: 9px; height: 4px;
  background: var(--verm); transform: rotate(-24deg);
}
.nav-word { font-weight: 900; letter-spacing: .18em; font-size: 19px; }
.nav-by { opacity: .55; }
.nav-links { display: flex; gap: 26px; }
.nav-brand, .nav-by, .nav-links a { white-space: nowrap; }
.nav-links a { text-decoration: none; opacity: .75; transition: opacity .2s; position: relative; }
.nav-links a:hover { opacity: 1; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; width: 100%; height: 2px;
  background: var(--verm); transform: scaleX(0) rotate(-2deg); transform-origin: left;
  transition: transform .25s cubic-bezier(.7,0,.3,1);
}
.nav-links a:hover::after { transform: scaleX(1) rotate(-2deg); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-weight: 700; font-size: 16px;
  padding: 16px 30px; border-radius: 999px; text-decoration: none;
  border: 2px solid var(--ink); cursor: pointer;
  position: relative; overflow: hidden; transition: transform .2s, box-shadow .2s;
  background: transparent; color: var(--ink);
}
.btn span { position: relative; z-index: 1; }
.btn::before {
  content: ""; position: absolute; left: -12%; right: -12%; top: 50%; height: 200%;
  transform: translateY(-50%) rotate(-8deg) scaleX(0); transform-origin: left center;
  transition: transform .3s cubic-bezier(.7,0,.3,1);
  z-index: 0;
}
.btn:hover::before { transform: translateY(-50%) rotate(-8deg) scaleX(1); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn-verm { background: var(--verm); border-color: var(--verm); color: #fff; box-shadow: 0 8px 24px rgba(255,59,47,.3); }
.btn-verm::before { background: var(--ink); }
.btn-ghost::before { background: var(--ink); }
.btn-ghost:hover, .btn-verm:hover { color: var(--bone); }
.btn-ink { background: var(--ink); border-color: var(--ink); color: var(--bone); }
.btn-ink::before { background: var(--verm); }
.btn-small { padding: 10px 20px; font-size: 13px; }

/* ============ HERO ============ */
.hero {
  min-height: 100svh; position: relative; overflow: clip;
  padding: clamp(110px, 16vh, 170px) clamp(20px, 4vw, 56px) 90px;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-enso {
  position: absolute; right: -12vw; top: -18vh; width: 58vw; height: 58vw;
  border-radius: 50%; border: 2px dashed rgba(16,16,20,.1);
}
.hero-enso::after {
  content: ""; position: absolute; inset: 9%; border-radius: 50%;
  border: 1px solid rgba(255,59,47,.18);
}
.hero-vertical {
  position: absolute; right: clamp(14px, 3vw, 44px); top: 16vh;
  writing-mode: vertical-rl; font-size: clamp(26px, 3.4vw, 46px);
  letter-spacing: .3em; color: rgba(16,16,20,.14); font-weight: 700;
}
.hero-vertical-2 { right: auto; left: clamp(10px, 2vw, 30px); top: auto; bottom: 12vh; font-size: clamp(16px, 1.6vw, 22px); color: rgba(255,59,47,.35); }
.hero-inner { position: relative; max-width: 1240px; margin: 0 auto; width: 100%; }
.hero-kicker { display: flex; align-items: center; gap: 10px; margin-bottom: 26px; color: rgba(16,16,20,.7); }
.tick { width: 34px; height: 2px; background: var(--verm); display: inline-block; transform: rotate(-8deg); }
.hero-h1 {
  font-size: clamp(36px, 5.9vw, 88px); line-height: .99; font-weight: 900;
  letter-spacing: -.025em; text-transform: none; max-width: 18ch;
}
.hl { display: block; overflow: hidden; padding-block: .04em; }
.hl-in { display: inline-block; }
.soft-em { font-style: normal; color: rgba(16,16,20,.42); }
.hl-kyra .hl-in { color: var(--verm); }
.bs { font-style: normal; display: inline-block; color: var(--verm); }
.hero-side {
  position: absolute; right: clamp(0px, 4vw, 80px); bottom: -40px; width: clamp(180px, 22vw, 300px);
  text-align: center;
}
.kyra-hero { width: 100%; cursor: pointer; }
.hero-caption { margin-top: 6px; opacity: .55; }
.hero-foot { display: flex; gap: 48px; align-items: flex-end; margin-top: 44px; flex-wrap: wrap; }
.hero-sub { max-width: 46ch; font-size: clamp(16px, 1.3vw, 19px); color: rgba(16,16,20,.75); }
.hero-sub em { font-style: italic; color: var(--ink); }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; left: clamp(20px, 4vw, 56px); bottom: 26px;
  display: flex; align-items: center; gap: 10px; opacity: .5;
}
.hero-scroll-line { width: 54px; height: 2px; background: var(--ink); display: inline-block; animation: scrollhint 2s infinite; transform-origin: left; }
@keyframes scrollhint { 0% { transform: scaleX(0) } 55% { transform: scaleX(1) } 100% { transform: scaleX(1); opacity: 0 } }

/* ============ MARQUEE ============ */
.marquee { background: var(--ink); color: var(--bone); overflow: hidden; padding: 14px 0; transform: rotate(-1.2deg) scale(1.02); }
.marquee-track { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.marquee-seg { font-weight: 800; font-size: 15px; letter-spacing: .14em; white-space: nowrap; padding-right: 12px; }
.marquee-seg .jp { color: var(--verm); font-style: normal; padding: 0 18px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ SECTION SCAFFOLD ============ */
section { padding: clamp(90px, 12vw, 150px) clamp(20px, 4vw, 56px); }
.section-head { max-width: 1240px; margin: 0 auto clamp(48px, 6vw, 80px); }
.eyebrow { display: flex; align-items: center; gap: 12px; color: rgba(16,16,20,.65); margin-bottom: 20px; }
.eyebrow-no {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border: 1.5px solid var(--verm); border-radius: 50%;
  color: var(--verm); font-weight: 500;
}
.eyebrow-light { color: rgba(244,239,227,.6); }
.h2 { font-size: clamp(32px, 4.6vw, 68px); line-height: 1.02; font-weight: 900; letter-spacing: -.02em; max-width: 22ch; }
.lede { max-width: 62ch; margin-top: 22px; font-size: clamp(16px, 1.3vw, 19px); color: rgba(16,16,20,.75); }
.lede strong { color: var(--ink); }
.lede-light { color: rgba(244,239,227,.75); margin-inline: auto; }
.squig { position: relative; white-space: nowrap; }
.squig::after {
  content: ""; position: absolute; left: -1%; right: -1%; bottom: .04em; height: .16em;
  background: var(--verm); z-index: -1; transform: rotate(-1.6deg);
  opacity: .35;
}

/* ============ UNICORNS ============ */
.unicorns { position: relative; }
.missions {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.mission {
  background: var(--paper); border: 1.5px solid var(--line); border-radius: 18px;
  padding: 26px 24px 22px; position: relative;
  box-shadow: 0 2px 0 var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.mission:nth-child(odd) { rotate: -1deg; }
.mission:nth-child(even) { rotate: 1.1deg; }
.mission:hover { transform: translateY(-5px); box-shadow: 0 14px 30px rgba(16,16,20,.1); }
.mission-no { color: var(--verm); margin-bottom: 12px; }
.mission-role { font-size: clamp(21px, 1.9vw, 27px); font-weight: 800; line-height: 1.08; letter-spacing: -.01em; }
.mission-where { margin-top: 8px; opacity: .6; }
.mission-tag {
  margin-top: 18px; display: inline-flex; gap: 8px; align-items: center;
  background: var(--pink); border-radius: 999px; padding: 5px 12px; color: #8c2f4a;
}
.kyra-dash { position: absolute; width: 120px; top: 40%; left: -140px; pointer-events: none; z-index: 5; }

/* ============ WHAT WE LEARNT ============ */
.learnt { background: var(--paper); border-block: 1.5px solid var(--line); }
.truths { max-width: 1000px; margin: 0 auto; list-style: none; }
.truth {
  display: grid; grid-template-columns: minmax(90px, 160px) 1fr; gap: clamp(16px, 4vw, 60px);
  padding: clamp(28px, 3.5vw, 44px) 0; border-bottom: 1.5px solid var(--line);
  align-items: start;
}
.truth:last-child { border-bottom: none; }
.truth-no {
  font-size: clamp(48px, 6vw, 88px); font-weight: 900; line-height: .9;
  color: transparent; -webkit-text-stroke: 2px rgba(16,16,20,.28);
  letter-spacing: -.03em;
}
.truth.is-active .truth-no { color: var(--verm); -webkit-text-stroke: 2px var(--verm); }
.truth-no { transition: color .3s; }
.truth-body h3 { font-size: clamp(21px, 2.2vw, 31px); font-weight: 800; letter-spacing: -.015em; line-height: 1.12; }
.truth-body p { margin-top: 8px; color: rgba(16,16,20,.65); max-width: 56ch; }
.until { color: var(--verm); position: relative; }

/* JD demo */
.jd-demo { max-width: 1000px; margin: clamp(60px, 8vw, 110px) auto 0; }
.jd-demo-label { color: rgba(16,16,20,.55); margin-bottom: 18px; }
.jd-stage { position: relative; min-height: 380px; }
.jd-messy, .jd-clean {
  border-radius: 16px; padding: 26px 28px; border: 1.5px solid var(--line);
}
.jd-messy {
  background: #fff; position: relative; z-index: 2;
  transform: rotate(-.8deg);
  box-shadow: 0 10px 30px rgba(16,16,20,.08);
}
.doc-title { color: rgba(16,16,20,.5); margin-bottom: 14px; }
.doc-line { font-size: clamp(15px, 1.4vw, 18px); margin-bottom: 10px; color: rgba(16,16,20,.8); }
.doc-line mark { background: var(--pink); padding: 1px 5px; border-radius: 4px; color: #8c2f4a; }
.jd-clean {
  position: absolute; inset: 0; z-index: 1; background: var(--ink); color: var(--bone);
  transform: rotate(.6deg) scale(.98);
  display: flex; flex-direction: column; justify-content: center;
}
.jd-clean .doc-title { color: var(--verm); }
.mandate-chips { list-style: none; display: grid; gap: 12px; }
.mandate-chips li { display: flex; gap: 12px; align-items: baseline; font-size: clamp(14px, 1.3vw, 17px); }
.chip-k {
  flex: none; background: var(--verm); color: #fff; border-radius: 6px;
  padding: 2px 8px; font-size: 11px;
}
.kyra-jd { position: absolute; width: 110px; right: -30px; top: -70px; z-index: 4; pointer-events: none; }

/* ============ CUT TRANSITION ============ */
.cut-transition { position: relative; height: 0; z-index: 20; }
.cut-line {
  position: absolute; left: -5%; right: -5%; top: -2px; height: 5px;
  background: var(--verm); transform: rotate(-1.4deg) scaleX(0); transform-origin: left center;
  box-shadow: 0 0 24px rgba(255,59,47,.6);
}
.kyra-cutter { position: absolute; width: 110px; top: -120px; left: -130px; pointer-events: none; }

/* ============ MEET (dark) ============ */
.meet {
  background: var(--ink); color: var(--bone); text-align: center;
  position: relative; overflow: clip;
  clip-path: polygon(0 2.2vw, 100% 0, 100% 100%, 0 100%);
  padding-top: clamp(120px, 14vw, 180px);
}
.meet-bg {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-size: clamp(160px, 30vw, 480px); color: rgba(244,239,227,.03);
  pointer-events: none; user-select: none; letter-spacing: .05em;
}
.meet .eyebrow { justify-content: center; }
.meet-h2 { font-size: clamp(44px, 7vw, 110px); font-weight: 900; letter-spacing: -.03em; line-height: .98; }
.meet-name { color: var(--verm); position: relative; display: inline-block; }
.meet-tag { font-size: clamp(17px, 1.6vw, 23px); margin-top: 14px; color: rgba(244,239,227,.7); font-style: italic; font-family: var(--font-jp); }
.meet-stage { margin: clamp(30px, 4vw, 50px) auto 10px; width: clamp(220px, 30vw, 360px); position: relative; }
.kyra-big { cursor: pointer; outline: none; }
.kyra-big:focus-visible { filter: drop-shadow(0 0 12px rgba(255,59,47,.7)); }
.meet-hint { color: rgba(244,239,227,.4); margin-top: 8px; }
.meet-cols {
  max-width: 900px; margin: clamp(40px, 5vw, 60px) auto 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px; text-align: left;
}
.meet-copy { color: rgba(244,239,227,.78); font-size: clamp(15px, 1.25vw, 18px); }
.meet-copy strong { color: var(--bone); }
.traits {
  list-style: none; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  margin-top: clamp(36px, 4vw, 54px);
}
.traits li {
  border: 1px solid var(--line-light); border-radius: 999px; padding: 8px 18px;
  color: rgba(244,239,227,.75); transition: border-color .2s, color .2s, transform .2s;
}
.traits li:hover { border-color: var(--verm); color: var(--verm); transform: rotate(-2deg); }

/* Kyra on dark grounds: lift the outfit so she doesn't melt into the ink */
.meet .k-gi, .meet .k-gi-arm, .meet .k-boot,
.ats .k-gi, .ats .k-gi-arm, .ats .k-boot,
.loader .k-gi, .loader .k-gi-arm, .loader .k-boot { fill: #34345a; }
.meet .k-hair, .ats .k-hair, .loader .k-hair { fill: #2a2a45; }
.meet .k-saya, .ats .k-saya, .loader .k-saya { fill: #3b3b63; }
.meet .k-shadow, .ats .k-shadow, .loader .k-shadow { fill: rgba(244,239,227,.1); }

/* ============ DOES ============ */
.stages { max-width: 1240px; margin: 0 auto; display: grid; gap: clamp(28px, 4vw, 48px); }
.stage { display: grid; grid-template-columns: minmax(120px, 220px) 1fr; gap: clamp(16px, 4vw, 40px); align-items: start; }
.stage-no {
  font-size: clamp(80px, 12vw, 190px); font-weight: 900; line-height: .82;
  letter-spacing: -.05em; color: transparent; -webkit-text-stroke: 2.5px rgba(16,16,20,.2);
}
.stage:nth-child(2) { transform: translateX(clamp(0px, 4vw, 70px)); }
.stage-card {
  background: var(--paper); border: 1.5px solid var(--line); border-radius: 20px;
  padding: clamp(24px, 3vw, 40px); max-width: 720px;
  box-shadow: 0 2px 0 var(--line);
}
.stage-card h3 { font-size: clamp(22px, 2.4vw, 34px); font-weight: 800; letter-spacing: -.015em; }
.stage-card p { margin-top: 12px; color: rgba(16,16,20,.7); }
.stage-visual { display: flex; align-items: center; gap: 16px; margin-top: 22px; flex-wrap: wrap; }
.pill { border-radius: 10px; padding: 9px 16px; font-family: var(--font-m); font-size: 12px; letter-spacing: .05em; }
.pill-messy { background: #fff; border: 1.5px dashed rgba(16,16,20,.3); color: rgba(16,16,20,.6); text-decoration: line-through; text-decoration-color: rgba(255,59,47,.6); }
.pill-clean { background: var(--ink); color: var(--bone); font-weight: 500; }
.stage-arrow { position: relative; width: 46px; height: 2px; background: rgba(16,16,20,.25); }
.mini-slash {
  position: absolute; left: 50%; top: 50%; width: 22px; height: 3px; background: var(--verm);
  transform: translate(-50%,-50%) rotate(-55deg); display: block; border-radius: 2px;
}

/* ============ WORKFLOW ============ */
.workflow { background: var(--paper); border-block: 1.5px solid var(--line); }
.flow-lines { max-width: 1240px; margin: 0 auto clamp(50px, 6vw, 80px); display: grid; gap: 18px; }
.flow-line {
  display: flex; align-items: center; gap: clamp(10px, 2vw, 24px); flex-wrap: wrap;
  justify-content: center;
}
.flow-node {
  border: 1.5px solid var(--ink); border-radius: 999px; padding: 12px 22px;
  font-weight: 500; background: var(--bone);
}
.flow-node-out { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.flow-arrow { width: clamp(30px, 5vw, 70px); height: 2px; background: var(--ink); position: relative; opacity: .4; }
.flow-arrow::after { content: ""; position: absolute; right: -1px; top: -4px; border: 5px solid transparent; border-left-color: var(--ink); }
.flow-kyra { display: flex; flex-direction: column; align-items: center; gap: 2px; color: var(--verm); font-weight: 700; }
.kyra-flow { width: 74px; }

.product-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(22px, 3vw, 40px); }
.ui-mock {
  background: #fff; border: 1.5px solid var(--line); border-radius: 18px; overflow: hidden;
  box-shadow: 0 18px 50px rgba(16,16,20,.09);
}
.ui-mock:first-child { rotate: -.6deg; }
.ui-mock:last-child { rotate: .6deg; }
.ui-chrome {
  display: flex; align-items: center; gap: 7px; padding: 12px 16px;
  border-bottom: 1.5px solid var(--line); background: var(--paper);
}
.ui-chrome span { width: 10px; height: 10px; border-radius: 50%; background: rgba(16,16,20,.15); }
.ui-chrome span:first-child { background: var(--verm); }
.ui-chrome p { margin-left: 8px; opacity: .6; }
.ui-body { padding: 20px; display: grid; gap: 14px; }
.ui-msg { display: flex; gap: 10px; align-items: flex-end; }
.ui-msg-hm { flex-direction: row-reverse; }
.ui-avatar {
  flex: none; width: 40px; height: 40px; border-radius: 50%; background: var(--bone);
  border: 1.5px solid var(--line); display: grid; place-items: center; overflow: hidden;
}
.kyra-micro { width: 34px; margin-top: 10px; }
.ui-bubble {
  background: var(--bone); border: 1.5px solid var(--line); border-radius: 14px 14px 14px 4px;
  padding: 12px 16px; font-size: 14.5px; line-height: 1.45; max-width: 85%;
}
.ui-msg-hm .ui-bubble { background: var(--ink); color: var(--bone); border-radius: 14px 14px 4px 14px; border-color: var(--ink); }
.ui-bubble em { color: var(--verm); font-style: italic; }
.ui-extract, .ui-summary {
  border: 1.5px dashed rgba(255,59,47,.5); border-radius: 12px; padding: 14px 16px;
  background: rgba(255,59,47,.04);
}
.ui-extract-title { color: var(--verm); margin-bottom: 10px; }
.ui-extract ul { list-style: none; display: grid; gap: 6px; font-size: 12px; }
.ui-extract .ok { color: rgba(16,16,20,.8); }
.ui-extract .cut { color: rgba(16,16,20,.45); text-decoration: line-through; text-decoration-color: var(--verm); }
.ui-doc-row { display: grid; grid-template-columns: 1fr 1.5fr; gap: 12px; }
.ui-doc { border: 1.5px solid var(--line); border-radius: 12px; padding: 14px; }
.ui-doc-cv { background: var(--paper); color: rgba(16,16,20,.55); font-style: italic; font-size: 13.5px; }
.ui-doc-t { color: rgba(16,16,20,.5); margin-bottom: 8px; font-style: normal; }
.ui-doc-ev .ui-doc-t { color: var(--verm); }
.ev-rows { list-style: none; display: grid; gap: 12px; }
.ev-rows li { display: grid; gap: 4px; }
.ev-req { font-size: 10.5px; color: rgba(16,16,20,.6); }
.ev-bar { display: block; height: 8px; border-radius: 4px; background: rgba(16,16,20,.08); position: relative; overflow: hidden; }
.ev-bar::after {
  content: ""; position: absolute; inset: 0; width: calc(var(--v) * 100%);
  background: var(--verm); border-radius: 4px;
  transform: scaleX(0); transform-origin: left; transition: transform 1s cubic-bezier(.7,0,.2,1);
}
.is-inview .ev-bar::after { transform: scaleX(1); }
.ev-note { font-size: 12.5px; color: rgba(16,16,20,.65); }
.ui-summary p { font-size: 14px; }
.verdict { color: var(--verm); font-weight: 500; display: inline-block; margin-left: 6px; }
.ui-mock figcaption { padding: 14px 20px; border-top: 1.5px solid var(--line); opacity: .6; }

.flow-steps {
  list-style: none; max-width: 1240px; margin: clamp(40px, 5vw, 70px) auto 0;
  display: flex; flex-wrap: wrap; gap: 12px;
}
.flow-steps li {
  border: 1.5px solid var(--line); background: var(--bone); border-radius: 999px;
  padding: 12px 20px 12px 14px; display: inline-flex; gap: 10px; align-items: center;
  font-weight: 600; font-size: 15px;
}
.fs-no { color: var(--verm); }

/* ============ ATS (dark) ============ */
.ats {
  background: var(--ink-2); color: var(--bone); text-align: center;
  clip-path: polygon(0 0, 100% 2.2vw, 100% 100%, 0 100%);
  padding-top: clamp(120px, 14vw, 180px); overflow: clip; position: relative;
}
.ats .eyebrow { justify-content: center; }
.ats-h2 { max-width: 18ch; margin: 0 auto; }
.ats .lede { margin-inline: auto; }
.ats-stage { max-width: 1100px; margin: clamp(50px, 6vw, 80px) auto 0; position: relative; }
.ats-grid {
  display: grid; grid-template-columns: repeat(8, 1fr); gap: 10px;
}
.ats-cell {
  aspect-ratio: 1; border-radius: 10px; border: 1px solid var(--line-light);
  background: rgba(244,239,227,.03); position: relative; overflow: hidden;
  transition: background .4s, border-color .4s, box-shadow .4s;
}
.ats-cell::after {
  content: ""; position: absolute; inset: 22%; border-radius: 50% 50% 45% 45%;
  background: rgba(244,239,227,.1);
  clip-path: polygon(30% 0, 70% 0, 78% 40%, 100% 100%, 0 100%, 22% 40%);
  transition: background .4s;
}
.ats-cell.is-lit { background: rgba(255,59,47,.12); border-color: var(--verm); box-shadow: 0 0 18px rgba(255,59,47,.25); }
.ats-cell.is-lit::after { background: var(--verm); }
.kyra-diver { position: absolute; width: 90px; top: -60px; left: 4%; z-index: 3; pointer-events: none; }
.ats-found { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.found-card {
  border: 1.5px solid var(--line-light); border-radius: 14px; padding: 18px;
  text-align: left; color: rgba(244,239,227,.8); font-size: 14.5px; background: rgba(244,239,227,.03);
  display: grid; gap: 8px;
}
.fc-tag { color: var(--verm); }

/* ============ ACCESS ============ */
.access { position: relative; }
.access-inner {
  max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 90px); align-items: start; position: relative;
}
.access-h2 { max-width: 15ch; }
.kyra-form { width: clamp(150px, 15vw, 220px); margin-top: 30px; }
.access-form { display: grid; gap: 18px; background: var(--paper); border: 1.5px solid var(--line); border-radius: 22px; padding: clamp(26px, 3vw, 40px); box-shadow: 0 2px 0 var(--line); }
.field { display: grid; gap: 8px; }
.field .mono { color: rgba(16,16,20,.55); }
.field input {
  font-family: var(--font-d); font-size: 17px; padding: 14px 16px;
  border: 1.5px solid var(--line); border-radius: 12px; background: #fff;
  outline: none; transition: border-color .2s, box-shadow .2s;
}
.field input:focus { border-color: var(--verm); box-shadow: 0 0 0 4px rgba(255,59,47,.12); }
.btn-form { width: 100%; margin-top: 6px; }
.form-note { text-align: center; opacity: .5; }
.access-done { text-align: center; padding: 40px 0; grid-column: 2; }
.access-done .kyra-done { width: 180px; margin: 0 auto 10px; }
.access-done h3 { font-size: clamp(26px, 2.6vw, 38px); font-weight: 900; }
.access-done p { margin-top: 10px; color: rgba(16,16,20,.65); }

/* ============ FOOTER ============ */
.footer { background: var(--ink); color: var(--bone); padding: 70px clamp(20px, 4vw, 56px) 34px; position: relative; overflow: clip; }
.footer-slash { position: absolute; left: -5%; right: -5%; top: 0; height: 4px; background: var(--verm); transform: rotate(-.6deg); }
.footer-big {
  font-size: clamp(90px, 18vw, 300px); font-weight: 900; letter-spacing: -.02em;
  line-height: .8; color: rgba(244,239,227,.06); user-select: none; white-space: nowrap;
}
.footer-big .jp { font-size: .18em; vertical-align: super; color: rgba(255,59,47,.4); margin-left: .2em; letter-spacing: .3em; }
.footer-row { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 40px; color: rgba(244,239,227,.6); }
.footer-row a { color: var(--verm); }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav-links { display: none; }
}
@media (max-width: 1020px) {
  .missions { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr; }
  .hero-side { position: relative; right: auto; bottom: auto; margin-top: 30px; width: 200px; }
  .meet-cols { grid-template-columns: 1fr; }
  .access-inner { grid-template-columns: 1fr; }
  .access-done { grid-column: 1; }
  .ats-grid { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 640px) {
  .hero-h1 { font-size: clamp(27px, 8.4vw, 40px); }
  .nav-links { display: none; }
  .missions { grid-template-columns: 1fr; }
  .truth { grid-template-columns: 70px 1fr; }
  .stage { grid-template-columns: 1fr; }
  .stage:nth-child(2) { transform: none; }
  .stage-no { font-size: 70px; }
  .ats-grid { grid-template-columns: repeat(4, 1fr); }
  .ats-found { grid-template-columns: 1fr; }
  .ui-doc-row { grid-template-columns: 1fr; }
  .hero-vertical, .hero-vertical-2 { display: none; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .loader { display: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   CMS ADDITIONS — nav menu, generic sections, blog, editor mode
   ============================================================ */
:root { --font-b: var(--font-d); --grain: .05; }
body { font-family: var(--font-b); }
body::before { opacity: var(--grain); }
h1, h2, h3, .hero-h1, .h2, .meet-h2, .nav-word, .footer-big, .mission-role, .truth-no, .stage-no { font-family: var(--font-d); }
.nav-logo { height: 26px; width: auto; align-self: center; }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; width: 40px; height: 40px; border: 1.5px solid var(--ink); border-radius: 50%; background: transparent; cursor: pointer; position: relative; }
.nav-toggle span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--ink); transition: transform .25s, top .25s; }
.nav-toggle span:first-child { top: 14px; } .nav-toggle span:last-child { top: 22px; }
.nav.is-open .nav-toggle span:first-child { top: 18px; transform: rotate(-24deg); background: var(--verm); }
.nav.is-open .nav-toggle span:last-child { top: 18px; transform: rotate(-24deg); background: var(--verm); }
.nav-links-cta { display: none; }
.nav-sub { position: relative; }
.nav-sub .nav-drop { position: absolute; top: 100%; left: 0; padding-top: 12px; display: none; }
.nav-sub:hover .nav-drop, .nav-sub:focus-within .nav-drop { display: grid; }
.nav-drop a { display: block; background: var(--ink); color: var(--bone); padding: 10px 16px; white-space: nowrap; opacity: 1; }
.nav-drop a:first-child { border-radius: 10px 10px 0 0; } .nav-drop a:last-child { border-radius: 0 0 10px 10px; }
.nav-drop a::after { display: none; }
.nav-links a[aria-current="page"] { opacity: 1; }
.nav-links a[aria-current="page"]::after { transform: scaleX(1) rotate(-2deg); }
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-right .btn { display: none; }
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--ink); color: var(--bone); flex-direction: column; justify-content: center; align-items: center; gap: 22px; font-size: 18px; z-index: -1; }
  .nav.is-open .nav-links { display: flex; }
  .nav.is-open { background: transparent; box-shadow: none; }
  .nav.is-open .nav-word, .nav.is-open .nav-by { color: var(--bone); }
  .nav.is-open .nav-toggle { border-color: var(--bone); }
  .nav.is-open .nav-toggle span { background: var(--verm); }
  .nav-links-cta { display: inline-flex; margin-top: 10px; border: 1.5px solid var(--verm); color: var(--verm); border-radius: 999px; padding: 10px 22px; }
  .nav-sub .nav-drop { position: static; display: grid; padding-top: 6px; text-align: center; }
  .nav-drop a { background: transparent; opacity: .6; }
}

/* generic sections */
.h2-small { font-size: clamp(28px, 3.4vw, 48px); }
.band { background: var(--ink); color: var(--bone); text-align: center; position: relative; overflow: clip; clip-path: polygon(0 2.2vw, 100% 0, 100% 100%, 0 100%); padding-top: clamp(120px, 14vw, 180px); }
.band-inner { max-width: 1000px; margin: 0 auto; }
.band .eyebrow { justify-content: center; }
.band-h2 { font-size: clamp(38px, 6vw, 92px); }
.band .lede { margin-inline: auto; }
.band-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: clamp(28px, 4vw, 44px); }
.band .btn-ghost { border-color: var(--bone); color: var(--bone); }
.band .btn-ghost::before { background: var(--bone); }
.band .btn-ghost:hover { color: var(--ink); }
.band .btn-ink { background: var(--bone); border-color: var(--bone); color: var(--ink); }
.kyra-band { width: clamp(140px, 14vw, 200px); margin: 0 auto 10px; }
.band .k-gi, .band .k-gi-arm, .band .k-boot { fill: #34345a; }
.band .k-hair { fill: #2a2a45; } .band .k-saya { fill: #3b3b63; } .band .k-shadow { fill: rgba(244,239,227,.1); }

.text-sec .section-head, .faq-sec .section-head, .gallery-sec .section-head, .video-sec .section-head, .notes-sec .section-head { margin-bottom: clamp(30px, 4vw, 48px); }
.prose { max-width: 760px; margin: 0 auto; font-size: clamp(16px, 1.25vw, 19px); color: rgba(16,16,20,.8); }
.text-sec .prose { margin: 0 auto 0 0; }
.prose h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 900; letter-spacing: -.02em; line-height: 1.05; margin: 1.6em 0 .5em; color: var(--ink); }
.prose h3 { font-size: clamp(20px, 2vw, 27px); font-weight: 800; margin: 1.4em 0 .4em; color: var(--ink); }
.prose h4 { font-family: var(--font-m); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--verm); margin: 1.6em 0 .5em; }
.prose p, .prose ul, .prose ol { margin: .8em 0; }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose li { margin: .3em 0; }
.prose a { color: var(--verm); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.prose strong { color: var(--ink); }
.prose mark { background: var(--pink); padding: 1px 5px; border-radius: 4px; color: #8c2f4a; }
.prose blockquote { border-left: 4px solid var(--verm); padding: .2em 0 .2em 1.2em; margin: 1.4em 0; font-size: 1.12em; font-weight: 700; color: var(--ink); }
.prose img, .prose video { display: block; max-width: 100%; border-radius: 16px; border: 1.5px solid var(--line); margin: 1.4em 0; }
.prose hr { border: 0; height: 3px; background: var(--verm); transform: rotate(-1deg); width: 90px; margin: 2.4em 0; }
.prose code { font-family: var(--font-m); font-size: .85em; background: rgba(16,16,20,.06); padding: .1em .4em; border-radius: 4px; }
.prose pre { background: var(--ink); color: var(--bone); padding: 18px 20px; border-radius: 12px; overflow-x: auto; font-family: var(--font-m); font-size: 13px; margin: 1.4em 0; }
.prose pre code { background: none; padding: 0; color: inherit; }
.prose .video-wrap { position: relative; aspect-ratio: 16/9; margin: 1.4em 0; border-radius: 16px; overflow: hidden; }
.prose .video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.prose .pdf-card { display: flex; gap: 14px; align-items: center; border: 1.5px solid var(--line); border-radius: 14px; padding: 14px 18px; text-decoration: none; margin: 1.2em 0; background: var(--paper); }
.prose .pdf-icon { font-family: var(--font-m); font-size: 11px; background: var(--verm); color: #fff; padding: 6px 8px; border-radius: 6px; }
.prose .pdf-name { display: block; font-weight: 700; color: var(--ink); }
.prose .pdf-hint { font-family: var(--font-m); font-size: 11px; opacity: .6; }

.faq { max-width: 900px; }
.faq-item { border-top: 1.5px solid var(--line); }
.faq-item:last-child { border-bottom: 1.5px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; font-size: clamp(18px, 1.8vw, 24px); font-weight: 800; letter-spacing: -.01em; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .mini-slash { position: static; transform: rotate(-55deg); flex: none; transition: transform .3s; }
.faq-item[open] summary .mini-slash { transform: rotate(0deg); }
.faq-body { padding: 0 0 24px; max-width: 62ch; color: rgba(16,16,20,.7); font-size: clamp(15px, 1.2vw, 18px); }

.split { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 80px); align-items: center; }
.split-flip .split-media { order: 2; }
.split-media { margin: 0; border-radius: 20px; overflow: hidden; border: 1.5px solid var(--line); background: var(--paper); rotate: -1deg; box-shadow: 0 2px 0 var(--line); }
.split-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.split-copy .eyebrow { margin-bottom: 16px; }
.split-copy .lede { margin-top: 16px; }
.split-cta { margin-top: 24px; }
.media-placeholder { aspect-ratio: 4/3; display: grid; place-items: center; color: rgba(16,16,20,.4); border: 1.5px dashed var(--line); border-radius: 16px; }

.gallery-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(var(--cols, 3), 1fr); gap: 18px; }
.gallery-cell { margin: 0; border-radius: 16px; overflow: hidden; border: 1.5px solid var(--line); background: var(--paper); }
.gallery-cell:nth-child(odd) { rotate: -.6deg; } .gallery-cell:nth-child(even) { rotate: .6deg; }
.gallery-cell img { display: block; width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gallery-cell figcaption { padding: 10px 14px; opacity: .6; }

.video-box { max-width: 1000px; margin: 0 auto; }
.video-wrap { position: relative; aspect-ratio: 16/9; border-radius: 20px; overflow: hidden; background: var(--ink); border: 1.5px solid var(--line); }
.video-wrap iframe, .video-wrap video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-wrap .media-placeholder { position: absolute; inset: 0; color: rgba(244,239,227,.5); border: 0; }
.video-caption { margin-top: 12px; opacity: .6; }

/* blog */
.post-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card { display: grid; gap: 10px; align-content: start; background: var(--paper); border: 1.5px solid var(--line); border-radius: 18px; padding: 26px 24px 22px; text-decoration: none; box-shadow: 0 2px 0 var(--line); transition: transform .25s, box-shadow .25s; }
.post-card:nth-child(odd) { rotate: -.7deg; } .post-card:nth-child(even) { rotate: .8deg; }
.post-card:hover { transform: translateY(-5px); box-shadow: 0 14px 30px rgba(16,16,20,.1); }
.post-date { color: var(--verm); }
.post-title { font-size: clamp(20px, 1.8vw, 26px); font-weight: 800; line-height: 1.1; letter-spacing: -.01em; }
.post-excerpt { color: rgba(16,16,20,.65); font-size: 15px; }
.post-more { margin-top: 6px; opacity: .6; }
.notes-more { max-width: 1240px; margin: 34px auto 0; }
.notes-index { padding-top: clamp(140px, 18vh, 200px); }
.blog-cats { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.blog-cats a { text-decoration: none; border: 1.5px solid var(--line); border-radius: 999px; padding: 7px 14px; opacity: .7; }
.blog-cats a[aria-current="page"] { background: var(--ink); color: var(--bone); border-color: var(--ink); opacity: 1; }
.article { padding-top: clamp(140px, 18vh, 200px); }
.article-head { max-width: 760px; margin: 0 auto clamp(30px, 4vw, 50px); }
.article-head .h2 { max-width: none; }
.article-meta { margin-top: 18px; opacity: .6; }
.article-hero { max-width: 1000px; margin: 0 auto clamp(30px, 4vw, 50px); border-radius: 20px; overflow: hidden; border: 1.5px solid var(--line); rotate: -.6deg; }
.article-hero img { display: block; width: 100%; }
.article-back { max-width: 760px; margin: 50px auto 0; }
@media (max-width: 1020px) { .post-grid { grid-template-columns: repeat(2, 1fr); } .split { grid-template-columns: 1fr; } .split-flip .split-media { order: 0; } }
@media (max-width: 640px) { .post-grid { grid-template-columns: 1fr; } .gallery-grid { grid-template-columns: repeat(2, 1fr) !important; } }

/* form error */
.form-error { text-align: center; color: var(--verm); }

/* the visual editor: no animations, show everything in place */
.cms-editing .jd-clean { position: relative; margin-top: 22px; transform: none; }
.cms-editing .kyra-jd { display: none; }
.cms-editing .kyra-dash, .cms-editing .kyra-cutter, .cms-editing .kyra-diver { display: none; }
.cms-editing .cut-transition { display: none; }
.cms-editing .access-done[hidden] { display: block; grid-column: 1 / -1; border-top: 1.5px dashed var(--line); margin-top: 20px; }
.cms-editing .access-done::before { content: 'Shown after the form is sent'; display: block; font-family: var(--font-m); font-size: 11px; letter-spacing: .1em; opacity: .5; margin-bottom: 10px; }
.cms-editing .form-error[hidden] { display: block; }
.cms-editing .form-error::before { content: 'Error message: '; opacity: .5; }
.cms-editing .hero-scroll { position: static; margin-top: 30px; }
.cms-editing .ev-bar::after { transform: scaleX(1); }
.cms-editing .truth-no { color: var(--verm); -webkit-text-stroke: 2px var(--verm); }
.cms-editing .marquee { transform: none; }
.cms-editing .marquee-track { animation: none; }
.cms-editing .nav { position: relative; }
.cms-editing .hero { min-height: 0; }
.cms-editing .ats-cell:nth-child(5n) { background: rgba(255,59,47,.12); border-color: var(--verm); }
.cms-editing .ats-cell:nth-child(5n)::after { background: var(--verm); }
.cms-editing html { scroll-behavior: auto; }
