:root {
  --ink: #f4f4f1;
  --muted: #a7a7a1;
  --paper: #080808;
  --surface: #101010;
  --surface-2: #151515;
  --surface-3: #1c1c1c;
  --line: #2b2b2a;
  --line-bright: #454542;
  --red: #ff3b30;
  --red-bright: #ff685f;
  --red-dark: #941c17;
  --mint: #8ed8c5;
  --amber: #efb45b;
  --coral: #f27d67;
  --dark: #050505;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  overflow-x: hidden;
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 96px 96px;
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

a:focus-visible,
button:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 4px;
}

.site-header {
  height: 78px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  gap: 34px;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(18px);
}

.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;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font:
    600 12px "DM Mono",
    monospace;
  letter-spacing: 0.12em;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--white);
  font:
    700 13px "Space Grotesk",
    sans-serif;
  letter-spacing: 0;
  box-shadow: 4px 4px 0 var(--red-dark);
}

.brand:hover .brand-mark {
  background: var(--red-bright);
}

.nav {
  display: flex;
  gap: 25px;
  margin-left: auto;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav a,
.header-link {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

.nav a:hover,
.header-link:hover {
  color: var(--white);
}

.header-link {
  font:
    500 11px "DM Mono",
    monospace;
  letter-spacing: 0.08em;
}

.lang-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lang-select {
  min-width: 88px;
  height: 34px;
  padding: 0 30px 0 11px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid var(--line-bright);
  border-radius: 0;
  background: var(--surface-2);
  color: var(--ink);
  cursor: pointer;
  font:
    500 11px "DM Mono",
    monospace;
  letter-spacing: 0.1em;
}

.lang-select:hover,
.lang-select:focus {
  border-color: var(--red);
}

.lang-switch::after {
  content: "▾";
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-52%);
  color: var(--muted);
  font-size: 10px;
  pointer-events: none;
}

.hero {
  width: min(100%, 1400px);
  min-height: calc(100vh - 78px);
  margin: 0 auto;
  padding: 105px 5vw 125px;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 7vw;
  align-items: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5vw;
  width: 1px;
  background: rgba(255, 59, 48, 0.2);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red-bright);
  font:
    500 11px "DM Mono",
    monospace;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.download h2 {
  margin: 0;
  font:
    600 72px/1.04 "Space Grotesk",
    "DM Sans",
    sans-serif;
  letter-spacing: 0;
}

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

.hero-lead {
  max-width: 550px;
  margin: 28px 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions,
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 45px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 0;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button span {
  font-size: 16px;
  line-height: 1;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button.primary:hover {
  background: var(--red-bright);
}

.button.ghost {
  border-color: var(--line-bright);
  background: transparent;
  color: var(--ink);
}

.button.ghost:hover {
  border-color: var(--red);
  color: var(--red-bright);
}

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

.button.light:hover {
  background: #e7e7e2;
}

.button.outline-light {
  border-color: rgba(5, 5, 5, 0.55);
  background: transparent;
  color: var(--dark);
}

.button.outline-light:hover {
  border-color: var(--dark);
  background: rgba(5, 5, 5, 0.08);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  margin-top: 47px;
  color: var(--muted);
  font:
    500 10px "DM Mono",
    monospace;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-meta b {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
}

.hero-art {
  height: 530px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.hero-photo {
  width: 260px;
  height: 168px;
  position: absolute;
  top: 10px;
  right: -24px;
  overflow: hidden;
  transform: rotate(7deg);
  border: 1px solid var(--red);
  background: var(--surface);
  box-shadow: 12px 14px 0 rgba(255, 59, 48, 0.25);
  z-index: 0;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.18);
  pointer-events: none;
}

.hero-photo span {
  position: absolute;
  left: 10px;
  bottom: 8px;
  color: var(--white);
  font:
    500 8px "DM Mono",
    monospace;
  letter-spacing: 0.1em;
  text-shadow: 0 1px 4px #000;
  z-index: 1;
}

.ring {
  position: absolute;
  border: 1px solid rgba(255, 59, 48, 0.45);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.ring-a {
  width: 450px;
  height: 310px;
}

.ring-b {
  width: 560px;
  height: 390px;
  border-color: rgba(255, 255, 255, 0.17);
  transform: rotate(30deg);
}

.membership-card {
  width: min(370px, 78vw);
  height: 430px;
  padding: 27px;
  position: relative;
  overflow: hidden;
  transform: rotate(-5deg);
  border: 1px solid #4a4a47;
  background: var(--surface-2);
  color: var(--white);
  box-shadow: 18px 20px 0 var(--red), 0 28px 55px rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.membership-card::before {
  content: "";
  width: 10px;
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--red);
}

.membership-card::after {
  content: "";
  width: 180px;
  height: 180px;
  position: absolute;
  right: -76px;
  bottom: -84px;
  border: 1px solid rgba(255, 59, 48, 0.5);
  border-radius: 50%;
}

.card-top,
.card-foot {
  display: flex;
  justify-content: space-between;
  color: #a8a8a2;
  font:
    500 10px "DM Mono",
    monospace;
  letter-spacing: 0.1em;
}

.status {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--mint);
}

.status i {
  width: 5px;
  height: 5px;
  display: block;
  border-radius: 50%;
  background: var(--mint);
}

.card-logo {
  margin-top: 48px;
  color: var(--red-bright);
  font:
    700 72px/0.9 "Space Grotesk",
    sans-serif;
  letter-spacing: 0;
}

.membership-card h2 {
  margin: 25px 0 2px;
  font:
    600 31px "Space Grotesk",
    sans-serif;
  letter-spacing: 0;
}

.membership-card p {
  margin: 0;
  color: #bcbcb6;
  font-size: 13px;
  line-height: 1.5;
}

.card-grid {
  margin-top: 37px;
  padding: 22px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border-top: 1px solid #4a4a47;
  border-bottom: 1px solid #4a4a47;
}

.card-grid strong {
  display: block;
  font:
    600 17px "Space Grotesk",
    sans-serif;
}

.card-grid small {
  color: #8f8f89;
  font:
    500 8px "DM Mono",
    monospace;
  letter-spacing: 0.06em;
}

.card-foot {
  position: absolute;
  right: 27px;
  bottom: 26px;
  left: 27px;
}

.float-note {
  padding: 9px 12px;
  position: absolute;
  border: 1px solid var(--line-bright);
  background: var(--surface);
  color: #c4c4be;
  font:
    500 10px "DM Mono",
    monospace;
  letter-spacing: 0.07em;
  z-index: 2;
}

.note-a {
  top: 70px;
  right: 0;
  border-color: rgba(255, 59, 48, 0.65);
  color: var(--red-bright);
}

.note-b {
  bottom: 78px;
  left: 2px;
}

.statement {
  padding: 70px 5vw 76px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  text-align: center;
}

.statement p {
  max-width: 850px;
  margin: 0 auto 18px;
  font:
    500 42px/1.25 "Space Grotesk",
    "DM Sans",
    sans-serif;
  letter-spacing: 0;
}

.statement span {
  color: var(--red-bright);
  font:
    500 10px "DM Mono",
    monospace;
  letter-spacing: 0.18em;
}

.section {
  width: min(100%, 1400px);
  margin: 0 auto;
  padding: 120px 5vw;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 60px;
}

.section-head > p {
  max-width: 450px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.model-card {
  min-height: 590px;
  padding: 33px;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--line);
  background: var(--surface);
  transition:
    transform 250ms ease,
    border-color 250ms ease,
    box-shadow 250ms ease;
}

.model-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-bright);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
}

.model-card.featured {
  border-color: #71302b;
  background: #15100f;
}

.model-card.featured::before {
  content: "";
  height: 3px;
  position: absolute;
  top: -1px;
  right: 25%;
  left: 0;
  background: var(--red);
}

.model-media {
  height: 142px;
  margin: -33px -33px 28px;
  position: relative;
  overflow: hidden;
  background: var(--surface-3);
}

.model-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(5, 5, 5, 0.82));
}

