:root {
  --bg: #fffaf3;
  --surface: #ffffff;
  --surface-soft: #fff3e5;
  --text: #17232b;
  --muted: #66747d;
  --line: #f0dfcc;
  --orange: #ff7900;
  --orange-dark: #d95d00;
  --green: #20b66a;
  --yellow: #ffd166;
  --shadow: 0 24px 60px rgba(59, 35, 12, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  width: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 250, 243, 0.88);
  border-bottom: 1px solid rgba(240, 223, 204, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand img {
  display: block;
  width: clamp(150px, 18vw, 250px);
  height: auto;
}

.nav {
  display: flex;
  gap: clamp(18px, 3vw, 34px);
  color: #43515a;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a:hover {
  color: var(--orange-dark);
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.header-cta,
.primary-button {
  background: linear-gradient(135deg, var(--green), #31d37d);
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(32, 182, 106, 0.24);
}

.header-cta {
  min-height: 44px;
  padding: 0 18px;
}

.primary-button,
.secondary-button {
  padding: 0 24px;
}

.secondary-button {
  border: 1px solid #f0c89f;
  color: var(--orange-dark);
  background: #ffffff;
}

.header-cta:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.primary-button:hover {
  box-shadow: 0 22px 44px rgba(32, 182, 106, 0.32);
}

.secondary-button:hover {
  border-color: var(--orange);
  background: #fff6ec;
}

.hero {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 100vw;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: clamp(46px, 6vw, 78px) clamp(18px, 5vw, 72px) clamp(58px, 7vw, 90px);
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 209, 102, 0.34), transparent 28%),
    radial-gradient(circle at 86% 14%, rgba(32, 182, 106, 0.16), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fffaf3 100%);
}

.hero::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(255, 121, 0, 0.1);
  pointer-events: none;
}

.hero-content,
.hero-preview {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--orange-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 830px;
  margin-bottom: 18px;
  color: #15232b;
  font-size: clamp(2.75rem, 5.45vw, 5.95rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.slogan {
  max-width: 760px;
  margin-bottom: 20px;
  color: var(--orange-dark);
  font-size: clamp(1.24rem, 2.25vw, 2rem);
  font-weight: 900;
  overflow-wrap: break-word;
}

.hero-copy {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.7;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #f1d9bd;
  border-radius: 8px;
  background: #ffffff;
  color: #55636c;
  font-size: 0.9rem;
  font-weight: 800;
}

.features article,
.proof-grid div,
.final-cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  perspective: 1200px;
}

.system-shot {
  display: block;
  width: min(120%, 690px);
  height: auto;
  border: 1px solid rgba(255, 121, 0, 0.22);
  border-radius: 8px;
  opacity: 0.46;
  transform: rotate(-3deg) translateX(-8px);
  filter: saturate(1.08);
  box-shadow: 0 30px 80px rgba(59, 35, 12, 0.16);
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(68px, 8vw, 104px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

h2 {
  color: #15232b;
  font-size: clamp(2.2rem, 4.5vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro > p,
.split p,
.final-cta p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 12px;
}

.features article {
  min-height: 270px;
  padding: 26px;
  box-shadow: 0 16px 34px rgba(59, 35, 12, 0.08);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: #fff1df;
  color: var(--orange-dark);
  font-size: 1.12rem;
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  color: #17232b;
  font-size: 1.2rem;
  line-height: 1.22;
}

.features p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.9fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

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

.proof-grid div {
  min-height: 150px;
  padding: 26px;
  box-shadow: 0 16px 34px rgba(59, 35, 12, 0.08);
}

.proof-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--orange-dark);
  font-size: 1.22rem;
}

.proof-grid span {
  display: block;
  color: var(--muted);
  line-height: 1.5;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1160px, calc(100% - 36px));
  margin: clamp(34px, 7vw, 76px) auto;
  padding: clamp(32px, 6vw, 62px);
  background:
    radial-gradient(circle at 90% 12%, rgba(32, 182, 106, 0.16), transparent 28%),
    linear-gradient(135deg, #fff5e9, #ffffff);
}

.final-cta div {
  max-width: 720px;
}

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 32px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #ffffff;
}

footer img {
  width: 170px;
  height: auto;
}

.restaurant-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.86fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding: clamp(50px, 7vw, 94px) clamp(18px, 5vw, 72px) clamp(48px, 7vw, 84px);
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 209, 102, 0.28), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fffaf3 100%);
}

.restaurant-hero__content {
  min-width: 0;
}

.restaurant-hero__content h1 {
  max-width: 760px;
  font-size: clamp(2.55rem, 5vw, 5.35rem);
}

.restaurant-hero__image {
  margin: 0;
  min-width: 0;
}

.restaurant-hero__image img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 121, 0, 0.22);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(59, 35, 12, 0.16);
}

.restaurant-intro,
.restaurant-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.74fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.restaurant-section-heading {
  max-width: 820px;
  margin-bottom: clamp(28px, 4vw, 46px);
}

.restaurant-feature-list {
  padding-top: clamp(54px, 7vw, 90px);
}

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

.restaurant-feature-list__grid article {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 34px rgba(59, 35, 12, 0.08);
}

.restaurant-feature-list__grid p,
.restaurant-flow p {
  color: var(--muted);
  line-height: 1.65;
}

.restaurant-cta {
  margin-top: 0;
}

@media (max-width: 1080px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .restaurant-feature-list__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .intro,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-preview {
    justify-content: flex-start;
    min-height: auto;
  }

  .system-shot {
    width: min(100%, 560px);
  }

  .restaurant-hero,
  .restaurant-intro,
  .restaurant-flow {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
    padding: 10px 14px;
  }

  .brand img {
    width: 142px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 38px 18px 58px;
  }

  .hero-content,
  .hero-preview {
    width: 100%;
    max-width: 354px;
  }

  .eyebrow {
    font-size: 0.76rem;
    line-height: 1.35;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(2.35rem, 11vw, 3rem);
    line-height: 1.04;
  }

  .slogan {
    font-size: 1.12rem;
    line-height: 1.32;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .final-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    min-height: 52px;
  }

  .features,
  .proof-grid,
  .restaurant-feature-list__grid {
    grid-template-columns: 1fr;
  }

  .restaurant-hero {
    padding: 38px 18px 58px;
  }

  .restaurant-hero__content h1 {
    max-width: 10ch;
    font-size: clamp(2.35rem, 11vw, 3rem);
    line-height: 1.04;
  }

  .hero-preview {
    display: none;
  }

  .section {
    padding: 60px 0;
  }

  .features article,
  .proof-grid div {
    min-height: auto;
  }

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