:root {
  --black: #070707;
  --panel: #151515;
  --ink: #fff7ec;
  --muted: #d9cfc1;
  --orange: #ff7a00;
  --orange-2: #ffad1f;
  --line: rgba(255, 255, 255, .14);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    linear-gradient(90deg, rgba(255, 122, 0, .08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 122, 0, .05) 1px, transparent 1px),
    #070707;
  background-size: 54px 54px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .3), rgba(0, 0, 0, .86)),
    url("hero-bg.jpg") center / cover no-repeat;
  opacity: .42;
}

a {
  color: inherit;
}

.wrap {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
}

header {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(7, 7, 7, .78);
  backdrop-filter: blur(14px);
}

.topbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand,
.back-link,
.order-link {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.brand {
  gap: 12px;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
}

.back-link {
  min-height: 42px;
  padding: 10px 12px;
  color: rgba(255, 247, 236, .78);
}

.back-link:hover,
.back-link:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  outline: none;
}

main {
  padding: 58px 0 66px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-2);
  font-size: .86rem;
  font-weight: 950;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0 0 18px;
  color: #fff;
  font-size: 3.8rem;
  line-height: 1.03;
  letter-spacing: 0;
}

.lead {
  max-width: 760px;
  margin: 0 0 28px;
  color: rgba(255, 247, 236, .78);
  font-size: 1.13rem;
  line-height: 1.75;
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 42px;
}

.order-link {
  min-height: 92px;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .1);
  padding: 8px;
  transition: transform .2s ease, border-color .2s ease;
}

.order-link:hover,
.order-link:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 173, 31, .78);
  outline: none;
}

.order-link img {
  display: block;
  width: 100%;
  height: auto;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items: start;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
  padding: 22px;
}

.panel h2,
.panel h3 {
  margin: 0 0 10px;
  color: #fff;
  line-height: 1.25;
}

.panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.panel + .panel {
  margin-top: 14px;
}

.area-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-list li {
  border: 1px solid rgba(255, 122, 0, .25);
  border-radius: 8px;
  background: rgba(255, 122, 0, .1);
  padding: 12px;
  color: #fff;
  font-weight: 850;
}

footer {
  padding: 28px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 247, 236, .64);
  text-align: center;
  font-size: .88rem;
}

@media (max-width: 760px) {
  h1 {
    font-size: 2.55rem;
  }

  .topbar {
    min-height: 68px;
  }

  .back-link {
    display: none;
  }

  main {
    padding: 38px 0 48px;
  }

  .order-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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