:root {
  --navy: #0E2A5C;
  --navy-deep: #06162F;
  --navy-mid: #143567;
  --orange: #F15A24;
  --orange-dark: #D14515;
  --orange-tint: #FEEFE8;
  --paper: #F3F1EC;
  --paper-2: #E9E6DF;
  --line: #DEDAD1;
  --body: #4E5766;
  --white: #ffffff;
  --cyan: #00A0DF;
  --magenta: #E5007D;
  --yellow: #FFE000;
  --key: #101820;
  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --text: "Instrument Sans", "Segoe UI", Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --wrap: 1220px;
  --pad: clamp(20px, 5vw, 48px);
  --r: 10px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--text);
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.025em;
  line-height: 1.08;
  font-weight: 700;
}

h1 { font-size: clamp(38px, 6.4vw, 72px); font-weight: 800; }
h2 { font-size: clamp(28px, 3.6vw, 44px); }
h3 { font-size: clamp(19px, 1.5vw, 22px); line-height: 1.25; }

p { margin: 0 0 16px; }

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

.cmyk {
  display: flex;
  height: 4px;
  width: 100%;
}
.cmyk span { flex: 1; }
.cmyk span:nth-child(1) { background: var(--cyan); }
.cmyk span:nth-child(2) { background: var(--magenta); }
.cmyk span:nth-child(3) { background: var(--yellow); }
.cmyk span:nth-child(4) { background: var(--key); }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--orange);
}
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: #FF9E77; }
.eyebrow--light::after { background: #FF9E77; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: var(--text);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn--primary { background: var(--orange); color: #fff; }
.btn--primary:hover { background: var(--orange-dark); }
.btn--ghost { border-color: rgba(255,255,255,.45); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn--outline { border-color: var(--navy); color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn:active { transform: translateY(1px); }

.link-arrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.link-arrow span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 11px;
  transition: transform .18s ease;
}
.link-arrow:hover span { transform: translateX(4px); }

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-bar {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 74px;
}
.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
  margin-right: auto;
}
.brand__name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.brand__tag {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 5px;
}
.nav { display: flex; gap: 22px; }
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  padding: 6px 0;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width .2s ease;
}
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.burger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  padding: 0;
}
.burger i {
  display: block;
  width: 18px; height: 2px;
  background: var(--navy);
  margin: 4px auto;
}

