:root {
  color-scheme: dark;
  --bg: #08100d;
  --surface: #101815;
  --surface-2: #17211d;
  --surface-3: #202b25;
  --line: #314139;
  --line-strong: #52675c;
  --text: #f3f7f2;
  --muted: #a9b8ae;
  --soft: #cbd6ce;
  --green: #68d391;
  --mint: #8ef0c2;
  --gold: #d7b66c;
  --red: #e47764;
  --ink: #07100b;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

body {
  min-height: 100vh;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 52px);
  background: rgba(8, 16, 13, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.brand span {
  font-size: 17px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav a,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 24, 21, 0.88);
  color: var(--text);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.button.primary {
  background: var(--green);
  border-color: var(--green);
  color: var(--ink);
}

.button.disabled {
  color: var(--muted);
  cursor: not-allowed;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  padding: 104px clamp(18px, 5vw, 72px) 64px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("/assets/pressure-hero.png");
  background-size: cover;
  background-position: center right;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 16, 13, 0.96) 0%, rgba(8, 16, 13, 0.74) 43%, rgba(8, 16, 13, 0.25) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(8, 16, 13, 0) 28%);
}

.hero-copy {
  width: min(690px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(215, 182, 108, 0.5);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(215, 182, 108, 0.12);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(46px, 8vw, 92px);
  line-height: 0.96;
}

.lead {
  width: min(570px, 100%);
  margin-bottom: 26px;
  color: var(--soft);
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: 1.45;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section {
  padding: 64px clamp(18px, 5vw, 72px);
}

.section.alt {
  background: #0b1511;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-header {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 10px;
}

.section-header p {
  color: var(--soft);
  line-height: 1.55;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tile,
.menu-item,
.cart {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 20px;
}

.tile h3,
.menu-item h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.tile p,
.menu-item p,
.cart p {
  color: var(--soft);
  line-height: 1.5;
}

.platform {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.platform-main {
  display: flex;
  gap: 14px;
  align-items: center;
}

.platform-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--mint);
  font-weight: 900;
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.menu-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.price {
  margin: 14px 0;
  color: var(--gold);
  font-size: 22px;
  font-weight: 850;
}

.menu-item button,
.cart button {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--green);
  border-radius: 8px;
  background: var(--green);
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
}

.cart {
  position: sticky;
  top: 92px;
}

.cart-list {
  display: grid;
  gap: 8px;
  margin: 16px 0;
}

.cart-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--soft);
}

.cart-note {
  padding: 12px;
  border: 1px solid rgba(215, 182, 108, 0.45);
  border-radius: 8px;
  background: rgba(215, 182, 108, 0.1);
  color: #e8d4a4;
  font-size: 13px;
  line-height: 1.45;
}

.footer {
  padding: 34px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 780px) {
  .site-header {
    position: sticky;
    flex-wrap: wrap;
  }

  .nav {
    width: 100%;
    justify-content: stretch;
  }

  .nav a {
    flex: 1;
  }

  .hero {
    min-height: 78vh;
    padding-top: 42px;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(8, 16, 13, 0.95) 0%, rgba(8, 16, 13, 0.72) 100%),
      linear-gradient(0deg, var(--bg) 0%, rgba(8, 16, 13, 0) 30%);
  }

  .grid,
  .menu-grid,
  .order-layout {
    grid-template-columns: 1fr;
  }

  .cart {
    position: static;
  }

  .platform {
    align-items: flex-start;
    flex-direction: column;
  }
}
