:root {
  --ink: #07111f;
  --ink-2: #102033;
  --paper: #fff8ec;
  --paper-2: #fffdf8;
  --cyan: #06b6d4;
  --blue: #0b8ff5;
  --pink: #f062a6;
  --yellow: #ffd166;
  --lime: #b9f54a;
  --green: #19c37d;
  --text: #142033;
  --muted: #5c6a7f;
  --line: rgba(7, 17, 31, 0.12);
  --shadow: 0 24px 70px rgba(7, 17, 31, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--paper-2);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 17, 31, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  color: #fff;
  font-size: 1rem;
}

.brand small {
  margin-top: 0.28rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  font-size: 0.88rem;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: #fff;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.12rem;
  border-radius: var(--radius);
  border: 2px solid var(--ink);
  font-weight: 900;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 6px 6px 0 rgba(255, 255, 255, 0.18);
}

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

.button-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 8px 8px 0 var(--ink);
}

.button-secondary {
  background: #fff;
  color: var(--ink);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 76px);
  padding: clamp(3rem, 7vw, 6rem) 0 4rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(6, 182, 212, 0.92) 0%, rgba(11, 143, 245, 0.92) 58%, rgba(255, 209, 102, 0.86) 58%, rgba(255, 209, 102, 0.86) 100%),
    #0b8ff5;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.28;
  background-image:
    linear-gradient(90deg, rgba(7, 17, 31, 0.22) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7, 17, 31, 0.22) 1px, transparent 1px);
  background-size: 34px 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
}

.hero-copy {
  color: #fff;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 1000;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.hero h1,
.section h2 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero h1 {
  color: #fff;
  text-shadow: 6px 6px 0 var(--ink);
}

.hero-lead {
  max-width: 650px;
  margin: 1.35rem 0 0;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
  font-weight: 800;
}

.module-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.7rem 0 0;
}

.module-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.45rem 0.7rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 1000;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-visual {
  position: relative;
  min-height: 590px;
  display: grid;
  align-items: center;
}

.hero-console {
  isolation: isolate;
}

.hero-console::before {
  content: "";
  position: absolute;
  right: 2%;
  top: 8%;
  width: 72%;
  height: 76%;
  background: rgba(255, 248, 236, 0.34);
  border: 3px solid rgba(7, 17, 31, 0.52);
  transform: rotate(-3deg);
  z-index: -1;
}

.console-shell {
  position: relative;
  width: min(660px, 96%);
  margin-left: auto;
  padding: 1rem;
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #0c1b2d 0%, #10243b 100%);
  box-shadow: 18px 18px 0 var(--ink);
  transform: rotate(1deg);
}

.console-topbar,
.console-metrics,
.console-board,
.kds-card,
.floating-ticket,
.floating-phone {
  border-radius: var(--radius);
}

.console-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8rem;
  padding: 0.72rem 0.85rem;
  color: #fff;
  background: #17283d;
}

.console-topbar span {
  width: 42px;
  height: 12px;
  background:
    radial-gradient(circle, var(--pink) 0 4px, transparent 5px),
    radial-gradient(circle, var(--yellow) 0 4px, transparent 5px),
    radial-gradient(circle, var(--green) 0 4px, transparent 5px);
  background-position: 0 50%, 15px 50%, 30px 50%;
  background-repeat: no-repeat;
}

.console-topbar strong {
  font-size: 0.95rem;
}

.console-topbar em {
  color: var(--lime);
  font-style: normal;
  font-weight: 1000;
}

.console-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0.85rem 0;
}

.console-metrics article {
  min-height: 86px;
  padding: 0.82rem;
  border: 2px solid rgba(255, 255, 255, 0.18);
  background: #f8fbff;
  color: var(--ink);
}

.console-metrics span,
.checkout-total span,
.floating-ticket small,
.floating-ticket span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.console-metrics strong {
  display: block;
  margin-top: 0.35rem;
  font-size: clamp(1.6rem, 4vw, 2.55rem);
  line-height: 0.95;
}

.console-board {
  display: grid;
  grid-template-columns: 1.18fr 1fr 0.9fr;
  gap: 0.8rem;
  padding: 0.85rem;
  background: #edf5ff;
}

