:root {
  color-scheme: dark;
  --ink: #e0e5ec;
  --muted: #8892b0;
  --line: #1c1f2e;
  --orange: #ff8a00;
  --red: #ff003c;
  --cream: #05050a;
  --paper: #0b0b12;
  --panel: #11131c;
  --shadow: 0 0 20px rgba(255, 138, 0, 0.15);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.shell {
  min-height: 100vh;
  background: var(--cream);
}

.topbar {
  min-height: 98px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 22px clamp(22px, 4vw, 48px);
  background:
    linear-gradient(90deg, rgba(255, 138, 0, 0.1), transparent 28%),
    var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
  color: var(--ink);
  z-index: 500;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.brand strong {
  color: var(--ink);
  filter: drop-shadow(0 0 10px rgba(255, 138, 0, 0.6));
  font-size: clamp(1.9rem, 3.4vw, 2.55rem);
  font-weight: 950;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  min-width: 0;
  flex-wrap: wrap;
}

.nav-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible {
  border-color: var(--orange);
  background: rgba(255, 138, 0, 0.1);
  color: #fff;
  outline: 0;
  box-shadow: 0 0 15px rgba(255, 138, 0, 0.3);
}

.buy-link {
  border-color: var(--orange);
  background: transparent;
  color: var(--orange);
  box-shadow: 0 0 15px rgba(255, 138, 0, 0.2);
}

.buy-link:hover,
.buy-link:focus-visible {
  border-color: var(--orange);
  background: var(--orange);
  color: #050507;
  box-shadow: 0 0 20px rgba(255, 138, 0, 0.6);
}

.hero {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 860px);
  align-items: center;
  justify-content: center;
  padding: clamp(46px, 6vw, 78px) clamp(20px, 8vw, 150px);
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 138, 0, 0.05), transparent 25%),
    radial-gradient(circle at 72% 64%, rgba(255, 0, 60, 0.05), transparent 30%),
    linear-gradient(180deg, var(--cream), var(--paper));
  color: var(--ink);
  text-align: center;
}

.hero-copy {
  min-width: 0;
  margin: 0 auto;
}

