/* ============================================================
   LawnRing marketing — design system v2
   Brand tokens live in :root; layout/components are shared
   across DialMove / LawnRing / ScoreACut. Keep them in sync.
   ============================================================ */

:root {
  /* Brand: LawnRing (forest green + gold) */
  --primary: #166534;
  --primary-dark: #0f4d27;
  --accent: #FCD34D;
  --accent-strong: #FDE176;
  --accent-text: #1c1503;
  --accent-ink: #7a5d05;

  /* Dark band (header / hero / footer) */
  --dark-bg: #051d10;
  --dark-bg-2: #0b3a1f;
  --dark-card: rgba(255, 255, 255, 0.045);
  --dark-border: rgba(255, 255, 255, 0.12);
  --dark-fg: #f4faf4;
  --dark-fg-soft: rgba(240, 250, 240, 0.78);
  --dark-muted: rgba(228, 244, 228, 0.55);

  /* Light sections */
  --bg: #ffffff;
  --bg-tinted: #f5f8f4;
  --fg: #101b12;
  --fg-soft: #33413a;
  --muted: #5f6f64;
  --border: #e2e8e2;
  --border-soft: #edf1ec;

  --bubble-ai: var(--primary);
  --bubble-caller: #eef2ed;

  --shadow-sm: 0 1px 2px rgba(7, 26, 13, 0.06);
  --shadow: 0 6px 24px rgba(7, 26, 13, 0.09);
  --shadow-lg: 0 24px 64px rgba(7, 26, 13, 0.16);
  --radius: 16px;
  --radius-lg: 24px;

  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Bricolage Grotesque", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv11", "ss01";
}

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

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { font-family: var(--font-display); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 22px;
}

/* ============ Scroll reveal ============ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 26px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 650;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform 0.14s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-family: inherit;
  letter-spacing: -0.01em;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  color: var(--accent-text);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--accent) 38%, transparent);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px color-mix(in srgb, var(--accent) 46%, transparent);
}
.btn-ghost-dark {
  background: rgba(255, 255, 255, 0.06);
  color: var(--dark-fg);
  border: 1px solid var(--dark-border);
}
.btn-ghost-dark:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-2px); }
.btn-outline {
  background: var(--bg);
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover { background: var(--bg-tinted); transform: translateY(-2px); }

/* ============ Dark band: header + hero ============ */
.dark-band {
  background:
    radial-gradient(1100px 560px at 12% -12%, color-mix(in srgb, var(--primary) 42%, transparent), transparent 62%),
    radial-gradient(900px 520px at 88% 4%, color-mix(in srgb, var(--accent) 13%, transparent), transparent 58%),
    linear-gradient(178deg, var(--dark-bg-2) 0%, var(--dark-bg) 64%);
  color: var(--dark-fg);
  position: relative;
  overflow: hidden;
}
.dark-band::before {
  /* faint grid texture */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(900px 600px at 50% 0%, rgba(0, 0, 0, 0.9), transparent 75%);
  mask-image: radial-gradient(900px 600px at 50% 0%, rgba(0, 0, 0, 0.9), transparent 75%);
  pointer-events: none;
}
.dark-band > * { position: relative; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--dark-bg) 82%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--dark-fg);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 13px;
  padding-bottom: 13px;
}
.site-header .brand-row { display: flex; align-items: center; }
.site-header .brand-row img {
  height: 32px;
  width: auto;
  filter: invert(1) brightness(1.6);
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-header nav .nav-link {
  color: var(--dark-fg-soft);
  font-weight: 560;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  transition: color 0.15s ease, background 0.15s ease;
}
.site-header nav .nav-link:hover { color: var(--dark-fg); background: rgba(255, 255, 255, 0.07); text-decoration: none; }
.site-header .nav-cta {
  font-size: 14px;
  font-weight: 620;
  color: var(--dark-fg);
  padding: 9px 16px;
  border: 1px solid var(--dark-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.15s ease, border-color 0.15s ease;
}
.site-header .nav-cta:hover { background: rgba(255, 255, 255, 0.12); text-decoration: none; }
.site-header .nav-trial {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-text);
  padding: 9px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  box-shadow: 0 6px 18px color-mix(in srgb, var(--accent) 32%, transparent);
  transition: transform 0.14s ease, box-shadow 0.2s ease;
}
.site-header .nav-trial:hover { transform: translateY(-1px); text-decoration: none; }

/* ============ Hero ============ */
.hero { padding: 64px 0 56px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  width: 100%;
  align-items: center;
}
.hero-copy { text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-strong);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--dark-border);
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}
.hero h1 {
  font-size: clamp(38px, 7.2vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 760;
  margin-bottom: 18px;
  color: var(--dark-fg);
}
.hero h1 .accent {
  color: var(--accent-strong);
  font-style: italic;
  padding-right: 0.06em;
}
.hero .sub {
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.5;
  color: var(--dark-fg-soft);
  margin: 0 auto 30px;
  max-width: 540px;
}
.btn-cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.hero .phone {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 14px;
  color: var(--dark-muted);
  letter-spacing: 0.01em;
}
.hero-trust {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
  font-size: 13.5px;
  font-weight: 540;
  color: var(--dark-muted);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { width: 14px; height: 14px; color: var(--accent-strong); }

/* Hero call card */
.call-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-lg);
  max-width: 440px;
  margin: 0 auto;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.call-card .cc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 16px;
}
.call-card .cc-who { display: flex; align-items: center; gap: 11px; }
.call-card .cc-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent) 55%, #9c7f1e);
  color: var(--accent-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}
