/* 5150ai local-service landing template.
   Design source: Cyberpunk + 80s Retro + Civilian Studio. */
:root {
  color-scheme: dark;
  --bg-0: #05030c;
  --bg-1: #0a0612;
  --bg-2: #120a1a;
  --bg-3: #1a0d22;
  --ink: #f5f2ff;
  --muted: #bdb4d2;
  --dim: #7e7396;
  --magenta: #ff2975;
  --cyan: #00e5ff;
  --amber: #ffb03b;
  --violet: #6d30ff;
  --line: #2a1e3e;
  --line-soft: rgba(245, 242, 255, 0.12);
  --radius: 8px;
  --display: Anton, Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg-0);
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--ink);
  font-family: var(--body);
  background:
    linear-gradient(180deg, rgba(5, 3, 12, 0.92), rgba(10, 6, 18, 0.98) 48%, #05030c),
    repeating-linear-gradient(0deg, rgba(245, 242, 255, 0.025) 0 1px, transparent 1px 5px);
}

a { color: inherit; }

.masthead {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  min-height: 34px;
  padding: 9px 18px;
  border-bottom: 1px solid rgba(255, 176, 59, 0.22);
  background: rgba(5, 3, 12, 0.88);
  backdrop-filter: blur(12px);
  color: var(--amber);
  font: 700 11px/1 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 999px;
  background: var(--magenta);
  box-shadow: 0 0 14px rgba(255, 41, 117, 0.8);
}

.topbar {
  position: sticky;
  top: 34px;
  z-index: 19;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px 26px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(10, 6, 18, 0.74);
  backdrop-filter: blur(14px);
}

.brand {
  font: 700 16px/1 var(--mono);
  letter-spacing: 0.18em;
  color: var(--ink);
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  max-width: 100%;
  border-radius: var(--radius);
  padding: 0 18px;
  border: 1px solid transparent;
  font: 700 12px/1.2 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--magenta);
  color: var(--bg-0);
  box-shadow: 0 0 26px rgba(255, 41, 117, 0.38);
}
.btn-primary:hover {
  background: rgba(255, 41, 117, 0.14);
  border-color: rgba(255, 41, 117, 0.78);
  color: var(--ink);
}
.btn-ghost,
.footer-call {
  background: rgba(0, 229, 255, 0.08);
  border-color: rgba(0, 229, 255, 0.38);
  color: var(--cyan);
}
.btn-sm { min-height: 38px; padding: 0 14px; }
.btn-block { width: 100%; }
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 41, 117, 0.12), transparent 34%),
    linear-gradient(245deg, rgba(0, 229, 255, 0.10), transparent 38%);
  opacity: 0.86;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.58fr);
  gap: 36px;
  width: min(1180px, calc(100% - 48px));
  min-height: 820px;
  margin: 0 auto;
  padding: 96px 0 72px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.kicker,
