:root {
  --ink: #151515;
  --ink-soft: #34302b;
  --coal: #0d0d0c;
  --cream: #f6f1e8;
  --paper: #fffaf0;
  --line: rgba(21, 21, 21, 0.12);
  --line-dark: rgba(255, 250, 240, 0.16);
  --red: #df2f24;
  --red-dark: #a61f18;
  --brass: #c99741;
  --sage: #75836a;
  --shadow: 0 22px 60px rgba(15, 12, 8, 0.2);
  --header-height: 72px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::selection {
  background: rgba(223, 47, 36, 0.25);
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(13, 13, 12, 0.38);
  border-bottom: 1px solid rgba(255, 250, 240, 0.12);
  color: var(--paper);
  display: flex;
  height: var(--header-height);
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
  z-index: 20;
}

.site-header.is-scrolled {
  background: rgba(246, 241, 232, 0.92);
  border-color: rgba(21, 21, 21, 0.1);
  color: var(--ink);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  min-width: max-content;
}

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

.brand span {
  display: grid;
  line-height: 1;
}

.brand strong {
  font-size: 17px;
  font-weight: 760;
}

.brand small {
  color: currentColor;
  font-size: 10px;
  margin-top: 4px;
  opacity: 0.72;
  text-transform: uppercase;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: clamp(18px, 2.4vw, 34px);
  font-size: 14px;
}

.nav-links a {
  opacity: 0.78;
  transition: opacity 160ms ease;
}

.nav-links a:hover {
  opacity: 1;
}

.header-cta,
.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 720;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.header-cta {
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
}

.site-header.is-scrolled .header-cta {
  background: var(--ink);
  color: var(--paper);
}

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

.button.primary {
  background: var(--red);
  color: #fff;
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.secondary {
  border: 1px solid rgba(255, 250, 240, 0.42);
  color: var(--paper);
}

.hero {
  min-height: 92svh;
  overflow: hidden;
  position: relative;
}

.hero-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
  transform: scale(1.02);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(9, 9, 8, 0.92) 0%, rgba(9, 9, 8, 0.74) 31%, rgba(9, 9, 8, 0.12) 63%),
    linear-gradient(180deg, rgba(9, 9, 8, 0.3), rgba(9, 9, 8, 0.58));
  inset: 0;
  position: absolute;
}

.hero-content {
  color: var(--paper);
  max-width: 690px;
  padding: calc(var(--header-height) + 72px) clamp(22px, 6vw, 84px) 64px;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  color: var(--brass);
  font-size: 13px;
  font-weight: 760;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--red);
}

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

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(76px, 14vw, 164px);
  font-weight: 680;
  letter-spacing: 0;
  line-height: 0.86;
  margin-bottom: 28px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 6vw, 78px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 0.98;
}

h3 {
  font-size: 26px;
  line-height: 1.05;
}

.hero-lead {
  color: rgba(255, 250, 240, 0.88);
  font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1.32;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 30px;
}

.hero-proof {
  color: rgba(255, 250, 240, 0.72);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 650px;
}

.hero-proof span {
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 999px;
  font-size: 13px;
  padding: 9px 12px;
}

.intro-band,
.launch-video-band,
.campaigns,
.dashboard-band,
.pricing,
.agent-band,
.proof-band,
.final-cta {
  padding-left: clamp(22px, 5vw, 72px);
  padding-right: clamp(22px, 5vw, 72px);
}

.intro-band {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.86), rgba(246, 241, 232, 1)),
    radial-gradient(circle at 10% 0%, rgba(201, 151, 65, 0.12), transparent 34%);
  padding-bottom: clamp(76px, 10vw, 130px);
  padding-top: clamp(76px, 10vw, 124px);
}