.hero-kicker {
  margin: 0 0 16px;
  color: var(--orange);
  font-family: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(0.72rem, 1vw, 0.86rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 11.5ch;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(3.5rem, 6.4vw, 6.35rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.9;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.hero h1 span {
  color: var(--orange);
  text-shadow: 0 0 25px rgba(255, 138, 0, 0.6);
}

.hero-text {
  max-width: 680px;
  margin: 24px auto 0;
  color: var(--muted);
  font-family: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(0.94rem, 1.2vw, 1.04rem);
  line-height: 1.55;
}

.hero-form {
  width: min(100%, 620px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin: 30px auto 0;
}

.hero-form input,
.hero-form button {
  min-height: 56px;
  border-radius: 8px;
  font-family: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.1;
}

.hero-form input {
  width: 100%;
  min-width: 0;
  padding: 15px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  box-shadow: none;
}

.hero-form input::placeholder {
  color: var(--muted);
}

.hero-form input:focus,
.hero-form button:focus-visible {
  outline: 0;
  border-color: var(--orange);
  box-shadow:
    0 0 0 3px rgba(255, 138, 0, 0.18),
    0 0 20px rgba(255, 138, 0, 0.2);
}

.hero-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid var(--orange);
  background: transparent;
  color: var(--orange);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow:
    0 0 20px rgba(255, 138, 0, 0.16),
    inset 0 0 10px rgba(255, 138, 0, 0.1);
}

.hero-form button::after {
  content: "->";
  margin-left: 12px;
  color: var(--orange);
}

.hero-form button:hover {
  transform: translateY(-1px);
}

.hero-form-status {
  grid-column: 1 / -1;
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-family: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: left;
}

.category-button:hover,
.place-item:hover {
  border-color: #aeb7bf;
}

.place-item[aria-current="true"] {
  border-color: var(--ink);
  box-shadow: inset 3px 0 0 var(--ink);
}

.workspace {
  display: grid;
  grid-template-columns: minmax(380px, 560px) minmax(0, 1fr);
  gap: clamp(24px, 3.5vw, 58px);
  align-items: center;
  height: min(70vh, 670px);
  min-height: 545px;
  padding: clamp(24px, 3vw, 44px) 0 clamp(24px, 3vw, 44px) clamp(24px, 3vw, 44px);
  overflow: hidden;
  background: var(--cream);
}

.cooking-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(405px, 1.05fr);
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
  padding: clamp(44px, 6vw, 78px) clamp(24px, 6vw, 88px) clamp(44px, 6vw, 78px) 0;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}

.cooking-copy {
  max-width: 560px;
  justify-self: start;
}

.roadmap-copy {
  max-width: 756px;
}

.cooking-kicker {
  margin: 0 0 18px;
  color: var(--orange);
  font-family: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cooking-copy p:last-child {
  max-width: 34rem;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.72;
}

.roadmap-list {
  display: grid;
  gap: 38px;
  max-width: 50.7rem;
  margin: 19px;
  padding: 0;
  list-style: none;
}

.roadmap-list li {
  position: relative;
  display: grid;
  grid-template-columns: 146px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  min-height: 120px;
  padding: 22px 62px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 138, 0, 0.05), transparent 58%),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.roadmap-list li:not(:last-child)::after {
  content: "->";
  position: absolute;
  bottom: -34px;
  left: 32px;
  z-index: 2;
  transform: rotate(90deg);
  color: var(--orange);
  font-family: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 15px rgba(255, 138, 0, 0.6);
}

.roadmap-list strong {
  color: var(--orange);
  font-family: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.roadmap-list span {
  color: var(--ink);
  font-size: clamp(1.35rem, 1.62vw, 1.51rem);
  line-height: 1.45;
}

.panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px clamp(16px, 3vw, 28px);
  border-right: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 138, 0, 0.05), transparent 240px),
    var(--panel);
  min-height: 0;
  overflow: auto;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(1.55rem, 4vw, 2.3rem);
  line-height: 1;
  max-width: 10ch;
}

#resultCount {
  min-width: 64px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 800;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  font-weight: 750;
}

.category-button[aria-pressed="true"] {
  border-color: var(--ink);
  box-shadow: inset 0 -3px 0 currentColor;
}

.dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--dot-color, var(--ink));
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.stat-strip span {
  min-width: 0;
  padding: 13px 10px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.77rem;
  line-height: 1.2;
}

.stat-strip span:last-child {
  border-right: 0;
}

.stat-strip strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.spotlight {
  min-height: 154px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 18px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(20, 20, 30, 0.86), rgba(20, 20, 30, 0.6)),
    linear-gradient(45deg, var(--spot-color, var(--red)) 0 38%, var(--orange) 38% 58%, #050507 58%);
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--spot-color, var(--orange));
}

.spotlight h2,
.spotlight p {
  margin: 0;
}

.spotlight h2 {
  font-size: 1.25rem;
  line-height: 1.12;
}

.spotlight p {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.45;
}

.spotlight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 8px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.place-list {
  display: grid;
  gap: 10px;
}

.place-item {
  width: 100%;
  display: grid;
  grid-template-columns: 14px 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  text-align: left;
}

.place-item .dot {
  margin-top: 5px;
}

.place-item strong,
.place-item small {
  display: block;
}

.place-item strong {
  line-height: 1.2;
}

.place-item small {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.35;
}

.place-item span:last-child {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.map-stage {
  position: relative;
  min-width: 0;
  min-height: 0;
  width: 88%;
  height: min(100%, 600px);
  min-height: 460px;
  justify-self: end;
  background: transparent;
  overflow: hidden;
}

.map-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  box-shadow: inset 0 0 40px 10px var(--cream);
}

#map {
  position: absolute;
  inset: 0;
  z-index: 1;
}





