:root {
  color-scheme: dark;
  --canvas: #0d0b0a;
  --canvas-warm: #15110e;
  --surface: #191511;
  --surface-raised: #211a15;
  --ink: #f7f0e9;
  --quiet: #a79d94;
  --faint: #716860;
  --rule: rgba(247, 240, 233, 0.14);
  --orange: #ff6a1f;
  --orange-pale: #ffb086;
  --black: #100b08;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--canvas);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 106, 31, 0.11), transparent 27rem),
    linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, 0.018) 50%, transparent 50.2%),
    var(--canvas);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

.site-frame {
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 76px);
}

.masthead {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--rule);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-decoration: none;
}

.wordmark-sign {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--orange);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  transform: rotate(-4deg);
}

.header-meta,
.locale-nav {
  display: flex;
  align-items: center;
}

.header-meta {
  gap: clamp(18px, 4vw, 54px);
}

.access-state {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--quiet);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.access-state i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 15px rgba(255, 106, 31, 0.9);
}

.locale-nav {
  gap: 6px;
}

.locale-nav a {
  min-width: 34px;
  padding: 8px 7px;
  border: 1px solid transparent;
  color: var(--faint);
  font: 700 11px ui-monospace, "SFMono-Regular", Consolas, monospace;
  text-align: center;
  text-decoration: none;
}

.locale-nav a:hover,
.locale-nav a.is-current {
  border-color: var(--rule);
  color: var(--ink);
}

.intro-grid {
  min-height: 600px;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(230px, 0.55fr);
  align-items: end;
  gap: clamp(40px, 9vw, 150px);
  padding: clamp(76px, 12vh, 150px) 0 80px;
}

.intro-copy {
  max-width: 900px;
}

.section-code,
.voucher-kicker,
.section-heading > p {
  margin: 0 0 22px;
  color: var(--orange);
  font: 700 11px ui-monospace, "SFMono-Regular", Consolas, monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(52px, 7.3vw, 108px);
  font-weight: 560;
  letter-spacing: -0.067em;
  line-height: 0.94;
}

.intro-text {
  max-width: 680px;
  margin: 36px 0 0;
  color: var(--quiet);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.65;
}

.side-note {
  align-self: center;
  padding: 22px 0 0 22px;
  border-top: 1px solid var(--orange);
  border-left: 1px solid var(--rule);
}

.side-note span {
  color: var(--faint);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.side-note strong {
  display: block;
  margin: 12px 0 20px;
  color: var(--orange);
  font: 500 clamp(26px, 3vw, 40px) ui-monospace, "SFMono-Regular", Consolas, monospace;
}

.side-note p {
  margin: 0;
  color: var(--quiet);
  font-size: 13px;
  line-height: 1.6;
}

.voucher {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.55fr) auto;
  align-items: center;
  gap: clamp(28px, 5vw, 74px);
  padding: clamp(34px, 5vw, 66px);
  color: var(--black);
  background: var(--orange);
  overflow: hidden;
}

.voucher::before,
.voucher::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  right: 29%;
  border-radius: 50%;
  background: var(--canvas);
}

.voucher::before {
  top: -21px;
}

.voucher::after {
  bottom: -21px;
}

.voucher-kicker {
  margin-bottom: 15px;
  color: rgba(16, 11, 8, 0.65);
}

.voucher h2 {
  margin: 0;
  font: 600 clamp(30px, 4.5vw, 64px) ui-monospace, "SFMono-Regular", Consolas, monospace;
  letter-spacing: -0.04em;
}

.voucher-copy > p:last-child {
  max-width: 590px;
  margin: 18px 0 0;
  color: rgba(16, 11, 8, 0.72);
  font-size: 14px;
  line-height: 1.6;
}