.launch-video-band {
  background:
    radial-gradient(circle at 78% 20%, rgba(201, 151, 65, 0.16), transparent 32%),
    linear-gradient(180deg, #121211 0%, #070706 100%);
  color: var(--paper);
  padding-bottom: clamp(76px, 10vw, 132px);
  padding-top: clamp(76px, 10vw, 132px);
}

.launch-video-inner {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 86px);
  grid-template-columns: minmax(260px, 0.56fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1360px;
}

.launch-video-copy {
  max-width: 550px;
}

.launch-video-copy h2 {
  font-size: clamp(42px, 5.4vw, 82px);
  line-height: 0.92;
  margin-top: 18px;
}

.launch-video-copy p:not(.eyebrow) {
  color: rgba(255, 250, 240, 0.72);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.48;
  margin-top: 26px;
}

.launch-video-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.launch-video-meta span {
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 999px;
  color: rgba(255, 250, 240, 0.74);
  font-size: 13px;
  font-weight: 720;
  padding: 10px 13px;
}

.launch-video-frame {
  background: #030303;
  border: 1px solid rgba(255, 250, 240, 0.12);
  border-radius: 10px;
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.launch-video {
  aspect-ratio: 16 / 9;
  background: #030303;
  display: block;
  object-fit: cover;
  width: 100%;
}

.launch-video-mobile {
  display: none;
}

.intro-grid {
  align-items: center;
  display: grid;
  gap: clamp(38px, 6vw, 92px);
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  margin: 0 auto;
  max-width: 1260px;
}

.intro-copy p,
.section-head p,
.dashboard-copy p,
.agent-copy p,
.final-inner p {
  color: rgba(21, 21, 21, 0.68);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.58;
}

.system-visual {
  min-height: 640px;
  position: relative;
}

.order-device {
  background: #121211;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--paper);
  margin-left: auto;
  max-width: 440px;
  min-height: 620px;
  padding: 22px;
  position: relative;
}

.device-top {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.device-top span,
.preview-meta span,
.price-plan > span,
.call-card small,
.story-copy small {
  color: var(--brass);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.device-top strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 0.96;
}

.order-hero-photo {
  border-radius: 8px;
  height: 176px;
  margin-bottom: 16px;
  overflow: hidden;
  position: relative;
}

.order-hero-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.order-hero-photo::after {
  background: linear-gradient(180deg, rgba(13, 13, 12, 0.08), rgba(13, 13, 12, 0.76));
  content: "";
  inset: 0;
  position: absolute;
}

.order-hero-photo div {
  bottom: 16px;
  display: grid;
  gap: 5px;
  left: 16px;
  position: absolute;
  right: 16px;
  z-index: 1;
}

.order-hero-photo span {
  color: var(--brass);
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.order-hero-photo strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 0.96;
}

.menu-row,
.cart-strip,
.ops-panel,
.call-card {
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(255, 250, 240, 0.08);
  border: 1px solid rgba(255, 250, 240, 0.12);
  border-radius: 8px;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-top: 12px;
  padding: 16px;
  position: relative;
  z-index: 1;
}

.menu-row > div:not(.dish-thumb) {
  flex: 1 1 auto;
  min-width: 0;
}

.menu-row > strong,
.cart-strip > strong {
  flex: 0 0 auto;
  text-align: right;
  white-space: nowrap;
}

.dish-thumb {
  background-image: url("assets/rosa-tavola-food-square.png");
  background-size: 260%;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(255, 250, 240, 0.16);
  flex: 0 0 58px;
  height: 58px;
}

.dish-steak {
  background-position: 78% 84%;
}

.dish-pasta {
  background-position: 18% 34%;
}

.dish-bowl {
  background-position: 72% 20%;
}

.menu-row.active {
  background: rgba(255, 250, 240, 0.14);
}

.menu-row span,
.cart-strip span {
  display: block;
  font-weight: 720;
}

.menu-row small {
  color: rgba(255, 250, 240, 0.64);
  display: block;
  margin-top: 5px;
}

.cart-strip {
  background: var(--red);
  border-color: transparent;
  margin-top: 20px;
}

.ops-panel {
  background: rgba(255, 250, 240, 0.94);
  bottom: 54px;
  box-shadow: 0 20px 50px rgba(15, 12, 8, 0.18);
  color: var(--ink);
  left: 0;
  max-width: 360px;
  position: absolute;
}

.ops-panel small {
  color: rgba(21, 21, 21, 0.68);
}

.status-dot {
  background: #5fc87b;
  border-radius: 999px;
  box-shadow: 0 0 0 7px rgba(95, 200, 123, 0.12);
  flex: 0 0 13px;
  height: 13px;
  width: 13px;
}

.campaigns {
  background: #fffaf0;
  padding-bottom: clamp(70px, 9vw, 122px);
  padding-top: clamp(68px, 8vw, 108px);
}

.section-head {
  margin: 0 auto clamp(42px, 6vw, 76px);
  max-width: 970px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(38px, 5.2vw, 68px);
  margin-left: auto;
  margin-right: auto;
  max-width: 860px;
}

.section-head p {
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}

.generator-showcase {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  margin: 0 auto;
  max-width: 1240px;
}

.flyer-preview,
.social-preview,
.qr-preview,
.price-plan {
  background: #f1e7d8;
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: 8px;
  min-width: 0;
  overflow: hidden;
}

.flyer-preview,
.social-preview,
.qr-preview {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 580px;
  padding: 18px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.flyer-preview:hover,
.social-preview:hover,
.qr-preview:hover,
.price-plan:hover {
  box-shadow: 0 18px 42px rgba(15, 12, 8, 0.12);
  transform: translateY(-4px);
}

.preview-meta {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.preview-meta strong {
  font-size: 15px;
}

.flyer-sheet {
  background: #12110f;
  border-radius: 8px;
  color: var(--paper);
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 610px;
  overflow: hidden;
  position: relative;
}

.flyer-photo {
  height: 235px;
  overflow: hidden;
  position: relative;
}

.flyer-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.flyer-photo::after {
  background:
    linear-gradient(180deg, rgba(18, 17, 15, 0.05), rgba(18, 17, 15, 0.78)),
    linear-gradient(90deg, rgba(18, 17, 15, 0.82), rgba(18, 17, 15, 0.06));
  content: "";
  inset: 0;
  position: absolute;
}

.flyer-logo {
  align-items: center;
  color: var(--paper);
  display: flex;
  gap: 10px;
  left: 24px;
  position: absolute;
  top: 24px;
}

.flyer-logo img {
  border-radius: 8px;
  height: 38px;
  width: 38px;
}

.flyer-logo span {
  font-weight: 780;
}

.flyer-offer {
  padding: 24px 28px 0;
}

.flyer-offer span {
  color: var(--brass);
  display: block;
  font-size: 12px;
  font-weight: 760;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.flyer-sheet h3 {
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.2vw, 58px);
  letter-spacing: 0;
  line-height: 0.92;
  margin-bottom: 14px;
  max-width: 360px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.52);
}

.flyer-sheet p {
  color: rgba(255, 250, 240, 0.78);
  font-size: 16px;
  line-height: 1.4;
  max-width: 360px;
}

.flyer-dishes {
  color: rgba(255, 250, 240, 0.78);
  display: grid;
  gap: 7px;
  list-style: none;
  margin: 18px 28px 0;
  padding: 0;
}

.flyer-dishes li {
  border-top: 1px solid var(--line-dark);
  padding-top: 7px;
}

.flyer-bottom {
  align-items: center;
  border-top: 1px solid var(--line-dark);
  display: flex;
  gap: 16px;
  margin: auto 28px 0;
  padding: 18px 0 26px;
}

.flyer-bottom small {
  color: rgba(255, 250, 240, 0.66);
  display: block;
  margin-top: 4px;
  overflow-wrap: anywhere;
}

.qr-code {
  background: var(--paper);
  border: 8px solid var(--paper);
  border-radius: 8px;
  display: block;
  flex: 0 0 auto;
  height: 86px;
  overflow: hidden;
  width: 86px;
}

.qr-code img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.story-card {
  background: #11110f;
  border-radius: 8px;
  color: var(--paper);
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 610px;
  overflow: hidden;
  position: relative;
}

.story-card::after {
  background: linear-gradient(180deg, rgba(17, 17, 15, 0.02) 18%, rgba(17, 17, 15, 0.34) 48%, rgba(17, 17, 15, 0.95) 82%);
  content: "";
  inset: 0;
  position: absolute;
}

.story-photo {
  inset: 0;
  position: absolute;
}

.story-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.plate {
  background: #f8ead2;
  border: 14px solid #e9c27c;
  border-radius: 999px;
  bottom: 42px;
  height: 150px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 190px;
}

.steam {
  border: 2px solid rgba(255, 250, 240, 0.45);
  border-bottom: 0;
  border-left: 0;
  border-radius: 999px;
  height: 74px;
  position: absolute;
  top: 58px;
  width: 32px;
}

.steam.one {
  left: 43%;
}

.steam.two {
  left: 55%;
  top: 42px;
}

.story-copy {
  margin-top: auto;
  padding: 28px;
  position: relative;
  z-index: 1;
}

.story-copy h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 0.95;
  margin-bottom: 16px;
}

.story-copy p {
  color: rgba(255, 250, 240, 0.68);
  line-height: 1.5;
}

.story-footer {
  align-items: center;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 250, 240, 0.7);
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding: 16px 22px;
  position: relative;
  z-index: 1;
}

.qr-board {
  background: var(--ink);
  border-radius: 8px;
  color: var(--paper);
  display: grid;
  flex: 1;
  gap: 28px;
  grid-template-rows: auto 1fr;
  padding: clamp(24px, 4vw, 34px);
}

.qr-large {
  height: min(48vw, 250px);
  margin: 0 auto;
  width: min(48vw, 250px);
}

.qr-lines h3 {
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 0.98;
}

.qr-lines p {
  color: rgba(255, 250, 240, 0.68);
  line-height: 1.5;
}

.qr-lines dl {
  border-top: 1px solid var(--line-dark);
  margin: 24px 0 0;
}

.qr-lines dl div {
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
}

.qr-lines dt,
.qr-lines dd {
  margin: 0;
}

.qr-lines dd {
  color: var(--brass);
  font-weight: 760;
}

.dashboard-band {
  background:
    radial-gradient(circle at 80% 10%, rgba(223, 47, 36, 0.16), transparent 34%),
    linear-gradient(180deg, #11110f, #171614);
  color: var(--paper);
  padding-bottom: clamp(78px, 10vw, 138px);
  padding-top: clamp(78px, 10vw, 138px);
}

.dashboard-copy {
  margin: 0 auto 42px;
  max-width: 940px;
  text-align: center;
}

.dashboard-copy h2 {
  color: var(--paper);
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
}

.dashboard-copy p {
  color: rgba(255, 250, 240, 0.72);
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}

.dashboard-frame {
  background: rgba(255, 250, 240, 0.04);
  border: 1px solid rgba(255, 250, 240, 0.12);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  margin: 0 auto;
  max-width: 1240px;
  overflow: hidden;
  padding: 10px;
}

.dashboard-frame img {
  border-radius: 6px;
  width: 100%;
}

.agent-band {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(246, 241, 232, 0.96), rgba(246, 241, 232, 0.72)),
    linear-gradient(135deg, rgba(117, 131, 106, 0.2), rgba(223, 47, 36, 0.08));
  display: grid;
  gap: clamp(38px, 7vw, 110px);
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  padding-bottom: clamp(72px, 9vw, 126px);
  padding-top: clamp(72px, 9vw, 126px);
}

.agent-copy {
  max-width: 780px;
}

.agent-visual {
  background: var(--coal);
  border-radius: 8px;
  color: var(--paper);
  min-height: 430px;
  overflow: hidden;
  padding: clamp(26px, 4vw, 44px);
  position: relative;
}

.agent-visual::before {
  background:
    linear-gradient(90deg, rgba(223, 47, 36, 0.26), transparent),
    repeating-linear-gradient(90deg, rgba(255, 250, 240, 0.04) 0 1px, transparent 1px 34px);
  content: "";
  inset: 0;
  opacity: 0.8;
  position: absolute;
}

.call-card {
  align-items: flex-start;
  background: rgba(255, 250, 240, 0.1);
  display: grid;
  gap: 10px;
  margin: 0;
  max-width: 420px;
  padding: 24px;
}

.call-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.call-card p {
  color: rgba(255, 250, 240, 0.66);
  margin: 0;
}

.call-pulse {
  background: var(--red);
  border-radius: 999px;
  box-shadow: 0 0 0 10px rgba(223, 47, 36, 0.15);
  height: 12px;
  position: absolute;
  right: 22px;
  top: 22px;
  width: 12px;
}

.voice-meter {
  align-items: end;
  bottom: 42px;
  display: flex;
  gap: 8px;
  height: 118px;
  left: 44px;
  position: absolute;
  right: 44px;
}

.voice-meter span {
  animation: meter 1.5s ease-in-out infinite;
  background: linear-gradient(180deg, var(--brass), var(--red));
  border-radius: 999px;
  flex: 1;
  height: 34%;
}

.voice-meter span:nth-child(2n) {
  animation-delay: 120ms;
  height: 66%;
}

.voice-meter span:nth-child(3n) {
  animation-delay: 260ms;
  height: 92%;
}

.pricing {
  background: var(--paper);
  padding-bottom: clamp(76px, 10vw, 130px);
  padding-top: clamp(76px, 10vw, 130px);
}

.price-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.price-plan {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
}

.price-plan.featured {
  background: var(--ink);
  color: var(--paper);
}

.price-plan h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 55px);
  line-height: 0.96;
  margin-bottom: 10px;
}

