:root {
  --bg: #050505;
  --bg-soft: #101010;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --surface: #f6f3ee;
  --text: #ffffff;
  --text-dark: #101010;
  --muted: rgba(255, 255, 255, 0.65);
  --muted-dark: rgba(16, 16, 16, 0.65);
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(16, 16, 16, 0.08);
  --accent: #ff6a1f;
  --accent-soft: rgba(255, 106, 31, 0.14);
  --accent-glow: rgba(255, 106, 31, 0.35);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 28px;
  --radius-sm: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 106, 31, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.06), transparent 18%),
    linear-gradient(180deg, #090909 0%, #0f0f0f 50%, #060606 100%);
  min-height: 100vh;
}

.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
textarea {
  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;
}

.topbar,
.section,
.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.brandmark {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brandmark-badge {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #ff9858);
  color: #111;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.brandmark-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brandmark-text strong,
.section h1,
.section h2,
.menu-category p,
.feature-card h2,
.flow-card h3,
.chat-header strong {
  font-family: "Space Grotesk", sans-serif;
}

.brandmark-text span,
.nav a,
.ghost-link {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav,
.topbar-actions,
.hero-actions,
.composer-actions,
.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav a:hover,
.ghost-link:hover,
.footer-links a:hover {
  color: #fff;
}

.primary-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.primary-link,
.button-primary {
  background: linear-gradient(135deg, var(--accent), #ff8b47);
  color: #101010;
  font-weight: 800;
  box-shadow: 0 12px 30px var(--accent-glow);
}

.primary-link {
  padding: 12px 18px;
}

.button {
  min-height: 48px;
  padding: 0 18px;
}

.button:hover,
.primary-link:hover,
.icon-button:hover,
.menu-item:hover,
.quick-prompt:hover,
.voice-toggle:hover,
.floating-assistant-button:hover {
  transform: translateY(-1px);
}

.button-secondary,
.icon-button,
.quick-prompt,
.voice-toggle,
.floating-assistant-button {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: #fff;
}

.button-full {
  width: 100%;
}

.section {
  padding: 38px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  padding-top: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.feature-card,
.menu-category,
.service-card,
.assistant-sidebar,
.chat-shell,
.flow-card,
.floating-assistant {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-panel,
.feature-card,
.menu-category,
.service-card,
.assistant-sidebar,
.chat-shell,
.flow-card {
  border-radius: var(--radius);
}

.hero-copy {
  padding: 44px;
}

.section-chip,
.section-label,
.feature-kicker,
.sidebar-label,
.category-head span,
.chat-header span,
.payment-title {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.section-chip {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.chip-dot,
.chat-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent-glow);
}

.hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.hero h1 span {
  display: block;
  color: var(--accent);
}

.hero-lead,
.section-copy,
.feature-card p,
.service-card p,
.flow-card p,
.voice-notes li,
.payment-copy,
.footer p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-lead {
  max-width: 620px;
  font-size: 1.04rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.hero-metrics article,
.payment-method,
.flow-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.hero-metrics strong,
.payment-method strong,
.flow-card span,
.flow-card h3 {
  display: block;
}

.hero-metrics strong {
  margin-bottom: 4px;
}

.hero-metrics span,
.payment-method span,
.flow-card span {
  color: var(--muted);
}

.hero-visual {
  display: grid;
  gap: 20px;
}

.hero-food-image {
  min-height: 320px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.72)),
    url("https://images.unsplash.com/photo-1664993101841-036f189719b6?auto=format&fit=crop&fm=jpg&q=80&w=1400") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.hero-food-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 106, 31, 0.28), transparent 34%);
}

.hero-food-overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.hero-food-overlay span {
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-food-overlay strong {
  max-width: 320px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1;
}

.hero-panel {
  padding: 24px;
}

.hero-panel-head,
.assistant-mini-head,
.chat-header,
.category-head,
.floating-assistant-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-panel-head span:first-child,
.assistant-mini-head span,
.category-head p,
.chat-header strong {
  color: #fff;
}

.live-pill {
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--accent);
  background: var(--accent-soft);
}

.meal-orbit {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.meal-orbit-card,
.assistant-mini-message,
.chat-bubble {
  border-radius: 22px;
  border: 1px solid var(--line);
}

.meal-orbit-card {
  padding: 20px;
  background:
    radial-gradient(circle at top right, rgba(255, 106, 31, 0.24), transparent 35%),
    rgba(255, 255, 255, 0.04);
}

.meal-orbit-card p,
.assistant-mini-message {
  color: var(--muted);
}

.meal-orbit-card h2,
.meal-orbit-card h3 {
  margin: 6px 0;
}

.meal-orbit-card span {
  color: var(--accent);
  font-weight: 700;
}

.spotlight {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.assistant-mini {
  display: grid;
  gap: 14px;
}

.assistant-mini-message {
  padding: 16px 18px;
}

.assistant-mini-message-user {
  background: rgba(255, 255, 255, 0.07);
}

.assistant-mini-message-bot,
.chat-bubble-bot {
  background: linear-gradient(135deg, rgba(255, 106, 31, 0.18), rgba(255, 255, 255, 0.05));
}

.experience-strip,
.service-layout,
.assistant-layout,
.flow-grid,
.order-studio-layout,
.visual-menu-grid {
  display: grid;
  gap: 18px;
}

.experience-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.service-card,
.assistant-sidebar,
.chat-shell,
.flow-card {
  padding: 28px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.section-heading h2 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.05em;
}

.section-copy {
  max-width: 480px;
}

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

.menu-category {
  padding: 24px;
}

.visual-menu-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.visual-meal-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.62)),
    var(--meal-image) center/cover no-repeat;
  box-shadow: var(--shadow);
}

.visual-meal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 10%, rgba(0, 0, 0, 0.78) 100%),
    radial-gradient(circle at top right, rgba(255, 106, 31, 0.26), transparent 35%);
}

