:root {
  --bg: #f3f1e8;
  --bg-warm: #eae6d8;
  --ink: #14130f;
  --ink-2: #3a3933;
  --muted: #6b6960;
  --line: #d8d3c4;
  --line-soft: #e6e1d3;
  --surface: #fff;
  --accent: #c8f04a;
  --accent-deep: #b3dc2f;
  --accent-ink: #1a2200;
  --dark: #16150f;
  --dark-2: #222118;
  --ok: #2c6a32;
  --danger: #9a2e2e;
  --shadow: 0 18px 50px rgba(20, 19, 15, 0.1);
  --shadow-soft: 0 8px 28px rgba(20, 19, 15, 0.06);
  --radius: 18px;
  --radius-sm: 12px;
  --header: 72px;
  --max: 1160px;
  --font: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.5;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--accent-ink);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 80;
  padding: 8px 12px;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
}

.skip:focus {
  top: 12px;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(200, 240, 74, 0.25);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  letter-spacing: -0.04em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.7rem);
  font-weight: 620;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  font-weight: 600;
}

.lead {
  max-width: 38rem;
  color: var(--ink-2);
  font-size: 1.125rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}

.header.is-stuck {
  border-bottom-color: var(--line-soft);
}

.header-inner {
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  width: 28px;
  height: 28px;
  color: var(--ink);
  flex: 0 0 auto;
}

.brand-word {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.brand-tld {
  margin-left: 1px;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.86em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: var(--ink-2);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav a:hover {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 610;
  letter-spacing: -0.02em;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-accent {
  background: var(--accent);
  color: var(--accent-ink);
}

.btn-accent:hover {
  background: var(--accent-deep);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--ink);
}

.header .btn-header {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 16px;
  height: 1.5px;
  margin: 0 auto;
  background: var(--ink);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -5px;
}

.nav-toggle span::after {
  top: 5px;
}

.hero {
  padding: 40px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: start;
}

.hero-copy {
  padding-top: 8px;
}

.hero h1 {
  max-width: 11ch;
}

.hero .lead {
  margin: 22px 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fine {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.stage {
  position: relative;
}

.browser {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #f7f5ee;
  border-bottom: 1px solid var(--line-soft);
}

.dots {
  display: flex;
  gap: 6px;
}

.dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d9d4c6;
}

.omnibox {
  flex: 1;
  min-width: 0;
  padding: 6px 10px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 12px;
}

.app-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-soft);
}

.biz {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.biz strong {
  font-size: 0.98rem;
  letter-spacing: -0.03em;
}

.biz span {
  color: var(--muted);
  font-size: 0.8rem;
}

.live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f4fbe3;
  color: var(--ok);
  font-size: 12px;
  font-weight: 600;
}

.live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3c9a3c;
  box-shadow: 0 0 0 0 rgba(60, 154, 60, 0.55);
  animation: pulse 1.8s infinite;
}

.app-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
  padding: 14px;
}

.panel {
  background: #faf8f1;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 14px;
}

