:root {
  --orange: #e85d04;
  --orange-deep: #c44e03;
  --cream: #f4efe8;
  --card: #ffffff;
  --ink: #2a211c;
  --muted: #7a6a5c;
  --line: #e8dfd4;
  --shadow: 0 16px 40px rgba(42, 33, 28, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Segoe UI", system-ui, sans-serif;
  line-height: 1.55;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
  z-index: 20;
}

.skip:focus {
  top: 12px;
}

.top {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(244, 239, 232, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

nav a:hover,
nav a:focus {
  color: var(--orange);
}

.hero {
  padding: 56px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.lead {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 38rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  border: 0;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-primary:hover {
  background: var(--orange-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn[aria-disabled="true"] {
  opacity: 0.62;
  cursor: not-allowed;
}

.hero-card {
  background: var(--card);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-card ol {
  margin: 16px 0 0;
  padding-left: 20px;
}

.hero-card li + li {
  margin-top: 10px;
}

section {
  padding: 56px 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 28px;
}

.muted {
  color: var(--muted);
}

.grid-3,
.grid-2,
.cats {
  display: grid;
  gap: 16px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.cats {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
}

.card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  background: var(--card);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid var(--line);
}

.num {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #fff4ea;
  color: var(--orange);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.cities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.city {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
}

.city b {
  display: block;
}

.city span {
  color: var(--muted);
  font-size: 0.92rem;
}

.empty,
.status {
  background: #fff4ea;
  border-radius: 16px;
  padding: 18px 20px;
}

.soon {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store {
  min-width: 220px;
  background: var(--ink);
  color: #fff8f0;
  border-radius: 16px;
  padding: 16px 18px;
}

.store small {
  display: block;
  color: #d7c4b2;
}

footer {
  padding: 36px 0 48px;
  border-top: 1px solid var(--line);
}

.foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
}

.foot a {
  color: var(--orange);
}

@media (max-width: 860px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .cats,
  .cities {
    grid-template-columns: 1fr;
  }

  nav {
    display: none;
  }

  .top-inner {
    min-height: 64px;
  }
}
