:root {
  --bg: #f8f6f1;
  --surface: #ffffff;
  --ink: #142033;
  --muted: #566173;
  --accent: #0b7a82;
  --accent-strong: #095e65;
  --line: #d7dce3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fffaf0 0%, var(--bg) 40%, #f1f6fb 100%);
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: inline-block;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
}

.brand:link,
.brand:visited,
.brand:hover,
.brand:focus,
.brand:active {
  text-decoration: none;
}

.brand:hover,
.brand:focus {
  color: var(--accent-strong);
}

nav a {
  color: var(--ink);
  text-decoration: none;
  margin-left: 18px;
  font-weight: 600;
  font-size: 0.95rem;
}

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

.hero {
  padding: 52px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}

.kicker {
  color: var(--accent-strong);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

h1 {
  margin: 10px 0 12px;
  font-size: clamp(1.75rem, 3.8vw, 2.7rem);
  line-height: 1.15;
}

h2,
h3 {
  margin: 0 0 10px;
}

.lead {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 62ch;
}

.lead-stop {
  font-weight: 800;
  color: var(--ink);
}

.lead-list {
  margin: 0 0 0 18px;
  color: var(--ink);
}

.lead-list li {
  margin: 6px 0;
}

.micro {
  color: var(--muted);
  margin-top: 6px;
  font-size: 0.95rem;
}

.hero-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-block;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  padding: 11px 18px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--accent-strong);
}

.text-link {
  color: var(--accent-strong);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.section {
  padding: 30px 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.62);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-copy {
  margin-top: 4px;
  color: var(--muted);
}

.value-strip {
  background: #0b7a82;
  color: #fff;
  padding: 10px 0;
}

.value-strip-inner {
  text-align: center;
}

.value-strip p {
  margin: 0;
  font-weight: 700;
}

.value-strip small {
  display: block;
  margin-top: 4px;
  opacity: 0.95;
}

.cards {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

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

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 10px 28px rgba(20, 32, 51, 0.06);
}

.single-wide p {
  max-width: 75ch;
}

.placeholder-card {
  border-style: dashed;
}

.pricing-flow {
  max-width: 760px;
  margin: 0 auto;
}

.price-line {
  font-size: 1.15rem;
}

.screenshots-grid {
  margin-top: 10px;
}

.shot-card {
  padding: 10px;
}

.shot-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.hero-shot {
  padding: 8px;
}

.hero-shot img {
  max-height: 560px;
  object-fit: contain;
  object-position: top center;
}

.hero-preview h2 {
  font-size: clamp(1.15rem, 1.9vw, 1.5rem);
  line-height: 1.2;
  margin-bottom: 0.7rem;
}

.hero-preview h2 a,
.hero-preview h3 a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(20, 32, 51, 0.25);
}

.hero-preview h2 a:hover,
.hero-preview h3 a:hover {
  color: var(--accent-strong);
  border-bottom-color: var(--accent-strong);
}

.screenshot-credit {
  margin-top: 10px;
}

.chat-preview p {
  margin: 0 0 10px;
}

.demo-shell {
  display: grid;
  gap: 14px;
}

.demo-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.lead-form,
.calc-form {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="number"] {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 1rem;
}

textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
}

.demo-output {
  border: 1px dashed var(--line);
  border-radius: 10px;
  background: #fcfdff;
  padding: 12px;
  min-height: 82px;
}

.lead-capture {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.less-msg {
  margin: 0;
  font-weight: 700;
  color: var(--accent-strong);
}

#liveCta {
  margin-top: 4px;
}

.tryit-flow {
  max-width: 760px;
  margin: 0 auto;
}

.hidden {
  display: none;
}

.muted {
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}

.site-footer {
  padding: 24px 0 36px;
  color: var(--muted);
}

@media (max-width: 860px) {
  nav {
    display: none;
  }

  .hero-grid,
  .two-up,
  .three-up,
  .demo-input-row {
    grid-template-columns: 1fr;
  }

  .hero-shot img {
    max-height: 440px;
  }

  h1 {
    font-size: clamp(1.6rem, 7vw, 2.15rem);
  }
}
