/* ─── Nav ────────────────────────────────────────────────── */
.nav {
  position: relative;
  display: flex;
  align-items: center;
  padding: 22px var(--gutter);
  z-index: 5;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__logo {
  height: 22px;
  width: auto;
  display: block;
}

.nav__spacer { flex: 1; }

.nav__links {
  display: flex;
  gap: 32px;
  font-size: 13px;
  color: var(--mute);
  align-items: center;
}

.nav__links a { transition: color 0.2s; }
.nav__links a:hover { color: var(--ink); }

.nav__cta,
.nav__links a.nav__cta:hover {
  background: var(--ink);
  color: var(--bg);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

.nav__links a.nav__cta:hover { background: #fff; }

@media (max-width: 700px) {
  .nav__links { gap: 18px; }
  .nav__links a:not(.nav__cta) { display: none; }
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 88px var(--gutter) 120px;
  z-index: 2;
  text-align: center;
}

.hero__eyebrow { margin-bottom: 48px; }

/* ─── Product Hunt launch chip ───────────────────────────── */
.ph-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto 48px;
  padding: 8px 18px 8px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.02);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.ph-chip:hover {
  border-color: rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.04);
}

.ph-chip:hover .ph-chip__arrow {
  transform: translateX(3px);
  color: var(--ink);
}

.ph-chip__cat { display: block; flex-shrink: 0; }

.ph-chip__text { white-space: nowrap; }

.ph-chip__arrow {
  display: inline-block;
  font-size: 14px;
  color: var(--mute);
  transition: transform 0.2s ease, color 0.2s ease;
}

@media (max-width: 600px) {
  .ph-chip { font-size: 13px; gap: 10px; padding: 6px 14px 6px 6px; }
}

.hero__headline {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.03em;
  font-size: 156px;
  line-height: 0.88;
  margin: 0 auto 36px;
  max-width: 1400px;
}

.hero__headline .dim { color: var(--dim); }
.hero__headline .accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}