.hero {
  position: relative;
  background: linear-gradient(120deg, var(--navy-deep), var(--navy-mid) 62%, #1D4685);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(95deg, rgba(6,22,47,.94) 12%, rgba(6,22,47,.72) 48%, rgba(6,22,47,.34) 100%);
}
.hero__inner {
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(72px, 11vw, 128px);
  max-width: 700px;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 b { color: var(--orange); font-weight: 800; }
.hero__lead {
  font-size: clamp(16px, 1.3vw, 18px);
  color: rgba(255,255,255,.82);
  max-width: 520px;
  margin-bottom: 30px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__spec {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,.2);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hero__spec div {
  padding: 20px 0 26px;
  border-right: 1px solid rgba(255,255,255,.14);
  padding-right: 18px;
}
.hero__spec div:last-child { border-right: 0; }
.hero__spec dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 6px;
}
.hero__spec dd {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  letter-spacing: -0.01em;
}

.section { padding-block: clamp(64px, 8vw, 108px); }
.section--paper { background: var(--paper); }
.section--navy { background: var(--navy); color: rgba(255,255,255,.78); }
.section--navy h2, .section--navy h3 { color: #fff; }
.section__head { max-width: 620px; margin-bottom: 44px; }
.section__head--center { margin-inline: auto; text-align: center; }

.products { display: grid; grid-template-columns: 340px 1fr; gap: 48px; align-items: center; }
.products__lead p { max-width: 380px; }
.rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.card-product {
  flex: 0 0 260px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: var(--r);
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid transparent;
  transition: border-color .2s ease, transform .2s ease;
}
.card-product:hover { border-color: var(--orange); transform: translateY(-4px); }
.card-product__art {
  height: 132px;
  border-radius: 6px;
  background: var(--paper-2);
  display: grid;
  place-items: center;
}
.card-product__art svg { width: 92px; height: 92px; }
.card-product h3 { font-size: 17px; }
.card-product p { font-size: 14px; margin: 6px 0 0; }
.card-product__spec {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--orange);
  text-transform: uppercase;
  margin-top: auto;
}
.rail-nav { display: flex; gap: 10px; margin-top: 26px; }
.rail-nav button {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  font-size: 15px;
  display: grid;
  place-items: center;
  transition: background .18s ease, color .18s ease;
}
.rail-nav button:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 84px); align-items: center; }
.ticket {
  background: var(--navy);
  border-radius: var(--r);
  padding: 30px;
  color: #fff;
  position: relative;
  box-shadow: 0 30px 60px -30px rgba(6,22,47,.55);
}
.ticket__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px dashed rgba(255,255,255,.3);
  padding-bottom: 14px;
  margin-bottom: 8px;
}
.ticket__top strong {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.02em;
}
.ticket__top em {
  font-family: var(--mono);
  font-style: normal;
  font-size: 11px;
  color: #FF9E77;
  letter-spacing: 0.12em;
}
.ticket dl { margin: 0; font-family: var(--mono); font-size: 12.5px; }
.ticket dl > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.ticket dt { color: rgba(255,255,255,.55); letter-spacing: 0.08em; text-transform: uppercase; font-size: 11px; }
.ticket dd { margin: 0; color: #fff; text-align: right; }
.ticket__bar { display: flex; height: 26px; margin-top: 22px; border-radius: 3px; overflow: hidden; }
.ticket__bar i { flex: 1; }
.ticket__bar i:nth-child(1) { background: var(--cyan); }
.ticket__bar i:nth-child(2) { background: var(--magenta); }
.ticket__bar i:nth-child(3) { background: var(--yellow); }
.ticket__bar i:nth-child(4) { background: var(--key); }
.ticket__bar i:nth-child(5) { background: var(--orange); }
.stat { display: flex; align-items: center; gap: 18px; margin: 26px 0 22px; }
.stat b {
  font-family: var(--display);
  font-size: 54px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat span {
  font-family: var(--display);
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.25;
  max-width: 140px;
}

.industries { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.card-industry {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r);
  padding: 26px 22px;
  transition: background .2s ease, border-color .2s ease;
}
.card-industry:hover { background: rgba(255,255,255,.12); border-color: var(--orange); }
.card-industry svg { width: 34px; height: 34px; color: #FF9E77; margin-bottom: 18px; }
.card-industry h3 { font-size: 17px; margin-bottom: 6px; }
.card-industry p { font-size: 13.5px; margin: 0; color: rgba(255,255,255,.62); }

.green { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 26px; }
.tabs button {
  font-family: var(--text);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 18px;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.tabs button[aria-selected="true"] { background: var(--navy); color: #fff; border-color: var(--navy); }
.tabs button:hover[aria-selected="false"] { border-color: var(--navy); }
.tab-panel { margin-top: 22px; max-width: 480px; }
.tab-panel[hidden] { display: none; }
.fact {
  background: var(--orange);
  color: #fff;
  border-radius: var(--r);
  padding: 34px;
}
.fact b {
  font-family: var(--display);
  font-size: 60px;
  font-weight: 800;
  letter-spacing: -0.04em;
  display: block;
  line-height: 1;
}
.fact span {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: block;
  margin: 14px 0 12px;
  color: rgba(255,255,255,.85);
}
.fact p { margin: 0; font-size: 14.5px; color: rgba(255,255,255,.92); }

.presses { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.press {
  border-radius: var(--r);
  padding: 30px 28px;
  color: #fff;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.press--a { background: linear-gradient(160deg, #143567, #06162F); }
.press--b { background: linear-gradient(160deg, #1D4685, #0E2A5C); }
.press--c { background: linear-gradient(160deg, #C2410C, #7A2508); }
.press::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.07) 0 1px, transparent 1px 22px);
}
.press > * { position: relative; }
.press h3 { font-size: 20px; margin-bottom: 10px; }
.press ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,.75);
}
.press li { padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.press li:last-child { border-bottom: 0; }

.why { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.card-why {
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 34px 28px;
  text-align: center;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.card-why:hover { border-color: var(--orange); box-shadow: 0 24px 40px -32px rgba(14,42,92,.55); }
.card-why .ring {
  width: 78px; height: 78px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  margin: -60px auto 20px;
  background: #fff;
  color: var(--navy);
  transition: border-color .2s ease, color .2s ease;
}
.card-why:hover .ring { border-color: var(--orange); color: var(--orange); }
.card-why .ring svg { width: 36px; height: 36px; }
.card-why h3 { font-size: 16px; margin-bottom: 6px; }
.card-why p { font-size: 13.5px; margin: 0; }
.why-grid-space { padding-top: 60px; }

.cta {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 2px, transparent 2px 16px);
}
.cta__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-block: 54px;
  flex-wrap: wrap;
}
.cta h2 { font-size: clamp(24px, 2.6vw, 34px); }

.finishes { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.swatch {
  border-radius: var(--r);
  aspect-ratio: 4 / 3;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.swatch span {
  position: relative;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: #fff;
  color: var(--navy);
  padding: 7px 12px;
  border-radius: 3px;
}
.swatch--foil { background: linear-gradient(115deg, #B08535, #F3DFA6 28%, #8A6420 52%, #F7EBC6 72%, #9C742A); }
.swatch--spotuv { background: var(--navy); }
.swatch--spotuv::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 32% 28%, rgba(255,255,255,.42), transparent 46%), repeating-linear-gradient(45deg, rgba(255,255,255,.06) 0 6px, transparent 6px 18px);
}
.swatch--matt { background: linear-gradient(150deg, #6E7683, #3E4550); }
.swatch--soft { background: linear-gradient(150deg, #E4DCCF, #C6B9A5); }
.swatch--emboss { background: var(--paper-2); }
.swatch--emboss::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 40% 40%, rgba(255,255,255,.9), transparent 45%), radial-gradient(ellipse at 62% 62%, rgba(14,42,92,.16), transparent 50%);
}
.swatch--holo { background: linear-gradient(115deg, #7CE3E1, #C7A2F5 30%, #F7A8C4 55%, #A9E5A0 80%, #8FD3F4); }
.swatch--cold { background: linear-gradient(115deg, #9AA7B4, #E8EEF3 35%, #7C8A99 62%, #DCE4EA); }
.swatch--tactile { background: var(--orange); }
.swatch--tactile::after {
  content: "";
  position: absolute; inset: 0;
  background: repeating-radial-gradient(circle at 20% 20%, rgba(255,255,255,.22) 0 2px, transparent 2px 9px);
}

.contact { background: var(--navy-deep); color: rgba(255,255,255,.75); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 6vw, 72px); align-items: start; }
.contact__list { list-style: none; margin: 28px 0 0; padding: 0; }
.contact__list li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  align-items: flex-start;
}
.contact__list svg { width: 18px; height: 18px; color: var(--orange); flex: none; margin-top: 3px; }
.contact__list b {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  font-weight: 400;
  margin-bottom: 3px;
}
.contact__list a { color: #fff; text-decoration: none; }
.contact__list a:hover { color: #FF9E77; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form label { display: flex; flex-direction: column; gap: 6px; font-size: 12px; }
.form label span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.form input, .form textarea {
  font-family: var(--text);
  font-size: 15px;
  padding: 13px 14px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
  color: #fff;
}
.form input::placeholder, .form textarea::placeholder { color: rgba(255,255,255,.35); }
.form input:focus, .form textarea:focus { border-color: var(--orange); background: rgba(255,255,255,.09); }
.form .full { grid-column: 1 / -1; }
.form textarea { resize: vertical; min-height: 118px; }
.form button { grid-column: 1 / -1; width: 100%; }
.form-note { grid-column: 1 / -1; font-size: 12px; color: rgba(255,255,255,.45); margin: 0; }

.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.6); padding-top: 64px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 48px;
}
.site-footer h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 18px;
  letter-spacing: 0;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; font-size: 14px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--orange); }
.footer-about p { font-size: 14px; max-width: 300px; }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-block: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  justify-content: space-between;
  font-size: 12.5px;
}
.footer-legal nav { display: flex; gap: 22px; flex-wrap: wrap; }

.doc-head { background: var(--navy); color: rgba(255,255,255,.75); padding-block: clamp(48px, 7vw, 84px); }
.doc-head h1 { color: #fff; font-size: clamp(32px, 4.4vw, 52px); margin-bottom: 12px; }
.doc-head p { max-width: 620px; margin: 0; }
.doc { padding-block: clamp(48px, 7vw, 88px); }
.doc__body { max-width: 780px; }
.doc__body h2 {
  font-size: clamp(21px, 2vw, 26px);
  margin: 46px 0 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.doc__body h2:first-child { margin-top: 0; border-top: 0; padding-top: 0; }
.doc__body h3 { font-size: 17px; margin: 26px 0 10px; }
.doc__body ul, .doc__body ol { padding-left: 20px; margin: 0 0 16px; }
.doc__body li { margin-bottom: 8px; }
.doc__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 22px;
  font-size: 14.5px;
}
.doc__body th, .doc__body td {
  text-align: left;
  padding: 11px 14px;
  border: 1px solid var(--line);
  vertical-align: top;
}
.doc__body th { background: var(--paper); color: var(--navy); font-family: var(--display); font-size: 13px; }
.doc__body strong { color: var(--navy); }
.doc__meta {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 16px;
}
.callout {
  background: var(--orange-tint);
  border-left: 3px solid var(--orange);
  padding: 18px 22px;
  border-radius: 0 6px 6px 0;
  margin: 0 0 22px;
  font-size: 14.5px;
}
.callout p:last-child { margin-bottom: 0; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  .products { grid-template-columns: 1fr; }
  .about, .green, .contact__grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid-space { padding-top: 0; }
  .card-why .ring { margin-top: 0; }
}

@media (max-width: 860px) {
  .nav {
    position: absolute;
    top: 74px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 8px var(--pad) 20px;
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .burger { display: block; }
  .header-cta { display: none; }
  .hero__spec { grid-template-columns: 1fr 1fr; }
  .hero__spec div:nth-child(2n) { border-right: 0; }
  .form { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stat b { font-size: 44px; }
  .cta__inner { padding-block: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}
