:root {
  --bg: #04100d;
  --panel: #071813;
  --panel-strong: #0a1d17;
  --card: rgba(255, 255, 255, 0.04);
  --card-strong: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(14, 227, 157, 0.22);
  --text: #f5fff9;
  --muted: #8ca9a0;
  --accent: #0ee39d;
  --accent-soft: rgba(14, 227, 157, 0.13);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 0% 0%, rgba(14, 227, 157, 0.12), transparent 28%),
    radial-gradient(circle at 100% 10%, rgba(14, 227, 157, 0.08), transparent 20%),
    linear-gradient(135deg, #04100d, #020807 48%, #03100c);
  overflow-x: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
}

svg {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  padding: 0 28px;
  border-bottom: 1px solid transparent;
  background: rgba(2, 8, 7, 0.72);
  backdrop-filter: blur(18px);
  transition: background 0.22s ease, border-color 0.22s ease;
}

.site-header.scrolled {
  background: rgba(2, 8, 7, 0.9);
  border-color: var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  height: auto;
}

.brand-mark img {
  flex: 0 0 auto;
}

.brand-mark {
  display: inline-flex;
  justify-content: flex-start;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(14, 227, 157, 0.18));
}

.brand-wave {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.brand-wave i {
  width: 2px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(14, 227, 157, 0.75);
  animation: logoWave 1s ease-in-out infinite;
}

.brand-wave i:nth-child(1),
.brand-wave i:nth-child(5) {
  height: 8px;
  animation-delay: -0.1s;
}

.brand-wave i:nth-child(2),
.brand-wave i:nth-child(4) {
  height: 14px;
  animation-delay: -0.25s;
}

.brand-wave i:nth-child(3) {
  height: 20px;
  animation-delay: -0.4s;
}

.brand-word {
  white-space: nowrap;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 28px;
}

.nav a {
  position: relative;
  color: var(--muted);
  font-weight: 750;
  transition: color 0.18s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--accent);
  transition: right 0.18s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--accent);
}

.nav a:hover::after,
.nav a.active::after {
  right: 0;
}

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

.demo-btn,
.outline-btn,
.primary-btn,
.button-like {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 850;
  white-space: nowrap;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.demo-btn,
.primary-btn {
  color: #001b12;
  background: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: 0 12px 32px rgba(14, 227, 157, 0.16);
}

.outline-btn,
.button-like {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(14, 227, 157, 0.34);
}

.demo-btn:hover,
.primary-btn:hover,
.outline-btn:hover,
.button-like:hover,
.demo-tab:hover,
.demo-play:hover {
  transform: translateY(-2px);
}

.button-like {
  appearance: none;
}

.section {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 92px 24px;
}

.section-kicker {
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.centered {
  display: block;
  text-align: center;
}

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

h1,
h2 {
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(42px, 5.6vw, 72px);
}

h2 {
  max-width: 860px;
  margin: 16px auto 18px;
  text-align: center;
  font-size: clamp(34px, 4.6vw, 56px);
}

.section-lead {
  max-width: 780px;
  margin: 0 auto;
  color: var(--muted);
  text-align: center;
  font-size: 19px;
  line-height: 1.6;
}

.hero {
  position: relative;
  padding-top: 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 540px);
  gap: 42px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 620px;
  margin-top: 18px;
  font-size: clamp(36px, 4.8vw, 58px);
}

.hero-lead {
  max-width: 560px;
  margin-top: 18px;
  color: #c7dbd2;
  font-size: 18px;
  line-height: 1.55;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.stat-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.03);
}

.stat-card svg {
  color: var(--accent);
  width: 24px;
  height: 24px;
}