.map-copy {
  max-width: 500px;
  justify-self: end;
  color: var(--ink);
}

.map-copy-kicker {
  margin: 0 0 20px;
  color: var(--orange);
  font-family: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.map-copy h2 {
  max-width: 15.5ch;
  margin: 0;
  font-size: clamp(2.5rem, 3.65vw, 4.35rem);
  font-weight: 950;
  line-height: 1.04;
}

.map-copy p:last-child {
  max-width: 29rem;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.78;
}

.map-fallback {
  position: absolute;
  inset: 24px;
  display: grid;
  place-items: center;
  z-index: 3;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(10, 10, 15, 0.94);
  text-align: center;
  font-weight: 800;
}

.map-fallback[hidden] {
  display: none;
}

.leaflet-container {
  font: inherit;
  background: transparent;
  cursor: default;
}

#map .leaflet-tile {
  opacity: 1;
}

#map .leaflet-overlay-pane svg {
  overflow: visible;
}


.leaflet-control-attribution,
.leaflet-control-zoom {
  display: none !important;
}

.state-fill {
  stroke: transparent;
}

.state-border-aura,
.state-border-glow,
.state-border-core {
  mix-blend-mode: screen;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.state-border-aura {
  filter:
    drop-shadow(0 0 5px rgba(255, 138, 0, 0.22)) drop-shadow(0 0 12px rgba(255, 138, 0, 0.16));
}

.state-border-glow {
  filter:
    drop-shadow(0 0 4px rgba(255, 138, 0, 0.34)) drop-shadow(0 0 8px rgba(255, 138, 0, 0.18));
}

.state-border-core {
  filter:
    drop-shadow(0 0 3px rgba(255, 138, 0, 0.36));
}

.snack-marker {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 2px solid var(--marker-color);
  border-radius: 50% 50% 50% 8px;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.8), transparent 36%),
    var(--marker-color, var(--orange));
  color: #060607;
  box-shadow:
    0 0 10px var(--marker-color),
    0 0 20px var(--marker-glow, rgba(255, 138, 0, 0.6)),
    0 12px 24px rgba(0, 0, 0, 0.8);
  font-weight: 900;
  transform: rotate(-45deg);
}

.snack-marker span {
  transform: rotate(45deg);
}

.leaflet-popup-content-wrapper {
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
}

.leaflet-popup-tip {
  background: var(--paper);
}

.leaflet-popup-content {
  min-width: 220px;
  margin: 16px;
}

.popup-title {
  margin: 0 0 7px;
  font-size: 1rem;
  line-height: 1.2;
}

.popup-meta,
.popup-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}

.popup-copy {
  margin-top: 10px;
}

.popup-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.popup-actions a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.05);
}

.popup-actions a:hover {
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: 0 0 10px rgba(255, 138, 0, 0.2);
}

.popup-actions a:first-child {
  background: var(--orange);
  border-color: var(--orange);
  color: #050507;
  box-shadow: 0 0 10px rgba(255, 138, 0, 0.4);
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px clamp(18px, 7vw, 52px);
  }

  .hero h1 {
    max-width: 10.5ch;
    font-size: clamp(3.4rem, 10vw, 5.4rem);
  }

  .hero-text {
    max-width: 620px;
  }

  .workspace {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
    padding: clamp(24px, 4vw, 54px);
    overflow: visible;
  }

  .map-stage {
    width: 100%;
    min-height: 352px;
    height: 46vh;
  }

  .map-copy {
    max-width: 680px;
    justify-self: start;
  }

  h1 {
    max-width: 14ch;
  }

  .cooking-section {
    grid-template-columns: 1fr;
  }

  .cooking-copy {
    max-width: 680px;
  }

  .site-footer {
    width: 100%;
  }

}