.model-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08);
  transition: transform 500ms ease;
}

.model-card:hover .model-media img {
  transform: scale(1.04);
}

.model-media span {
  position: absolute;
  bottom: 12px;
  left: 16px;
  color: var(--white);
  font:
    500 9px "DM Mono",
    monospace;
  letter-spacing: 0.1em;
  z-index: 1;
}

.model-number {
  position: absolute;
  top: 31px;
  right: 31px;
  color: var(--white);
  font:
    500 12px "DM Mono",
    monospace;
  text-shadow: 0 1px 4px #000;
  z-index: 1;
}

.model-kicker {
  margin: 0 0 23px;
  color: var(--red-bright);
  font:
    500 10px "DM Mono",
    monospace;
  letter-spacing: 0.16em;
}

.model-card h3 {
  margin: 0 0 20px;
  font:
    600 34px/1.08 "Space Grotesk",
    "DM Sans",
    sans-serif;
  letter-spacing: 0;
}

.model-card > p:not(.model-kicker) {
  max-width: 400px;
  color: var(--muted);
}

.model-card a {
  width: fit-content;
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--red);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.model-card a:hover {
  color: var(--red-bright);
}

.model-tags {
  margin-top: auto;
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.model-tags span {
  padding: 5px 8px;
  border: 1px solid #454542;
  color: #b0b0aa;
  font:
    500 9px "DM Mono",
    monospace;
}

.utility {
  padding-top: 20px;
}

.utility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.utility-grid > div {
  padding: 31px 28px 10px 0;
  position: relative;
  border-right: 1px solid var(--line);
}

.utility-grid > div + div {
  padding-left: 28px;
}

.utility-grid > div:last-child {
  border-right: 0;
}

.utility-icon {
  color: var(--red-bright);
  font:
    500 11px "DM Mono",
    monospace;
}

.utility h3 {
  margin: 25px 0 8px;
  font:
    600 25px "Space Grotesk",
    "DM Sans",
    sans-serif;
}

.utility p {
  max-width: 275px;
  margin: 0;
  color: var(--muted);
}

.economics {
  width: 100%;
  max-width: none;
  padding-right: max(5vw, calc((100vw - 1400px) / 2 + 5vw));
  padding-left: max(5vw, calc((100vw - 1400px) / 2 + 5vw));
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--dark);
  color: var(--white);
}