.stat-card strong {
  display: block;
  margin-top: 14px;
  color: var(--text);
  font-size: 22px;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.stat-card strong span {
  display: inline;
  margin: 0;
  color: inherit;
  font-size: inherit;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
}

.hero-glow-one {
  top: 60px;
  right: 8%;
  width: 360px;
  height: 360px;
  background: rgba(14, 227, 157, 0.08);
}

.hero-glow-two {
  left: -6%;
  bottom: 0;
  width: 260px;
  height: 260px;
  background: rgba(14, 227, 157, 0.05);
}

.orbital {
  position: absolute;
  border: 1px solid rgba(14, 227, 157, 0.16);
  border-radius: 50%;
  animation: orbitPulse 3.4s ease-in-out infinite;
}

.orbital-one {
  width: 430px;
  height: 430px;
}

.orbital-two {
  width: 320px;
  height: 320px;
  animation-delay: -1.7s;
}

.sound-line {
  position: absolute;
  top: 47%;
  width: 160px;
  height: 62px;
  opacity: 0.82;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 5px,
    rgba(14, 227, 157, 0.64) 5px 7px,
    transparent 7px 12px
  );
  clip-path: polygon(0 50%, 6% 44%, 12% 58%, 18% 32%, 24% 68%, 30% 39%, 36% 61%, 42% 28%, 48% 71%, 54% 35%, 60% 65%, 66% 42%, 72% 56%, 78% 33%, 84% 62%, 90% 46%, 100% 52%, 100% 57%, 90% 49%, 84% 66%, 78% 37%, 72% 59%, 66% 45%, 60% 70%, 54% 39%, 48% 74%, 42% 34%, 36% 66%, 30% 43%, 24% 72%, 18% 36%, 12% 61%, 6% 48%, 0 54%);
  filter: drop-shadow(0 0 7px rgba(14, 227, 157, 0.38));
  animation: waveShift 0.9s linear infinite;
}

.sound-line-left {
  left: 2%;
}

.sound-line-right {
  right: 2%;
  transform: scaleX(-1);
}

.mic-stage {
  position: relative;
  width: 340px;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mic-halo {
  position: absolute;
  width: 240px;
  height: 310px;
  top: 48px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(14, 227, 157, 0.18), rgba(14, 227, 157, 0.02) 62%, transparent 74%);
  filter: blur(16px);
  animation: breathe 2.8s ease-in-out infinite;
}

.microphone {
  position: relative;
  width: 180px;
  height: 348px;
  animation: micFloat 2.8s ease-in-out infinite;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.3));
}

.microphone-image {
  width: 1000px;
  height: auto;
  max-width: none;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 20px rgba(14, 227, 157, 0.18));
}

.floor-rings {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  width: 390px;
  height: 92px;
  z-index: -1;
}

.floor-rings i {
  position: absolute;
  inset: auto 50% 0;
  border: 1px solid rgba(14, 227, 157, 0.22);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: floorPulse 2.3s ease-out infinite;
}

.floor-rings i:nth-child(1) {
  width: 220px;
  height: 36px;
}

.floor-rings i:nth-child(2) {
  width: 302px;
  height: 58px;
  animation-delay: 0.75s;
}

.floor-rings i:nth-child(3) {
  width: 380px;
  height: 78px;
  animation-delay: 1.5s;
}

.floating-card {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(14, 227, 157, 0.18);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(12, 28, 22, 0.92), rgba(7, 15, 12, 0.86));
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.incoming-card {
  top: 144px;
  left: -66px;
  width: 216px;
  padding: 14px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  animation: cardFloat 3s ease-in-out infinite;
}

.incoming-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--accent);
  border-radius: 50%;
  background: rgba(14, 227, 157, 0.14);
}

.incoming-card span,
.assistant-head span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.incoming-card strong {
  display: block;
  margin-top: 4px;
  font-size: 12px;
}

.mini-wave,
.transcript-wave,
.large-wave {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mini-wave {
  grid-column: 1 / -1;
  height: 20px;
}

.mini-wave i,
.transcript-wave i,
.large-wave i {
  flex: 1;
  min-width: 2px;
  border-radius: 999px;
  background: var(--accent);
  animation: voiceBar 0.72s ease-in-out infinite alternate;
}

.mini-wave i:nth-child(2n),
.transcript-wave i:nth-child(2n),
.large-wave i:nth-child(2n) {
  animation-delay: -0.18s;
}

.mini-wave i:nth-child(3n),
.transcript-wave i:nth-child(3n),
.large-wave i:nth-child(3n) {
  animation-delay: -0.36s;
}

.assistant-card {
  top: 136px;
  right: -66px;
  width: 216px;
  padding: 16px;
  animation: cardFloat 3.2s ease-in-out infinite -1.4s;
}

.assistant-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.assistant-head i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(14, 227, 157, 0.7);
}