.price-plan h3 small {
  display: block;
  font-family: inherit;
  font-size: 24px;
  opacity: 0.72;
}

.monthly {
  border-bottom: 1px solid currentColor;
  color: inherit;
  font-weight: 760;
  margin-bottom: 20px;
  opacity: 0.78;
  padding-bottom: 20px;
}

.price-plan ul {
  display: grid;
  gap: 13px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.price-plan li {
  color: rgba(21, 21, 21, 0.7);
  line-height: 1.42;
  padding-left: 20px;
  position: relative;
}

.featured li {
  color: rgba(255, 250, 240, 0.76);
}

.price-plan li::before {
  background: var(--red);
  border-radius: 999px;
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  top: 9px;
  width: 7px;
}

.proof-band {
  background: var(--ink);
  color: var(--paper);
  padding-bottom: clamp(44px, 6vw, 72px);
  padding-top: clamp(44px, 6vw, 72px);
}

.proof-line {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
}

.proof-line span {
  color: rgba(255, 250, 240, 0.72);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.32;
}

.proof-line strong {
  color: var(--brass);
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.2;
  text-align: right;
}

.final-cta {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(13, 13, 12, 0.66), rgba(13, 13, 12, 0.86)),
    url("assets/gastdirekt-hero-restaurant.png") center / cover;
  color: var(--paper);
  display: grid;
  gap: clamp(34px, 6vw, 90px);
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  min-height: 76svh;
  padding-bottom: clamp(72px, 10vw, 140px);
  padding-top: clamp(72px, 10vw, 140px);
}