.economics::before {
  content: "";
  width: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(5vw, calc((100vw - 1400px) / 2 + 5vw));
  background: rgba(255, 59, 48, 0.38);
  z-index: -1;
}

.economics-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  mix-blend-mode: screen;
  z-index: -2;
}

.economics-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.74);
}

.economics-backdrop img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 48%;
  filter: grayscale(1) contrast(1.2);
}

.dark .eyebrow {
  color: var(--red-bright);
}

.dark > p {
  color: #b4b4ae;
}

.economics-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 10vw;
  align-items: center;
}

.supply {
  padding: 25px 0 31px;
  border-right: 1px solid #40403e;
}

.supply span {
  display: block;
  color: #b4b4ae;
  font:
    500 10px "DM Mono",
    monospace;
  letter-spacing: 0.1em;
}

.supply strong {
  display: block;
  margin: 25px 0 0;
  color: var(--white);
  font:
    600 72px/0.95 "Space Grotesk",
    sans-serif;
  letter-spacing: 0;
  white-space: nowrap;
}

.supply em {
  display: block;
  margin-top: 12px;
  color: var(--red-bright);
  font:
    500 13px "DM Mono",
    monospace;
  font-style: normal;
  letter-spacing: 0.16em;
}

.supply a {
  display: inline-block;
  margin-top: 48px;
  border-bottom: 1px solid #777772;
  color: var(--white);
  font-size: 12px;
  text-decoration: none;
}