.panel h3 {
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.metric strong {
  display: block;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.metric em {
  font-style: normal;
  color: var(--ok);
  font-size: 12px;
  font-weight: 650;
}

.metric span {
  color: var(--muted);
  font-size: 12px;
}

.lead-row,
.event-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 10px 0;
  border-top: 1px solid var(--line-soft);
}

.lead-row:first-of-type,
.event-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.lead-row b,
.event-row b {
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}

.lead-row span,
.event-row span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.site-preview {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  min-height: 100%;
}

.site-preview .kicker {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-preview h4 {
  margin: 8px 0 6px;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.site-preview p {
  color: var(--ink-2);
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.site-preview .fake-btn {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.photo-card {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px;
  align-items: center;
}

.thumb {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background:
    linear-gradient(160deg, #dfe9b8 0%, #c8d3a0 46%, #9aa87a 100%);
}

.float {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
}

.float i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-ink);
}

.float-a { top: 28px; right: -12px; }
.float-b { top: 46%; right: -28px; }
.float-c { bottom: 36px; left: -18px; }
.float-d { top: 18px; left: 18px; }

.value-grid,
.steps,
.verticals,
.loop,
.chat {
  margin-top: 40px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.card .icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 12px;
  background: #f4fbe3;
  color: var(--accent-ink);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.card p {
  color: var(--ink-2);
}

.note {
  display: inline-block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step {
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.step-num {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.step h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.step p {
  color: var(--ink-2);
}

.snippet {
  margin-top: 20px;
  padding: 12px;
  border-radius: 12px;
  background: #faf8f1;
  border: 1px solid var(--line-soft);
  color: var(--ink-2);
  font-size: 13px;
}

.snippet b {
  color: var(--ink);
}

.tier {
  margin-top: 28px;
}

.tier-label {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tier-quiet .chip {
  background: transparent;
  color: var(--ink-2);
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-weight: 560;
}

.chip.is-focus {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.chip.is-more {
  background: transparent;
}

.focus-key {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.focus-key b {
  color: var(--ink);
}

.loop {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-left: 0;
  padding: 0;
  list-style: none;
}

.loop-node {
  position: relative;
  min-height: 132px;
  padding: 18px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.loop-node span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.loop-node strong {
  display: block;
  margin-top: 10px;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.loop-node:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: translateY(-50%) rotate(-45deg);
}

.chat {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 36px;
  align-items: center;
}

.thread {
  display: grid;
  gap: 12px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.bubble {
  max-width: 92%;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f6f3e9;
}

.bubble.you {
  justify-self: end;
  background: var(--ink);
  color: #fff;
}

.bubble small {
  display: block;
  margin-bottom: 6px;
  opacity: 0.62;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.prepare {
  display: grid;
  gap: 6px;
  margin: 10px 0 12px;
  padding: 0;
  list-style: none;
}

.prepare li {
  color: var(--ink-2);
}

.prepare li::before {
  content: "+ ";
  color: var(--accent-ink);
  font-weight: 700;
}

.cta {
  padding: 8px 0 88px;
}

.cta-panel {
  padding: 56px 48px;
  background: var(--dark);
  color: #f6f3ea;
  border-radius: 32px;
}

.cta-panel h2 {
  max-width: 12ch;
}

.cta-panel .lead {
  margin: 18px 0 32px;
  color: #d4d0c3;
}

.form {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 14px 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field span {
  font-size: 0.88rem;
  font-weight: 600;
  color: #d8d4c6;
}

.req {
  color: var(--accent);
}

.field input,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid #3a382e;
  border-radius: 14px;
  background: var(--dark-2);
  color: #fff;
}

.field input::placeholder {
  color: #8b8778;
}

.field input:focus-visible,
.field select:focus-visible {
  outline-color: var(--accent);
}

.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  padding: 0;
  pointer-events: none;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.form-status {
  min-height: 1.4em;
  color: #d4d0c3;
  font-size: 0.95rem;
}

.form-status.is-ok {
  color: var(--accent);
}

.form-status.is-err {
  color: #ffb4b0;
}

.footer {
  padding: 36px 0 48px;
  border-top: 1px solid var(--line-soft);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.footer p {
  margin-top: 8px;
  color: var(--muted);
}

.footer nav {
  display: flex;
  gap: 18px;
  color: var(--ink-2);
}

.legal {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.88rem;
}

.page {
  padding: 48px 0 96px;
}

.page h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.page .lead {
  margin: 16px 0 32px;
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  margin: 32px 0 12px;
  font-size: 1.4rem;
}

.prose p,
.prose li {
  color: var(--ink-2);
}

.prose ul {
  padding-left: 1.2rem;
}

.reveal {
  opacity: 1;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(60, 154, 60, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(60, 154, 60, 0); }
  100% { box-shadow: 0 0 0 0 rgba(60, 154, 60, 0); }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }

  .reveal.is-in {
    opacity: 1;
    transform: none;
  }

  .hero-copy {
    animation: rise 0.7s ease both;
  }

  .stage {
    animation: rise 0.85s ease 0.08s both;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .live i { animation: none; }
  .btn:hover { transform: none; }
}

@media (max-width: 1100px) {
  .hero-grid,
  .chat,
  .form {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 14ch;
  }

  .float-b,
  .float-d {
    display: none;
  }

  .stage {
    min-height: 0;
  }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    inset: var(--header) 0 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 32px;
    background: var(--bg);
  }

  body.nav-open .nav {
    display: flex;
  }

  .nav a,
  .nav .btn {
    min-height: 52px;
    border-bottom: 1px solid var(--line-soft);
    border-radius: 0;
    justify-content: flex-start;
  }

  .nav .btn {
    margin-top: 16px;
    justify-content: center;
    border-radius: 999px;
    border-bottom: 0;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero {
    padding: 28px 0 48px;
  }

  .header .btn-header {
    display: inline-flex;
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.92rem;
  }

  .value-grid,
  .steps,
  .app-grid,
  .loop {
    grid-template-columns: 1fr;
  }

  .loop-node:not(:last-child)::after {
    top: auto;
    right: auto;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%) rotate(45deg);
  }

  .cta-panel {
    padding: 36px 20px;
    border-radius: 24px;
  }

  .footer-inner,
  .app-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .float-a,
  .float-c {
    position: static;
    margin: 0 8px 10px 0;
  }

  .stage {
    display: flex;
    flex-direction: column;
  }

  .floats-mobile {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (max-width: 430px) {
  .wrap {
    width: min(var(--max), calc(100% - 28px));
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding: 20px 0 40px;
  }

  .metrics {
    grid-template-columns: 1fr;
  }
}