.assistant-card p {
  min-height: 72px;
  margin-top: 14px;
  color: #e7f6ef;
  font-size: 14px;
  line-height: 1.5;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.assistant-card p.changing {
  opacity: 0;
  transform: translateY(4px);
}

.transcript-wave {
  height: 26px;
  margin-top: 12px;
  opacity: 0.58;
}

.custom-strip {
  margin-top: 22px;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 26px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(14, 227, 157, 0.12), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.custom-strip-copy {
  display: grid;
  gap: 12px;
  align-content: start;
}

.custom-strip-kicker {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.custom-strip-copy h3 {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.custom-strip-copy span {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.custom-strip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.custom-strip-grid div {
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: #def5ea;
  font-weight: 750;
  line-height: 1.45;
}

.benefits-section {
  padding-top: 84px;
}

.custom-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.value-card {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at top left, rgba(14, 227, 157, 0.08), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.025));
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.value-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--accent);
  border-radius: 14px;
  border: 1px solid rgba(14, 227, 157, 0.22);
  background: rgba(14, 227, 157, 0.08);
}

.value-card h3 {
  margin-top: 18px;
  font-size: 22px;
}

.value-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 520px);
  gap: 48px;
  align-items: center;
}

.demo-copy h2 {
  margin: 16px 0 18px;
  text-align: left;
}

.demo-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.demo-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.demo-points div {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.demo-points strong {
  font-size: 16px;
}

.demo-points span {
  color: var(--muted);
  font-size: 14px;
}

.phone-demo {
  padding: 22px;
  border-radius: 30px;
  border: 1px solid rgba(14, 227, 157, 0.18);
  background: linear-gradient(145deg, rgba(11, 22, 18, 0.96), rgba(5, 10, 8, 0.96));
  box-shadow: var(--shadow);
}

.phone-top {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}

.phone-top i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(14, 227, 157, 0.65);
}

.demo-tabs {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}

.demo-tab {
  flex: 1;
  min-height: 42px;
  padding: 0 12px;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.demo-tab.active {
  color: #001b12;
  background: var(--accent);
  border-color: var(--accent);
  font-weight: 850;
}

.call-status {
  margin-top: 30px;
  text-align: center;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.phone-demo.playing .status-dot {
  background: var(--accent);
  box-shadow: 0 0 12px rgba(14, 227, 157, 0.7);
  animation: blink 0.9s infinite;
}

.call-status strong {
  font-size: 18px;
}

.call-status small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.large-wave {
  justify-content: center;
  height: 88px;
  margin: 20px 0;
  opacity: 0.24;
}

.large-wave i {
  flex: 0 1 6px;
  max-width: 6px;
  animation-play-state: paused;
}

.phone-demo.playing .large-wave {
  opacity: 0.9;
}

.phone-demo.playing .large-wave i {
  animation-play-state: running;
}

.dialogue {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(2, 8, 7, 0.58);
  overflow: hidden;
}

.message {
  max-width: 86%;
  padding: 12px 14px;
  border-radius: 16px;
  opacity: 0;
  transform: translateY(8px);
  animation: messageIn 0.25s ease forwards;
}

.message span {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.message p {
  font-size: 15px;
  line-height: 1.55;
}

.message.ai {
  align-self: flex-start;
  background: rgba(14, 227, 157, 0.1);
  border: 1px solid rgba(14, 227, 157, 0.16);
}

.message.ai span {
  color: var(--accent);
}

.message.user {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.message.user span {
  color: #d0ddd7;
}

.demo-play {
  width: 100%;
  min-height: 54px;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #001b12;
  border: 0;
  border-radius: 14px;
  background: var(--accent);
  font-weight: 900;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.demo-play svg {
  stroke-width: 0;
  fill: currentColor;
}

.phone-demo.playing .demo-play {
  color: #dcefe7;
  background: rgba(255, 255, 255, 0.1);
}

.solutions-section {
  padding-top: 84px;
}

.solution-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 42px;
  perspective: 1200px;
}

.solution-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.9fr);
  min-height: 440px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(11, 20, 18, 0.96), rgba(6, 12, 10, 0.92));
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.solution-card:hover {
  border-color: var(--border-strong);
}

.solution-copy {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.solution-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--accent);
  border-radius: 14px;
  border: 1px solid rgba(14, 227, 157, 0.22);
  background: rgba(14, 227, 157, 0.08);
}

.solution-copy h3 {
  margin-top: 18px;
  font-size: 28px;
}

.solution-copy p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #def5ea;
  line-height: 1.5;
}

