:root {
  --ink: #14161a;
  --paper: #f5f6f8;
  --white: #ffffff;
  --mute: #66707c;
  --line: #d8dde5;
  --acc: #e85d04;
  --acc2: #e8a045;
  --green: #1e7a34;
  --font: Manrope, system-ui, sans-serif;
  --display: Unbounded, Manrope, sans-serif;
  --nav-h: 4rem;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }

.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(20, 22, 26, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: var(--nav-h);
}
.logo { font-family: var(--display); font-weight: 700; color: #fff; font-size: 1.15rem; }
.logo span { color: var(--acc2); }
.nav-links { display: flex; flex-wrap: wrap; gap: .35rem 1rem; }
.nav-links a { color: #c8d0da; font-size: .92rem; font-weight: 600; }
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--acc); color: #fff; border: 0; border-radius: 999px;
  padding: .55rem 1rem; font-weight: 800; cursor: pointer;
}

.hero {
  background: linear-gradient(135deg, #14161a 0%, #252a33 100%);
  color: #fff; padding: 3.5rem 0 4rem;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: center; }
.hero h1 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15; margin-bottom: 1rem;
}
.hero p { color: #b8c0ca; font-size: 1.05rem; max-width: 36rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.2rem 0 1.6rem; }
.badge {
  border: 1px solid rgba(255,255,255,.18); border-radius: 999px;
  padding: .35rem .75rem; font-size: .85rem; color: #e8edf3;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .65rem; }
.btn {
  border: 0; border-radius: 999px; padding: .75rem 1.2rem;
  font-weight: 800; cursor: pointer; font: inherit;
}
.btn-acc { background: var(--acc); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.25); }
.hero-shot {
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}

section { padding: 3.5rem 0; }
section h2 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: .75rem;
}
.lead { color: var(--mute); max-width: 46rem; margin-bottom: 1.5rem; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 16px; padding: 1.1rem 1.2rem;
}
.card h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.card p, .card li { color: var(--mute); font-size: .95rem; }
.card ul { padding-left: 1.1rem; }

/* Screenshots */
.shots-tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.shots-tabs button {
  border: 1px solid var(--line); background: #fff; border-radius: 999px;
  padding: .45rem .9rem; cursor: pointer; font-weight: 700; color: var(--mute);
}
.shots-tabs button.active {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.shot-stage {
  background: #0f1115; border-radius: 18px; padding: 1rem;
  border: 1px solid #2a3038;
}
.shot-stage img { border-radius: 10px; margin: 0 auto; }
.shot-caption { color: #b8c0ca; text-align: center; margin-top: .75rem; font-size: .92rem; }
.shot-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: .65rem; margin-top: 1rem; }
.shot-thumbs button {
  border: 2px solid transparent; border-radius: 10px; overflow: hidden;
  padding: 0; cursor: pointer; background: none;
}
.shot-thumbs button.active { border-color: var(--acc); }
.shot-thumbs img { width: 100%; height: 64px; object-fit: cover; object-position: top; }

.price-box {
  background: linear-gradient(135deg, #fff7ef, #fff);
  border: 2px solid #ffd8b8; border-radius: 20px;
  padding: 2rem; text-align: center;
}
.price-box .sum {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--acc); margin: .5rem 0;
}
.demo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.demo-grid a {
  display: block; padding: .85rem 1rem; border-radius: 12px;
  border: 1px solid var(--line); background: #fff; font-weight: 700;
}
.demo-grid a:hover { border-color: var(--acc); color: var(--acc); }
.demo-grid small { display: block; color: var(--mute); font-weight: 500; margin-top: .25rem; }
.creds {
  margin-top: 1rem; background: #14161a; color: #e8edf3;
  border-radius: 14px; padding: 1rem 1.2rem; font-family: ui-monospace, monospace;
  font-size: .88rem; line-height: 1.7;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
label { display: block; font-size: .85rem; font-weight: 700; margin-bottom: .25rem; }
input, textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px;
  padding: .7rem .85rem; font: inherit; background: #fff;
}
textarea { min-height: 96px; resize: vertical; }
.form-full { grid-column: 1 / -1; }

.modal-back {
  position: fixed; inset: 0; background: rgba(10,12,16,.65);
  display: none; align-items: center; justify-content: center;
  z-index: 100; padding: 1rem;
}
.modal-back.show { display: flex; }
.modal {
  width: min(520px, 100%); max-height: 90vh; overflow: auto;
  background: #fff; border-radius: 18px; padding: 1.2rem 1.3rem;
  border: 1px solid var(--line);
}
.modal.wide { width: min(720px, 100%); }
.modal h3 { margin-bottom: .35rem; }
.modal .mute { color: var(--mute); font-size: .92rem; margin-bottom: .8rem; }
.chat-log {
  height: 280px; overflow: auto; background: #12151a; color: #eef2f7;
  border-radius: 12px; padding: .75rem; margin: .6rem 0;
}
.chat-bubble { max-width: 88%; margin: .35rem 0; padding: .55rem .75rem; border-radius: 12px; white-space: pre-wrap; }
.chat-bubble.me { background: var(--acc2); color: #1a1612; margin-left: auto; }
.chat-bubble.them { background: #262b33; }
.chat-meta { font-size: .68rem; opacity: .75; margin-top: .15rem; }
.chat-compose { display: flex; gap: .45rem; }
.toast {
  position: fixed; bottom: 1rem; left: 50%; transform: translateX(-50%);
  background: #14161a; color: #fff; padding: .65rem 1rem; border-radius: 999px;
  display: none; z-index: 120;
}
.toast.show { display: block; }

footer {
  background: var(--ink); color: #9aa3ad;
  padding: 2rem 0; font-size: .9rem;
}

.queue-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.queue-step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.25rem;
}
.queue-num {
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: var(--acc);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .75rem;
  font-size: .95rem;
}
.queue-step h3 { font-size: 1.05rem; margin-bottom: .45rem; }
.queue-step p { color: var(--mute); font-size: .92rem; }

.queue-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: start;
}
.queue-phone {
  margin: 0;
  text-align: center;
}
.queue-phone img {
  width: min(280px, 100%);
  margin: 0 auto;
  border-radius: 22px;
  border: 3px solid var(--line);
  box-shadow: 0 12px 40px rgba(20, 22, 26, .12);
}
.queue-phone figcaption {
  margin-top: .65rem;
  color: var(--mute);
  font-size: .88rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero-grid, .grid-3, .grid-2, .demo-grid, .form-grid { grid-template-columns: 1fr; }
  .queue-flow { grid-template-columns: 1fr; }
  .queue-showcase { grid-template-columns: 1fr; }
  .shot-thumbs { grid-template-columns: repeat(3, 1fr); }
  .nav-links { display: none; }
}
