:root {
  --paper: #f2efe6;
  --paper-strong: #e8e3d6;
  --white: #fffdf7;
  --ink: #111820;
  --muted: #5f665f;
  --line: rgba(17, 24, 32, 0.18);
  --red: #f04438;
  --red-dark: #b51f1a;
  --blue: #2368f5;
  --blue-dark: #1545a8;
  --acid: #d7ff43;
  --cyan: #8eeaf1;
  --radius: 18px;
  --radius-lg: 30px;
  --shadow: 9px 9px 0 var(--ink);
  --display: "Unbounded", sans-serif;
  --body: "Manrope", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-grain {
  position: fixed;
  z-index: 999;
  inset: 0;
  opacity: 0.025;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(circle at 17% 32%, var(--ink) 0 0.6px, transparent 0.8px 3px),
    repeating-radial-gradient(circle at 73% 61%, var(--ink) 0 0.5px, transparent 0.7px 4px);
  background-size: 11px 13px, 17px 19px;
}

.shell {
  width: min(100% - 48px, 1240px);
  margin-inline: auto;
}

.section {
  padding: 126px 0;
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

.section-kicker,
.eyebrow {
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-kicker::before {
  display: inline-block;
  width: 26px;
  height: 3px;
  margin-right: 10px;
  background: var(--red);
  vertical-align: 3px;
  content: "";
}

.section-kicker-light::before {
  background: var(--acid);
}

.button {
  display: inline-flex;
  min-height: 56px;
  padding: 0 22px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-family: var(--body);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 var(--ink);
}

.button:active {
  transform: translate(0, 0);
  box-shadow: none;
}

.button-small {
  min-height: 44px;
  padding-inline: 17px;
  font-size: 13px;
  gap: 12px;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  color: var(--ink);
  background: var(--acid);
}

.button-red {
  color: var(--white);
  background: var(--red);
}

.button-red:hover {
  color: var(--ink);
  background: var(--white);
}

.button-outline {
  color: var(--ink);
  background: transparent;
}

.button-outline:hover {
  color: var(--white);
  background: var(--ink);
}

.button-acid {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
}

.button-acid:hover {
  background: var(--white);
  border-color: var(--ink);
}

.button-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  text-underline-offset: 5px;
}

.text-link span {
  color: var(--blue);
  font-size: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 650ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header */

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 2px solid var(--ink);
  background: rgba(242, 239, 230, 0.93);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  min-height: 76px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.brand-name {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-note {
  padding-left: 11px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  display: block;
  width: 26px;
  height: 35px;
  flex: 0 0 auto;
}

.brand-mark-handle {
  position: absolute;
  top: 1px;
  left: 11px;
  width: 5px;
  height: 22px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  background: #b77b46;
}

.brand-mark-handle::before {
  position: absolute;
  top: -5px;
  left: -4px;
  width: 9px;
  height: 6px;
  border: 2px solid var(--ink);
  border-radius: 5px 5px 2px 2px;
  background: #b77b46;
  content: "";
}

.brand-mark-cup {
  position: absolute;
  bottom: 1px;
  left: 2px;
  width: 23px;
  height: 13px;
  border: 2px solid var(--ink);
  border-radius: 50% 50% 25% 25% / 65% 65% 25% 25%;
  background: var(--red);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3.5vw, 48px);
}

.site-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
  content: "";
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 620px);
  width: 1px;
  background: var(--line);
  box-shadow: 310px 0 0 var(--line), 620px 0 0 var(--line), 930px 0 0 var(--line), 1240px 0 0 var(--line);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 750px;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, 0.96fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
  padding-top: 66px;
  padding-bottom: 72px;
}

.eyebrow-row {
  display: flex;
  margin-bottom: 28px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.eyebrow {
  display: flex;
  margin-bottom: 0;
  align-items: center;
  gap: 10px;
}

.eyebrow > span {
  width: 9px;
  height: 9px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 4px rgba(215, 255, 67, 0.35);
}

.hero-case {
  margin: 0;
  color: var(--muted);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 36px;
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.96;
  text-transform: uppercase;
}

.hero h1 em {
  display: inline-block;
  padding: 0.08em 0.15em 0.13em;
  color: var(--white);
  background: var(--red);
  font-style: normal;
  transform: rotate(-1.2deg);
}

.hero-bottom {
  display: grid;
  max-width: 700px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.hero-lead {
  max-width: 480px;
  margin-bottom: 0;
  color: #424941;
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  display: grid;
  justify-items: start;
  gap: 16px;
}

.hero-facts {
  display: grid;
  max-width: 680px;
  margin: 46px 0 0;
  padding: 22px 0 0;
  border-top: 2px solid var(--ink);
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.hero-facts li {
  display: flex;
  min-height: 50px;
  padding: 0 18px;
  border-right: 1px solid var(--line);
  align-items: center;
  gap: 12px;
}

.hero-facts li:first-child {
  padding-left: 0;
}

.hero-facts li:last-child {
  border-right: 0;
}

.hero-facts strong {
  font-family: var(--display);
  font-size: 19px;
}

.hero-facts span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 560px;
  justify-self: end;
}

.machine-label {
  display: flex;
  padding: 9px 2px;
  justify-content: space-between;
  gap: 15px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pressure-machine {
  position: relative;
  height: 590px;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 28px;
  background: #d8f1f4;
  box-shadow: 12px 12px 0 var(--ink);
}

.blueprint-grid {
  position: absolute;
  inset: 0;
  opacity: 0.33;
  background-image:
    linear-gradient(rgba(17, 24, 32, 0.19) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 32, 0.19) 1px, transparent 1px);
  background-size: 28px 28px;
}

.blueprint-grid::after {
  position: absolute;
  inset: 50% 0 auto;
  height: 2px;
  background: rgba(17, 24, 32, 0.2);
  content: "";
}

.pipe {
  position: absolute;
  z-index: 1;
  border: 3px solid var(--ink);
  background: var(--blue);
}

.pipe i {
  position: absolute;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--cyan);
}

.pipe-one {
  top: 74px;
  left: -30px;
  width: 214px;
  height: 38px;
  border-radius: 0 20px 20px 0;
}

.pipe-one::after {
  position: absolute;
  top: 32px;
  right: -3px;
  width: 38px;
  height: 120px;
  border: 3px solid var(--ink);
  border-top: 0;
  border-radius: 0 0 20px 20px;
  background: var(--blue);
  content: "";
}

.pipe-one i {
  top: -10px;
  right: 28px;
  width: 16px;
  height: 16px;
}

.pipe-two {
  right: -28px;
  bottom: 108px;
  width: 230px;
  height: 42px;
  border-radius: 22px 0 0 22px;
  background: var(--acid);
}

.pipe-two::before {
  position: absolute;
  right: 142px;
  bottom: 36px;
  width: 42px;
  height: 130px;
  border: 3px solid var(--ink);
  border-bottom: 0;
  border-radius: 22px 22px 0 0;
  background: var(--acid);
  content: "";
}

.pipe-two i {
  top: 9px;
  left: 22px;
  width: 17px;
  height: 17px;
  background: var(--red);
}

.pipe-three {
  bottom: -24px;
  left: 66px;
  width: 42px;
  height: 174px;
  border-radius: 22px 22px 0 0;
  background: var(--red);
}

.pipe-three i {
  top: 24px;
  left: 9px;
  width: 17px;
  height: 17px;
  background: var(--white);
}

.pipe-joint {
  position: absolute;
  z-index: 2;
  width: 54px;
  height: 54px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: inset 0 0 0 9px var(--blue);
}

.joint-one {
  top: 139px;
  left: 159px;
}

.joint-two {
  right: 154px;
  bottom: 82px;
  box-shadow: inset 0 0 0 9px var(--acid);
}

.pressure-gauge {
  position: absolute;
  z-index: 4;
  top: 42px;
  right: 34px;
  width: 126px;
  height: 126px;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 7px 7px 0 rgba(17, 24, 32, 0.22);
}

.gauge-label {
  position: absolute;
  top: 28px;
  left: 0;
  width: 100%;
  font-family: var(--display);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-align: center;
}

.gauge-tick {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: 3px;
  height: 12px;
  background: var(--ink);
  transform-origin: center 42px;
}

.tick-one {
  transform: translateX(-50%) rotate(-55deg);
}

.tick-two {
  transform: translateX(-50%);
}

.tick-three {
  transform: translateX(-50%) rotate(55deg);
}

.gauge-needle {
  position: absolute;
  bottom: 55px;
  left: 50%;
  width: 4px;
  height: 43px;
  border-radius: 4px;
  background: var(--red);
  transform: translateX(-50%) rotate(34deg);
  transform-origin: center bottom;
  animation: gauge 3.8s ease-in-out infinite;
}

.gauge-pin {
  position: absolute;
  bottom: 47px;
  left: 50%;
  width: 18px;
  height: 18px;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
  transform: translateX(-50%);
}

.flow-pulse {
  position: absolute;
  z-index: 3;
  width: 14px;
  height: 14px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 6px rgba(255, 253, 247, 0.4);
}

.pulse-one {
  top: 85px;
  left: 28px;
  animation: pulse-horizontal 3s linear infinite;
}

.pulse-two {
  right: 65px;
  bottom: 121px;
  background: var(--blue);
  animation: pulse-horizontal-reverse 3.4s linear infinite;
}

.pulse-three {
  bottom: 47px;
  left: 79px;
  background: var(--acid);
  animation: pulse-vertical 2.8s linear infinite;
}

.plunger {
  --plunger-scale: 1;
  position: absolute;
  z-index: 5;
  top: 92px;
  left: 50%;
  width: 250px;
  height: 410px;
  transform: translateX(-50%) rotate(-2deg) scale(var(--plunger-scale));
  transform-origin: bottom center;
  animation: plunger-breathe 4.6s ease-in-out infinite;
}

.plunger-cap {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 101px;
  width: 48px;
  height: 34px;
  border: 4px solid var(--ink);
  border-radius: 20px 20px 8px 8px;
  background: #a86636;
  box-shadow: inset 9px 0 rgba(255, 255, 255, 0.18);
}

.plunger-handle {
  position: absolute;
  z-index: 2;
  top: 27px;
  left: 108px;
  width: 34px;
  height: 246px;
  border: 4px solid var(--ink);
  border-radius: 9px;
  background: linear-gradient(90deg, #8f512c 0 22%, #c78a52 23% 64%, #9b5c34 65%);
  box-shadow: 8px 8px 0 rgba(17, 24, 32, 0.2);
}

.plunger-handle::after {
  position: absolute;
  top: 44px;
  right: 7px;
  bottom: 44px;
  width: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.28);
  content: "";
}

.plunger-grip {
  position: absolute;
  z-index: 4;
  top: 138px;
  left: 94px;
  width: 62px;
  height: 22px;
  border: 4px solid var(--ink);
  border-radius: 12px;
  background: var(--paper);
}

.plunger-collar {
  position: absolute;
  z-index: 4;
  top: 252px;
  left: 75px;
  width: 100px;
  height: 35px;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: #c6d0d5;
  box-shadow: inset 0 8px rgba(255, 255, 255, 0.48);
}

.plunger-cup {
  position: absolute;
  z-index: 3;
  top: 267px;
  left: 21px;
  width: 208px;
  height: 128px;
  border: 5px solid var(--ink);
  border-radius: 48% 48% 28% 28% / 70% 70% 27% 27%;
  background: linear-gradient(145deg, #ff7369 0 18%, var(--red) 42% 72%, var(--red-dark) 100%);
  box-shadow: inset 0 -20px rgba(105, 6, 0, 0.22), 11px 12px 0 rgba(17, 24, 32, 0.25);
}

.plunger-cup::after {
  position: absolute;
  right: 14px;
  bottom: -10px;
  left: 14px;
  height: 32px;
  border: 5px solid var(--ink);
  border-radius: 50%;
  background: var(--red-dark);
  content: "";
}

.plunger-cup span {
  position: absolute;
  top: 28px;
  left: 29px;
  width: 105px;
  height: 25px;
  border-top: 8px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.pressure-ring {
  position: absolute;
  z-index: 1;
  top: 338px;
  left: 50%;
  width: 210px;
  height: 70px;
  border: 3px solid var(--blue);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: pressure-ring 2.4s ease-out infinite;
}

.ring-two {
  animation-delay: 1.2s;
}

.machine-readout {
  position: absolute;
  z-index: 8;
  right: 20px;
  bottom: 19px;
  display: grid;
  width: 176px;
  min-height: 98px;
  padding: 13px 15px;
  border: 3px solid var(--ink);
  border-radius: 13px;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 8px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 5px 5px 0 rgba(17, 24, 32, 0.24);
}

.readout-light {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 12px var(--acid);
  animation: blink 1.5s ease-in-out infinite;
}

.machine-readout > span:nth-child(2) {
  font-family: var(--display);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.machine-readout strong {
  grid-column: 1 / -1;
  font-family: var(--display);
  font-size: 36px;
  letter-spacing: -0.08em;
  line-height: 1;
}

.machine-readout strong span {
  color: var(--acid);
  font-size: 16px;
}

.machine-stamp {
  position: absolute;
  z-index: 2;
  bottom: 37px;
  left: 23px;
  display: grid;
  width: 110px;
  height: 110px;
  border: 3px dashed var(--red);
  border-radius: 50%;
  place-items: center;
  color: var(--red);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.5;
  text-align: center;
  transform: rotate(-13deg);
}

.ticker {
  overflow: hidden;
  border-top: 2px solid var(--ink);
  background: var(--acid);
}

.ticker-track {
  display: flex;
  width: max-content;
  min-height: 58px;
  align-items: center;
  gap: 34px;
  animation: ticker 24s linear infinite;
}

.ticker-track span {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-track i {
  width: 12px;
  height: 12px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--red);
}

/* Symptoms */

.symptoms {
  background: var(--paper);
}

.section-heading {
  display: grid;
  margin-bottom: 62px;
  grid-template-columns: 1.2fr 0.8fr;
  column-gap: 70px;
}

.section-heading .section-kicker {
  grid-column: 1 / -1;
}

.section-heading h2,
.method-heading h2,
.control-copy h2,
.blueprint-copy h2,
.kits-heading h2,
.faq-heading h2,
.final-copy h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(37px, 4.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.02;
  text-transform: uppercase;
}

.section-heading > p:last-child {
  max-width: 470px;
  margin: auto 0 2px;
  color: var(--muted);
  font-size: 17px;
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.symptom-card {
  position: relative;
  min-height: 430px;
  padding: 25px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 6px 6px 0 rgba(17, 24, 32, 0.09);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.symptom-card:hover {
  transform: translateY(-7px);
  box-shadow: 8px 12px 0 rgba(17, 24, 32, 0.14);
}

.symptom-card-blue {
  color: var(--white);
  background: var(--blue);
}

.symptom-card-blue p {
  color: rgba(255, 255, 255, 0.76) !important;
}

.symptom-card-acid {
  background: var(--acid);
}

.card-index {
  font-family: var(--display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.symptom-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.04em;
  line-height: 1.15;
  text-transform: uppercase;
}

.symptom-card p {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.symptom-graphic {
  position: relative;
  height: 235px;
}

.graphic-drip span {
  position: absolute;
  border: 3px solid var(--ink);
  border-radius: 52% 48% 55% 45% / 64% 60% 40% 36%;
  background: var(--blue);
  transform: rotate(45deg);
}

.graphic-drip span:nth-child(1) {
  top: 43px;
  left: 35px;
  width: 92px;
  height: 92px;
}

.graphic-drip span:nth-child(2) {
  top: 105px;
  right: 46px;
  width: 55px;
  height: 55px;
  background: var(--red);
}

.graphic-drip span:nth-child(3) {
  top: 30px;
  right: 22px;
  width: 25px;
  height: 25px;
  background: var(--acid);
}

.graphic-wall {
  display: grid;
  grid-template-columns: repeat(2, 110px);
  place-content: center;
  transform: rotate(-5deg);
}

.graphic-wall span {
  height: 63px;
  border: 3px solid var(--ink);
  background: var(--paper);
  box-shadow: inset 0 0 0 7px rgba(17, 24, 32, 0.08);
}

.graphic-wall span:nth-child(2),
.graphic-wall span:nth-child(3) {
  background: var(--red);
}

.graphic-maze span {
  position: absolute;
  border: 18px solid var(--blue);
  border-right-color: transparent;
  border-radius: 50%;
}

.graphic-maze span:nth-child(1) {
  top: 26px;
  left: 50%;
  width: 180px;
  height: 180px;
  transform: translateX(-50%) rotate(15deg);
}

.graphic-maze span:nth-child(2) {
  top: 69px;
  left: 50%;
  width: 96px;
  height: 96px;
  border-color: var(--red);
  border-bottom-color: transparent;
  transform: translateX(-50%) rotate(-20deg);
}

.graphic-maze span:nth-child(3) {
  top: 105px;
  left: 50%;
  width: 24px;
  height: 24px;
  border: 0;
  background: var(--ink);
  transform: translateX(-50%) rotate(45deg);
}

/* Method */

.method {
  position: relative;
  overflow: hidden;
}

.method::before {
  position: absolute;
  top: -300px;
  right: -220px;
  width: 720px;
  height: 720px;
  border: 100px solid rgba(35, 104, 245, 0.13);
  border-radius: 50%;
  content: "";
}

.method-heading {
  position: relative;
  z-index: 1;
  display: grid;
  margin-bottom: 74px;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
}

.method-heading .section-kicker {
  grid-column: 1 / -1;
}

.method-heading h2 em,
.final-copy h2 em {
  color: var(--acid);
  font-style: normal;
}

.method-heading > p:last-child {
  max-width: 450px;
  margin: auto 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
}

.method-steps {
  position: relative;
  z-index: 1;
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  list-style: none;
}

.method-step {
  display: grid;
  min-height: 230px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  grid-template-columns: 70px 230px 1fr;
  align-items: center;
  gap: clamp(20px, 4vw, 64px);
}

.step-number {
  align-self: start;
  color: var(--acid);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
}

.method-step h3 {
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 38px);
  letter-spacing: -0.045em;
  line-height: 1.1;
  text-transform: uppercase;
}

.method-step p {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.step-illustration {
  position: relative;
  height: 150px;
}

.step-scan i {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 3px solid var(--cyan);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.step-scan i:nth-child(1) {
  width: 40px;
  height: 40px;
  background: var(--red);
}

.step-scan i:nth-child(2) {
  width: 92px;
  height: 92px;
}

.step-scan i:nth-child(3) {
  width: 144px;
  height: 144px;
  border-style: dashed;
  animation: spin 14s linear infinite;
}

.step-route i {
  position: absolute;
  background: var(--blue);
}

.step-route i:nth-child(1) {
  top: 66px;
  left: 10px;
  width: 190px;
  height: 20px;
  border-radius: 10px;
}

.step-route i:nth-child(2),
.step-route i:nth-child(3),
.step-route i:nth-child(4) {
  width: 32px;
  height: 32px;
  border: 4px solid var(--white);
  border-radius: 50%;
}

.step-route i:nth-child(2) {
  top: 59px;
  left: 8px;
  background: var(--red);
}

.step-route i:nth-child(3) {
  top: 59px;
  left: 90px;
  background: var(--acid);
}

.step-route i:nth-child(4) {
  top: 59px;
  right: 7px;
  background: var(--cyan);
}

.step-flow i {
  position: absolute;
  top: 50%;
  left: 20px;
  width: 31px;
  height: 31px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--acid);
  transform: translateY(-50%);
  animation: flow-step 2.7s ease-in-out infinite;
}

.step-flow i:nth-child(2) {
  animation-delay: 0.4s;
}

.step-flow i:nth-child(3) {
  animation-delay: 0.8s;
}

/* Control panel */

.control {
  border-bottom: 2px solid var(--ink);
  background: var(--paper-strong);
}

.control-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 7vw, 100px);
  align-items: center;
}

.control-copy > p:not(.section-kicker) {
  max-width: 500px;
  margin: 27px 0 30px;
  color: var(--muted);
  font-size: 17px;
}

.control-notes {
  display: grid;
  margin: 0 0 34px;
  padding: 0;
  gap: 10px;
  list-style: none;
  font-size: 14px;
  font-weight: 700;
}

.control-notes span {
  margin-right: 10px;
  color: var(--blue);
}

.control-panel {
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 22px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 11px 11px 0 var(--blue);
}

.panel-topbar {
  display: flex;
  min-height: 58px;
  padding: 0 19px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
}

.panel-topbar > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.panel-topbar strong {
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.panel-topbar > span {
  color: rgba(255, 255, 255, 0.5);
}

.panel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 10px var(--acid);
}

.panel-pressure {
  padding: 24px 22px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.panel-pressure > span {
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.panel-pressure strong {
  display: block;
  margin: 6px 0 16px;
  font-family: var(--display);
  font-size: clamp(46px, 6vw, 76px);
  letter-spacing: -0.08em;
  line-height: 1;
}

.panel-pressure small {
  color: var(--acid);
  font-size: 25px;
}

.pressure-bars {
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  gap: 4px;
}

.pressure-bars i {
  height: 14px;
  border-radius: 2px;
  background: var(--acid);
}

.pressure-bars i:nth-last-child(-n + 2) {
  background: rgba(255, 255, 255, 0.15);
}

.route-list {
  display: grid;
}

.route-row {
  display: grid;
  min-height: 76px;
  padding: 11px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  grid-template-columns: 44px 1fr auto auto;
  align-items: center;
  gap: 13px;
}

.route-icon {
  display: grid;
  width: 38px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  place-items: center;
  color: var(--cyan);
  font-family: var(--display);
  font-size: 8px;
  font-weight: 800;
}

.route-row div {
  display: grid;
}

.route-row strong {
  font-size: 13px;
}

.route-row small,
.route-latency {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
}

.route-status {
  min-width: 62px;
  padding: 5px 8px;
  border: 1px solid rgba(215, 255, 67, 0.45);
  border-radius: 999px;
  color: var(--acid);
  font-size: 9px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.route-status-watch {
  border-color: rgba(240, 68, 56, 0.55);
  color: #ff8c84;
}

.panel-footer {
  display: flex;
  min-height: 58px;
  padding: 0 18px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  text-transform: uppercase;
}

.panel-footer i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--acid);
}

.panel-footer span:nth-child(2) i {
  background: var(--red);
}

/* Blueprint */

.blueprint {
  background: var(--blue);
  color: var(--white);
}

.blueprint-grid-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(55px, 8vw, 116px);
  align-items: center;
}

.blueprint-card {
  position: relative;
  min-height: 520px;
  padding: 24px;
  border: 3px solid var(--ink);
  border-radius: 22px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
  transform: rotate(-1.2deg);
}

.blueprint-card::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(35, 104, 245, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 104, 245, 0.35) 1px, transparent 1px);
  background-size: 22px 22px;
  content: "";
}

.blueprint-card-head,
.blueprint-card > p,
.blueprint-code {
  position: relative;
  z-index: 2;
}

.blueprint-card-head {
  display: flex;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
  justify-content: space-between;
  font-family: var(--display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.blueprint-scheme {
  position: relative;
  z-index: 2;
  height: 320px;
}

.scheme-node {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 62px;
  height: 62px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  place-items: center;
  background: var(--white);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 800;
}

.node-a {
  top: 126px;
  left: 8px;
  background: var(--acid);
}

.node-b {
  top: 44px;
  left: 42%;
  background: var(--red);
  color: var(--white);
}

.node-c {
  right: 36px;
  bottom: 36px;
  background: var(--cyan);
}

.node-d {
  top: 62px;
  right: 8px;
  background: var(--ink);
  color: var(--white);
}

.scheme-line {
  position: absolute;
  z-index: 1;
  height: 14px;
  border: 3px solid var(--ink);
  border-radius: 9px;
  background: var(--blue);
  transform-origin: left center;
}

.line-a {
  top: 155px;
  left: 65px;
  width: 166px;
  transform: rotate(-30deg);
}

.line-b {
  top: 80px;
  left: 53%;
  width: 145px;
  transform: rotate(4deg);
}

.line-c {
  top: 101px;
  left: 52%;
  width: 159px;
  background: var(--red);
  transform: rotate(53deg);
}

.line-d {
  right: 62px;
  bottom: 67px;
  width: 100px;
  background: var(--acid);
  transform: rotate(-12deg);
}

.blueprint-code {
  display: flex;
  height: 42px;
  align-items: stretch;
  gap: 4px;
}

.blueprint-code span {
  width: 5px;
  background: var(--ink);
}

.blueprint-code span:nth-child(3n) {
  width: 12px;
}

.blueprint-code span:nth-child(4n) {
  width: 2px;
}

.blueprint-card > p {
  position: absolute;
  right: 24px;
  bottom: 22px;
  margin: 0;
  font-family: var(--display);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.blueprint-copy > p:not(.section-kicker) {
  max-width: 510px;
  margin: 28px 0 36px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
}

.blueprint-facts {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.blueprint-facts > div {
  display: flex;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.blueprint-facts dt {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  text-transform: uppercase;
}

.blueprint-facts dd {
  margin: 0;
  font-weight: 800;
}

/* Kits */

.kits {
  background: var(--paper);
}

.kits-heading {
  display: grid;
  margin-bottom: 62px;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: end;
}

.kits-heading > p {
  max-width: 480px;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 17px;
}

.kit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.kit-card {
  position: relative;
  display: flex;
  min-height: 590px;
  padding: 25px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  flex-direction: column;
  background: var(--white);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.kit-card:hover {
  transform: translateY(-7px);
  box-shadow: 8px 8px 0 var(--ink);
}

.kit-card-featured {
  background: var(--acid);
}

.popular-tag {
  position: absolute;
  top: -16px;
  right: 22px;
  padding: 7px 13px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-family: var(--display);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.07em;
}

.kit-topline {
  display: flex;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  font-family: var(--display);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.kit-icon {
  position: relative;
  height: 172px;
  margin: 22px 0 12px;
}

.kit-icon i {
  position: absolute;
  display: block;
  border: 3px solid var(--ink);
}

.kit-icon-pocket i:first-child {
  top: 17px;
  left: 50%;
  width: 25px;
  height: 105px;
  border-radius: 8px;
  background: #b97842;
  transform: translateX(-50%);
}

.kit-icon-pocket i:last-child {
  right: 21%;
  bottom: 18px;
  left: 21%;
  height: 65px;
  border-radius: 50% 50% 24% 24%;
  background: var(--red);
}

.kit-icon-family i {
  bottom: 29px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--blue);
}

.kit-icon-family i:nth-child(1) {
  left: 8%;
}

.kit-icon-family i:nth-child(2) {
  left: 50%;
  background: var(--red);
  transform: translateX(-50%);
}

.kit-icon-family i:nth-child(3) {
  right: 8%;
  background: var(--cyan);
}

.kit-icon-building i:first-child {
  right: 24%;
  bottom: 14px;
  left: 24%;
  height: 136px;
  border-radius: 10px 10px 0 0;
  background: var(--blue);
  box-shadow: inset 0 0 0 15px rgba(255, 255, 255, 0.2);
}

.kit-icon-building i:nth-child(2),
.kit-icon-building i:nth-child(3) {
  bottom: 33px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--red);
}

.kit-icon-building i:nth-child(2) {
  left: 31%;
}

.kit-icon-building i:nth-child(3) {
  right: 31%;
  background: var(--acid);
}

.kit-card h3 {
  margin-bottom: 11px;
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: -0.045em;
  line-height: 1.15;
  text-transform: uppercase;
}

.kit-card > p {
  min-height: 74px;
  color: var(--muted);
  font-size: 14px;
}

.kit-card-featured > p {
  color: rgba(17, 24, 32, 0.68);
}

.kit-card ul {
  display: grid;
  margin: 0 0 26px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  gap: 9px;
  list-style: none;
  font-size: 13px;
  font-weight: 700;
}

.kit-card li::before {
  margin-right: 9px;
  color: var(--blue);
  content: "●";
}

.kit-card .button {
  margin-top: auto;
}

/* Manifesto */

.manifesto {
  padding-top: 24px;
  background: var(--paper);
}

.manifesto blockquote {
  position: relative;
  margin: 0;
  padding: clamp(36px, 7vw, 86px);
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--red);
  color: var(--white);
  box-shadow: 11px 11px 0 var(--ink);
}

.manifesto blockquote::before,
.manifesto blockquote::after {
  position: absolute;
  width: 270px;
  height: 270px;
  border: 40px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.manifesto blockquote::before {
  top: -145px;
  right: -35px;
}

.manifesto blockquote::after {
  bottom: -165px;
  left: -35px;
}

.quote-mark {
  position: absolute;
  top: 38px;
  left: 46px;
  color: var(--acid);
  font-family: Georgia, serif;
  font-size: 100px;
  line-height: 1;
}

.manifesto blockquote p {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto 28px;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.18;
  text-align: center;
  text-transform: uppercase;
}

.manifesto blockquote footer {
  position: relative;
  z-index: 2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

/* FAQ */

.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(55px, 8vw, 118px);
}

.faq-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-badge {
  display: flex;
  margin-top: 45px;
  align-items: center;
  gap: 16px;
}

.faq-badge > span {
  display: grid;
  width: 72px;
  height: 72px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  place-items: center;
  background: var(--acid);
  font-family: var(--display);
  font-size: 32px;
  font-weight: 800;
  transform: rotate(-8deg);
}

.faq-badge p {
  margin: 0;
  color: var(--muted);
  font-family: var(--display);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.faq-list {
  border-top: 2px solid var(--ink);
}

.faq-list details {
  border-bottom: 2px solid var(--ink);
}

.faq-list summary {
  display: flex;
  min-height: 90px;
  padding: 18px 0;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 36px;
  height: 36px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  place-items: center;
  flex: 0 0 auto;
  background: var(--white);
  font-family: var(--body);
  font-size: 22px;
  transition: transform 180ms ease, background 180ms ease;
}

.faq-list details[open] summary span {
  background: var(--acid);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 650px;
  margin: -3px 60px 28px 0;
  color: var(--muted);
}

/* Final CTA and footer */

.final-cta {
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--blue);
  color: var(--white);
}

.final-cta-grid {
  display: grid;
  min-height: 490px;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 70px;
}

.final-copy {
  padding: 90px 0;
}

.final-action {
  position: relative;
  align-self: stretch;
  display: flex;
  padding: 70px 50px;
  border-left: 2px solid var(--ink);
  flex-direction: column;
  justify-content: center;
  background: var(--red);
}

.final-action p {
  max-width: 330px;
  margin: 28px 0;
  color: rgba(255, 255, 255, 0.75);
}

.mini-plunger {
  position: relative;
  width: 104px;
  height: 130px;
  transform: rotate(8deg);
}

.mini-plunger i {
  position: absolute;
  top: 0;
  left: 44px;
  width: 18px;
  height: 90px;
  border: 3px solid var(--ink);
  border-radius: 6px;
  background: #bd7e46;
}

.mini-plunger span {
  position: absolute;
  bottom: 2px;
  left: 4px;
  width: 98px;
  height: 58px;
  border: 4px solid var(--ink);
  border-radius: 50% 50% 25% 25%;
  background: var(--acid);
}

.site-footer {
  padding: 48px 0;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.7fr 1fr;
  align-items: start;
  gap: 35px;
}

.brand-footer {
  color: var(--white);
}

.brand-footer .brand-mark-handle,
.brand-footer .brand-mark-handle::before,
.brand-footer .brand-mark-cup {
  border-color: var(--white);
}

.footer-grid > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.footer-grid nav {
  display: grid;
  gap: 7px;
}

.footer-grid nav a {
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.footer-grid nav a:hover {
  color: var(--acid);
}

.copyright {
  text-align: right;
}

/* Diagnostic */

.diagnostic[hidden] {
  display: none;
}

.diagnostic {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
}

.diagnostic-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 32, 0.72);
  backdrop-filter: blur(7px);
  animation: fade-in 180ms ease both;
}

.diagnostic-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 960px);
  max-height: calc(100vh - 48px);
  padding: 42px;
  overflow-y: auto;
  border: 3px solid var(--ink);
  border-radius: 26px;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 50px;
  background: var(--paper);
  box-shadow: 12px 12px 0 var(--red);
  animation: modal-in 250ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.diagnostic-close {
  position: absolute;
  z-index: 4;
  top: 16px;
  right: 16px;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0 0 4px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  place-items: center;
  background: var(--white);
  font-size: 26px;
  cursor: pointer;
}

.diagnostic-head {
  padding-right: 10px;
}

.diagnostic-head h2 {
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: clamp(30px, 4.5vw, 48px);
  letter-spacing: -0.06em;
  line-height: 1.05;
  text-transform: uppercase;
}

.diagnostic-head > p:last-child {
  color: var(--muted);
  font-size: 14px;
}

.diagnostic-form {
  display: grid;
  gap: 26px;
}

.diagnostic-form[hidden] {
  display: none;
}

.diagnostic-form fieldset {
  display: grid;
  margin: 0;
  padding: 0;
  border: 0;
  gap: 8px;
}

.diagnostic-form legend {
  margin-bottom: 12px;
  font-weight: 800;
}

.diagnostic-form legend span {
  margin-right: 8px;
  color: var(--red);
  font-family: var(--display);
  font-size: 10px;
}

.diagnostic-form fieldset > label {
  position: relative;
  cursor: pointer;
}

.diagnostic-form fieldset > label > input {
  position: absolute;
  opacity: 0;
}

.diagnostic-form fieldset > label > span {
  display: grid;
  min-height: 64px;
  padding: 11px 46px 11px 15px;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  transition: border-color 160ms ease, background 160ms ease;
}

.diagnostic-form fieldset > label > span::after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  transform: translateY(-50%);
  content: "";
}

.diagnostic-form fieldset > label > input:checked + span {
  border-color: var(--ink);
  background: var(--acid);
}

.diagnostic-form fieldset > label > input:checked + span::after {
  box-shadow: inset 0 0 0 4px var(--acid);
  background: var(--ink);
}

.diagnostic-form fieldset > label > input:focus-visible + span {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.diagnostic-form strong,
.diagnostic-form small {
  display: block;
}

.diagnostic-form strong {
  font-size: 13px;
}

.diagnostic-form small {
  color: var(--muted);
  font-size: 10px;
}

.device-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.device-options label > span {
  display: grid !important;
  min-height: 52px !important;
  padding: 0 !important;
  place-items: center;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
}

.device-options label > span::after {
  display: none;
}

.diagnostic-result {
  position: relative;
  padding: 30px;
  border: 3px solid var(--ink);
  border-radius: 18px;
  align-self: center;
  background: var(--acid);
  box-shadow: 7px 7px 0 var(--ink);
}

.diagnostic-result[hidden] {
  display: none;
}

.result-label {
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.diagnostic-result > strong {
  display: block;
  margin-bottom: 16px;
  font-family: var(--display);
  font-size: clamp(26px, 4vw, 42px);
  letter-spacing: -0.05em;
  line-height: 1.08;
  text-transform: uppercase;
}

.diagnostic-result > p:not(.result-label) {
  color: rgba(17, 24, 32, 0.67);
}

.result-pressure {
  position: relative;
  height: 16px;
  margin: 24px 0;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
}

.result-pressure span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 84%;
  background: var(--blue);
}

.result-pressure i {
  position: absolute;
  top: -4px;
  left: 72%;
  width: 4px;
  height: 20px;
  background: var(--ink);
}

.result-reset {
  display: block;
  margin: 15px auto 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

/* Animations */

@keyframes gauge {
  0%,
  100% {
    transform: translateX(-50%) rotate(26deg);
  }
  50% {
    transform: translateX(-50%) rotate(40deg);
  }
}

@keyframes plunger-breathe {
  0%,
  100% {
    transform: translateX(-50%) rotate(-2deg) translateY(0) scale(var(--plunger-scale));
  }
  50% {
    transform: translateX(-50%) rotate(-1deg) translateY(7px) scale(var(--plunger-scale));
  }
}

@keyframes pressure-ring {
  0% {
    opacity: 0.85;
    transform: translateX(-50%) scale(0.6);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) scale(1.45);
  }
}

@keyframes pulse-horizontal {
  0% {
    transform: translateX(-32px);
  }
  100% {
    transform: translateX(142px);
  }
}

@keyframes pulse-horizontal-reverse {
  0% {
    transform: translateX(42px);
  }
  100% {
    transform: translateX(-120px);
  }
}

@keyframes pulse-vertical {
  0% {
    transform: translateY(70px);
  }
  100% {
    transform: translateY(-75px);
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes flow-step {
  0% {
    opacity: 0;
    transform: translate(0, -50%) scale(0.7);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(160px, -50%) scale(1);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
}

/* Responsive */

@media (max-width: 1120px) {
  .header-inner {
    gap: 22px;
  }

  .site-nav {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.85fr);
    gap: 35px;
  }

  .hero h1 {
    font-size: clamp(46px, 6.4vw, 70px);
  }

  .hero-bottom {
    grid-template-columns: 1fr;
  }

  .hero-facts li {
    padding-inline: 10px;
  }

  .pressure-machine {
    height: 540px;
  }

  .plunger {
    --plunger-scale: 0.92;
    top: 64px;
  }

  .control-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 45px;
  }

  .route-row {
    grid-template-columns: 42px 1fr auto;
  }

  .route-latency {
    display: none;
  }

  .kit-card {
    padding: 22px;
  }
}

@media (max-width: 900px) {
  .shell {
    width: min(100% - 32px, 760px);
  }

  .section {
    padding: 90px 0;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .brand-note,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 2px);
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    padding: 0 16px;
    overflow: hidden;
    background: var(--paper);
    transition: max-height 240ms ease, padding 240ms ease;
  }

  .site-nav.is-open {
    max-height: 320px;
    padding-block: 12px 18px;
    border-bottom: 2px solid var(--ink);
  }

  .site-nav a {
    padding: 10px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    padding-top: 52px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero h1 {
    font-size: clamp(48px, 10.5vw, 78px);
  }

  .hero-bottom {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .hero-visual {
    max-width: 610px;
    justify-self: center;
  }

  .pressure-machine {
    height: 590px;
  }

  .plunger {
    --plunger-scale: 1;
    top: 92px;
  }

  .section-heading,
  .method-heading,
  .kits-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading > p:last-child,
  .method-heading > p:last-child,
  .kits-heading > p {
    margin: 0;
  }

  .symptom-grid,
  .kit-grid {
    grid-template-columns: 1fr;
  }

  .symptom-card {
    display: grid;
    min-height: 300px;
    grid-template-columns: 0.85fr 1.15fr;
    column-gap: 24px;
  }

  .card-index {
    grid-column: 1 / -1;
  }

  .symptom-graphic {
    height: 230px;
    grid-row: 2 / 4;
  }

  .symptom-card h3 {
    align-self: end;
  }

  .method-step {
    grid-template-columns: 54px 180px 1fr;
  }

  .control-grid,
  .blueprint-grid-layout,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .control-copy {
    max-width: 650px;
  }

  .blueprint-card {
    width: min(100%, 620px);
    justify-self: center;
  }

  .faq-heading {
    position: static;
  }

  .kit-card {
    display: grid;
    min-height: 0;
    grid-template-columns: 0.8fr 1.2fr;
    column-gap: 30px;
  }

  .kit-topline,
  .kit-card .button {
    grid-column: 1 / -1;
  }

  .kit-icon {
    height: 230px;
    grid-row: 2 / 6;
  }

  .kit-card h3 {
    margin-top: 36px;
  }

  .final-cta-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .final-action {
    padding: 55px;
    border-top: 2px solid var(--ink);
    border-left: 0;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .copyright {
    text-align: left;
  }

  .diagnostic-dialog {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 24px, 560px);
  }

  .section {
    padding: 72px 0;
  }

  .header-inner {
    min-height: 68px;
  }

  .hero-grid {
    padding-top: 38px;
    padding-bottom: 50px;
  }

  .eyebrow-row {
    align-items: flex-start;
  }

  .eyebrow {
    max-width: 240px;
  }

  .hero-case {
    display: none;
  }

  .hero h1 {
    margin-bottom: 28px;
    font-size: clamp(37px, 12.5vw, 58px);
  }

  .hero-bottom {
    grid-template-columns: 1fr;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-facts li,
  .hero-facts li:first-child {
    min-height: 46px;
    padding: 8px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pressure-machine {
    height: 460px;
    border-radius: 20px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .machine-label {
    font-size: 6px;
  }

  .machine-label span:last-child {
    display: none;
  }

  .plunger {
    --plunger-scale: 0.79;
    top: 31px;
  }

  .pressure-gauge {
    top: 23px;
    right: 18px;
    width: 100px;
    height: 100px;
  }

  .gauge-label {
    top: 20px;
  }

  .gauge-needle {
    bottom: 44px;
    height: 34px;
  }

  .gauge-pin {
    bottom: 37px;
  }

  .machine-readout {
    right: 12px;
    bottom: 12px;
    width: 147px;
    min-height: 84px;
  }

  .machine-readout strong {
    font-size: 29px;
  }

  .machine-stamp {
    bottom: 24px;
    left: 14px;
    width: 82px;
    height: 82px;
    font-size: 6px;
  }

  .pipe-one {
    width: 150px;
  }

  .pipe-two {
    width: 165px;
  }

  .section-heading h2,
  .method-heading h2,
  .control-copy h2,
  .blueprint-copy h2,
  .kits-heading h2,
  .faq-heading h2,
  .final-copy h2 {
    font-size: clamp(31px, 10vw, 44px);
  }

  .symptom-card,
  .kit-card {
    display: block;
    min-height: 0;
  }

  .symptom-graphic,
  .kit-icon {
    height: 210px;
  }

  .method-step {
    grid-template-columns: 44px 1fr;
    gap: 20px;
  }

  .step-illustration {
    grid-column: 2;
    width: 210px;
  }

  .method-step > div:last-child {
    grid-column: 2;
  }

  .panel-topbar > span,
  .panel-footer span:nth-child(3) {
    display: none;
  }

  .route-row {
    padding-inline: 12px;
    grid-template-columns: 40px 1fr auto;
    gap: 9px;
  }

  .route-row strong {
    font-size: 11px;
  }

  .route-status {
    min-width: 53px;
    font-size: 7px;
  }

  .panel-footer {
    justify-content: flex-start;
    gap: 18px;
  }

  .blueprint-card {
    min-height: 430px;
    padding: 17px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .blueprint-scheme {
    height: 260px;
  }

  .scheme-node {
    width: 50px;
    height: 50px;
  }

  .line-a {
    width: 120px;
  }

  .line-b,
  .line-c {
    width: 105px;
  }

  .manifesto blockquote {
    padding: 62px 22px 45px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .quote-mark {
    top: 22px;
    left: 22px;
  }

  .manifesto blockquote p {
    font-size: clamp(22px, 7.8vw, 34px);
  }

  .faq-list summary {
    font-size: 13px;
  }

  .final-copy {
    padding: 72px 0;
  }

  .final-action {
    margin-inline: -12px;
    padding: 48px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .diagnostic {
    padding: 10px;
  }

  .diagnostic-dialog {
    max-height: calc(100vh - 20px);
    padding: 28px 18px 22px;
    border-radius: 18px;
    box-shadow: 6px 6px 0 var(--red);
  }

  .diagnostic-close {
    top: 10px;
    right: 10px;
  }

  .diagnostic-head {
    padding-right: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Private area and invitation desk */

.access-page,
.private-page {
  min-height: 100vh;
}

.access-page {
  display: grid;
  padding: 28px;
  background:
    linear-gradient(rgba(17, 24, 32, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 32, 0.055) 1px, transparent 1px),
    var(--paper);
  background-size: 32px 32px;
  place-items: center;
}

.access-layout {
  width: min(100%, 1080px);
}

.access-brand {
  display: inline-flex;
  margin-bottom: 24px;
  text-decoration: none;
}

.access-card {
  position: relative;
  display: grid;
  min-height: 620px;
  border: 3px solid var(--ink);
  border-radius: 28px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 12px 12px 0 var(--ink);
  grid-template-columns: minmax(320px, 0.86fr) 1.14fr;
}

.access-copy {
  display: flex;
  padding: clamp(38px, 6vw, 76px);
  flex-direction: column;
  justify-content: center;
}

.access-copy .section-kicker {
  margin-bottom: 18px;
}

.access-copy h1 {
  margin-bottom: 26px;
  font-family: var(--display);
  font-size: clamp(38px, 5.1vw, 67px);
  letter-spacing: -0.055em;
  line-height: 1.02;
  text-transform: uppercase;
}

.access-copy h1 em {
  color: var(--red);
  font-style: normal;
}

.access-copy > p {
  max-width: 550px;
  color: var(--muted);
}

.access-art {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-right: 3px solid var(--ink);
  background: var(--blue);
}

.access-art::before,
.access-art::after {
  position: absolute;
  border: 3px solid var(--ink);
  border-radius: 50%;
  content: "";
}

.access-art::before {
  width: 310px;
  height: 310px;
  top: -70px;
  left: -105px;
  background: var(--acid);
}

.access-art::after {
  width: 190px;
  height: 190px;
  right: -85px;
  bottom: -70px;
  background: var(--red);
}

.access-art i,
.access-art b {
  position: absolute;
  z-index: 2;
  display: block;
  left: 50%;
  border: 5px solid var(--ink);
  transform: translateX(-50%) rotate(-8deg);
}

.access-art i {
  top: 125px;
  width: 52px;
  height: 265px;
  border-radius: 25px 25px 10px 10px;
  background: #bd7e46;
  box-shadow: inset 10px 0 rgba(255, 255, 255, 0.2);
}

.access-art b {
  top: 360px;
  width: 238px;
  height: 130px;
  border-radius: 50% 50% 30% 30%;
  background: var(--acid);
  box-shadow: inset 0 -16px rgba(17, 24, 32, 0.12);
}

.access-key {
  position: absolute;
  z-index: 4;
  top: 36px;
  right: 28px;
  padding: 9px 12px;
  border: 2px solid var(--ink);
  background: var(--white);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  transform: rotate(4deg);
}

.access-form {
  display: grid;
  margin-top: 28px;
  gap: 12px;
}

.access-form label {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.access-form input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 2px solid var(--ink);
  border-radius: 11px;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: clamp(13px, 1.55vw, 17px);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.access-form input::placeholder {
  color: rgba(17, 24, 32, 0.36);
}

.access-form .button {
  width: 100%;
  margin-top: 4px;
}

.access-error {
  margin: 8px 0 -10px;
  padding: 11px 14px;
  border: 2px solid var(--red-dark);
  border-radius: 9px;
  color: var(--red-dark) !important;
  background: rgba(240, 68, 56, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.access-footnote {
  margin: 18px 0 0;
  font-size: 12px;
}

.invite-ticket {
  position: relative;
  display: flex;
  min-height: 470px;
  padding: 60px 48px;
  border-right: 3px solid var(--ink);
  overflow: hidden;
  background: var(--acid);
  flex-direction: column;
  justify-content: space-between;
}

.invite-ticket::before,
.invite-ticket::after {
  position: absolute;
  z-index: 2;
  right: -23px;
  width: 42px;
  height: 42px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  content: "";
}

.invite-ticket::before {
  top: -22px;
}

.invite-ticket::after {
  bottom: -22px;
}

.invite-ticket > span,
.invite-ticket > strong {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-weight: 800;
}

.invite-ticket > span {
  font-size: clamp(42px, 5vw, 66px);
  letter-spacing: -0.06em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.invite-ticket > strong {
  font-size: 18px;
}

.invite-ticket i {
  position: absolute;
  right: -80px;
  bottom: 70px;
  width: 275px;
  height: 275px;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--red);
}

.invite-ticket i::before,
.invite-ticket i::after {
  position: absolute;
  background: var(--ink);
  content: "";
}

.invite-ticket i::before {
  width: 170px;
  height: 5px;
  top: 128px;
  left: 36px;
  transform: rotate(45deg);
}

.invite-ticket i::after {
  width: 5px;
  height: 170px;
  top: 40px;
  left: 118px;
  transform: rotate(45deg);
}

.invite-meta {
  display: grid;
  margin: 22px 0 0;
  border-block: 1px solid var(--line);
  grid-template-columns: 1fr 1fr;
}

.invite-meta div {
  padding: 13px 0;
}

.invite-meta div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.invite-meta dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.invite-meta dd {
  margin: 3px 0 0;
  font-size: 12px;
  font-weight: 800;
}

.access-card-compact {
  min-height: 500px;
}

.access-symbol {
  display: grid;
  min-height: 360px;
  border-right: 3px solid var(--ink);
  color: var(--white);
  background: var(--red);
  font-family: var(--display);
  font-size: clamp(180px, 24vw, 310px);
  font-weight: 500;
  line-height: 1;
  place-items: center;
}

.access-card-compact .button {
  margin-top: 18px;
}

.private-page {
  color: var(--white);
  background: var(--ink);
}

.private-header {
  display: flex;
  width: min(100% - 56px, 1240px);
  min-height: 104px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.brand-private {
  color: var(--white);
  text-decoration: none;
}

.brand-private .brand-mark-handle,
.brand-private .brand-mark-handle::before,
.brand-private .brand-mark-cup {
  border-color: var(--white);
}

.private-logout {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  color: var(--white);
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.private-logout:hover {
  color: var(--ink);
  background: var(--acid);
}

.private-main {
  width: min(100% - 56px, 1240px);
  margin-inline: auto;
  padding: 84px 0 110px;
}

.private-hero {
  position: relative;
  max-width: 950px;
}

.private-hero h1 {
  margin-bottom: 30px;
  font-family: var(--display);
  font-size: clamp(58px, 9vw, 124px);
  letter-spacing: -0.075em;
  line-height: 0.92;
  text-transform: uppercase;
}

.private-hero h1 em {
  color: var(--acid);
  font-style: normal;
}

.private-lead {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.63);
  font-size: clamp(17px, 2vw, 22px);
}

.private-stamp {
  position: absolute;
  top: -30px;
  right: 0;
  padding: 20px 18px;
  border: 4px double var(--red);
  border-radius: 50%;
  color: var(--red);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-align: center;
  transform: rotate(10deg);
}

.private-grid {
  display: grid;
  margin-top: 88px;
  color: var(--ink);
  grid-template-columns: repeat(3, 1fr);
}

.private-card {
  position: relative;
  min-height: 470px;
  padding: 34px;
  border: 3px solid var(--ink);
  border-radius: 25px;
  overflow: hidden;
}

.private-card + .private-card {
  margin-left: -3px;
}

.private-card:nth-child(2) {
  transform: translateY(26px) rotate(1.4deg);
}

.private-card:nth-child(3) {
  transform: rotate(-1deg);
}

.private-card-acid {
  background: var(--acid);
}

.private-card-blue {
  color: var(--white);
  background: var(--blue);
}

.private-card-paper {
  background: var(--paper);
}

.private-card-number {
  position: absolute;
  top: 26px;
  right: 28px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
}

.private-card-icon,
.private-gauge,
.private-folder {
  position: relative;
  width: 140px;
  height: 170px;
  margin: 8px auto 30px;
}

.private-card-icon i {
  position: absolute;
  top: 0;
  left: 58px;
  width: 25px;
  height: 110px;
  border: 3px solid var(--ink);
  border-radius: 12px 12px 4px 4px;
  background: #bd7e46;
  transform: rotate(-8deg);
}

.private-card-icon span {
  position: absolute;
  right: 4px;
  bottom: 0;
  width: 132px;
  height: 76px;
  border: 4px solid var(--ink);
  border-radius: 50% 50% 25% 25%;
  background: var(--red);
}

.private-gauge {
  height: 150px;
  margin-top: 24px;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
}

.private-gauge::before {
  position: absolute;
  inset: 14px;
  border: 2px dashed var(--ink);
  border-radius: 50%;
  content: "";
}

.private-gauge i {
  position: absolute;
  width: 57px;
  height: 5px;
  top: 73px;
  left: 67px;
  background: var(--red);
  transform: rotate(-35deg);
  transform-origin: left center;
}

.private-folder {
  height: 132px;
  margin-top: 42px;
  border: 4px solid var(--ink);
  border-radius: 5px;
  background: var(--white);
  transform: rotate(-4deg);
}

.private-folder::before {
  position: absolute;
  top: -24px;
  left: -4px;
  width: 70px;
  height: 22px;
  border: 4px solid var(--ink);
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
  background: var(--white);
  content: "";
}

.private-folder span {
  position: absolute;
  top: 42px;
  left: 28px;
  padding: 5px 12px;
  border: 2px solid var(--red);
  color: var(--red);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  transform: rotate(5deg);
}

.private-card-kicker {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.private-card h2 {
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: clamp(23px, 2.4vw, 34px);
  letter-spacing: -0.05em;
  line-height: 1.05;
  text-transform: uppercase;
}

.private-card > p:not(.private-card-kicker) {
  min-height: 72px;
  margin-bottom: 22px;
  opacity: 0.72;
  font-size: 13px;
}

.private-state {
  display: inline-block;
  padding: 7px 10px;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.private-notice {
  display: grid;
  margin-top: 84px;
  padding: 28px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.18);
  grid-template-columns: 0.5fr 1fr;
  gap: 40px;
}

.private-notice strong {
  color: var(--acid);
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.private-notice p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 820px) {
  .access-card {
    grid-template-columns: 1fr;
  }

  .access-art,
  .invite-ticket,
  .access-symbol {
    min-height: 310px;
    border-right: 0;
    border-bottom: 3px solid var(--ink);
  }

  .access-art i {
    top: 40px;
    height: 170px;
  }

  .access-art b {
    top: 178px;
    width: 190px;
    height: 105px;
  }

  .invite-ticket {
    padding: 35px;
  }

  .invite-ticket > span {
    font-size: 42px;
    writing-mode: initial;
    transform: none;
  }

  .invite-ticket i {
    right: -50px;
    bottom: -60px;
    width: 220px;
    height: 220px;
  }

  .private-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .private-card + .private-card {
    margin-left: 0;
  }

  .private-card:nth-child(2),
  .private-card:nth-child(3) {
    transform: none;
  }

  .private-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .access-page {
    padding: 16px 14px 28px;
    place-items: start center;
  }

  .access-brand {
    margin: 8px 0 18px;
  }

  .access-card {
    border-radius: 18px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .access-art,
  .invite-ticket {
    min-height: 245px;
  }

  .access-art i {
    top: 25px;
    height: 140px;
  }

  .access-art b {
    top: 135px;
    width: 160px;
    height: 88px;
  }

  .access-copy {
    padding: 34px 23px 38px;
  }

  .access-copy h1 {
    font-size: 34px;
  }

  .invite-ticket > span {
    font-size: 34px;
  }

  .invite-meta {
    grid-template-columns: 1fr;
  }

  .invite-meta div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .private-header,
  .private-main {
    width: min(100% - 28px, 1240px);
  }

  .private-header {
    min-height: 82px;
  }

  .private-main {
    padding-top: 62px;
  }

  .private-hero h1 {
    font-size: clamp(45px, 15vw, 70px);
  }

  .private-stamp {
    position: static;
    display: inline-block;
    margin-bottom: 32px;
  }

  .private-grid {
    margin-top: 60px;
  }

  .private-card {
    padding: 28px;
  }

  .private-notice {
    margin-top: 58px;
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