.hero__sub {
  font-size: 18px;
  line-height: 1.4;
  color: var(--mute);
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero__cta {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.hero__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 36px;
  padding-bottom: 4px;
  border-top: 1px solid var(--line);
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.hero__strip-cell { padding: 0 12px; }
.hero__strip-cell + .hero__strip-cell { border-left: 1px solid var(--line); }

.hero__strip-key {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.03em;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.1;
}

.hero__strip-val {
  font-size: 11px;
  color: var(--mute);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

@media (max-width: 1100px) {
  .hero__headline { font-size: 96px; }
}

@media (max-width: 700px) {
  .hero { padding: 56px var(--gutter) 80px; }
  .hero__headline { font-size: 52px; }
  .hero__strip { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .hero__strip-cell:nth-child(3) { border-left: none; }
  .hero__strip-key { font-size: 18px; }
}

/* ─── Clients rail ───────────────────────────────────────── */
.clients {
  position: relative;
  padding: 32px var(--gutter);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 56px;
  z-index: 2;
}

.clients__label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.clients__list {
  display: flex;
  gap: 44px;
  flex: 1;
  align-items: center;
  flex-wrap: wrap;
}

.clients__item {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.03em;
  font-size: 22px;
  color: var(--dim);
  text-decoration: none;
  transition: color 0.2s ease;
}

.clients__item:hover { color: var(--ink); }

@media (max-width: 700px) {
  .clients { gap: 20px; flex-direction: column; align-items: flex-start; }
  .clients__list { gap: 20px; }
  .clients__item { font-size: 17px; }
}

/* ─── Personas ───────────────────────────────────────────── */
.personas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line2);
  border-bottom: 1px solid var(--line2);
}

.persona {
  padding: 48px 48px 48px 0;
}

.persona + .persona {
  padding: 48px 0 48px 48px;
  border-left: 1px solid var(--line2);
}

.persona__tag {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.13em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.persona__h {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.03em;
  font-size: 40px;
  margin: 0 0 32px;
  line-height: 1.05;
}

.persona__quote {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: 22px;
  color: var(--ink);
  padding: 16px 18px;
  background: var(--panel);
  border-left: 2px solid var(--accent);
}

@media (max-width: 800px) {
  .personas-grid { grid-template-columns: 1fr; }
  .persona { padding: 36px 0 !important; border-left: none !important; }
  .persona + .persona { border-top: 1px solid var(--line2); }
  .persona__h { font-size: 28px; }
  .persona__quote { font-size: 17px; }
}

/* ─── Setup ──────────────────────────────────────────────── */
.setup {
  max-width: 960px;
  margin: 0 auto;
}

.setup__h {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.03em;
  font-size: 72px;
  margin: 0 0 80px;
  line-height: 0.95;
  text-align: center;
}

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

.setup__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 80px;
  border-top: 1px solid var(--line2);
  border-bottom: 1px solid var(--line2);
}

.setup-step {
  padding: 32px 28px;
  text-align: center;
}

.setup-step + .setup-step { border-left: 1px solid var(--line2); }

.setup-step__num {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.03em;
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}

.setup-step__title {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.2;
}

@media (max-width: 800px) {
  .setup__h { font-size: 44px; margin-bottom: 48px; }
  .setup__steps { grid-template-columns: 1fr; }
  .setup-step + .setup-step { border-left: none; border-top: 1px solid var(--line2); }
}

/* ─── Benchmarks ─────────────────────────────────────────── */
.bench__head {
  text-align: center;
  margin-bottom: 64px;
}

.bench__h {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.03em;
  font-size: 84px;
  margin: 0 0 24px;
  line-height: 0.95;
}

.bench__h .dim { color: var(--dim); }
.bench__h .accent { color: var(--accent); }

.bench__meta {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--mute);
  line-height: 1.7;
  margin: 24px auto 0;
  max-width: 720px;
  letter-spacing: 0.02em;
}

.bench__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.bench__tagline {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
  font-size: 32px;
  color: var(--ink);
  text-align: center;
  margin-top: 64px;
  line-height: 1.3;
}

.bench__tagline .accent { color: var(--accent); }

@media (max-width: 900px) {
  .bench__h { font-size: 44px; }
  .bench__grid { grid-template-columns: 1fr; }
  .bench__tagline { font-size: 22px; }
}

/* ─── Things you can say ─────────────────────────────────── */
.examples {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.example-row {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
  padding: 64px 0;
  border-top: 1px solid var(--line2);
}

.example-row:last-child { border-bottom: 1px solid var(--line2); }

.example-row.flip { grid-template-columns: 1.05fr 1fr; }
.example-row.flip .example-row__text { order: 2; }
.example-row.flip .example-row__demo { order: 1; }

.example-row__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.example-row__num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.13em;
}

.example-row__rule {
  width: 24px;
  height: 1px;
  background: var(--line2);
}

.example-row__who {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.example-row__say {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.03em;
  font-size: 56px;
  color: var(--ink);
  line-height: 1.05;
  text-wrap: pretty;
}

@media (max-width: 1000px) {
  .example-row,
  .example-row.flip {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .example-row.flip .example-row__text { order: 1; }
  .example-row.flip .example-row__demo { order: 2; }
  .example-row__say { font-size: 32px; }
}

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq__layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.faq__heading-wrap {
  position: sticky;
  top: 80px;
}

.faq__heading {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.03em;
  font-size: 56px;
  margin: 0;
  line-height: 0.95;
}

@media (max-width: 900px) {
  .faq__layout { grid-template-columns: 1fr; gap: 32px; }
  .faq__heading-wrap { position: static; }
  .faq__heading { font-size: 36px; }
}

/* ─── CTA ─────────────────────────────────────────────────── */
.cta {
  position: relative;
  padding: 160px var(--gutter) 140px;
  z-index: 2;
}

.cta__h {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.03em;
  font-size: 132px;
  margin: 0 0 64px;
  line-height: 0.85;
  max-width: 1200px;
}

.cta__h .accent { color: var(--accent); }

.cta__buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .cta { padding: 96px var(--gutter); }
  .cta__h { font-size: 56px; }
}

/* ─── Footer ─────────────────────────────────────────────── */
.foot {
  position: relative;
  padding: 40px var(--gutter);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  font-size: 12px;
  color: var(--mute);
  z-index: 2;
  flex-wrap: wrap;
  gap: 16px;
}

.foot__logo {
  height: 18px;
  width: auto;
  display: block;
}

.foot__id {
  margin-left: 4px;
  font-family: var(--mono);
}

.foot__spacer { flex: 1; }

.foot__links {
  display: flex;
  gap: 28px;
  font-family: var(--mono);
}

.foot__copy {
  margin-left: 32px;
  font-family: var(--mono);
}

@media (max-width: 700px) {
  .foot__copy { margin-left: 0; }
}
