@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(fonts/geist-latin.woff2) format('woff2');
}

:root {
  --ink: #061725;
  --ink-deep: #03101a;
  --orange: #ff5a00;
  --orange-soft: #ff7a33;
  --blue: #0677a8;
  --sky: #47bce8;
  --cream: #f1ede5;
  --paper: #fbfaf7;
  --white: #ffffff;
  --muted: #65717a;
  --line: rgba(6, 23, 37, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Geist', Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

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

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

.topbar {
  align-items: center;
  background: rgba(3, 16, 26, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 78px;
  left: 0;
  padding: 0 clamp(24px, 5vw, 76px);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand { align-items: center; display: inline-flex; justify-self: start; }
.brand-logo { display: block; height: auto; width: 106px; }
.nav-links { display: flex; font-size: 14px; font-weight: 700; gap: 34px; }
.nav-links a { opacity: .78; transition: opacity .2s ease; }
.nav-links a:hover, .nav-links a:focus-visible { opacity: 1; }
.nav-cta { align-items: center; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: 999px; display: inline-flex; font-size: 13px; font-weight: 700; gap: 12px; justify-self: end; padding: 9px 10px 9px 18px; }
.arrow-icon { align-items: center; background: var(--orange); border-radius: 50%; display: inline-flex; height: 30px; justify-content: center; width: 30px; }

.hero {
  background:
    radial-gradient(circle at 80% 22%, rgba(6,119,168,.36), transparent 32%),
    radial-gradient(circle at 56% 110%, rgba(255,90,0,.18), transparent 35%),
    var(--ink-deep);
  color: var(--white);
  display: grid;
  gap: clamp(42px, 6vw, 100px);
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .72fr);
  min-height: 820px;
  overflow: hidden;
  padding: 158px clamp(24px, 7vw, 110px) 86px;
  position: relative;
}

.hero::after {
  background: var(--orange);
  bottom: 0;
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  width: 36%;
}

.hero-grid {
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 58px 58px;
  inset: 0;
  mask-image: linear-gradient(to right, black, transparent 88%);
  pointer-events: none;
  position: absolute;
}

.hero-copy, .route-card { position: relative; z-index: 2; }
.hero-copy { align-self: center; }
.eyebrow { align-items: center; display: flex; font-size: 12px; font-weight: 800; gap: 10px; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow span { background: var(--orange); height: 2px; width: 30px; }
.eyebrow.light { color: rgba(255,255,255,.72); }
.hero h1 { font-size: clamp(54px, 6.25vw, 92px); letter-spacing: -.065em; line-height: .94; margin: 28px 0; max-width: 860px; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-copy > p { color: rgba(255,255,255,.67); font-size: clamp(17px, 1.5vw, 20px); line-height: 1.65; margin: 0; max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { align-items: center; border-radius: 999px; display: inline-flex; font-size: 14px; font-weight: 800; gap: 13px; justify-content: center; padding: 10px 11px 10px 22px; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--white); color: var(--ink); }
.button.primary .arrow-icon { color: var(--white); }
.button.ghost { border: 1px solid rgba(255,255,255,.26); color: var(--white); padding: 17px 22px; }
.hero-stats { border-top: 1px solid rgba(255,255,255,.14); display: flex; gap: clamp(25px, 5vw, 72px); margin-top: 54px; max-width: 680px; padding-top: 25px; }
.hero-stats div { align-items: center; display: flex; gap: 10px; }
.hero-stats strong { color: var(--orange); font-size: 32px; letter-spacing: -.05em; }
.hero-stats span { color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.25; max-width: 80px; }

.route-card {
  align-self: center;
  background: rgba(255,255,255,.96);
  border-radius: 30px;
  box-shadow: 0 32px 90px rgba(0,0,0,.28);
  color: var(--ink);
  min-height: 530px;
  padding: 28px;
  transform: rotate(1.4deg);
}
.route-card::before { background: var(--orange); border-radius: 24px; content: ""; height: 100%; left: -12px; position: absolute; top: 12px; width: 100%; z-index: -1; }
.route-card-head { align-items: center; border-bottom: 1px solid var(--line); display: flex; font-size: 12px; font-weight: 800; justify-content: space-between; letter-spacing: .08em; padding-bottom: 20px; text-transform: uppercase; }
.live-dot { align-items: center; color: var(--muted); display: flex; font-size: 9px; gap: 7px; }
.live-dot::before { background: #27b36a; border-radius: 50%; box-shadow: 0 0 0 4px rgba(39,179,106,.12); content: ""; height: 7px; width: 7px; }
.route-card ol { display: grid; gap: 0; list-style: none; margin: 20px 0 0; padding: 0; }
.route-card li { align-items: center; border-radius: 16px; display: grid; gap: 15px; grid-template-columns: 40px 1fr auto; min-height: 74px; padding: 10px 14px; position: relative; }
.route-card li:not(:last-child)::after { background: #dfe3e4; bottom: -4px; content: ""; height: 14px; left: 34px; position: absolute; width: 2px; }
.route-card li.active { background: var(--cream); }
.route-number { align-items: center; background: var(--ink); border-radius: 50%; color: var(--white); display: flex; font-size: 11px; font-weight: 800; height: 36px; justify-content: center; width: 36px; }
.route-card li.active .route-number { background: var(--orange); }
.route-card strong { display: block; font-size: 15px; }
.route-card small { color: var(--muted); display: block; font-size: 11px; margin-top: 4px; }
.route-check { align-items: center; background: var(--ink); border-radius: 50%; color: var(--white); display: flex; font-size: 10px; height: 22px; justify-content: center; width: 22px; }
.route-arrow { color: var(--orange); font-size: 22px; }
.route-footer { align-items: center; background: var(--ink); border-radius: 17px; color: var(--white); display: flex; gap: 13px; margin-top: 16px; padding: 15px; }
.buddy-avatar { align-items: center; background: var(--blue); border: 2px solid var(--sky); border-radius: 50%; display: flex; flex: 0 0 auto; font-size: 13px; font-weight: 800; height: 42px; justify-content: center; width: 42px; }
.route-footer p { color: rgba(255,255,255,.62); font-size: 10px; line-height: 1.5; margin: 0; }
.route-footer strong { color: var(--white); font-size: 11px; }

.intro { padding: 110px clamp(24px, 7vw, 110px) 120px; }
.section-kicker { color: var(--orange); font-size: 11px; font-weight: 900; letter-spacing: .18em; margin-bottom: 24px; text-transform: uppercase; }
.section-kicker.inverse { color: var(--sky); }
.intro-heading, .responsibility-head { align-items: end; display: grid; gap: 60px; grid-template-columns: 1.2fr .8fr; }
.intro h2, .responsibilities h2 { font-size: clamp(42px, 5vw, 70px); letter-spacing: -.06em; line-height: .98; margin: 0; }
.intro h2 span, .responsibilities h2 span { color: var(--blue); }
.intro-heading > p, .responsibility-head > p { color: var(--muted); font-size: 16px; line-height: 1.7; margin: 0 0 6px; max-width: 520px; }
.support-grid { border-top: 1px solid var(--line); display: grid; gap: 0; grid-template-columns: repeat(3, 1fr); margin-top: 70px; }
.support-grid article { border-right: 1px solid var(--line); min-height: 220px; padding: 30px 34px 20px 0; }
.support-grid article:not(:first-child) { padding-left: 34px; }
.support-grid article:last-child { border-right: 0; }
.support-index { color: var(--orange); display: block; font-size: 11px; font-weight: 900; margin-bottom: 48px; }
.support-grid h3 { font-size: 20px; letter-spacing: -.03em; margin: 0 0 12px; }
.support-grid p { color: var(--muted); font-size: 13px; line-height: 1.65; margin: 0; max-width: 300px; }

.journey { background: var(--ink); color: var(--white); padding: 110px clamp(24px, 5.5vw, 86px) 100px; }
.journey-head { align-items: end; display: flex; justify-content: space-between; }
.journey-head h2 { font-size: clamp(48px, 5.5vw, 76px); letter-spacing: -.06em; line-height: .95; margin: 0; }
.journey-head > p { color: rgba(255,255,255,.52); font-size: 14px; line-height: 1.7; margin: 0 0 5px; }
.phase-nav { border-bottom: 1px solid rgba(255,255,255,.14); display: grid; grid-template-columns: repeat(4, 1fr); margin: 60px 0 36px; position: sticky; top: 0; z-index: 10; }
.phase-nav a { align-items: center; background: var(--ink); border-right: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.58); display: flex; font-size: 12px; font-weight: 700; gap: 10px; min-height: 64px; padding: 12px 18px; transition: color .2s ease, background .2s ease; }
.phase-nav a:hover, .phase-nav a:focus-visible { background: #0b2538; color: var(--white); }
.phase-nav a span { color: var(--orange); font-size: 10px; }
.conveyor { background: #091d2c; border: 1px solid rgba(255,255,255,.13); border-radius: 24px; margin: 0 0 34px; overflow: hidden; position: relative; }
.conveyor-status { align-items: center; border-bottom: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; padding: 18px 22px; }
.conveyor-status span { align-items: center; color: var(--sky); display: flex; font-size: 9px; font-weight: 900; gap: 9px; letter-spacing: .14em; text-transform: uppercase; }
.conveyor-status span i { animation: pulse 1.8s ease-in-out infinite; background: #38dc91; border-radius: 50%; box-shadow: 0 0 0 5px rgba(56,220,145,.1); display: inline-block; height: 7px; width: 7px; }
.conveyor-status strong { color: rgba(255,255,255,.55); font-size: 10px; font-weight: 600; }
.conveyor-window { overflow: hidden; padding: 20px 0 13px; }
.conveyor-track { animation: conveyorMove 24s linear infinite; display: flex; gap: 14px; padding-left: 14px; width: max-content; will-change: transform; }
.conveyor:hover .conveyor-track { animation-play-state: paused; }
.process-crate { align-items: center; background: var(--paper); border: 2px solid rgba(255,255,255,.95); border-radius: 15px; box-shadow: 0 8px 20px rgba(0,0,0,.25); color: var(--ink); display: grid; flex: 0 0 260px; gap: 12px; grid-template-columns: 38px 1fr auto; min-height: 76px; padding: 12px 15px; }
.process-crate > span { align-items: center; background: var(--orange); border-radius: 11px; color: var(--white); display: flex; font-size: 10px; font-weight: 900; height: 38px; justify-content: center; width: 38px; }
.process-crate strong { display: block; font-size: 13px; letter-spacing: -.02em; }
.process-crate small { color: var(--muted); display: block; font-size: 8px; margin-top: 5px; text-transform: uppercase; }
.process-crate b { color: var(--orange); font-size: 18px; }
.conveyor-base { background-color: #020a10; background-image: radial-gradient(circle, #466273 0 5px, #122b3a 6px 9px, transparent 10px); background-position: 0 center; background-repeat: repeat-x; background-size: 36px 36px; border-top: 6px solid var(--orange); height: 46px; position: relative; }
.conveyor-base::after { background: linear-gradient(90deg, var(--orange), var(--sky), var(--orange)); bottom: 0; content: ""; height: 3px; left: 0; position: absolute; right: 0; }
@keyframes conveyorMove { to { transform: translateX(calc(-50% - 7px)); } }
@keyframes pulse { 50% { opacity: .35; transform: scale(.72); } }

.phase-list { display: grid; gap: 0; }
.phase-stage { display: grid; }
.phase { border-radius: 26px; color: var(--ink); display: grid; grid-template-columns: 190px 1fr; min-height: 460px; overflow: hidden; scroll-margin-top: 82px; }
.phase-orange { background: var(--orange); }
.phase-blue { background: var(--blue); color: var(--white); }
.phase-cream { background: var(--cream); }
.phase-aside { border-right: 1px solid currentColor; display: flex; flex-direction: column; justify-content: space-between; opacity: .95; padding: 34px; }
.phase-number { font-size: 72px; font-weight: 800; letter-spacing: -.08em; }
.phase-duration { font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; writing-mode: vertical-rl; }
.phase-content { padding: 42px; }
.phase-title-row { align-items: start; display: grid; gap: 50px; grid-template-columns: 1fr 1fr; }
.micro-label { font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.phase-title-row h3 { font-size: clamp(38px, 4vw, 58px); letter-spacing: -.055em; line-height: 1; margin: 10px 0 0; }
.phase-title-row > p { font-size: 13px; line-height: 1.65; margin: 4px 0 0; max-width: 460px; }
.phase-title-row > p strong { display: block; font-size: 9px; letter-spacing: .14em; margin-bottom: 8px; text-transform: uppercase; }
.step-grid { display: grid; gap: 12px; grid-template-columns: repeat(3, 1fr); margin-top: 56px; }
.step-card { background: rgba(255,255,255,.9); border-radius: 16px; color: var(--ink); min-height: 205px; padding: 20px; }
.step-card-top { align-items: center; display: flex; justify-content: space-between; }
.step-index { color: var(--orange); font-size: 10px; font-weight: 900; }
.step-tag { background: var(--cream); border-radius: 999px; font-size: 9px; font-weight: 800; padding: 6px 9px; }
.step-card h4 { font-size: 17px; letter-spacing: -.025em; margin: 34px 0 10px; }
.step-card p { color: var(--muted); font-size: 11px; line-height: 1.65; margin: 0; }
.day-groups { display: grid; gap: 14px; margin-top: 45px; }
.day-group { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 18px; display: grid; gap: 25px; grid-template-columns: 105px 1fr; padding: 24px; }
.period-label { align-items: start; display: flex; }
.period-label span { background: var(--orange); border-radius: 999px; color: var(--white); font-size: 10px; font-weight: 900; padding: 7px 11px; text-transform: uppercase; }
.day-group h4 { font-size: 18px; margin: 0 0 12px; }
.day-group ul { display: grid; gap: 8px; list-style: none; margin: 0; padding: 0; }
.day-group li { color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.5; padding-left: 17px; position: relative; }
.day-group li::before { color: var(--sky); content: "✓"; left: 0; position: absolute; }
.milestone-grid { display: grid; gap: 10px; grid-template-columns: repeat(2, 1fr); margin-top: 45px; }
.milestone { align-items: center; background: rgba(255,255,255,.88); border-radius: 18px; display: grid; gap: 17px; grid-template-columns: 68px 1fr; padding: 18px; }
.day-badge { align-items: center; background: var(--ink); border-radius: 14px; color: var(--white); display: flex; flex-direction: column; height: 68px; justify-content: center; }
.day-badge strong { font-size: 25px; line-height: 1; }
.day-badge span { font-size: 8px; letter-spacing: .1em; margin-top: 4px; text-transform: uppercase; }
.milestone h4 { font-size: 15px; margin: 0 0 7px; }
.milestone p { color: var(--muted); font-size: 10px; line-height: 1.55; margin: 0; }

.journey-connector { align-items: center; display: grid; gap: 22px; grid-template-columns: 220px minmax(180px, 1fr) 64px; min-height: 132px; padding: 20px 42px; position: relative; }
.journey-connector::before { background: linear-gradient(90deg, transparent, rgba(71,188,232,.16), transparent); content: ""; inset: 12px 0; pointer-events: none; position: absolute; }
.level-complete { position: relative; z-index: 2; }
.level-complete span { color: #38dc91; display: block; font-size: 9px; font-weight: 900; letter-spacing: .1em; margin-bottom: 7px; text-transform: uppercase; }
.level-complete strong { color: var(--white); font-size: 13px; }
.connector-belt { background: #0b2538; border-bottom: 3px solid rgba(71,188,232,.25); border-radius: 999px; border-top: 3px solid rgba(255,90,0,.7); height: 46px; overflow: hidden; position: relative; z-index: 2; }
.connector-belt::after { background-image: radial-gradient(circle, rgba(255,255,255,.18) 0 4px, transparent 5px); background-size: 28px 28px; content: ""; inset: 6px 0; opacity: .65; position: absolute; }
.connector-flow { align-items: center; animation: connectorFlow 2.6s linear infinite; color: var(--orange); display: flex; font-size: 35px; font-weight: 300; height: 100%; justify-content: space-around; position: relative; width: 200%; z-index: 2; }
.checkpoint-coin { align-items: center; animation: coinFloat 2.4s ease-in-out infinite; background: var(--orange); border: 4px solid #ff9a62; border-radius: 50%; box-shadow: 0 0 0 7px rgba(255,90,0,.12); color: var(--white); display: flex; font-size: 17px; font-weight: 900; height: 58px; justify-content: center; position: relative; width: 58px; z-index: 2; }
@keyframes connectorFlow { to { transform: translateX(-50%); } }
@keyframes coinFloat { 50% { transform: translateY(-7px) rotate(5deg); } }

.responsibilities { padding: 115px clamp(24px, 7vw, 110px); }
.role-legend { display: flex; flex-wrap: wrap; gap: 12px; margin: 54px 0 22px; }
.role-legend span { align-items: center; background: var(--white); border: 1px solid var(--line); border-radius: 999px; display: flex; font-size: 10px; font-weight: 800; gap: 8px; padding: 9px 13px; }
.dot { border-radius: 50%; display: inline-block; height: 8px; width: 8px; }
.dot.orange { background: var(--orange); }.dot.blue { background: var(--blue); }.dot.navy { background: var(--ink); }.dot.cream { background: #d3c8b4; }
.table-wrap { background: var(--white); border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 18px 55px rgba(7, 25, 38, .06); overflow: auto; }
table { border-collapse: collapse; min-width: 880px; width: 100%; }
th { background: var(--ink); color: rgba(255,255,255,.75); font-size: 10px; letter-spacing: .08em; padding: 19px 18px; text-align: left; text-transform: uppercase; }
th:first-child { border-radius: 20px 0 0 0; } th:last-child { border-radius: 0 20px 0 0; }
td { border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; line-height: 1.5; padding: 16px 18px; vertical-align: middle; }
tr:last-child td { border-bottom: 0; }
td:nth-child(2) { color: var(--ink); font-weight: 600; width: 34%; }
td strong { color: var(--ink); }
.phase-pill { background: var(--cream); border-radius: 999px; color: var(--ink); display: inline-block; font-size: 9px; font-weight: 900; padding: 6px 9px; white-space: nowrap; }

.closing { align-items: center; background: var(--blue); color: var(--white); display: grid; gap: 38px; grid-template-columns: 180px 1fr auto; min-height: 340px; overflow: hidden; padding: 65px clamp(24px, 7vw, 110px); position: relative; }
.closing::after { border: 90px solid rgba(255,255,255,.06); border-radius: 50%; content: ""; height: 420px; position: absolute; right: -160px; top: -180px; width: 420px; }
.closing-mark { align-items: center; background: var(--orange); border-radius: 28px; display: flex; height: 96px; justify-content: center; padding: 22px; position: relative; transform: rotate(-5deg); width: 168px; z-index: 1; }
.closing-mark img { display: block; height: auto; width: 100%; }
.closing span { font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.closing h2 { font-size: clamp(34px, 4vw, 56px); letter-spacing: -.05em; line-height: 1; margin: 13px 0 0; }
.closing .button { position: relative; z-index: 2; }

footer { align-items: center; background: var(--ink-deep); color: rgba(255,255,255,.55); display: grid; font-size: 10px; grid-template-columns: 1fr auto 1fr; min-height: 120px; padding: 30px clamp(24px, 5vw, 76px); }
.footer-brand { color: var(--white); }
footer p { margin: 0; text-align: center; }
footer > span { justify-self: end; }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; padding-top: 140px; }
  .hero-copy { max-width: 800px; }
  .route-card { justify-self: center; max-width: 590px; transform: none; width: 100%; }
  .phase { grid-template-columns: 135px 1fr; }
  .phase-content { padding: 34px; }
  .step-grid { grid-template-columns: 1fr; }
  .step-card { min-height: auto; }
  .step-card h4 { margin-top: 20px; }
}

@media (max-width: 760px) {
  .topbar { grid-template-columns: 1fr auto; height: 68px; padding: 0 20px; }
  .nav-links { display: none; }
  .brand-logo { width: 94px; }
  .nav-cta { font-size: 0; padding: 6px; }
  .hero { min-height: auto; padding: 120px 20px 76px; }
  .hero h1 { font-size: clamp(49px, 15vw, 70px); }
  .hero-copy > p { font-size: 16px; }
  .hero-stats { gap: 20px; justify-content: space-between; }
  .hero-stats div { align-items: start; flex-direction: column; gap: 3px; }
  .hero-stats strong { font-size: 28px; }
  .route-card { padding: 20px; }
  .route-card::before { left: -7px; top: 8px; }
  .intro { padding: 80px 20px; }
  .intro-heading, .responsibility-head { align-items: start; gap: 24px; grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; margin-top: 48px; }
  .support-grid article, .support-grid article:not(:first-child) { border-bottom: 1px solid var(--line); border-right: 0; min-height: auto; padding: 26px 0; }
  .support-grid article:last-child { border-bottom: 0; }
  .support-index { margin-bottom: 20px; }
  .journey { padding: 80px 14px 70px; }
  .journey-head { align-items: start; flex-direction: column; gap: 24px; padding: 0 6px; }
  .phase-nav { grid-template-columns: repeat(4, minmax(90px, 1fr)); margin-top: 42px; overflow-x: auto; }
  .phase-nav a { flex-direction: column; gap: 5px; justify-content: center; padding: 10px 8px; text-align: center; }
  .conveyor-status { align-items: start; flex-direction: column; gap: 8px; }
  .process-crate { flex-basis: 225px; }
  .phase { grid-template-columns: 1fr; }
  .phase-aside { align-items: center; border-bottom: 1px solid currentColor; border-right: 0; flex-direction: row; padding: 20px; }
  .phase-number { font-size: 42px; }
  .phase-duration { writing-mode: initial; }
  .phase-content { padding: 26px 20px; }
  .phase-title-row { gap: 22px; grid-template-columns: 1fr; }
  .phase-title-row h3 { font-size: 42px; }
  .step-grid { margin-top: 36px; }
  .day-group { grid-template-columns: 1fr; }
  .milestone-grid { grid-template-columns: 1fr; }
  .journey-connector { gap: 14px; grid-template-columns: 1fr 48px; min-height: 152px; padding: 24px 18px; }
  .level-complete { grid-column: 1 / -1; }
  .connector-belt { height: 38px; }
  .checkpoint-coin { height: 46px; width: 46px; }
  .closing { grid-template-columns: 122px 1fr; min-height: 360px; padding: 55px 20px; }
  .closing-mark { border-radius: 20px; height: 68px; padding: 15px; width: 118px; }
  .closing .button { grid-column: 1 / -1; justify-self: start; }
  footer { gap: 16px; grid-template-columns: 1fr; padding: 40px 20px; text-align: center; }
  footer .brand, footer > span { justify-self: center; }
}

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