:root {
  --bg: #0B0B0B;
  --bg-alt: #171716;
  --fg: #F2F2F0;
  --fg-soft: #B5B5B0;
  --muted: #8A8A8A;
  --muted-alt: #9A9A9A;
  --rule: #2A2A2A;
  --rule-alt: #3A3A3A;
  --panel: #141414;
  --panel-head: #1C1C1C;
  --accent: #F0A020;
  --accent-hover: #FFC14D;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Inter Tight", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); text-decoration: underline; }
a.plain { color: var(--fg); }
p, ul { margin: 0; }
ul { padding: 0; list-style: none; }
h1, h2, h3 { margin: 0; font-weight: 600; letter-spacing: -0.03em; line-height: 1.02; text-wrap: balance; }
h2 { font-size: 44px; margin-top: 24px; max-width: 720px; }
h3 { font-size: 22px; margin-top: 40px; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.muted { color: var(--muted); }
.alt { background: var(--bg-alt); }
.alt .muted { color: var(--muted-alt); }
.sec { padding: 112px 0; }
.hair { border-top: 1px solid var(--rule); }
.alt .hair { border-top-color: var(--rule-alt); }

.btn {
  display: inline-flex; align-items: center; height: 48px; padding: 0 28px;
  background: var(--accent); color: var(--bg); font-weight: 600; font-size: 15px; letter-spacing: -0.01em;
}
.btn:hover { background: var(--accent-hover); color: var(--bg); text-decoration: none; }

/* Nav */
.nav { border-bottom: 1px solid var(--rule); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.wordmark { font-size: 18px; font-weight: 600; letter-spacing: -0.03em; }
.navlinks { display: flex; align-items: center; gap: 32px; font-size: 14px; }
.navlinks .cta { font-weight: 600; }

/* Hero */
.hero { padding: 120px 0 96px; }
.hero h1 { font-size: 88px; max-width: 1040px; letter-spacing: -0.045em; }
.hero .sub { font-size: 20px; line-height: 1.45; max-width: 640px; margin-top: 32px; color: var(--fg-soft); }
.actions { display: flex; align-items: center; gap: 28px; margin-top: 40px; }
.actions a:not(.btn) { font-weight: 600; }

/* App window */
.shot { margin: 96px 0 0 8.33%; width: 91.67%; border: 1px solid var(--rule-alt); background: var(--panel); overflow: hidden; }
.shot-bar {
  display: flex; align-items: center; justify-content: space-between; height: 36px; padding: 0 14px;
  border-bottom: 1px solid var(--rule); background: var(--panel-head); font-size: 12px;
}
.shot-bar strong { font-weight: 600; }
.shot-body { display: flex; align-items: stretch; }
.tree { width: 232px; flex-shrink: 0; padding: 12px 16px; border-right: 1px solid var(--rule); font-size: 12px; line-height: 1.4; }
.tree div { padding: 5px 0; }
.tree .eyebrow { padding-bottom: 8px; }
.tree .l1 { padding-left: 14px; }
.tree .l2 { padding-left: 28px; }
.tree .on { color: var(--accent); }
.tree .open { font-weight: 600; }
.grid-pane { flex-grow: 1; min-width: 0; overflow-x: auto; }
.tbl { width: 100%; border-collapse: collapse; font-size: 12px; }
.tbl th { text-align: left; font-weight: 600; color: var(--muted); padding: 8px 12px; border-bottom: 1px solid var(--rule); background: var(--panel-head); white-space: nowrap; }
.tbl td { padding: 7px 12px; border-bottom: 1px solid #232323; white-space: nowrap; }
.tbl tr.sel td { background: #3A2A12; }
.status { display: flex; gap: 24px; padding: 8px 12px; font-size: 11px; border-top: 1px solid var(--rule); }

/* Problem */
.problem { display: flex; flex-direction: column; gap: 18px; margin-top: 40px; max-width: 880px; font-size: 40px; font-weight: 600; letter-spacing: -0.03em; line-height: 1.12; }

/* Features */
.features { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 56px; }
.feature { border-left: 1px solid var(--rule); padding: 40px 32px 56px; }
.feature:first-child { border-left: 0; padding-left: 0; }
.feature p { margin-top: 14px; }

/* Radios */
.radios { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); margin-top: 56px; border-bottom: 1px solid var(--rule); }
.radio { display: flex; flex-direction: column; align-items: center; gap: 20px; padding: 40px 12px 32px; border-left: 1px solid var(--rule); }
.radio:first-child { border-left: 0; }
.radio svg { height: 200px; width: auto; }
.radio span { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; }
.footnote { font-size: 13px; margin-top: 20px; }

/* Roadmap */
.roadmap { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 64px; margin-top: 48px; }
.roadmap h2 { margin-top: 0; }
.roadmap .next { border-left: 1px solid var(--rule-alt); padding-left: 64px; }
.roadmap ul { margin-top: 32px; }
.roadmap li { padding: 14px 0; border-top: 1px solid var(--rule-alt); font-size: 18px; }
.roadmap li:first-child { border-top: 0; padding-top: 0; }

/* Community */
.lede { font-size: 28px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.25; max-width: 760px; margin-top: 24px; }
.links { display: flex; gap: 40px; margin-top: 32px; font-size: 15px; font-weight: 600; }

/* Pricing */
.price { max-width: 520px; margin-top: 32px; border: 1px solid var(--rule-alt); padding: 48px; }
.price .amount { display: flex; align-items: baseline; gap: 12px; }
.price .amount b { font-size: 64px; font-weight: 600; letter-spacing: -0.04em; line-height: 1; }
.price ul { margin-top: 32px; font-size: 16px; display: flex; flex-direction: column; gap: 10px; }
.price .btn { margin-top: 40px; }
.trial { margin-top: 20px; font-size: 14px; }

/* Footer */
.footer { border-top: 1px solid var(--rule); padding: 56px 0 48px; }
.footer-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 64px; }
.footer p { margin-top: 8px; max-width: 360px; }
.footer .links { margin-top: 0; font-size: 14px; font-weight: 400; gap: 32px; justify-content: flex-end; }
.legal { margin-top: 48px; font-size: 12px; max-width: 760px; }

@media (max-width: 720px) {
  .wrap { padding: 0 24px; }
  .navlinks a:not(.cta) { display: none; }
  .hero { padding: 72px 0 56px; }
  .hero h1 { font-size: 46px; }
  h2 { font-size: 30px; }
  .sec { padding: 80px 0; }
  .problem { font-size: 26px; }
  .shot { margin-left: 0; width: 100%; }
  .tree, .shot-bar .sd { display: none; }
  .features, .roadmap, .footer-grid { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .roadmap { gap: 48px; }
  .footer-grid { gap: 32px; }
  .feature { border-left: 0; padding: 32px 0; border-top: 1px solid var(--rule); }
  .feature:first-child { border-top: 0; padding-top: 0; }
  .radios { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .radio { border-left: 0; }
  .radio svg { height: 150px; }
  .roadmap .next { border-left: 0; padding-left: 0; }
  .links { flex-direction: column; gap: 12px; }
  .price { padding: 32px 24px; }
}