.supply a:hover {
  border-color: var(--red-bright);
  color: var(--red-bright);
}

.allocations {
  display: grid;
  gap: 24px;
}

.allocation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-bottom: 17px;
  border-bottom: 1px solid #353533;
}

.allocation-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.bar {
  width: 26px;
  height: 7px;
  display: inline-block;
}

.bar.blue {
  background: var(--red);
}

.bar.teal {
  background: var(--mint);
}

.bar.gold {
  background: var(--amber);
}

.bar.coral {
  background: var(--coral);
}

.allocation strong {
  color: var(--white);
  font:
    500 16px "DM Mono",
    monospace;
  white-space: nowrap;
}

.allocation small {
  margin-left: 8px;
  color: #92928d;
  font-size: 10px;
}

.economics-note {
  max-width: 700px;
  margin: 60px 0 0;
  color: #92928d;
  font-size: 12px;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.roadmap-item {
  min-height: 220px;
  padding: 28px 28px 0 0;
  border-right: 1px solid var(--line);
}

.roadmap-item + .roadmap-item {
  padding-left: 28px;
}

.roadmap-item:last-child {
  border-right: 0;
}

.roadmap-item > span {
  color: var(--red-bright);
  font:
    500 12px "DM Mono",
    monospace;
}

.roadmap-line {
  height: 1px;
  margin: 15px 0 26px;
  background: var(--line);
}

.roadmap-item.active .roadmap-line {
  height: 2px;
  background: var(--red);
}

.roadmap-item h3 {
  margin: 0 0 8px;
  font:
    600 25px "Space Grotesk",
    "DM Sans",
    sans-serif;
}

.roadmap-item p {
  max-width: 280px;
  margin: 0;
  color: var(--muted);
}

.roadmap-item small {
  display: block;
  margin-top: 25px;
  color: var(--red-bright);
  font:
    500 9px "DM Mono",
    monospace;
  letter-spacing: 0.12em;
}

.download {
  padding: 96px max(5vw, calc((100vw - 1400px) / 2 + 5vw));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: end;
  background: var(--red);
  color: var(--dark);
}

.download .eyebrow {
  color: rgba(5, 5, 5, 0.68);
}

.download-copy > p {
  margin: 0 0 25px;
  color: rgba(5, 5, 5, 0.78);
  font-size: 17px;
  line-height: 1.7;
}

.faq {
  padding-top: 100px;
  padding-bottom: 110px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  padding: 0;
  border-bottom: 1px solid var(--line);
}

summary {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  cursor: pointer;
  font:
    600 18px "Space Grotesk",
    "DM Sans",
    sans-serif;
}

summary::-webkit-details-marker {
  display: none;
}

summary span {
  flex: 0 0 auto;
  color: var(--red-bright);
  font:
    400 24px "DM Sans",
    sans-serif;
  transition: transform 180ms ease;
}

details[open] summary span {
  transform: rotate(45deg);
}

details p {
  max-width: 650px;
  margin: -5px 0 24px;
  color: var(--muted);
}

.site-footer {
  padding: 28px 5vw 38px;
  display: flex;
  align-items: center;
  gap: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.site-footer p {
  margin: 0;
}

.site-footer > div:last-child {
  margin-left: auto;
  display: flex;
  gap: 20px;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--red-bright);
}

@media (max-width: 1100px) {
  .hero h1,
  .section h2,
  .download h2 {
    font-size: 60px;
  }

  .supply strong {
    font-size: 54px;
  }
}

@media (max-width: 850px) {
  .nav {
    display: none;
  }

  .site-header {
    justify-content: space-between;
  }

  .header-tools {
    gap: 10px;
  }

  .header-link {
    display: none;
  }

  .lang-select {
    min-width: 80px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 54px;
    padding-bottom: 32px;
    gap: 10px;
  }

  .hero::before {
    left: 6vw;
  }

  .hero h1,
  .section h2,
  .download h2 {
    font-size: 44px;
  }

  .hero-lead {
    margin: 20px 0;
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-meta {
    gap: 12px;
    margin-top: 24px;
  }

  .hero-art {
    height: 235px;
    overflow: hidden;
  }

  .hero-photo {
    width: 154px;
    height: 100px;
    top: 0;
    right: -4px;
  }

  .ring-a {
    width: 340px;
    height: 240px;
  }

  .ring-b {
    width: 420px;
    height: 300px;
  }

  .membership-card {
    width: 240px;
    height: 170px;
    padding: 16px;
    transform: rotate(-4deg);
    box-shadow: 10px 11px 0 var(--red), 0 18px 30px rgba(0, 0, 0, 0.4);
  }

  .membership-card::before {
    width: 6px;
  }

  .card-top,
  .card-foot {
    font-size: 8px;
  }

  .card-logo {
    margin-top: 22px;
    font-size: 40px;
  }

  .membership-card h2 {
    margin-top: 10px;
    font-size: 21px;
  }

  .membership-card > p,
  .card-grid {
    display: none;
  }

  .card-foot {
    right: 16px;
    bottom: 12px;
    left: 16px;
  }

  .float-note {
    font-size: 8px;
  }

  .note-a {
    top: 16px;
    right: 2px;
  }

  .note-b {
    bottom: 12px;
    left: 0;
  }

  .statement {
    padding: 54px 6vw 58px;
  }

  .statement p {
    font-size: 30px;
  }

  .section {
    padding: 80px 6vw;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 40px;
  }

  .model-grid,
  .economics-grid,
  .download {
    grid-template-columns: 1fr;
  }

  .model-card {
    min-height: 590px;
  }

  .utility-grid,
  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .utility-grid > div,
  .utility-grid > div + div,
  .roadmap-item,
  .roadmap-item + .roadmap-item {
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .utility-grid > div:last-child,
  .roadmap-item:last-child {
    border-bottom: 0;
  }

  .economics {
    padding-right: 6vw;
    padding-left: 6vw;
  }

  .economics::before {
    left: 6vw;
  }

  .supply {
    padding-bottom: 42px;
    border-right: 0;
    border-bottom: 1px solid #40403e;
  }

  .supply strong {
    font-size: 54px;
  }

  .allocation {
    gap: 10px;
  }

  .allocation strong {
    font-size: 13px;
  }

  .download {
    padding: 80px 6vw;
    gap: 40px;
  }

  .site-footer {
    flex-wrap: wrap;
  }

  .site-footer > div:last-child {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }

}

@media (max-width: 560px) {
  .site-header {
    height: 70px;
    padding-right: 6vw;
    padding-left: 6vw;
  }

  .brand {
    gap: 9px;
    font-size: 10px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }

  .hero {
    padding-top: 44px;
  }

  .hero h1,
  .section h2,
  .download h2 {
    font-size: 38px;
  }

  .hero-actions,
  .download-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    justify-content: space-between;
  }

  .hero-art {
    height: 210px;
    margin-top: 8px;
  }

  .hero-photo {
    right: -22px;
  }

  .ring-a {
    width: 290px;
    height: 210px;
  }

  .ring-b {
    width: 360px;
    height: 260px;
  }

  .membership-card {
    width: 220px;
  }

  .note-a {
    right: -15px;
  }

  .note-b {
    left: -15px;
  }

  .statement p {
    font-size: 25px;
  }

  .model-card {
    min-height: 560px;
    padding: 25px;
  }

  .model-media {
    margin: -25px -25px 25px;
  }

  .model-number {
    top: 25px;
    right: 25px;
  }

  .supply strong {
    font-size: 39px;
  }

  .allocation {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .allocation strong {
    padding-left: 38px;
  }

  .site-footer > div:last-child {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