.visual-meal-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 22px;
  display: grid;
  gap: 10px;
}

.visual-meal-overlay p,
.order-summary-empty,
.order-summary-line span {
  color: var(--muted);
}

.visual-meal-overlay h3,
.order-summary-head h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
}

.visual-meal-overlay span {
  color: #fff;
  font-weight: 700;
}

.visual-order-button {
  width: fit-content;
}

.category-head {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.category-head p {
  margin: 0;
  font-size: 1.4rem;
}

.category-head span {
  color: var(--muted);
}

.menu-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 12px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  text-align: left;
}

.menu-item span {
  max-width: 70%;
}

.menu-item strong {
  color: var(--accent);
  font-size: 0.92rem;
}

.service-layout {
  grid-template-columns: 0.95fr 1.05fr;
}

.delivery-zones,
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.delivery-zones span {
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: #fff;
}

.payment-method {
  min-width: 180px;
}

.payment-method-active {
  border-color: rgba(255, 106, 31, 0.4);
  box-shadow: inset 0 0 0 1px rgba(255, 106, 31, 0.12);
}

.payment-qr-shell {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
}

.bank-transfer-card {
  margin: 18px 0 16px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.bank-transfer-label {
  margin: 0 0 14px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

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

.bank-transfer-grid article {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.bank-transfer-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.82rem;
}

.bank-transfer-grid strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.payment-qr {
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background: #fff;
}

.qr-grid {
  width: 124px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.qr-grid span {
  aspect-ratio: 1;
  border-radius: 4px;
  background: #121212;
}

.qr-grid span:nth-child(2n),
.qr-grid span:nth-child(7),
.qr-grid span:nth-child(11),
.qr-grid span:nth-child(17),
.qr-grid span:nth-child(22) {
  background: var(--accent);
}

.assistant-layout {
  grid-template-columns: 320px 1fr;
  align-items: start;
}

.assistant-sidebar {
  display: grid;
  gap: 16px;
}

.sidebar-card {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  padding: 18px;
}

.sidebar-label {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
}

.quick-prompt {
  width: 100%;
  text-align: left;
  border-radius: 16px;
  padding: 14px 16px;
  margin-top: 10px;
}

.voice-notes {
  padding-left: 18px;
  margin: 0;
}

.chat-shell {
  min-height: 620px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
}

.chat-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.chat-log {
  min-height: 340px;
  max-height: 440px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-right: 4px;
}

.chat-bubble {
  max-width: min(82%, 580px);
  padding: 16px 18px;
  line-height: 1.65;
}

.chat-bubble-user {
  align-self: flex-end;
  background: #fff;
  color: var(--text-dark);
  border-color: rgba(255, 255, 255, 0.9);
}

.chat-composer {
  display: grid;
  gap: 14px;
}

.chat-composer textarea {
  width: 100%;
  resize: vertical;
  min-height: 72px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  outline: none;
}

.chat-composer textarea:focus {
  border-color: rgba(255, 106, 31, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 106, 31, 0.12);
}

.icon-button,
.voice-toggle {
  min-height: 46px;
  border-radius: 999px;
  padding: 0 16px;
}

.voice-active {
  border-color: rgba(255, 106, 31, 0.52);
  background: rgba(255, 106, 31, 0.12);
}

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

.order-studio-layout {
  grid-template-columns: 1.1fr 0.9fr;
}

.order-summary-card {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.order-summary-card-alt {
  background:
    radial-gradient(circle at top right, rgba(255, 106, 31, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.order-summary-head,
.order-summary-total,
.order-summary-actions,
.order-summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.order-summary-list {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.order-summary-line {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.order-summary-line strong {
  display: block;
}

.order-summary-line button {
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.order-summary-total {
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.order-summary-total strong {
  color: var(--accent);
  font-size: 1.15rem;
}

.order-summary-actions {
  margin-top: 18px;
}

.flow-card {
  min-height: 200px;
}

.flow-card span {
  margin-bottom: 18px;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.flow-card h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 56px;
}

.floating-assistant-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 22;
  border-radius: 999px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
}

.floating-assistant {
  position: fixed;
  right: 20px;
  bottom: 88px;
  z-index: 23;
  width: min(340px, calc(100vw - 32px));
  padding: 18px;
  border-radius: 26px;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-assistant.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-assistant-body {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

@media (max-width: 1120px) {
  .hero,
  .service-layout,
  .assistant-layout,
  .experience-strip,
  .flow-grid,
  .order-studio-layout {
    grid-template-columns: 1fr;
  }

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

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

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

  .section-copy {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .topbar {
    flex-wrap: wrap;
  }

  .nav,
  .topbar-actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .hero-copy,
  .hero-panel,
  .feature-card,
  .menu-category,
  .service-card,
  .assistant-sidebar,
  .chat-shell,
  .flow-card {
    padding: 22px;
  }

  .hero-metrics,
  .menu-grid,
  .visual-menu-grid {
    grid-template-columns: 1fr;
  }

  .payment-qr-shell {
    grid-template-columns: 1fr;
  }

  .bank-transfer-grid {
    grid-template-columns: 1fr;
  }

  .payment-qr {
    width: 160px;
    height: 160px;
  }

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

  .composer-actions {
    flex-wrap: wrap;
  }

  .button,
  .icon-button {
    width: 100%;
  }
}
