:root {
  --bg: oklch(0.982 0.004 92);
  --bg-2: oklch(0.958 0.006 92);
  --ink: oklch(0.18 0.01 85);
  --ink-2: oklch(0.42 0.01 85);
  --ink-3: oklch(0.6 0.01 85);
  --line: oklch(0.9 0.008 85);
  --line-2: oklch(0.86 0.008 85);
  --accent: oklch(0.62 0.16 145);
  --accent-ink: oklch(0.22 0.04 145);
  --accent-soft: oklch(0.95 0.04 145);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Inter Tight", "Inter", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

a {
  color: inherit;
}

.wrap {
  width: min(100% - 96px, 1040px);
  margin: 0 auto;
}

.mono {
  display: block;
  color: var(--ink-3);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 96px, 1040px);
  margin: 0 auto;
  padding: 24px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-family: "Inter Tight", "Inter", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
}

.logo .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.links a,
.footer-links a {
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.links a:hover,
.footer-links a:hover {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--bg);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  background: oklch(0.28 0.01 85);
  transform: translateY(-1px);
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.btn.primary:hover {
  background: oklch(0.55 0.17 145);
}

.btn.ghost {
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--ink);
}

.btn.ghost:hover {
  background: var(--bg-2);
}

.hero {
  padding: 72px 0 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px 6px 8px;
  background: var(--bg);
  color: var(--ink-2);
  font-size: 13px;
}

.eyebrow .pill {
  border-radius: 999px;
  padding: 2px 8px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 14ch;
  margin-bottom: 24px;
  font-size: 72px;
  line-height: 1.02;
}

.hero h1 em {
  padding: 0 4px;
  background: linear-gradient(transparent 62%, var(--accent-soft) 62%);
  color: var(--accent-ink);
  font-style: normal;
}

.hero .lead {
  max-width: 56ch;
  margin: 0 0 36px;
  color: var(--ink-2);
  font-size: 19px;
  line-height: 1.5;
}

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

.note {
  margin-left: 6px;
  color: var(--ink-3);
  font-size: 13px;
}

.mock {
  overflow: hidden;
  --m-bg: oklch(0.2 0.012 260);
  --m-bg-2: oklch(0.24 0.012 260);
  --m-bg-3: oklch(0.27 0.012 260);
  --m-line: oklch(0.32 0.012 260);
  --m-line-2: oklch(0.38 0.012 260);
  --m-ink: oklch(0.97 0.005 260);
  --m-ink-2: oklch(0.78 0.01 260);
  --m-ink-3: oklch(0.6 0.012 260);

  margin-top: 72px;
  border: 1px solid oklch(0.16 0.012 260);
  border-radius: 14px;
  background: var(--m-bg);
  color: var(--m-ink);
  box-shadow:
    0 1px 0 oklch(1 0 0 / 0.04) inset,
    0 30px 80px -32px oklch(0 0 0 / 0.35),
    0 8px 20px -10px oklch(0 0 0 / 0.18);
}

.mock-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--m-line);
  padding: 12px 16px;
  background: var(--m-bg-2);
}

.traffic {
  display: flex;
  gap: 6px;
}

.traffic span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--m-line-2);
}

.url {
  flex: 1;
  color: var(--m-ink-3);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  text-align: center;
}

.mock-grid {
  display: grid;
  grid-template-columns: 220px 1fr 280px;
  height: 460px;
}

.mock-col {
  overflow: hidden;
  border-right: 1px solid var(--m-line);
  padding: 16px;
}

.mock-col:last-child {
  border-right: 0;
}

.mock-col h2 {
  margin-bottom: 14px;
  color: var(--m-ink-2);
  font-size: 13px;
  letter-spacing: 0;
}

.listing {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px 12px;
}

.listing.active {
  border-color: var(--m-line);
  background: var(--m-bg-3);
}

.ph {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 6px;
  background: repeating-linear-gradient(
    45deg,
    oklch(0.32 0.012 260) 0 4px,
    oklch(0.36 0.012 260) 4px 8px
  );
}

.meta {
  min-width: 0;
  flex: 1;
}