.check-list li span {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--accent);
  border-radius: 50%;
  border: 1px solid rgba(14, 227, 157, 0.35);
}

.check-list li span svg {
  width: 11px;
  height: 11px;
}

.scene {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 20%, rgba(14, 227, 157, 0.09), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.scene-booking {
  padding: 26px;
}

.scene-panel {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.scene-panel span,
.order-ticket span,
.kitchen-card span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scene-panel strong,
.order-ticket strong {
  font-size: 20px;
}

.scene-panel em,
.order-ticket em {
  color: var(--muted);
  font-style: normal;
}

.scene-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 22px;
  padding: 8px;
}

.table {
  position: relative;
  display: block;
  aspect-ratio: 1;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
}

.table::before,
.table::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.table::before {
  top: 10px;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translateX(-50%);
}

.table::after {
  bottom: 10px;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translateX(-50%);
}

.table-a,
.table-b {
  animation: softPulse 2.8s ease-in-out infinite;
}

.table-c {
  border-color: rgba(14, 227, 157, 0.45);
  box-shadow: inset 0 0 0 1px rgba(14, 227, 157, 0.18), 0 0 30px rgba(14, 227, 157, 0.09);
  animation: activeTile 1.8s ease-in-out infinite;
}

.table-d {
  animation: softPulse 2.8s ease-in-out infinite -1.2s;
}

.scene-toast {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 14px;
  min-width: 200px;
  border-radius: 16px;
  border: 1px solid rgba(14, 227, 157, 0.2);
  background: rgba(7, 23, 18, 0.9);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
  animation: cardFloat 2.8s ease-in-out infinite;
}

.scene-toast svg {
  color: var(--accent);
}

.scene-toast strong {
  display: block;
  font-size: 14px;
}

.scene-toast span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.scene-order {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding: 28px;
}

.scene-order > * {
  min-width: 0;
}

.order-ticket {
  width: min(100%, 228px);
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(14, 227, 157, 0.18);
  background: rgba(255, 255, 255, 0.045);
  animation: cardFloat 2.9s ease-in-out infinite;
}

.order-ticket p {
  color: #dff3eb;
  font-size: 14px;
}

.order-ticket em {
  margin-top: 8px;
  color: var(--accent);
  font-size: 16px;
}

.kitchen-card {
  position: relative;
  width: min(100%, 210px);
  align-self: flex-end;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.035);
  animation: cardFloat 3.1s ease-in-out infinite -1.2s;
}

.queue-line {
  display: flex;
  gap: 8px;
  margin: 18px 0 14px;
}

.queue-line i {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(14, 227, 157, 0.18), rgba(14, 227, 157, 0.7));
  animation: queueMove 1.2s linear infinite;
}

.queue-line i:nth-child(2) {
  animation-delay: -0.25s;
}

.queue-line i:nth-child(3) {
  animation-delay: -0.5s;
}

.kitchen-card b {
  color: var(--accent);
  font-size: 13px;
}

.delivery-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(14, 227, 157, 0.22);
  background: rgba(14, 227, 157, 0.08);
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
}

