*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #efe6d0;
  --cream-dark: #e2d6bc;
  --navy: #1c2f5e;
  --navy-deep: #0f1a33;
  --red: #c93b30;
  --red-bright: #e84a3f;
  --ink: #1a1a1a;
  --muted: #2d4170;
  --border: 3px;
  --font-display: "Zen Maru Gothic", "Hiragino Sans", sans-serif;
  --font-sign: "Dela Gothic One", "Zen Maru Gothic", sans-serif;
  --font-pixel: "DotGothic16", monospace;
  --shadow: 4px 4px 0 var(--navy-deep);
  --wrap: 1080px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-display);
  background: var(--cream);
  color: var(--navy);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; }

/* page-wide grain */
.grain {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

.halftone {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: radial-gradient(circle, var(--navy) 1px, transparent 1px);
  background-size: 5px 5px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 16px;
}

/* ---- shared bits ---- */

.box {
  background: var(--cream);
  border: var(--border) solid var(--navy);
  box-shadow: var(--shadow);
}

.box--pop {
  border-width: 4px;
  box-shadow: 6px 6px 0 var(--navy-deep);
}

.box__title {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 12px 14px;
  border-bottom: var(--border) solid var(--navy);
  background: var(--red);
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}

.box__title-jp {
  font-family: var(--font-pixel);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
}

.box__live {
  margin-left: auto;
  width: 10px;
  height: 10px;
  background: var(--muted);
  flex-shrink: 0;
}

.box__live[data-state="live"] { background: #6fcf97; animation: blink 1.2s step-end infinite; }
.box__live[data-state="stale"] { background: #f0b450; }
.box__live[data-state="stopped"] { background: var(--cream); }

@keyframes blink {
  0%, 80% { opacity: 1; }
  90% { opacity: 0.3; }
  100% { opacity: 1; }
}

.jp-badge {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  color: var(--red);
  background: var(--cream);
  border: var(--border) solid var(--navy);
  box-shadow: 3px 3px 0 var(--navy);
  min-width: 52px;
  height: 44px;
  padding: 4px 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.05;
  flex-shrink: 0;
}

.btn {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 15px;
  border: var(--border) solid var(--navy);
  box-shadow: 3px 3px 0 var(--navy);
  background: var(--red);
  color: var(--cream);
  padding: 12px 18px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
  transition: transform 0.05s ease, box-shadow 0.05s ease;
}

.btn:hover { box-shadow: 4px 4px 0 var(--navy); }
.btn:active { transform: translate(1px, 1px); box-shadow: 2px 2px 0 var(--navy); }
.btn--ghost { background: var(--cream); color: var(--navy); }
.btn--sm { padding: 8px 14px; font-size: 13px; box-shadow: 2px 2px 0 var(--navy); }

/* ---- nav ---- */

.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: var(--cream);
  border-bottom: var(--border) solid var(--navy);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav__brand .jp-badge { height: 38px; min-width: 44px; font-size: 11px; }

.nav__brand-text {
  font-family: var(--font-sign);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0;
}

.nav__links {
  margin-left: auto;
  display: flex;
  gap: 16px;
}

.nav__links a {
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  color: var(--navy);
  padding: 4px 2px;
  border-bottom: 2px solid transparent;
}

.nav__links a:hover { border-bottom-color: var(--red); }

/* ---- hero ---- */

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: var(--border) solid var(--navy);
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 108px 16px 44px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

/* ---- noren (shop curtain) ---- */

.noren {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  height: 84px;
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 0 8px;
  pointer-events: none;
}

.noren__rod {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 7px;
  background: var(--navy-deep);
  box-shadow: 0 2px 0 rgba(15, 26, 51, 0.25);
}

.noren__panel {
  position: relative;
  width: clamp(40px, 9vw, 68px);
  height: 100%;
  margin-top: 7px;
  background: var(--navy);
  color: var(--cream);
  border-left: 2px solid var(--navy-deep);
  border-right: 2px solid var(--navy-deep);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 12px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(16px, 3.4vw, 26px);
  text-shadow: 1px 1px 0 var(--navy-deep);
  transform-origin: top center;
  animation: noren-sway 6s ease-in-out infinite;
}

.noren__panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
}

.noren__panel::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: -2px;
  right: -2px;
  height: 9px;
  background:
    radial-gradient(circle at 50% 0, var(--navy) 0 7px, transparent 7px) repeat-x;
  background-size: 12px 9px;
}

.noren__panel:nth-child(odd) { animation-delay: -3s; }
.noren__panel:nth-child(3) { animation-delay: -1.5s; }
.noren__panel:nth-child(5) { animation-delay: -4.5s; }

@keyframes noren-sway {
  0%, 100% { transform: rotate(-0.6deg); }
  50% { transform: rotate(0.6deg); }
}

@media (prefers-reduced-motion: reduce) {
  .noren__panel { animation: none; }
}

.hero__kicker {
  font-family: var(--font-pixel);
  font-size: 13px;
  color: var(--red);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.hero__kicker-jp { font-size: 14px; }

.hero__kicker-name {
  font-family: var(--font-sign);
  font-size: clamp(17px, 4vw, 23px);
  font-weight: 400;
  letter-spacing: 0;
  color: var(--red);
  line-height: 1.1;
}

.hero__title {
  font-family: var(--font-sign);
  font-size: clamp(40px, 12vw, 76px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: var(--navy);
  text-shadow: 4px 4px 0 var(--cream-dark), 6px 6px 0 var(--navy-deep);
  margin-bottom: 16px;
}

.hero__lead {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  max-width: 36em;
  margin-bottom: 12px;
}

.hero__note {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  max-width: 36em;
  margin-bottom: 22px;
}

.hero__note strong { color: var(--navy); }

/* buttons row defines the width; CA box below matches it */
.hero__actions {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  max-width: 100%;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__ca {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--navy);
  background: var(--cream);
  padding: 6px 10px;
  flex-wrap: wrap;
}

.hero__ca-label {
  font-family: var(--font-pixel);
  font-size: 10px;
  color: var(--red);
  letter-spacing: 0.08em;
  flex-shrink: 0;
  align-self: flex-start;
  padding-top: 2px;
}

.hero__ca code {
  font-family: var(--font-pixel);
  font-size: 13px;
  color: var(--navy);
  line-height: 1.35;
  min-width: 0;
  flex: 1;
  word-break: break-all;
}

.hero__ca-copy {
  font-family: var(--font-pixel);
  font-size: 10px;
  border: 2px solid var(--navy);
  background: var(--cream-dark);
  color: var(--navy);
  padding: 3px 8px;
  cursor: pointer;
  flex-shrink: 0;
}

.hero__ca-copy:active { transform: translate(1px, 1px); }

/* hero register / mascot */
.hero__stage {
  display: flex;
  justify-content: center;
}

.register {
  position: relative;
  width: min(360px, 88vw);
  padding: 44px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background:
    repeating-linear-gradient(
      -45deg,
      var(--cream),
      var(--cream) 7px,
      var(--cream-dark) 7px,
      var(--cream-dark) 14px
    );
}

.register__awning {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: var(--red);
  color: var(--cream);
  border-bottom: var(--border) solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-pixel);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.register__awning::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 10px;
  background: repeating-linear-gradient(90deg, var(--red) 0 16px, var(--cream) 16px 32px);
  border-bottom: 2px solid var(--navy);
}

.clerk {
  image-rendering: pixelated;
  width: clamp(160px, 50vw, 240px);
  height: auto;
  margin-top: 6px;
  filter: drop-shadow(3px 3px 0 rgba(15, 26, 51, 0.18));
}

.register__plate {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 2px solid var(--navy);
  padding-top: 12px;
  width: 100%;
  justify-content: center;
}

.register__plate-jp {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  color: var(--red);
}

.register__state {
  font-family: var(--font-pixel);
  font-size: 11px;
  border: 2px solid var(--navy);
  background: var(--cream);
  color: var(--navy);
  padding: 3px 8px;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.register__state::before {
  content: "";
  width: 8px;
  height: 8px;
  background: currentColor;
}

.register__state[data-state="live"] { color: #3d8f5a; }
.register__state[data-state="stale"] { color: #c87840; }
.register__state[data-state="stopped"] { color: var(--red-bright); }

/* ---- sections ---- */

.section {
  padding: 36px 0;
  scroll-margin-top: 68px;
}

.section .box { margin: 0; }

.section .box.is-flash {
  animation: section-flash 2.2s ease-out forwards;
}

@keyframes section-flash {
  0% {
    border-color: var(--red-bright);
    box-shadow: 8px 8px 0 var(--red), 0 0 0 3px var(--red-bright);
  }
  30% {
    border-color: var(--red);
    box-shadow: 6px 6px 0 var(--navy-deep), 0 0 0 2px var(--red-bright);
  }
  100% {
    border-color: var(--navy);
    box-shadow: 6px 6px 0 var(--navy-deep);
  }
}

@media (prefers-reduced-motion: reduce) {
  .section .box.is-flash {
    animation: none;
    border-color: var(--red);
    outline: 3px solid var(--red-bright);
    outline-offset: 2px;
  }
}

/* ---- stats ---- */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.stat {
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  min-height: 92px;
  justify-content: center;
}

.stat:nth-child(2n) { border-right: none; }

.stat__val {
  font-size: clamp(26px, 8vw, 34px);
  font-weight: 900;
  line-height: 1;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stat__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.stat.is-bump { animation: bump 0.5s ease-out; }

@keyframes bump {
  0% { transform: translateY(0); }
  40% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

.stat--drop .stat__val { color: var(--red); }

.stat__bar {
  margin-top: 4px;
  display: block;
  height: 8px;
  border: 2px solid var(--navy);
  background: rgba(28, 47, 94, 0.08);
}

.stat__bar-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red) 0%, var(--red-bright) 100%);
  transition: width 0.8s linear;
}

.stats-foot {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  padding: 12px 14px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.stats-foot__jp {
  font-family: var(--font-pixel);
  font-size: 11px;
  color: var(--red);
}

.stats-foot__status { margin-left: auto; font-family: var(--font-pixel); font-size: 10px; }

/* ---- steps ---- */

.steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.step {
  counter-increment: step;
  position: relative;
  padding: 18px 16px 18px 56px;
  border-bottom: 2px solid var(--navy);
}

.step:last-child { border-bottom: none; }

.step::before {
  content: counter(step);
  position: absolute;
  left: 14px;
  top: 18px;
  width: 30px;
  height: 30px;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-pixel);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step__title { font-size: 16px; font-weight: 900; margin-bottom: 4px; }
.step__body { font-size: 14px; font-weight: 500; color: var(--muted); }

/* ---- distribution ---- */

.phases {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.phase {
  padding: 18px 16px;
  border-bottom: 2px solid var(--navy);
}

.phase:last-of-type { border-bottom: none; }

.phase__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.phase__tag {
  font-family: var(--font-pixel);
  font-size: 11px;
  background: var(--navy);
  color: var(--cream);
  padding: 4px 10px;
  letter-spacing: 0.06em;
}

.phase__tag--alt { background: var(--red); }

.phase__title { font-size: 16px; font-weight: 900; }

.split-bar {
  display: flex;
  height: 26px;
  border: var(--border) solid var(--navy);
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.4);
}

.split-bar__seg { height: 100%; }
.split-bar__seg--dist { background: var(--navy); }
.split-bar__seg--hold {
  background: repeating-linear-gradient(45deg, var(--cream-dark) 0 5px, #d4c6a4 5px 10px);
}
.split-bar__seg--burn { background: var(--red); }
.split-bar__seg--boost { background: #f0b450; }

.split-legend {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 13px;
  font-weight: 700;
}

.split-legend li { display: flex; align-items: center; gap: 7px; }

.dot {
  width: 12px;
  height: 12px;
  border: 2px solid var(--navy);
  flex-shrink: 0;
}

.dot--dist { background: var(--navy); }
.dot--hold { background: var(--cream-dark); }
.dot--burn { background: var(--red); }
.dot--boost { background: #f0b450; }

.dexfund {
  padding: 18px 16px;
  border-top: var(--border) solid var(--navy);
  background: var(--cream-dark);
}

.dexfund__head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}

.dexfund__jp {
  font-family: var(--font-pixel);
  font-size: 11px;
  color: var(--red);
}

.dexfund__title { font-size: 14px; font-weight: 900; letter-spacing: 0.04em; }

.dexfund__amounts {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.dexfund__usd {
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.dexfund__sol {
  font-family: var(--font-pixel);
  font-size: 12px;
  color: var(--muted);
}

.dexfund__bar {
  position: relative;
  height: 16px;
  border: 2px solid var(--navy);
  background: rgba(28, 47, 94, 0.08);
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
}

.dexfund__fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red) 0%, var(--red-bright) 100%);
  transition: width 0.6s ease;
}

.dexfund__note { font-size: 13px; font-weight: 500; color: var(--muted); }

/* ---- perks ---- */

.perks-lead {
  padding: 16px 16px 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--navy);
}

.perks-routes {
  margin: 14px 16px 0;
  padding: 12px 14px;
  border: var(--border) solid var(--navy);
  background: repeating-linear-gradient(
    -45deg,
    var(--cream),
    var(--cream) 6px,
    var(--cream-dark) 6px,
    var(--cream-dark) 12px
  );
}

.perks-routes__jp {
  font-family: var(--font-pixel);
  font-size: 11px;
  color: var(--red);
  display: block;
  margin-bottom: 6px;
}

.perks-routes__text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--navy);
}

.perks-routes__text strong { font-weight: 900; }

.perks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 14px;
}

.perk-card {
  padding: 18px 16px;
  border-bottom: 2px solid var(--navy);
}

.perk-card:last-child { border-bottom: none; }

.perk-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.perk-card__tag {
  font-family: var(--font-pixel);
  font-size: 11px;
  color: var(--red);
  letter-spacing: 0.08em;
}

.perk-badge {
  font-family: var(--font-pixel);
  font-size: 10px;
  border: 2px solid var(--navy);
  padding: 2px 8px;
  background: var(--cream);
  color: var(--muted);
  flex-shrink: 0;
}

.perk-badge[data-state="on"] { color: #3d8f5a; }
.perk-badge[data-state="off"] { color: var(--muted); }

.perk-card__title {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 6px;
}

.perk-card__body {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 10px;
}

.perk-card__link {
  font-size: 13px;
  font-weight: 900;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid var(--red);
}

.perk-card__link:hover { color: var(--red); }

.perks-band {
  padding: 18px 16px;
  border-top: var(--border) solid var(--navy);
  background: var(--cream-dark);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.perks-band__jp {
  font-family: var(--font-pixel);
  font-size: 11px;
  color: var(--red);
}

.perks-band__text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--muted);
  max-width: 52em;
}

/* ---- hold ---- */

.hold-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.hold-card {
  position: relative;
  padding: 18px 16px 18px 56px;
  border-bottom: 2px solid var(--navy);
}

.hold-card:last-child { border-bottom: none; }

.hold-card__num {
  position: absolute;
  left: 14px;
  top: 18px;
  width: 30px;
  height: 30px;
  background: var(--red);
  color: var(--cream);
  font-family: var(--font-pixel);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hold-card__title { font-size: 16px; font-weight: 900; margin-bottom: 4px; }
.hold-card__body { font-size: 14px; font-weight: 500; color: var(--muted); }

.hold-cta {
  margin: 16px;
  display: inline-flex;
}

/* ---- footer ---- */

.foot {
  border-top: var(--border) solid var(--navy);
  background: var(--navy);
  color: var(--cream);
  padding: 28px 0;
}

.foot__inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.foot__brand { display: flex; align-items: center; gap: 12px; }
.foot__name { font-family: var(--font-sign); font-size: 18px; font-weight: 400; }
.foot__jp { font-family: var(--font-pixel); font-size: 11px; color: var(--cream-dark); }

.foot__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.foot__links a {
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.foot__links a:hover { border-bottom-color: var(--red-bright); }

.foot__fine { font-size: 12px; color: var(--cream-dark); }

/* ---- responsive: tablet+ ---- */

@media (min-width: 720px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat:nth-child(2n) { border-right: 2px solid var(--navy); }
  .stat:nth-child(3n) { border-right: none; }
  .stat:nth-last-child(-n+3) { border-bottom: none; }

  .steps { grid-template-columns: 1fr 1fr; }
  .step { border-right: 2px solid var(--navy); }
  .step:nth-child(2n) { border-right: none; }
  .step:nth-last-child(-n+2) { border-bottom: none; }
  .step:last-child:nth-child(odd) { border-bottom: none; }

  .phases { grid-template-columns: 1fr 1fr; }
  .phase { border-bottom: none; border-right: 2px solid var(--navy); }
  .phase:last-of-type { border-right: none; }

  .hold-grid { grid-template-columns: repeat(3, 1fr); }
  .hold-card { border-bottom: none; border-right: 2px solid var(--navy); }
  .hold-card:last-child { border-right: none; }

  .perks-grid { grid-template-columns: repeat(3, 1fr); }
  .perk-card { border-bottom: none; border-right: 2px solid var(--navy); }
  .perk-card:last-child { border-right: none; }
}

@media (min-width: 920px) {
  .hero__inner {
    grid-template-columns: 1.3fr 1fr;
    padding: 120px 16px 64px;
  }
  .foot__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

/* ---- reduced motion ---- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