.call-card .cc-name { font-weight: 650; font-size: 15px; color: var(--dark-fg); }
.call-card .cc-sub { font-size: 12px; color: var(--dark-muted); }
.call-card .cc-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 650;
  color: #34d399;
}
.call-card .cc-status .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #34d399;
  animation: pulse 1.8s ease-in-out infinite;
}
.call-card .cc-body { min-height: 248px; }
.call-card .cc-line {
  font-size: 14px;
  line-height: 1.45;
  padding: 11px 13px;
  border-radius: 14px;
  margin-bottom: 9px;
}
.call-card .cc-line.ai {
  background: rgba(255, 255, 255, 0.1);
  color: var(--dark-fg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom-left-radius: 5px;
  margin-right: 26px;
}
.call-card .cc-line.caller {
  background: color-mix(in srgb, var(--primary) 55%, var(--dark-bg));
  color: var(--dark-fg);
  margin-left: 26px;
  border-bottom-right-radius: 5px;
}
.call-card .cc-line .who {
  display: block;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 720;
  color: var(--dark-muted);
  margin-bottom: 3px;
}
.call-card .cc-typing {
  display: inline-flex;
  gap: 4px;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  border-bottom-left-radius: 5px;
}
.call-card .cc-typing i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--dark-muted);
  animation: typing 1.2s ease-in-out infinite;
}
.call-card .cc-typing i:nth-child(2) { animation-delay: 0.18s; }
.call-card .cc-typing i:nth-child(3) { animation-delay: 0.36s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.45; }
  30% { transform: translateY(-4px); opacity: 1; }
}
.call-card .cc-line.anim {
  animation: msgIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(10px) scale(0.97); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .call-card .cc-line.anim { animation: none; }
}

/* ============ Stats band (bottom of dark band) ============ */
.stats {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0 36px;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.stat { text-align: center; }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 740;
  letter-spacing: -0.02em;
  color: var(--accent-strong);
  line-height: 1.1;
}
.stat .label {
  margin-top: 4px;
  font-size: 13.5px;
  font-weight: 540;
  color: var(--dark-muted);
}

