@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-extrabold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --asphalt: #161412;
  --ink: #f3ece2;
  --muted: #c4b8a8;
  --kraft: #f3e6c8;
  --orange: #ff4d00;
  --orange-ink: #161412;
  --line: #3a342c;
  --danger: #ffb4a2;
  --font: "Archivo", "Avenir Next Condensed", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
}

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

body {
  margin: 0;
  min-height: 100dvh;
  background:
    radial-gradient(120% 80% at 100% 0%, #2a2118 0%, transparent 55%),
    var(--asphalt);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.5;
  caret-color: var(--orange);
}

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

a {
  color: var(--kraft);
  text-underline-offset: 3px;
}

a:focus-visible,
.cta:focus-visible,
input[type="email"]:focus-visible,
.upload:focus-within span {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  background: var(--kraft);
  color: var(--asphalt);
  padding: 0.4rem 0.7rem;
}

.skip:focus {
  top: 0.75rem;
}

.top {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.25rem 1.25rem 0;
}

.mark {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem 1.25rem 2.5rem;
  display: grid;
  gap: 2.25rem;
}

@media (min-width: 880px) {
  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
    padding-top: 2.5rem;
  }
}

h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2.15rem, 6vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 800;
  text-wrap: balance;
}

.lede {
  margin: 0 0 1.25rem;
  max-width: 36ch;
  color: var(--muted);
}

.price {
  margin: 0 0 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

label {
  font-weight: 800;
}

input[type="email"] {
  width: 100%;
  max-width: 28rem;
  appearance: none;
  border: 1px solid var(--line);
  background: #1f1b17;
  color: var(--ink);
  border-radius: 2px;
  padding: 0.7rem 0.8rem;
  font: inherit;
}

input[type="email"]::placeholder {
  color: #8c8274;
}

.hint,
.error {
  margin: 0;
  font-size: 0.9rem;
}

.hint {
  color: var(--muted);
}

.error {
  color: var(--danger);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.85rem 1.3rem;
  border: 0;
  border-radius: 2px;
  background: var(--orange);
  color: var(--orange-ink);
  font: inherit;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
  cursor: pointer;
}

.cta:hover {
  background: #ff6a28;
}

.cta:active {
  transform: translateY(1px);
}

.cta:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.status {
  min-height: 1.5em;
  margin: 0.85rem 0 0;
  max-width: 38ch;
}

.status.is-ok {
  color: var(--kraft);
  font-weight: 800;
}

.status.is-err {
  color: var(--danger);
}

.privacy-line {
  margin: 1.25rem 0 0;
  max-width: 40ch;
  color: var(--muted);
  font-size: 0.92rem;
}

.stage {
  margin: 0;
}

.plate {
  position: relative;
  background: #0c0b0a;
  padding: 0.85rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.plate > img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #2a241c;
}

.sticker {
  position: absolute;
  right: 1.45rem;
  bottom: 3.6rem;
  width: min(22%, 5.75rem);
  padding: 0.3rem;
  background: var(--kraft);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.sticker img {
  width: 100%;
  height: auto;
}

.dest {
  position: absolute;
  left: 1.45rem;
  bottom: 1.35rem;
  margin: 0;
  padding: 0.35rem 0.5rem;
  background: var(--asphalt);
  color: var(--kraft);
  font-size: 0.72rem;
  line-height: 1.3;
  max-width: calc(100% - 2.9rem);
}

.dest-k {
  display: block;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.dest-v {
  font-weight: 800;
}

.reg {
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  border: 1px solid var(--orange);
  pointer-events: none;
}

.reg-tl { top: 0.28rem; left: 0.28rem; border-right: 0; border-bottom: 0; }
.reg-tr { top: 0.28rem; right: 0.28rem; border-left: 0; border-bottom: 0; }
.reg-bl { bottom: 0.28rem; left: 0.28rem; border-right: 0; border-top: 0; }
.reg-br { bottom: 0.28rem; right: 0.28rem; border-left: 0; border-top: 0; }

.upload {
  display: block;
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.92rem;
  cursor: pointer;
}

.upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.upload span {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.split {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
  display: grid;
  gap: 1.5rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}

@media (min-width: 880px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.split h2 {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.split ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.split li + li {
  margin-top: 0.35rem;
}

.split li {
  padding-left: 1rem;
  position: relative;
}

.split li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--orange);
}

.split .no li::before {
  background: var(--muted);
}

.foot {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem 2.5rem;
}

.plain {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  max-width: 48ch;
}

.plain li + li {
  margin-top: 0.7rem;
}

.foot p {
  margin: 0 0 0.6rem;
  max-width: 52ch;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