.book-kicker {
  margin: 0;
  color: var(--amber);
  font: 700 12px/1.25 var(--mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  font-family: var(--display);
  font-size: 88px;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 26px rgba(255, 41, 117, 0.26), 0 14px 34px rgba(0, 0, 0, 0.56);
}

h1 em,
h2 em {
  color: var(--magenta);
  font-style: normal;
}

.hero-sub {
  max-width: 620px;
  color: rgba(245, 242, 255, 0.84);
  font-size: 18px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 12px;
}

.hero-area {
  color: var(--dim);
  font: 700 11px/1.5 var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.art-slot {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  width: min(520px, 100%);
  margin-top: 16px;
  border: 1px dashed rgba(0, 229, 255, 0.38);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(135deg, rgba(0, 229, 255, 0.08) 0 1px, transparent 1px 18px),
    rgba(18, 10, 26, 0.68);
  color: var(--muted);
  text-align: center;
  padding: 18px;
}

.art-slot-tag,
.art-slot-id {
  font: 700 11px/1.2 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.art-slot-tag { color: var(--cyan); }
.art-slot-id { color: var(--amber); }
.art-slot-note {
  max-width: 32ch;
  font-size: 13px;
  line-height: 1.45;
}

.book-card {
  border: 1px solid rgba(255, 41, 117, 0.26);
  border-radius: var(--radius);
  background: rgba(10, 6, 18, 0.86);
  box-shadow: 0 0 42px rgba(255, 41, 117, 0.12), 0 20px 60px rgba(0, 0, 0, 0.28);
  padding: 22px;
}

.book-card h2 {
  margin-top: 10px;
  font-family: var(--display);
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

form {
  display: grid;
  gap: 13px;
  margin-top: 22px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
}

.opt { color: var(--dim); }

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(245, 242, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(5, 3, 12, 0.84);
  color: var(--ink);
  font: 500 15px/1.3 var(--body);
  outline: none;
  padding: 12px 13px;
}
textarea { resize: vertical; min-height: 92px; }
input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.14);
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 176, 59, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 176, 59, 0.06);
  color: rgba(245, 242, 255, 0.82);
}
.consent input { width: 18px; margin-top: 1px; }

.form-status {
  min-height: 22px;
  color: var(--dim);
  font-size: 13px;
  line-height: 1.4;
}
.form-status[data-state="success"] { color: #77f0b2; }
.form-status[data-state="error"] { color: #ff8fb8; }
.fine-print {
  color: var(--dim);
  font-size: 12px;
  line-height: 1.5;
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line-soft);
}
.strip span {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 16px;
  border-right: 1px solid var(--line-soft);
  color: var(--amber);
  font: 700 11px/1.25 var(--mono);
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}
.strip span:last-child { border-right: 0; }

section.services,
section.steps,
section.proof,
section.faq,
.bottom-cta {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 84px 0;
}

section h2 {
  font-family: var(--display);
  font-size: 54px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.svc-grid,
.steps-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.svc-card,
.steps-grid li,
.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(18, 10, 26, 0.62);
}

.svc-card {
  min-height: 228px;
  padding: 18px;
}

.svc-num,
.step-num {
  display: block;
  color: var(--cyan);
  font: 700 12px/1 var(--mono);
  letter-spacing: 0.16em;
}

.svc-card h3,
.steps-grid h3 {
  margin-top: 18px;
  font-size: 20px;
  line-height: 1.15;
}

.svc-card p,
.steps-grid p,
.faq-item p,
.footer p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0;
  list-style: none;
}
.steps-grid li { padding: 20px; }

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.proof-grid .art-slot {
  width: 100%;
  margin: 0;
}

.faq {
  display: grid;
  gap: 12px;
}
.faq h2 { margin-bottom: 14px; }
.faq-item {
  padding: 0;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 18px;
  color: var(--ink);
  font-weight: 700;
}
.faq-item p {
  padding: 0 18px 18px;
}

.bottom-cta {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.footer {
  display: grid;
  gap: 14px;
  padding: 34px 24px 46px;
  border-top: 1px solid var(--line-soft);
  background: rgba(5, 3, 12, 0.82);
  text-align: center;
}
.footer a { color: var(--cyan); }
.footer-disclosure {
  max-width: 900px;
  margin: 0 auto;
}
.footer-ethics {
  max-width: 760px;
  margin: 0 auto;
  color: var(--amber) !important;
  font: 700 12px/1.6 var(--mono) !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .masthead-r { display: none; }
  .topbar { top: 33px; padding-inline: 16px; }
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    width: min(100% - 32px, 680px);
    padding: 58px 0;
  }
  h1 { font-size: 58px; }
  section h2 { font-size: 40px; }
  .strip { grid-template-columns: 1fr 1fr; }
  section.services,
  section.steps,
  section.proof,
  section.faq,
  .bottom-cta {
    width: min(100% - 32px, 680px);
    padding: 58px 0;
  }
  .svc-grid,
  .steps-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .svc-card { min-height: 0; }
}

@media (max-width: 520px) {
  .masthead {
    padding-inline: 12px;
    font-size: 9px;
    letter-spacing: 0.12em;
  }
  .brand {
    max-width: 170px;
    font-size: 13px;
    letter-spacing: 0.12em;
  }
  .btn {
    min-height: 42px;
    padding-inline: 12px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }
  h1 { font-size: 44px; }
  .hero-sub { font-size: 16px; }
  .book-card h2 { font-size: 34px; }
  .strip { grid-template-columns: 1fr; }
  .strip span {
    min-height: 46px;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }
}

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

@media print {
  body {
    background: #fff;
    color: #111;
  }
  .masthead,
  .topbar,
  .hero-actions,
  form,
  script {
    display: none !important;
  }
  .hero-grid,
  section.services,
  section.steps,
  section.proof,
  section.faq,
  .bottom-cta {
    width: 100%;
    min-height: auto;
    padding: 18px 0;
  }
}