.cta-section {
  padding-top: 72px;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at top right, rgba(14, 227, 157, 0.12), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.cta-card h2 {
  margin: 16px 0 14px;
  text-align: left;
}

.cta-card p {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.cta-actions {
  display: grid;
  gap: 12px;
}

.site-footer {
  padding: 40px 24px 26px;
  border-top: 1px solid var(--border);
  background: rgba(2, 8, 7, 0.62);
}

.footer-container {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: grid;
  gap: 6px;
}

.footer-brand strong {
  font-size: 18px;
}

.footer-brand span,
.footer-links a,
.footer-bottom {
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom {
  width: min(1240px, 100%);
  margin: 18px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

.reveal-delay {
  transition-delay: 0.08s;
}

@keyframes logoWave {
  0%, 100% {
    transform: scaleY(0.72);
  }
  50% {
    transform: scaleY(1.15);
  }
}

@keyframes orbitPulse {
  0%, 100% {
    transform: scale(0.97);
    opacity: 0.35;
  }
  50% {
    transform: scale(1.03);
    opacity: 0.8;
  }
}

@keyframes breathe {
  0%, 100% {
    transform: scale(0.94);
    opacity: 0.62;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes micFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes floorPulse {
  0% {
    transform: translateX(-50%) scale(0.68);
    opacity: 0;
  }
  35% {
    opacity: 0.75;
  }
  100% {
    transform: translateX(-50%) scale(1.18);
    opacity: 0;
  }
}

@keyframes voiceBar {
  from {
    height: 18%;
  }
  to {
    height: 100%;
  }
}

@keyframes waveShift {
  to {
    background-position: 20px 0;
  }
}

@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes blink {
  50% {
    opacity: 0.4;
  }
}

@keyframes messageIn {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes softPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

@keyframes activeTile {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes queueMove {
  0% {
    opacity: 0.35;
    transform: scaleX(0.72);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
  100% {
    opacity: 0.35;
    transform: scaleX(0.72);
  }
}

@media (max-width: 1120px) {
  .hero-grid,
  .demo-layout,
  .solution-cards,
  .solution-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 26px;
  }

  .hero-copy,
  .demo-copy,
  .cta-card div:first-child {
    text-align: center;
  }

  .hero-copy h1,
  .hero-lead,
  .cta-card p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .cta-actions {
    justify-content: center;
  }

  .demo-copy h2,
  .cta-card h2 {
    text-align: center;
  }

  .cta-card {
    flex-direction: column;
    align-items: stretch;
  }

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

  .scene-order {
    align-items: stretch;
  }

  .kitchen-card {
    align-self: flex-start;
  }
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 18px;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 20px;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
  }

  .hero-stats,
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .custom-section {
    padding-top: 0;
    padding-bottom: 0;
  }

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

  .hero-visual {
    min-height: 500px;
  }

  .incoming-card {
    left: 2%;
  }

  .assistant-card {
    right: 2%;
  }

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

@media (max-width: 640px) {
  .site-header {
    min-height: 0;
  }

  .brand {
    font-size: 20px;
  }

  .brand-mark,
  .brand-logo {
    width: 54px;
    height: 54px;
  }

  .nav {
    font-size: 14px;
  }

  .header-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .demo-btn,
  .outline-btn,
  .primary-btn,
  .button-like {
    width: 100%;
  }

  .section {
    padding: 72px 18px;
  }

  .custom-section {
    padding-top: 0;
    padding-bottom: 0;
  }

  h1 {
    font-size: clamp(36px, 10vw, 52px);
  }

  h2 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .hero {
    padding-top: 42px;
  }

  .hero-copy,
  .demo-copy,
  .cta-card div:first-child {
    text-align: left;
  }

  .hero-copy h1,
  .hero-lead,
  .section-lead,
  .cta-card p {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    justify-content: flex-start;
  }

  .hero-stats,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 370px;
    margin: 0 -10px;
  }

  .mic-stage {
    transform: scale(0.8);
    transform-origin: center;
    margin-top: -20px;
  }

  .orbital-one {
    width: 310px;
    height: 310px;
  }

  .orbital-two {
    width: 230px;
    height: 230px;
  }

  .sound-line {
    width: 76px;
    height: 42px;
  }

  .incoming-card {
    top: 92px;
    width: 150px;
    padding: 10px;
  }

  .incoming-card strong {
    font-size: 10px;
  }

  .assistant-card {
    top: 86px;
    width: 156px;
    padding: 11px;
  }

  .assistant-card p {
    min-height: 58px;
    font-size: 11px;
  }

  .phone-demo {
    padding: 16px;
    border-radius: 24px;
  }

  .custom-strip {
    padding: 22px;
  }

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

  .dialogue {
    min-height: 220px;
    padding: 14px;
  }

  .message {
    max-width: 92%;
  }

  .solution-copy,
  .scene-booking,
  .scene-order,
  .cta-card {
    padding: 22px;
  }

  .scene-order {
    gap: 16px;
    align-items: stretch;
  }

  .order-ticket {
    width: 100%;
  }

  .kitchen-card {
    width: 100%;
    align-self: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