@media (max-width: 560px) {
  .topbar {
    min-height: 88px;
    gap: 14px;
    padding: 16px;
  }

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

  .hero {
    padding: 30px 18px 34px;
  }

  .hero-kicker {
    margin-bottom: 12px;
    font-size: 0.68rem;
  }

  .hero h1 {
    max-width: 9.5ch;
    font-size: clamp(2.75rem, 14vw, 3.7rem);
  }

  .hero-text {
    margin-top: 18px;
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .hero-form {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .hero-form input,
  .hero-form button {
    min-height: 48px;
    font-size: 0.76rem;
  }

  .hero-form button {
    width: 100%;
    padding: 12px 16px;
  }

  .hero-form-status {
    text-align: center;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: thin;
  }

  .nav-link {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 9px 12px;
    font-size: 0.86rem;
  }

  .workspace {
    height: auto;
    min-height: 0;
    padding: 18px;
  }

  .map-stage {
    min-height: 282px;
    height: 40vh;
  }

  .map-copy h2 {
    max-width: 12ch;
    font-size: clamp(2.1rem, 12vw, 3rem);
  }

  .cooking-section {
    padding: 42px 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 14px;
    padding: 22px 18px;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .roadmap-list li {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
    padding: 18px;
  }

  .roadmap-list li:not(:last-child)::after {
    left: 18px;
  }

  .panel {
    padding: 18px 14px 24px;
  }

  .panel-head {
    align-items: flex-start;
  }

  .stat-strip {
    grid-template-columns: 1fr;
  }

  .stat-strip span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat-strip span:last-child {
    border-bottom: 0;
  }

  .place-item {
    grid-template-columns: 12px 1fr;
  }

  .place-item span:last-child {
    grid-column: 2;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(180deg, #05050a 0%, #09090f 42%, #05050a 100%);
}

.shell {
  background:
    linear-gradient(180deg, rgba(255, 138, 0, 0.04), transparent 340px),
    var(--cream);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 2000;
  min-height: 92px;
  padding: 18px clamp(18px, 4vw, 56px);
  background:
    linear-gradient(90deg, rgba(255, 138, 0, 0.14), transparent 38%),
    rgba(8, 8, 13, 0.92);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.brand strong {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  letter-spacing: 0;
}

.nav-link {
  min-height: 42px;
  padding: 10px 15px;
  border-color: rgba(255, 255, 255, 0.09);
  background: transparent;
  color: rgba(224, 229, 236, 0.82);
  font-size: 0.9rem;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  background: rgba(255, 138, 0, 0.12);
  color: #fff;
  transform: translateY(-1px);
}

.buy-link {
  background: var(--orange);
  border-color: var(--orange);
  color: #050507;
  box-shadow: 0 0 22px rgba(255, 138, 0, 0.24);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(760px, calc(100vh - 92px));
  grid-template-columns: minmax(0, 1120px);
  justify-content: start;
  padding: clamp(70px, 10vw, 130px) clamp(20px, 8vw, 132px);
  background:
    linear-gradient(90deg, rgba(5, 5, 10, 0.98) 0%, rgba(5, 5, 10, 0.84) 48%, rgba(5, 5, 10, 0.62) 100%),
    linear-gradient(180deg, rgba(255, 138, 0, 0.08), rgba(5, 5, 10, 0.86) 72%),
    var(--cream);
  text-align: left;
}

.hero::before {
  content: "";
  position: absolute;
  top: -42px;
  right: -18px;
  z-index: 0;
  width: min(76vw, 960px);
  height: min(70vw, 760px);
  pointer-events: none;
  background: url("123.png") top right / contain no-repeat;
  opacity: 0.88;
  filter: blur(0.45px) drop-shadow(0 32px 80px rgba(0, 0, 0, 0.58));
  -webkit-mask-image: radial-gradient(ellipse at 72% 22%, #000 0 44%, rgba(0, 0, 0, 0.74) 56%, transparent 78%);
  mask-image: radial-gradient(ellipse at 72% 22%, #000 0 44%, rgba(0, 0, 0, 0.74) 56%, transparent 78%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 5, 10, 0.94) 0%, rgba(5, 5, 10, 0.78) 38%, rgba(5, 5, 10, 0.18) 72%, rgba(5, 5, 10, 0.76) 100%),
    linear-gradient(180deg, rgba(5, 5, 10, 0.1) 0%, rgba(5, 5, 10, 0.94) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 20px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 138, 0, 0.34);
  border-radius: 8px;
  background: rgba(255, 138, 0, 0.09);
  color: var(--orange);
  font-size: 0.76rem;
}

.hero h1 {
  max-width: 10.8ch;
  margin: 0;
  font-size: clamp(4.2rem, 8.2vw, 8.6rem);
  line-height: 0.86;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.72);
}

.hero-text {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(224, 229, 236, 0.72);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.65;
}

.hero-form {
  width: min(100%, 650px);
  margin: 34px 0 0;
  gap: 12px;
}

.hero-form input,
.hero-form button {
  min-height: 58px;
}

.hero-form input {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
}

.hero-form button {
  min-width: 196px;
  background: var(--orange);
  color: #050507;
  box-shadow: 0 12px 34px rgba(255, 138, 0, 0.2);
}

.hero-form button::after {
  color: #050507;
}

.workspace {
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(28px, 5vw, 78px);
  height: auto;
  min-height: 680px;
  padding: clamp(64px, 8vw, 118px) clamp(20px, 6vw, 96px);
  background:
    linear-gradient(180deg, #05050a 0%, #0b0b12 100%);
}

.map-copy {
  max-width: 560px;
  justify-self: start;
}

.map-copy h2 {
  max-width: 12ch;
  color: #fff;
  font-size: clamp(3rem, 5.4vw, 6rem);
  line-height: 0.92;
}

.map-copy p:last-child {
  max-width: 31rem;
  margin-top: 28px;
  color: rgba(224, 229, 236, 0.68);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.map-stage {
  width: 100%;
  height: clamp(470px, 55vw, 680px);
  min-height: 0;
  justify-self: stretch;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: #08080d;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(255, 138, 0, 0.08);
}

.map-stage::after {
  z-index: 2;
  border-radius: 8px;
  box-shadow:
    inset 0 0 45px 14px rgba(5, 5, 10, 0.94),
    inset 0 0 0 1px rgba(255, 138, 0, 0.08);
}

.cooking-section {
  grid-template-columns: minmax(420px, 0.98fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(34px, 5vw, 84px);
  padding: clamp(64px, 8vw, 112px) clamp(20px, 6vw, 96px);
  background:
    linear-gradient(180deg, #0b0b12 0%, #09090f 100%);
}

.roadmap-copy {
  width: 100%;
  max-width: 840px;
  grid-column: 2;
  justify-self: end;
}

.roadmap-visual {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  min-width: 0;
  justify-self: start;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: #08080d;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(255, 138, 0, 0.08);
}

.roadmap-visual::before {
  content: "";
  position: absolute;
  inset: 14% 4% 8% 12%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(255, 138, 0, 0.18);
  filter: blur(52px);
}

.roadmap-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: 8px;
  box-shadow:
    inset 0 0 45px 14px rgba(5, 5, 10, 0.94),
    inset 0 0 0 1px rgba(255, 138, 0, 0.08);
}

.roadmap-visual img {
  display: block;
  width: min(154%, 936px);
  height: auto;
  min-height: 460px;
  object-fit: contain;
  opacity: 0.48;
  filter: drop-shadow(0 34px 76px rgba(0, 0, 0, 0.58));
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 16%, #000 84%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 14%, #000 82%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, #000 16%, #000 84%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 14%, #000 82%, transparent 100%);
  mask-composite: intersect;
}

.cooking-kicker {
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 0.78rem;
}

.roadmap-title {
  max-width: none;
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(3.1rem, 6vw, 6.8rem);
  line-height: 0.88;
}

.roadmap-list {
  gap: 18px;
  max-width: none;
  margin: 0;
}

.roadmap-list li {
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 24px;
  min-height: 112px;
  padding: 24px 28px;
  border-color: rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(90deg, rgba(255, 138, 0, 0.1), rgba(255, 255, 255, 0.025) 56%),
    rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

.roadmap-list li:not(:last-child)::after {
  content: "";
  bottom: -19px;
  left: 28px;
  width: 1px;
  height: 18px;
  background: rgba(255, 138, 0, 0.42);
  transform: none;
  text-shadow: none;
}

.roadmap-list strong {
  font-size: 0.85rem;
}

.roadmap-list span {
  color: rgba(224, 229, 236, 0.82);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
}

.site-footer {
  width: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  align-items: start;
  gap: 22px;
  padding: clamp(36px, 5vw, 64px) clamp(20px, 6vw, 96px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(255, 138, 0, 0.12), transparent 52%),
    #05050a;
}

.footer-brand {
  max-width: 520px;
}

.footer-brand p {
  margin: 12px 0 0;
  color: rgba(224, 229, 236, 0.64);
  font-size: 1rem;
  line-height: 1.55;
}

.site-footer strong {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 950;
  line-height: 1;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-self: start;
  justify-content: flex-end;
}

.footer-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.1;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  border-color: var(--orange);
  color: var(--orange);
  outline: 0;
  box-shadow: 0 0 12px rgba(255, 138, 0, 0.2);
}

.site-footer span {
  grid-column: 1 / -1;
  margin-top: 12px;
  color: var(--muted);
  font-family: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .topbar {
    position: relative;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    padding: 64px clamp(18px, 6vw, 48px);
    background:
      linear-gradient(180deg, rgba(5, 5, 10, 0.92), rgba(5, 5, 10, 0.98)),
      var(--cream);
  }

  .hero::before {
    top: -28px;
    right: 50%;
    width: min(110vw, 760px);
    height: min(88vw, 620px);
    transform: translateX(50%);
    background-position: top center;
    opacity: 0.42;
    -webkit-mask-image: radial-gradient(ellipse at 50% 18%, #000 0 40%, rgba(0, 0, 0, 0.65) 54%, transparent 78%);
    mask-image: radial-gradient(ellipse at 50% 18%, #000 0 40%, rgba(0, 0, 0, 0.65) 54%, transparent 78%);
  }

  .hero h1 {
    max-width: 10ch;
  }

  .workspace,
  .cooking-section {
    grid-template-columns: 1fr;
    padding: clamp(48px, 8vw, 78px) clamp(18px, 6vw, 52px);
  }

  .roadmap-copy {
    grid-column: auto;
    max-width: 100%;
    justify-self: start;
  }

  .roadmap-visual {
    grid-column: auto;
    grid-row: auto;
    justify-self: center;
    max-width: 560px;
  }

  .roadmap-visual img {
    margin: 0 auto;
  }

  .workspace {
    min-height: 0;
  }

  .map-stage {
    height: clamp(360px, 68vw, 560px);
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .topbar {
    min-height: 0;
    padding: 16px;
  }

  .brand strong {
    font-size: 1.65rem;
  }

  .site-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav-link {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 8px 11px;
    font-size: 0.82rem;
  }

  .hero {
    padding: 48px 18px;
  }

  .hero::before {
    top: -18px;
    width: 118vw;
    height: 92vw;
    opacity: 0.34;
  }

  .hero h1 {
    max-width: 9.5ch;
    font-size: clamp(3.25rem, 16vw, 4.9rem);
  }

  .hero-form {
    grid-template-columns: 1fr;
  }

  .hero-form button {
    width: 100%;
  }

  .map-copy h2,
  .roadmap-title {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .map-stage {
    height: 360px;
  }

  .roadmap-list li {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 20px;
  }

  .roadmap-list li:not(:last-child)::after {
    left: 20px;
  }

  .roadmap-visual {
    max-width: 420px;
  }

  .site-footer {
    padding: 34px 18px;
  }
}