.board-column {
  min-height: 280px;
  padding: 0.82rem;
  border: 2px solid var(--ink);
  background: #fff;
}

.board-column p {
  margin: 0 0 0.75rem;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.table-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.table-map span {
  min-height: 58px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--green);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 1000;
}

.table-map .busy {
  background: #ff4d4f;
}

.table-map .wait {
  background: var(--yellow);
  color: var(--ink);
}

.board-orders,
.board-checkout {
  display: grid;
  align-content: start;
  gap: 0.62rem;
}

.kds-card {
  padding: 0.72rem;
  border: 2px solid var(--ink);
  color: var(--ink);
}

.kds-card strong,
.kds-card span {
  display: block;
}

.kds-card span {
  margin-top: 0.25rem;
  font-size: 0.82rem;
}

.kds-card.ready {
  background: var(--green);
  color: #fff;
}

.kds-card.prep {
  background: var(--yellow);
}

.kds-card.hold {
  background: #dfe7f2;
}

.checkout-total {
  padding: 1rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--lime);
}

.checkout-total strong {
  display: block;
  margin-top: 0.45rem;
  color: var(--ink);
  font-size: 1.55rem;
}

.status-lines {
  display: grid;
  gap: 0.55rem;
  padding: 0.9rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: #fff;
}

.status-lines span {
  width: var(--size);
  height: 12px;
  border-radius: 999px;
  background: var(--blue);
}

.floating-ticket {
  position: absolute;
  right: 0;
  bottom: 5%;
  width: min(230px, 42%);
  padding: 1rem;
  border: 3px solid var(--ink);
  background: var(--paper-2);
  box-shadow: 12px 12px 0 var(--ink);
  transform: rotate(6deg);
}

.floating-ticket strong {
  display: block;
  margin: 0.15rem 0 0.35rem;
  color: var(--ink);
  font-size: 1.35rem;
}

.floating-phone {
  position: absolute;
  left: 2%;
  bottom: 2%;
  width: 118px;
  min-height: 230px;
  padding: 1rem 0.7rem;
  border: 4px solid var(--ink);
  background: #101827;
  box-shadow: 12px 12px 0 rgba(7, 17, 31, 0.72);
  transform: rotate(-8deg);
}

.phone-bar {
  width: 44px;
  height: 5px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.phone-card {
  height: 42px;
  margin-bottom: 0.55rem;
  border-radius: var(--radius);
  background: var(--blue);
}

.phone-card.hot {
  background: var(--green);
}

.conversion-strip {
  background: var(--ink);
  color: #fff;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

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

.strip-grid article {
  min-height: 132px;
  padding: 1.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.strip-grid article:nth-child(2) {
  background: rgba(240, 98, 166, 0.2);
}

.strip-grid article:nth-child(3) {
  background: rgba(185, 245, 74, 0.16);
}

.strip-grid strong,
.strip-grid span {
  display: block;
}

.strip-grid strong {
  font-size: 1.08rem;
}

.strip-grid span {
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.dark-section {
  background: var(--ink);
  color: #fff;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.section-copy h2,
.section-heading h2 {
  font-size: clamp(2rem, 4.5vw, 4.2rem);
}

.section-copy p,
.section-heading p,
.proof-copy p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.05rem;
}

.dark-section .section-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.sticky-copy {
  position: sticky;
  top: 105px;
}

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

.module-card {
  min-height: 270px;
  padding: 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.module-card.hot {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
}

.module-card.lime {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}

.module-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  border: 2px solid #fff;
  font-weight: 1000;
}

.module-card h3 {
  margin: 1rem 0 0.65rem;
  font-size: 1.45rem;
}

.module-card p {
  margin: 0;
  line-height: 1.55;
}

.flow-section {
  background: var(--paper);
}

.centered {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 2.25rem;
}

.flow-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 3px solid var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
  background: #fff;
}

.flow-line article {
  min-height: 230px;
  padding: 1.25rem;
  border-right: 2px solid var(--ink);
}

.flow-line article:last-child {
  border-right: 0;
}

.flow-line span {
  display: inline-flex;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  font-size: 0.78rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.flow-line strong {
  display: block;
  margin-top: 1.15rem;
  font-size: 1.35rem;
}

.flow-line p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.feature-section {
  background: #fff;
}

.feature-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.feature-header h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 0.98;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.filter-tabs button {
  min-height: 40px;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: #fff;
  font-weight: 1000;
}

.filter-tabs button.active {
  background: var(--ink);
  color: #fff;
}

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

.feature-card {
  min-height: 315px;
  padding: 1.1rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper-2);
  box-shadow: 7px 7px 0 rgba(7, 17, 31, 0.95);
}

.feature-card.is-hidden {
  display: none;
}

.feature-card h3 {
  margin: 0 0 0.85rem;
  font-size: 1.25rem;
}

.feature-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.62rem;
}

.feature-card li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
  line-height: 1.48;
}

.feature-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56em;
  width: 6px;
  height: 6px;
  background: var(--pink);
}