/* ============ Section base ============ */
section { padding: 72px 0; }
.section-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 48px;
}
.section-head .eyebrow {
  color: var(--primary);
  background: color-mix(in srgb, var(--primary) 8%, white);
  border: 1px solid color-mix(in srgb, var(--primary) 18%, white);
  margin-bottom: 16px;
}
.section-head h2 {
  font-size: clamp(28px, 4.6vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 740;
}
.section-head p {
  margin-top: 14px;
  font-size: 17px;
  color: var(--muted);
}

/* ============ Bento features ============ */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.bento-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.bento-card:hover {
  border-color: color-mix(in srgb, var(--primary) 32%, var(--border));
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.bento-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: color-mix(in srgb, var(--primary) 9%, white);
  border: 1px solid color-mix(in srgb, var(--primary) 16%, white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.bento-card .icon svg { width: 22px; height: 22px; }
.bento-card h3 {
  font-size: 19px;
  font-weight: 680;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.bento-card p { font-size: 15px; line-height: 1.55; color: var(--muted); }
.bento-card.feature {
  background:
    radial-gradient(560px 300px at 90% -20%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 60%),
    linear-gradient(170deg, var(--dark-bg-2), var(--dark-bg));
  border-color: color-mix(in srgb, var(--primary) 45%, var(--dark-bg));
  color: var(--dark-fg);
}
.bento-card.feature h3 { color: var(--dark-fg); font-size: 22px; }
.bento-card.feature p { color: var(--dark-fg-soft); font-size: 15.5px; max-width: 540px; }
.bento-card.feature .icon {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--dark-border);
  color: var(--accent-strong);
}
.bento-card.feature .tag {
  display: inline-block;
  margin-top: 18px;
  font-size: 12.5px;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

/* ============ How it works ============ */
.how { background: linear-gradient(180deg, var(--bg-tinted), var(--bg)); }
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
  counter-reset: step;
}
.step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
}
.step .num {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(160deg, var(--primary), var(--primary-dark));
  color: white;
  font-weight: 720;
  font-family: var(--font-display);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px color-mix(in srgb, var(--primary) 32%, transparent);
  margin-bottom: 16px;
}
.step h3 { font-size: 17px; font-weight: 660; margin-bottom: 6px; letter-spacing: -0.01em; }
.step p { color: var(--muted); font-size: 15px; line-height: 1.5; }

/* ============ Conversations ============ */
.dialog-wrap { background: var(--bg-tinted); }
.dialog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}
.dialog {
  padding: 26px 22px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.dialog-single { max-width: 560px; margin: 0 auto; }
.dialog .lang {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  background: color-mix(in srgb, var(--primary) 8%, white);
  border: 1px solid color-mix(in srgb, var(--primary) 16%, white);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 18px;
}
.dialog .row {
  display: flex;
  gap: 10px;
  margin-bottom: 13px;
  align-items: flex-end;
}
.dialog .row:last-child { margin-bottom: 0; }
.dialog .row.caller { flex-direction: row-reverse; }
.dialog .avatar {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 720;
  font-size: 11px;
}
.dialog .avatar.ai { background: var(--bubble-ai); color: white; }
.dialog .avatar.caller {
  background: var(--bg-tinted);
  color: var(--fg-soft);
  border: 1px solid var(--border);
}
.bubble {
  padding: 11px 15px;
  border-radius: 18px;
  max-width: 82%;
  line-height: 1.45;
  font-size: 14.5px;
}
.bubble.ai { background: var(--bubble-ai); color: white; border-bottom-left-radius: 5px; }
.bubble.caller { background: var(--bubble-caller); color: var(--fg); border-bottom-right-radius: 5px; }

/* ============ Missed-call scenarios ============ */
.scenes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.scene {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.scene:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.scene .when {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent-ink);
  background: color-mix(in srgb, var(--accent) 22%, white);
  border: 1px solid color-mix(in srgb, var(--accent) 38%, white);
  border-radius: 8px;
  padding: 5px 10px;
  margin-bottom: 16px;
}
.scene .when svg { width: 13px; height: 13px; }
.scene p { font-size: 15.5px; line-height: 1.55; color: var(--fg-soft); }
.scene p strong { color: var(--fg); }

/* ============ Pricing teaser ============ */
.price-teaser {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 880px;
  margin: 0 auto 28px;
}
.pt-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: left;
}
.pt-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow);
  position: relative;
}
.pt-card .pt-tag {
  position: absolute;
  top: -12px;
  left: 26px;
  background: var(--primary);
  color: white;
  font-size: 11.5px;
  font-weight: 720;
  padding: 4px 11px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pt-card h3 { font-size: 20px; font-weight: 700; }
.pt-card .pt-price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 740;
  letter-spacing: -0.02em;
  margin: 12px 0 2px;
}
.pt-card .pt-price span { font-family: var(--font-body); font-size: 15px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.pt-card .pt-sub { font-size: 13.5px; color: var(--muted); margin-bottom: 16px; }
.pt-card ul { list-style: none; margin: 0 0 22px; }
.pt-card li {
  display: flex;
  gap: 9px;
  padding: 6px 0;
  font-size: 14.5px;
  color: var(--fg-soft);
}
.pt-card li svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; margin-top: 3px; }
.compare-link { text-align: center; font-size: 15px; font-weight: 600; }

