:root {
  --bg: #0a0e15;
  --surface: rgba(23, 28, 35, 0.76);
  --surface-strong: rgba(27, 32, 39, 0.92);
  --surface-high: rgba(38, 42, 50, 0.9);
  --text: #dfe2ed;
  --text-strong: #f8fbff;
  --muted: #c0c7d6;
  --muted-2: #8a919f;
  --line: rgba(166, 200, 255, 0.13);
  --line-strong: rgba(166, 200, 255, 0.26);
  --blue: #008cff;
  --blue-soft: #a6c8ff;
  --orange: #e76e09;
  --green: #39d98a;
  --pink: #ffc1cc;
  --radius: 4px;
  --max: 1280px;
  --gutter: clamp(16px, 4vw, 32px);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  font-family: Geist, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 16% 6%, rgba(0, 140, 255, 0.24), transparent 30%),
    radial-gradient(circle at 86% 14%, rgba(231, 110, 9, 0.12), transparent 24%),
    linear-gradient(180deg, #0a0e15 0%, #0f141b 45%, #080c14 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(166, 200, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(166, 200, 255, 0.035) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.16) 1px, transparent 0);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, transparent, black 16%, transparent 86%);
}

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

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

button,
summary {
  cursor: pointer;
}

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

.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;
}

.mono {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

.container {
  width: min(var(--max), calc(100% - var(--gutter) * 2));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(166, 200, 255, 0.1);
  background: rgba(8, 12, 20, 0.72);
  backdrop-filter: blur(24px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-strong);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand span span {
  color: var(--blue-soft);
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(166, 200, 255, 0.22);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 0 30px rgba(0, 140, 255, 0.22);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  transition: color 0.18s ease;
}

.nav-links a:hover {
  color: var(--text-strong);
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid rgba(166, 200, 255, 0.28);
  border-radius: 999px;
  color: var(--text-strong);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 800;
  transition: border-color 0.2s ease, background 0.2s ease, filter 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  border-color: rgba(166, 200, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.btn-primary {
  border-color: rgba(0, 140, 255, 0.44);
  background: linear-gradient(135deg, var(--blue), #4b57ff);
  box-shadow: 0 0 0 1px rgba(0, 140, 255, 0.16), 0 0 34px rgba(0, 140, 255, 0.25);
}

.btn-primary:hover {
  filter: saturate(1.12) brightness(1.06);
}

.btn:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid rgba(166, 200, 255, 0.75);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  isolation: isolate;
  padding: clamp(76px, 9vw, 128px) 0 clamp(70px, 8vw, 96px);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mx, 64%) var(--my, 24%), rgba(0, 140, 255, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(10, 14, 21, 0.25), rgba(10, 14, 21, 0.86) 74%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 6px 6px;
  mask-image: radial-gradient(circle at var(--mx, 64%) var(--my, 24%), black, transparent 62%);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

.hero-copy-block {
  position: relative;
  z-index: 2;
  width: 100%;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--blue-soft);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 8px 10px;
  border: 1px solid rgba(0, 140, 255, 0.24);
  border-radius: 2px;
  background: rgba(0, 140, 255, 0.08);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 16px rgba(57, 217, 138, 0.7);
}

.hero h1 {
  max-width: none;
  margin-bottom: 22px;
  color: var(--text-strong);
  font-size: clamp(46px, 7.3vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.hero h1 span,
.section-title span {
  color: var(--blue-soft);
}

.hero-copy {
  max-width: 900px;
  color: #c3cbda;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  margin: 30px 0 22px;
}

.email-capture {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px;
}

.email-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.email-stack input {
  min-width: min(100%, 320px);
}

.hero-note {
  color: var(--muted);
  font-size: 13px;
}

.hero-points {
  display: grid;
  gap: 10px;
  max-width: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #c9d1e2;
  background: rgba(23, 28, 35, 0.58);
  backdrop-filter: blur(20px);
}

.hero-points span {
  color: var(--blue-soft);
  font: 700 11px/1 "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

.hero-points strong {
  color: var(--text-strong);
}

.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 26px;
}

.hero-trust .stars {
  margin-bottom: 0;
  font-size: 15px;
}

.hero-trust-text {
  color: var(--muted);
  font-size: 14px;
}

.ops-console {
  position: relative;
  min-height: 590px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 18%, rgba(0, 140, 255, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(27, 32, 39, 0.76), rgba(10, 14, 21, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.ops-console::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.56;
}

.console-top {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  color: var(--blue-soft);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.console-top span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  border: 1px solid rgba(166, 200, 255, 0.2);
  border-radius: 2px;
  background: rgba(10, 14, 21, 0.62);
  backdrop-filter: blur(14px);
}

.console-top i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 14px rgba(57, 217, 138, 0.7);
}

.phone-stack {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.phone {
  position: absolute;
  width: 222px;
  min-height: 405px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 31px;
  background: #071122;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.46);
  transition: transform 0.25s ease-out;
}

.hero.is-moving .phone-chat {
  transform: translate3d(calc(var(--tilt-x, 0px) * -0.16), calc(var(--tilt-y, 0px) * -0.12), 0);
}

.hero.is-moving .phone-calendar {
  transform: translate3d(calc(var(--tilt-x, 0px) * 0.16), calc(var(--tilt-y, 0px) * 0.11), 0) rotate(2deg);
}

.hero.is-moving .phone-review {
  transform: translate3d(calc(var(--tilt-x, 0px) * -0.1), calc(var(--tilt-y, 0px) * 0.16), 0) rotate(-2deg);
}

.phone-chat {
  top: 78px;
  left: 38px;
}

.phone-calendar {
  top: 152px;
  right: 22px;
  transform: rotate(2deg);
}

.phone-review {
  left: 158px;
  bottom: 26px;
  width: 195px;
  min-height: 350px;
  transform: rotate(-2deg);
}

.phone-bar {
  height: 64px;
  display: grid;
  place-items: center;
  border-bottom: 1px solid rgba(166, 200, 255, 0.12);
  color: var(--text-strong);
  font-weight: 800;
  background: #0d1729;
}

.chat-row {
  position: relative;
  padding: 14px 48px 14px 16px;
  border-bottom: 1px solid rgba(166, 200, 255, 0.11);
  background-image: radial-gradient(circle at 2px 2px, rgba(166, 200, 255, 0.16) 1px, transparent 0);
  background-size: 12px 12px;
}

.chat-row::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22324a, #5878a8);
}

.chat-row b,
.chat-row small {
  display: block;
  margin-left: 34px;
}

.chat-row b {
  color: var(--text-strong);
  font-size: 15px;
}

.chat-row small {
  color: var(--muted-2);
  line-height: 1.35;
}

.chat-row em {
  position: absolute;
  top: 16px;
  right: 12px;
  color: #9af4c2;
  font-size: 9px;
  font-style: normal;
}

.chat-row.active em {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: var(--blue);
}

.calendar-grid {
  position: relative;
  height: 286px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(5, 1fr);
  border-top: 1px solid rgba(166, 200, 255, 0.11);
  background:
    linear-gradient(90deg, rgba(166, 200, 255, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(166, 200, 255, 0.12) 1px, transparent 1px);
  background-size: 37px 57px;
}

.calendar-grid > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  margin: 8px 0 0 7px;
  border-radius: 999px;
  color: white;
  background: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.calendar-grid b {
  position: relative;
  z-index: 2;
  grid-column: var(--x) / span var(--w);
  grid-row: var(--y);
  align-self: center;
  min-width: 96px;
  padding: 10px 13px;
  border-radius: 999px;
  color: #7d1f2d;
  background: var(--pink);
  font-size: 12px;
  white-space: nowrap;
}

.calendar-grid i {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 46%;
  width: 2px;
  background: var(--blue);
  box-shadow: 0 0 16px rgba(0, 140, 255, 0.8);
}

.phone-review {
  padding-bottom: 64px;
}

.phone-review p {
  padding: 0 18px;
  color: var(--muted);
  line-height: 1.45;
}

.review-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  margin: 18px;
  padding: 15px 0;
  border-top: 1px solid rgba(166, 200, 255, 0.12);
  border-bottom: 1px solid rgba(166, 200, 255, 0.12);
}

.review-card strong {
  color: var(--text-strong);
}

.review-card span {
  color: var(--muted-2);
  font-size: 13px;
}

.review-card b {
  grid-row: span 2;
  color: var(--blue-soft);
  font-size: 20px;
}

.review-actions {
  display: flex;
  gap: 10px;
  padding: 0 18px;
}

.review-actions span {
  padding: 9px 12px;
  border: 1px solid rgba(166, 200, 255, 0.24);
  border-radius: 999px;
  color: white;
  background: var(--blue);
  font: 800 11px/1 "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.08em;
}

.review-actions span + span {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.tabbar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 58px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: center;
  padding: 0 22px;
  background: #f7f8fb;
}

.tabbar span {
  height: 17px;
  border: 2px solid #9ca3af;
  border-radius: 5px;
}

.metric-card {
  position: absolute;
  z-index: 5;
  right: 28px;
  top: 82px;
  width: 178px;
  padding: 14px;
  border: 1px solid rgba(0, 140, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(10, 14, 21, 0.78);
  backdrop-filter: blur(18px);
}

.metric-card span {
  display: block;
  color: var(--blue-soft);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  margin-top: 6px;
  color: white;
  font-size: 28px;
  line-height: 1;
}

.metric-card small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

section {
  position: relative;
  padding: clamp(68px, 8vw, 104px) 0;
}

.section-title {
  max-width: 820px;
  margin-bottom: 18px;
  color: var(--text-strong);
  font-size: clamp(32px, 4.8vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.section-copy {
  max-width: 750px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
}

.stats-grid,
.feature-grid,
.solution-grid,
.testimonial-grid,
.pricing-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 36px;
}

.stat-card,
.feature-card,
.solution-card,
.testimonial-card {
  padding: 24px;
}

.stat-card {
  min-height: 190px;
}

.num,
.price {
  color: var(--text-strong);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.stat-card h3,
.feature-card h3,
.solution-card h3,
.testimonial-card h3,
.faq-card summary {
  color: var(--text-strong);
  font-size: 18px;
  letter-spacing: -0.02em;
}

.stat-card p,
.feature-card p,
.solution-card p,
.testimonial-card p,
.faq-card p {
  color: var(--muted);
  line-height: 1.64;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
}

.feature-card {
  min-height: 100%;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
  border-color: rgba(0, 140, 255, 0.36);
  background: var(--surface-strong);
  transform: translateY(-2px);
}

.icon-box {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(0, 140, 255, 0.24);
  border-radius: var(--radius);
  color: var(--blue-soft);
  background: rgba(0, 140, 255, 0.1);
  font: 800 11px/1 "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.08em;
}

.feature-band {
  padding-top: 0;
}

.showcase-row {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 470px);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  margin-top: 46px;
}

.showcase-row.reverse {
  grid-template-columns: minmax(320px, 470px) minmax(0, 0.94fr);
}

.showcase-row.reverse .showcase-visual {
  order: -1;
}

.showcase-copy {
  padding: clamp(26px, 4vw, 36px);
}

.showcase-copy h3 {
  color: var(--text-strong);
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.04em;
}

.showcase-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.showcase-list li {
  position: relative;
  padding-left: 26px;
}

.showcase-list li::before,
.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 12px rgba(0, 140, 255, 0.7);
}

.showcase-visual {
  min-height: 440px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 28px;
  background:
    radial-gradient(circle at 72% 16%, rgba(0, 140, 255, 0.22), transparent 36%),
    rgba(23, 28, 35, 0.72);
}

.mini-calendar {
  width: min(100%, 380px);
  min-height: 300px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 48px repeat(4, 1fr);
  border: 1px solid rgba(166, 200, 255, 0.16);
  background:
    linear-gradient(90deg, rgba(166, 200, 255, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(166, 200, 255, 0.12) 1px, transparent 1px);
  background-size: 20% 62px;
}

.mini-calendar span {
  display: grid;
  place-items: center;
  color: var(--muted);
  font: 700 12px/1 "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

.mini-calendar b {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: center;
  padding: 10px 14px 10px 10px;
  border-radius: 999px;
  font-size: 13px;
  white-space: nowrap;
}

.mini-calendar b i {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  font: 800 11px/1 "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-style: normal;
}

.mini-calendar .booking-airbnb {
  color: #7d1f2d;
  background: var(--pink);
}

.mini-calendar .booking-airbnb i {
  background: #ff385c;
  box-shadow: 0 0 12px rgba(255, 56, 92, 0.45);
}

.mini-calendar .booking-bdc {
  color: #00315f;
  background: #a6c8ff;
}

.mini-calendar .booking-bdc i {
  background: var(--blue);
  box-shadow: 0 0 12px rgba(0, 140, 255, 0.45);
}

.mini-calendar b:nth-of-type(1) {
  grid-column: 1 / span 4;
  grid-row: 2;
}

.mini-calendar b:nth-of-type(2) {
  grid-column: 1 / span 2;
  grid-row: 3;
}

.mini-calendar b:nth-of-type(3) {
  grid-column: 3 / span 3;
  grid-row: 3;
}

.mini-calendar b:nth-of-type(4) {
  grid-column: 2 / span 4;
  grid-row: 4;
}

.review-visual {
  align-content: center;
  justify-items: center;
  text-align: center;
}

.review-visual strong {
  color: var(--text-strong);
  font-size: 24px;
}

.score-ring {
  width: 156px;
  height: 156px;
  display: grid;
  place-items: center;
  margin: 26px 0;
  border: 1px solid rgba(0, 140, 255, 0.28);
  border-radius: 999px;
  color: var(--text-strong);
  background:
    radial-gradient(circle, rgba(0, 140, 255, 0.13), transparent 64%),
    conic-gradient(var(--blue) 0 90%, rgba(166, 200, 255, 0.12) 90% 100%);
  font: 900 32px/1 "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  box-shadow: 0 0 40px rgba(0, 140, 255, 0.18);
}

.review-visual p {
  max-width: 260px;
  color: var(--muted);
  line-height: 1.6;
}

.about-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  padding: clamp(30px, 5vw, 50px);
  background: linear-gradient(135deg, rgba(23, 28, 35, 0.9), rgba(0, 140, 255, 0.08));
}

.terminal-card {
  padding: 20px;
  background: rgba(10, 14, 21, 0.8);
}

.terminal-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  color: var(--blue-soft);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.log-lines {
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.log-lines p {
  margin: 0;
}

.log-lines span {
  color: #9af4c2;
}

.chat-mock {
  padding: 0;
  overflow: hidden;
  background: rgba(10, 14, 21, 0.82);
}

.chat-mock-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(166, 200, 255, 0.12);
  background: #0d1729;
}

.chat-mock-avatar {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, #22324a, #5878a8);
  font-weight: 800;
}

.chat-mock-who {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.chat-mock-who strong {
  color: var(--text-strong);
}

.chat-mock-who small {
  color: var(--muted-2);
  font-size: 12px;
}

.chat-mock-badge {
  margin-left: auto;
  padding: 5px 9px;
  border: 1px solid rgba(0, 140, 255, 0.3);
  border-radius: 999px;
  color: var(--blue-soft);
  background: rgba(0, 140, 255, 0.12);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.chat-mock-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.chat-mock-body .bubble {
  max-width: 86%;
  padding: 11px 14px;
  border-radius: 16px;
}

.chat-mock-body .bubble p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.bubble.guest {
  justify-self: start;
  border-bottom-left-radius: 4px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.bubble.host {
  justify-self: end;
  border-bottom-right-radius: 4px;
  color: white;
  background: linear-gradient(135deg, var(--blue), #4b57ff);
}

.chat-mock-meta {
  margin: 4px 0 0;
  color: #9af4c2;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.solution-grid {
  grid-template-columns: repeat(5, 1fr);
  margin-top: 34px;
}

.pricing-grid {
  grid-template-columns: minmax(280px, 440px);
  justify-content: center;
  margin-top: 34px;
}

.pricing-card {
  padding: 32px;
  border-color: rgba(0, 140, 255, 0.34);
  background: linear-gradient(180deg, rgba(27, 32, 39, 0.96), rgba(10, 14, 21, 0.96));
}

.price {
  margin: 6px 0 20px;
}

.price small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 16px;
  letter-spacing: 0;
}

.price-example {
  margin: -10px 0 22px;
  color: var(--blue-soft);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.price-note {
  margin: 16px 0 0;
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.55;
}

.pricing-list {
  display: grid;
  gap: 13px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.pricing-list li {
  position: relative;
  padding: 0 0 13px 25px;
  border-bottom: 1px solid rgba(166, 200, 255, 0.1);
  color: #cbd3e4;
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.stars {
  color: #ffb68c;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.testimonial-card span {
  color: var(--muted-2);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
  margin-top: 34px;
}

.faq-card {
  overflow: hidden;
}

.faq-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  list-style: none;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: "+";
  color: var(--blue-soft);
  font-size: 22px;
  line-height: 1;
}

.faq-card[open] summary::after {
  content: "-";
}

.faq-card p {
  margin: 0;
  padding: 0 20px 20px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 440px);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.contact-info,
.contact-form {
  padding: 30px;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
  color: var(--muted);
}

.contact-list a {
  color: var(--blue-soft);
}

.form-grid {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(166, 200, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(10, 14, 21, 0.82);
  color: #edf3ff;
  font: 13px/1.4 "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  padding: 13px 14px;
}

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

input::placeholder,
textarea::placeholder {
  color: #778398;
}

#contact-status {
  min-height: 20px;
  font-size: 13px;
}

.site-footer {
  border-top: 1px solid rgba(166, 200, 255, 0.1);
  background: #070b12;
  padding: 42px 0;
}

.footer-grid {
  grid-template-columns: 1fr auto;
  align-items: center;
  color: var(--muted-2);
  font-size: 14px;
}

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

.footer-links a:hover {
  color: var(--text-strong);
}

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

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

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

  .hero-layout,
  .showcase-row,
  .showcase-row.reverse,
  .about-box,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .showcase-row.reverse .showcase-visual {
    order: 0;
  }

  .ops-console {
    min-height: 540px;
    max-width: 560px;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, var(--max));
  }

  .nav {
    min-height: 64px;
  }

  .nav .btn {
    display: none;
  }

  .hero {
    min-height: 0;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 60px);
  }

  .email-capture,
  .email-capture .btn {
    width: 100%;
  }

  .hero-points li {
    align-items: flex-start;
  }

  .stats-grid,
  .feature-grid,
  .solution-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .ops-console {
    min-height: 500px;
  }

  .phone {
    width: 188px;
  }

  .phone-chat {
    top: 76px;
    left: 16px;
  }

  .phone-calendar {
    top: 160px;
    right: 8px;
  }

  .phone-review {
    left: 88px;
    bottom: 22px;
    width: 168px;
  }

  .metric-card {
    right: 16px;
    top: 62px;
    width: 156px;
  }

  .contact-info,
  .contact-form,
  .showcase-copy,
  .pricing-card {
    padding: 22px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

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

  .hero-canvas {
    display: none;
  }
}

/* Language switcher */
.nav-right {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 14, 21, 0.5);
}

.lang-switcher a {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: color 0.18s ease, background 0.18s ease;
}

.lang-switcher a:hover {
  color: var(--text-strong);
}

.lang-switcher a.active {
  color: var(--text-strong);
  background: rgba(0, 140, 255, 0.18);
}

@media (max-width: 760px) {
  .lang-switcher {
    display: none;
  }
}

/* Why us / comparison */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 38px;
  align-items: start;
}

.compare-card {
  padding: 28px;
}

.compare-card.us {
  border-color: rgba(0, 140, 255, 0.34);
  background: linear-gradient(180deg, rgba(0, 140, 255, 0.1), rgba(10, 14, 21, 0.92));
  box-shadow: 0 0 0 1px rgba(0, 140, 255, 0.14), 0 0 40px rgba(0, 140, 255, 0.16);
}

.compare-head {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.compare-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--muted-2);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-card.us .compare-tag {
  border-color: rgba(0, 140, 255, 0.4);
  color: var(--blue-soft);
  background: rgba(0, 140, 255, 0.12);
}

.compare-head h3 {
  margin: 0;
  color: var(--text-strong);
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: -0.03em;
}

.compare-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  line-height: 1.6;
}

.compare-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font: 800 12px/1 "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

.compare-card.them .compare-list li::before {
  content: "\00d7";
  color: #ffb1b1;
  background: rgba(255, 99, 99, 0.12);
  border: 1px solid rgba(255, 99, 99, 0.3);
}

.compare-card.us .compare-list li::before {
  content: "\2713";
  color: #9af4c2;
  background: rgba(57, 217, 138, 0.14);
  border: 1px solid rgba(57, 217, 138, 0.34);
}

.why-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

@media (max-width: 920px) {
  .compare-grid {
    grid-template-columns: 1fr;
  }
}

/* Legal pages */
.legal-main {
  padding: clamp(40px, 7vw, 72px) 0 clamp(56px, 8vw, 96px);
}

.legal-card {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 48px);
}

.legal-card .section-kicker {
  margin-bottom: 14px;
}

.legal-card h1 {
  margin: 0 0 10px;
  color: var(--text-strong);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.legal-meta {
  margin-bottom: 28px;
  color: var(--muted-2);
  font-size: 13px;
}

.legal-card h2 {
  margin: 34px 0 12px;
  color: var(--text-strong);
  font-size: clamp(19px, 2.4vw, 24px);
  letter-spacing: -0.02em;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.legal-card ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.legal-card li {
  margin-bottom: 8px;
}

.legal-card a {
  color: var(--blue-soft);
}

.legal-card strong {
  color: var(--text);
}