.title {
  overflow: hidden;
  color: var(--m-ink);
  font-size: 13px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sub {
  color: var(--m-ink-3);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
}

.badge {
  border-radius: 999px;
  padding: 1px 6px;
  background: var(--accent);
  color: #fff;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 600;
}

.lead-card,
.suggest {
  border: 1px solid var(--m-line);
  border-radius: 10px;
  background: var(--m-bg-2);
}

.lead-card {
  margin-bottom: 10px;
  padding: 14px;
}

.lead-card .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.name {
  color: var(--m-ink);
  font-size: 14px;
  font-weight: 600;
}

.stage {
  color: var(--m-ink-3);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  text-align: right;
  text-transform: uppercase;
}

.msg,
.suggest .body {
  margin: 0;
  color: var(--m-ink-2);
  font-size: 13px;
  line-height: 1.45;
}

.suggest {
  margin-bottom: 10px;
  padding: 14px;
}

.suggest .head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.tag {
  border-radius: 4px;
  padding: 2px 6px;
  background: oklch(0.32 0.06 145);
  color: oklch(0.85 0.12 145);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.suggest-title {
  margin: 0 0 6px;
  color: var(--m-ink);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid var(--m-line-2);
  border-radius: 999px;
  padding: 5px 10px;
  background: var(--m-bg-3);
  color: var(--m-ink);
  font-size: 12px;
  line-height: 1.2;
}

.chip.solid {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.page-section {
  border-top: 1px solid var(--line);
  padding: 88px 0;
}

.section-head {
  max-width: 56ch;
  margin-bottom: 56px;
}

.section-head .mono {
  margin-bottom: 16px;
}

.section-head h2 {
  margin-bottom: 16px;
  font-size: 46px;
  line-height: 1.05;
}

.section-head p {
  margin: 0;
  color: var(--ink-2);
  font-size: 17px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.prob {
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 28px;
  background: oklch(0.94 0.006 80);
  box-shadow: 0 1px 0 oklch(1 0 0 / 0.6) inset, 0 2px 0 oklch(0 0 0 / 0.02);
}

.prob .num {
  margin-bottom: 12px;
  color: var(--ink-3);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
}

.prob h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.prob p {
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
}

.features {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  background: var(--line-2);
  box-shadow: 0 2px 0 oklch(0 0 0 / 0.02);
}

.feat {
  min-height: 210px;
  padding: 32px 28px;
  background: oklch(0.94 0.006 80);
  transition: background 160ms ease;
}

.feat:hover {
  background: oklch(0.92 0.006 80);
}

.feat .num {
  display: block;
  margin-bottom: 28px;
  color: var(--ink-3);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
}

.feat h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.feat p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.5;
}

.cta-section {
  position: relative;
  padding: 112px 0;
  text-align: center;
}

.anchor-target {
  position: absolute;
  top: 0;
}

.cta-section .mono {
  margin-bottom: 24px;
}

.cta-section h2 {
  max-width: 16ch;
  margin: 0 auto 20px;
  font-size: 58px;
  line-height: 1.05;
}

.cta-section p {
  max-width: 48ch;
  margin: 0 auto 36px;
  color: var(--ink-2);
  font-size: 18px;
}

.cta-section .cta-row {
  justify-content: center;
}

footer {
  border-top: 1px solid var(--line);
  padding: 32px 0 48px;
}

footer .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 28px;
}

.footer-links {
  gap: 24px;
}

.footer-links a,
.copy {
  font-size: 13px;
}

.copy {
  color: var(--ink-3);
}

.legal-main {
  border-top: 1px solid var(--line);
  padding: 72px 0 104px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: var(--bg-2);
}

.legal-nav a {
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.legal-nav a:hover,
.legal-nav a.active {
  background: var(--bg);
  color: var(--ink);
}

.legal-content {
  max-width: 760px;
}

.legal-content header {
  margin-bottom: 48px;
}

.legal-content h1 {
  margin: 14px 0 18px;
  font-size: 54px;
  line-height: 1.04;
}

.legal-content h2 {
  margin: 40px 0 12px;
  font-size: 26px;
  line-height: 1.15;
}

.legal-content h3 {
  margin: 24px 0 8px;
  font-size: 18px;
}

.legal-content p,
.legal-content li {
  color: var(--ink-2);
  font-size: 16px;
}

.legal-content p {
  margin: 0 0 14px;
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 18px;
  padding-left: 22px;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-note {
  border: 1px solid var(--line-2);
  border-radius: 12px;
  margin: 24px 0;
  padding: 18px;
  background: oklch(0.94 0.006 80);
}

.legal-note p:last-child {
  margin-bottom: 0;
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  margin-top: 32px;
  padding: 20px;
  background: var(--bg-2);
}

.contact-panel p {
  margin: 0;
}

@media (max-width: 980px) {
  .hero h1 {
    font-size: 60px;
  }

  .mock-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .mock-col {
    border-right: 0;
    border-bottom: 1px solid var(--m-line);
  }

  .mock-col:last-child {
    border-bottom: 0;
  }

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

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .wrap,
  .top {
    width: min(100% - 48px, 1040px);
  }

  .top {
    padding: 20px 0;
  }

  .links {
    gap: 12px;
  }

  .links a:not(.btn) {
    display: none;
  }

  .hero {
    padding: 48px 0 56px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero .lead {
    font-size: 18px;
  }

  .eyebrow {
    align-items: flex-start;
    border-radius: 18px;
  }

  .mock {
    margin-top: 48px;
    border-radius: 12px;
  }

  .url {
    text-align: right;
  }

  .page-section {
    padding: 72px 0;
  }

  .section-head {
    margin-bottom: 40px;
  }

  .section-head h2 {
    font-size: 36px;
  }

  .problem-grid,
  .features {
    grid-template-columns: 1fr;
  }

  .feat {
    min-height: unset;
  }

  .cta-section {
    padding: 88px 0;
  }

  .cta-section h2 {
    font-size: 42px;
  }

  .legal-main {
    padding: 56px 0 80px;
  }

  .legal-content h1 {
    font-size: 40px;
  }

  .legal-content h2 {
    font-size: 24px;
  }
}

@media (max-width: 440px) {
  .wrap,
  .top {
    width: min(100% - 32px, 1040px);
  }

  .btn {
    width: 100%;
  }

  .top .btn {
    width: auto;
  }

  .cta-row {
    align-items: stretch;
    flex-direction: column;
  }

  .note {
    margin-left: 0;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero .lead {
    font-size: 17px;
  }

  .mock-bar {
    padding: 10px 12px;
  }

  .traffic {
    display: none;
  }

  .url {
    text-align: left;
  }

  .prob {
    padding: 24px;
  }

  .section-head h2 {
    font-size: 32px;
  }

  .footer-links {
    width: 100%;
    flex-wrap: wrap;
  }

  .legal-nav {
    grid-template-columns: 1fr;
  }

  .contact-panel .btn {
    width: 100%;
  }
}