.voucher-value {
  min-height: 132px;
  padding-left: clamp(24px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px dashed rgba(16, 11, 8, 0.42);
}

.voucher-value span,
.voucher-value small {
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.voucher-value strong {
  margin: 3px 0;
  font-size: clamp(45px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.07em;
}

.code-action {
  min-width: 180px;
  min-height: 58px;
  padding: 0 17px 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid var(--black);
  color: var(--ink);
  background: var(--black);
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

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

.code-action.is-copied {
  color: var(--black);
  background: transparent;
}

.action-mark {
  color: var(--orange);
  font-size: 18px;
}

.is-copied .action-mark {
  color: var(--black);
}

.copy-status {
  position: absolute;
  right: clamp(34px, 5vw, 66px);
  bottom: 14px;
  margin: 0;
  color: rgba(16, 11, 8, 0.7);
  font-size: 10px;
}

.benefits {
  display: grid;
  grid-template-columns: minmax(210px, 0.48fr) minmax(0, 1.52fr);
  gap: clamp(36px, 8vw, 118px);
  padding: clamp(90px, 12vw, 160px) 0;
  border-bottom: 1px solid var(--rule);
}

.section-heading h2,
.route h2,
.questions > h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 580;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

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

.benefit-grid article {
  min-height: 270px;
  padding: 27px 25px 30px;
  border-right: 1px solid var(--rule);
}

.benefit-grid article:first-child {
  border-left: 1px solid var(--rule);
}

.benefit-grid article > span,
.route li span {
  color: var(--orange);
  font: 600 11px ui-monospace, "SFMono-Regular", Consolas, monospace;
}

.benefit-grid h3 {
  margin: 78px 0 15px;
  font-size: 19px;
  font-weight: 650;
}

.benefit-grid p {
  margin: 0;
  color: var(--quiet);
  font-size: 14px;
  line-height: 1.65;
}

.route {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(50px, 10vw, 160px);
  padding: clamp(90px, 12vw, 160px) 0;
}

.route ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
  list-style: none;
}

.route li {
  min-height: 82px;
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--rule);
  font-size: clamp(17px, 1.8vw, 22px);
}

.questions {
  margin-bottom: clamp(90px, 12vw, 160px);
  padding: clamp(40px, 6vw, 74px);
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(38px, 9vw, 140px);
  background: var(--surface);
  border: 1px solid var(--rule);
}

.question-list {
  border-top: 1px solid var(--rule);
}

.question-list details {
  border-bottom: 1px solid var(--rule);
}

.question-list summary {
  padding: 23px 44px 23px 0;
  position: relative;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 620;
}

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

.question-list summary::after {
  content: "+";
  position: absolute;
  right: 3px;
  top: 18px;
  color: var(--orange);
  font-size: 25px;
  font-weight: 300;
  transition: transform 160ms ease;
}

.question-list details[open] summary::after {
  transform: rotate(45deg);
}

.question-list p {
  max-width: 650px;
  margin: -5px 44px 25px 0;
  color: var(--quiet);
  font-size: 14px;
  line-height: 1.65;
}

.site-footer {
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 36px;
  border-top: 1px solid var(--rule);
  color: var(--faint);
  font: 600 10px ui-monospace, "SFMono-Regular", Consolas, monospace;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.code-action:focus-visible,
.locale-nav a:focus-visible,
.wordmark:focus-visible,
.question-list summary:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

@media (max-width: 1000px) {
  .intro-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .side-note {
    max-width: 360px;
  }

  .voucher {
    grid-template-columns: 1fr 0.65fr;
  }

  .code-action {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .voucher::before,
  .voucher::after {
    right: 35%;
  }

  .benefits,
  .route,
  .questions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .masthead {
    min-height: 78px;
  }

  .access-state {
    display: none;
  }

  .intro-grid {
    padding: 70px 0 58px;
  }

  h1 {
    font-size: clamp(43px, 13vw, 68px);
  }

  .voucher {
    grid-template-columns: 1fr;
    padding: 34px 24px 42px;
  }

  .voucher::before,
  .voucher::after {
    display: none;
  }

  .voucher-value {
    min-height: auto;
    padding: 25px 0;
    border-top: 1px dashed rgba(16, 11, 8, 0.42);
    border-left: 0;
  }

  .code-action {
    width: 100%;
  }

  .copy-status {
    left: 24px;
    right: 24px;
    bottom: 13px;
  }

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

  .benefit-grid article,
  .benefit-grid article:first-child {
    min-height: 215px;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    border-left: 1px solid var(--rule);
  }

  .benefit-grid h3 {
    margin-top: 48px;
  }

  .questions {
    padding: 34px 24px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .site-footer span:nth-child(2) {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