.final-inner {
  max-width: 820px;
}

.final-inner h2 {
  max-width: 780px;
}

.final-inner p {
  color: rgba(255, 250, 240, 0.78);
  max-width: 660px;
}

.final-inner .button {
  margin-top: 18px;
}

.contact-form {
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 240, 0.1);
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  display: grid;
  gap: 15px;
  padding: clamp(22px, 3vw, 32px);
}

.form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: var(--brass);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.form-row input,
.form-row select,
.form-row textarea {
  appearance: none;
  background: rgba(255, 250, 240, 0.94);
  border: 1px solid rgba(255, 250, 240, 0.24);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  outline: none;
  padding: 13px 14px;
  width: 100%;
}

.form-row textarea {
  min-height: 130px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(201, 151, 65, 0.22);
}

.form-submit {
  border: 0;
  cursor: pointer;
  margin-top: 4px;
  width: 100%;
}

.form-note {
  color: rgba(255, 250, 240, 0.68);
  font-size: 13px;
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 640ms ease,
    transform 640ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes meter {
  0%,
  100% {
    transform: scaleY(0.78);
  }
  50% {
    transform: scaleY(1.08);
  }
}

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

  .intro-grid,
  .dashboard-band,
  .agent-band,
  .final-cta,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 48px;
  }

  .system-visual {
    min-height: 680px;
  }

  .order-device {
    margin-left: 0;
    max-width: 520px;
  }

  .ops-panel {
    left: auto;
    right: 0;
  }

  .generator-showcase {
    grid-template-columns: 1fr;
  }

  .flyer-preview,
  .social-preview,
  .qr-preview {
    min-height: 0;
  }

  .dashboard-frame {
    padding: 6px;
  }

  .qr-board {
    grid-template-columns: minmax(180px, 0.65fr) minmax(0, 1fr);
    grid-template-rows: auto;
  }

  .qr-large {
    height: 190px;
    width: 190px;
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    padding: 0 14px;
  }

  .brand img {
    height: 38px;
    width: 38px;
  }

  .brand strong {
    font-size: 15px;
  }

  .header-cta {
    font-size: 13px;
    min-height: 40px;
    padding: 0 12px;
  }

  .hero {
    min-height: 96svh;
  }

  .hero-image {
    object-position: 61% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(9, 9, 8, 0.93) 0%, rgba(9, 9, 8, 0.78) 52%, rgba(9, 9, 8, 0.28) 100%),
      linear-gradient(180deg, rgba(9, 9, 8, 0.12), rgba(9, 9, 8, 0.72));
  }

  .hero-content {
    padding: calc(var(--header-height) + 44px) 20px 40px;
  }

  h1 {
    font-size: clamp(58px, 16vw, 76px);
  }

  h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .hero-lead {
    font-size: 19px;
  }

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

  .hero-proof span {
    width: fit-content;
  }

  .intro-band,
  .launch-video-band,
  .campaigns,
  .dashboard-band,
  .pricing,
  .agent-band,
  .proof-band,
  .final-cta {
    padding-left: 18px;
    padding-right: 18px;
  }

  .launch-video-inner {
    gap: 34px;
    grid-template-columns: 1fr;
  }

  .launch-video-copy {
    max-width: none;
  }

  .launch-video-copy h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .launch-video-copy p:not(.eyebrow) {
    font-size: 18px;
  }

  .launch-video-frame {
    border-radius: 12px;
    margin: 0 auto;
    max-width: 430px;
    width: 100%;
  }

  .launch-video-desktop {
    display: none;
  }

  .launch-video-mobile {
    aspect-ratio: 9 / 16;
    display: block;
    max-height: min(78svh, 760px);
    object-fit: cover;
  }

  .system-visual {
    min-height: 820px;
  }

  .order-device {
    min-height: 690px;
    padding: 18px;
  }

  .device-top {
    margin-bottom: 16px;
  }

  .order-hero-photo {
    height: 150px;
  }

  .ops-panel {
    bottom: 0;
    left: 18px;
    right: 18px;
  }

  .menu-row,
  .cart-strip,
  .ops-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .dish-thumb {
    flex-basis: auto;
    height: 78px;
    width: 100%;
  }

  .flyer-bottom,
  .story-footer,
  .preview-meta,
  .proof-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .flyer-sheet {
    min-height: 690px;
  }

  .story-photo {
    min-height: 0;
  }

  .story-card {
    min-height: 650px;
  }

  .story-copy {
    padding: 22px;
  }

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

  .qr-lines h3 {
    font-size: 36px;
  }

  .agent-visual {
    min-height: 380px;
  }

  .voice-meter {
    bottom: 28px;
    left: 26px;
    right: 26px;
  }

  .proof-line strong {
    text-align: left;
  }

  .dashboard-copy {
    text-align: left;
  }

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

  .contact-form {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