/* ============ FAQ ============ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-list details {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-list details[open] { border-color: color-mix(in srgb, var(--primary) 30%, var(--border)); box-shadow: var(--shadow-sm); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 19px 22px;
  font-size: 16px;
  font-weight: 620;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  letter-spacing: -0.01em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .chev {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--muted);
  transition: transform 0.25s ease;
}
.faq-list details[open] summary .chev { transform: rotate(180deg); color: var(--primary); }
.faq-list .faq-a {
  padding: 0 22px 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

/* ============ Final CTA ============ */
.signup {
  text-align: center;
  background:
    radial-gradient(820px 420px at 50% -30%, color-mix(in srgb, var(--primary) 55%, transparent), transparent 65%),
    radial-gradient(700px 380px at 88% 110%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 60%),
    linear-gradient(180deg, var(--dark-bg-2), var(--dark-bg));
  color: var(--dark-fg);
  position: relative;
  overflow: hidden;
  padding: 88px 0;
}
.signup h2 {
  font-size: clamp(30px, 5vw, 44px);
  letter-spacing: -0.025em;
  font-weight: 740;
  color: var(--dark-fg);
}
.signup p {
  margin: 14px auto 30px;
  color: var(--dark-fg-soft);
  max-width: 480px;
}
.signup .badges {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: center;
  font-size: 13.5px;
  color: var(--dark-muted);
}
.signup .badges span { display: inline-flex; gap: 7px; align-items: center; }
.signup .badges svg { width: 14px; height: 14px; color: var(--accent-strong); }

/* ============ Footer ============ */
.site-footer {
  background: var(--dark-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--dark-muted);
  font-size: 14px;
  padding: 52px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand img {
  height: 28px;
  width: auto;
  filter: invert(1) brightness(1.6);
  margin-bottom: 14px;
}
.footer-brand p { max-width: 300px; line-height: 1.55; font-size: 13.5px; }
.footer-brand .phone {
  display: inline-block;
  margin-top: 14px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 13.5px;
  color: var(--dark-fg-soft);
}
.footer-col h4 {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--dark-fg-soft);
  margin-bottom: 14px;
  font-family: var(--font-body);
}
.footer-col a {
  display: block;
  color: var(--dark-muted);
  padding: 5px 0;
  font-size: 14px;
}
.footer-col a:hover { color: var(--dark-fg); text-decoration: none; }
.footer-bottom {
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  font-size: 12.5px;
}

/* ============ Tablet / desktop ============ */
@media (min-width: 760px) {
  .hero { padding: 88px 0 72px; }
  .hero-inner { grid-template-columns: 1.08fr 1fr; gap: 60px; }
  .hero-copy { text-align: left; }
  .hero .sub { margin-left: 0; margin-right: 0; }
  .btn-cta-row { flex-direction: row; gap: 16px; align-items: center; }
  .hero-trust { justify-content: flex-start; }
  section { padding: 96px 0; }
  .stats-row { grid-template-columns: repeat(4, 1fr); }
  .bento { grid-template-columns: repeat(3, 1fr); }
  .bento-card.feature { grid-column: span 2; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .dialog-grid { grid-template-columns: 1fr 1fr; }
  .scenes { grid-template-columns: repeat(3, 1fr); }
  .price-teaser { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (max-width: 759px) {
  .site-header nav .nav-link { display: none; }
  .site-header .nav-trial { display: none; }
}

/* LawnRing override: full-color logo (no invert) on a white chip */
.site-header .brand-row img,
.footer-brand img {
  filter: none;
  background: #ffffff;
  border-radius: 9px;
  padding: 4px 9px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}