.visual-proof {
  background: var(--ink);
  color: #fff;
  padding: clamp(2.75rem, 5vw, 4.75rem) 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.proof-image img {
  display: block;
  width: min(380px, 100%);
  height: auto;
  aspect-ratio: 1024 / 1792;
  margin: 0 auto;
  object-fit: contain;
  border-radius: var(--radius);
  filter: drop-shadow(18px 26px 0 rgba(0, 0, 0, 0.34));
}

.proof-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4.5rem);
  line-height: 0.95;
}

.proof-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.proof-list span {
  min-height: 50px;
  padding: 0.82rem;
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  font-weight: 1000;
}

.segments-section {
  background: var(--paper);
}

.segment-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.segment-cloud span {
  padding: 0.72rem 0.9rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 900;
}

.segment-cloud span:nth-child(3n) {
  background: var(--lime);
}

.segment-cloud span:nth-child(4n) {
  background: var(--yellow);
}

.segment-cloud span:nth-child(5n) {
  background: var(--pink);
  color: #fff;
}

.contact-section {
  background: var(--blue);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.72fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.contact-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.92;
  text-shadow: 5px 5px 0 var(--ink);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.contact-highlights span {
  padding: 0.55rem 0.72rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 1000;
}

.lead-form {
  display: grid;
  gap: 0.9rem;
  padding: 1.1rem;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper-2);
  color: var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
}

.lead-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 1000;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 0.82rem;
  color: var(--ink);
  background: #fff;
}

.lead-form textarea {
  resize: vertical;
}

.wide {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 1.3rem;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.site-footer {
  padding: 1.5rem 0;
  background: var(--ink);
  color: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 900;
}

.footer-links a:hover {
  color: #fff;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  min-height: 52px;
  padding: 0.95rem 1.1rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--green);
  color: #fff;
  box-shadow: 7px 7px 0 var(--ink);
  font-weight: 1000;
}

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

  .hero-grid,
  .section-grid,
  .proof-grid,
  .contact-grid,
  .feature-header {
    grid-template-columns: 1fr;
  }

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

  .console-shell {
    margin: 0 auto;
  }

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

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

  .sticky-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .header-inner {
    min-height: 68px;
  }

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

  .header-cta {
    min-height: 42px;
    padding: 0.68rem 0.72rem;
    font-size: 0.82rem;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 15vw, 4rem);
    text-shadow: 4px 4px 0 var(--ink);
  }

  .module-pills span {
    font-size: 0.7rem;
  }

  .hero-visual {
    min-height: auto;
    display: block;
    padding: 1rem 0 0.5rem;
  }

  .hero-console::before,
  .floating-ticket,
  .floating-phone {
    display: none;
  }

  .console-shell {
    width: 100%;
    padding: 0.75rem;
    box-shadow: 9px 9px 0 var(--ink);
    transform: none;
  }

  .console-metrics,
  .console-board {
    grid-template-columns: 1fr;
  }

  .console-metrics article {
    min-height: auto;
  }

  .board-column {
    min-height: auto;
  }

  .table-map span {
    min-height: 48px;
  }

  .strip-grid,
  .module-grid,
  .flow-line,
  .feature-grid,
  .proof-list {
    grid-template-columns: 1fr;
  }

  .flow-line article {
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .flow-line article:last-child {
    border-bottom: 0;
  }

  .feature-card,
  .module-card {
    min-height: auto;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .floating-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}
