:root {
  --bg: #ffffff;
  --bg-soft: #f7f8fb;
  --ink: #111318;
  --muted: #68707d;
  --quiet: #8a929e;
  --line: rgba(17, 19, 24, 0.1);
  --line-strong: rgba(17, 19, 24, 0.16);
  --blue: #0a72f0;
  --blue-dark: #0755b8;
  --green: #18a06c;
  --shadow-soft: 0 24px 70px rgba(45, 61, 84, 0.12);
  --shadow-panel: 0 34px 90px rgba(40, 58, 82, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -10%, rgba(10, 114, 240, 0.14), transparent 34rem),
    radial-gradient(circle at 86% 8%, rgba(24, 160, 108, 0.1), transparent 25rem),
    linear-gradient(180deg, #fff 0%, #fbfcff 42%, #fff 100%);
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image: radial-gradient(rgba(17, 19, 24, 0.09) 0.55px, transparent 0.55px);
  background-size: 6px 6px;
  opacity: 0.07;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 50;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow-soft);
  transition: transform 500ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
  top: 24px;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1120px, calc(100% - 32px));
  min-height: 64px;
  margin: 18px auto 0;
  padding: 10px 10px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 50px rgba(45, 61, 84, 0.08);
  backdrop-filter: blur(22px) saturate(1.45);
}

.brand,
.footer > div {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 400;
  color: inherit;
  opacity: 0.9;
}

.site-header .brand {
  transform: scale(1.3);
  transform-origin: left center;
  transition: transform 0.28s ease;
}

.site-header.is-scrolled .brand {
  transform: scale(1);
}

.brand span,
.footer > div span {
  text-transform: lowercase;
  letter-spacing: 0.06em;
  font-weight: 300;
}

.brand-mark,
.footer-mark {
  width: 18px;
  height: 18px;
  color: currentColor;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav a,
.nav-cta,
.text-link {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 520;
  transition: color 420ms var(--ease), background 420ms var(--ease), transform 420ms var(--ease);
}

.nav a {
  padding: 9px 13px;
  border-radius: 999px;
}

.nav a:hover {
  color: var(--ink);
  background: rgba(17, 19, 24, 0.045);
}

.nav-cta {
  padding: 11px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.nav-cta:hover {
  transform: translateY(-1px);
  color: #fff;
  background: #262a33;
}

.nav-cta:active,
.button:active {
  transform: scale(0.985);
}

.hero,
.proof,
.section,
.footer {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(480px, 1.16fr);
  gap: 72px;
  align-items: center;
  min-height: calc(100dvh - 84px);
  padding: 92px 0 86px;
}

.hero-copy {
  min-width: 0;
  max-width: 580px;
}

.kicker {
  margin: 0 0 18px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 620;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  font-weight: 700;
  line-height: 0.97;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 660px;
  font-size: clamp(4rem, 8vw, 6.45rem);
}

h2 {
  max-width: 760px;
  font-size: clamp(2.7rem, 5.4vw, 5rem);
}

h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 620;
  letter-spacing: -0.015em;
}

.lede {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.24rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 6px 8px 6px 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 620;
  transition: transform 520ms var(--ease), box-shadow 520ms var(--ease), background 520ms var(--ease);
}

.button span:last-child {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  transition: transform 520ms var(--ease), background 520ms var(--ease);
}

.button:hover span:last-child {
  transform: translateX(2px);
  background: rgba(255, 255, 255, 0.24);
}

.button-primary {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 16px 40px rgba(17, 19, 24, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.button-primary:hover {
  transform: translateY(-2px);
  background: #252934;
  box-shadow: 0 22px 52px rgba(17, 19, 24, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button-secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line-strong);
  box-shadow: 0 12px 30px rgba(45, 61, 84, 0.08);
}

.button-secondary span:last-child {
  background: var(--bg-soft);
}

.button-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(17, 19, 24, 0.24);
  box-shadow: 0 18px 40px rgba(45, 61, 84, 0.12);
}

.button-secondary:hover span:last-child {
  background: #eef1f6;
}

.text-link {
  color: var(--blue-dark);
}

.text-link:hover {
  color: var(--blue);
}

.trial-line {
  margin: 22px 0 0;
  color: var(--quiet);
  font-size: 0.94rem;
}

.hero-shot {
  min-width: 0;
  margin: 0;
}

.screen-shell {
  max-width: 100%;
  padding: 10px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow-panel);
}

.mac-window {
  overflow: hidden;
  max-width: 100%;
  min-height: 500px;
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 25px;
  background: #f8f9fb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.window-top {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 52px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(17, 19, 24, 0.07);
  background: rgba(255, 255, 255, 0.86);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.traffic-lights {
  display: flex;
  gap: 8px;
}

.traffic-lights span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ff5f57;
}

.traffic-lights span:nth-child(2) {
  background: #ffbd2e;
}

.traffic-lights span:nth-child(3) {
  background: #28c840;
}

.window-top > span {
  justify-self: center;
  color: #505967;
  font-size: 0.84rem;
  font-weight: 600;
}

.window-actions {
  display: flex;
  gap: 8px;
  color: #697282;
  font-size: 0.78rem;
  font-weight: 600;
}

.window-actions span {
  padding: 6px 9px;
  border-radius: 999px;
  background: #f0f2f6;
}

.window-body {
  display: grid;
  grid-template-columns: 148px 1fr;
  min-height: 448px;
}

.app-content {
  filter: blur(5px);
  user-select: none;
}

.app-sidebar {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 18px 12px;
  border-right: 1px solid rgba(17, 19, 24, 0.07);
  background: #f1f3f7;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.app-icon {
  width: 42px;
  height: 42px;
  margin: 0 0 18px 5px;
  border-radius: 10px;
}

.app-sidebar span {
  padding: 8px 10px;
  border-radius: 10px;
  color: #6d7581;
  font-size: 0.82rem;
  font-weight: 600;
}

.app-sidebar .active {
  color: #1b2430;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 18px rgba(45, 61, 84, 0.08);
}

.app-content {
  padding: 22px;
}

.running-entry {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 82px;
  padding: 18px;
  border: 1px solid rgba(17, 19, 24, 0.07);
  border-radius: 18px;
  background: #fff;
}

.running-entry small {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 5px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.running-entry small::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.running-entry strong {
  display: block;
  color: #1d2530;
  font-size: 1.05rem;
}

.running-entry time {
  color: #1d2530;
  font-size: 1.55rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.entry-table {
  overflow: hidden;
  margin-top: 16px;
  border: 1px solid rgba(17, 19, 24, 0.07);
  border-radius: 18px;
  background: #fff;
}

.entry-row {
  display: grid;
  grid-template-columns: 1.15fr 1.45fr 0.8fr 0.75fr;
  gap: 14px;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(17, 19, 24, 0.06);
  color: #36404e;
  font-size: 0.86rem;
}

.entry-row:last-child {
  border-bottom: 0;
}

.entry-row span:nth-child(3) {
  font-variant-numeric: tabular-nums;
}

.table-head {
  min-height: 42px;
  color: #8a929e;
  background: #fbfcfd;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

figcaption {
  margin: 14px 0 0;
  color: var(--quiet);
  font-size: 0.78rem;
  text-align: center;
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

.proof div {
  min-height: 132px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.8);
}

.proof strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.proof span {
  display: block;
  max-width: 26ch;
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: 124px 0;
}

.section-heading {
  min-width: 0;
  max-width: 760px;
}

.section-heading > p:not(.kicker),
.pricing-copy > p {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 14px;
  margin-top: 42px;
}

.shot-card {
  min-width: 0;
  display: grid;
  gap: 22px;
  align-content: space-between;
  min-height: 360px;
  padding: 18px;
  border-radius: 28px;
  background: var(--bg-soft);
}

.shot-card.large {
  grid-row: span 2;
  min-height: 734px;
}

.shot-card h3,
.shot-card p {
  max-width: 430px;
}

.shot-card p,
.feature-list p,
.price-card p,
.roadmap p,
.footer p {
  margin: 0;
  color: var(--muted);
}

.mini-shot {
  overflow: hidden;
  min-height: 230px;
  border: 1px solid rgba(17, 19, 24, 0.07);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(45, 61, 84, 0.08);
  filter: blur(5px);
  user-select: none;
}

.large .mini-shot {
  min-height: 580px;
}

.mini-header {
  display: flex;
  justify-content: space-between;
  padding: 18px;
  border-bottom: 1px solid rgba(17, 19, 24, 0.07);
  color: #5d6674;
  font-size: 0.84rem;
  font-weight: 620;
}

.mini-lines {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.mini-lines span {
  height: 58px;
  border-radius: 14px;
  background: linear-gradient(90deg, #eef2f7, #f8fafc);
}

.mini-lines span:nth-child(2) {
  width: 88%;
}

.mini-lines span:nth-child(3) {
  width: 94%;
}

.mini-lines span:nth-child(4) {
  width: 78%;
}

.reports-shot,
.clients-shot {
  padding: 22px;
}

.metric span {
  color: var(--quiet);
  font-size: 0.78rem;
  font-weight: 620;
  text-transform: uppercase;
}

.metric strong {
  display: block;
  margin-top: 7px;
  font-size: 3.5rem;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.mini-bars {
  display: flex;
  align-items: end;
  gap: 9px;
  height: 90px;
  margin-top: 28px;
}

.mini-bars span {
  flex: 1;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, rgba(10, 114, 240, 0.72), rgba(24, 160, 108, 0.72));
}

.mini-bars span:nth-child(1) {
  height: 46%;
}

.mini-bars span:nth-child(2) {
  height: 76%;
}

.mini-bars span:nth-child(3) {
  height: 58%;
}

.mini-bars span:nth-child(4) {
  height: 92%;
}

.clients-shot {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 18px;
}

.client-list,
.project-list {
  display: grid;
  gap: 12px;
}

.client-list span,
.project-list span {
  display: block;
  height: 42px;
  border-radius: 12px;
  background: #eef2f7;
}

.project-list span {
  background: #f7f9fc;
  border: 1px solid rgba(17, 19, 24, 0.07);
}

.split-section,
.pricing-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: 82px;
  align-items: start;
}

.sticky {
  position: sticky;
  top: 112px;
}

.feature-list {
  display: grid;
  gap: 8px;
}

.feature-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.feature-list article:first-child {
  border-top: 1px solid var(--line);
}

.feature-list-cta {
  margin-top: 28px;
}

.feature-list span,
.roadmap article > span {
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-section {
  align-items: center;
  padding-top: 76px;
}

.price-card {
  min-width: 0;
  padding: 28px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(10, 114, 240, 0.09), rgba(24, 160, 108, 0.07)),
    rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-panel);
}

.price-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #3a4350;
  font-size: 0.9rem;
  font-weight: 620;
}

.price-header span:last-child {
  color: var(--blue-dark);
}

.price {
  margin-top: 18px;
  color: var(--ink);
  font-size: clamp(4.4rem, 9vw, 7rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.price-card > p {
  margin-top: 12px;
}

.price-card ul {
  display: grid;
  gap: 12px;
  padding: 26px 0;
  margin: 24px 0 0;
  border-top: 1px solid rgba(17, 19, 24, 0.1);
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 26px;
  color: #323b48;
}

.price-card li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 700;
}

.button-full {
  width: 100%;
}

.roadmap-section {
  padding-top: 76px;
}

.section-heading.narrow {
  max-width: 720px;
}

.roadmap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 38px;
}

.roadmap article {
  min-height: 220px;
  padding: 24px;
  border-radius: 24px;
  background: var(--bg-soft);
}

.roadmap h3 {
  margin-top: 52px;
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "mark   copy  nav"
    "legal  legal legal";
  align-items: center;
  gap: 10px 28px;
  padding: 38px 0 46px;
  border-top: 1px solid var(--line);
}

.footer > div {
  grid-area: mark;
}

.footer > p:not(.footer-legal) {
  grid-area: copy;
  justify-self: center;
  text-align: center;
}

.footer nav {
  grid-area: nav;
  display: flex;
  gap: 18px;
}

.footer a {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-legal {
  grid-area: legal;
  justify-self: center;
  margin: 0;
  color: var(--quiet);
  font-size: 0.78rem;
  text-align: center;
}

@media (max-width: 980px) {
  .footer {
    grid-template-areas:
      "mark nav"
      "copy copy"
      "legal legal";
  }

  .footer-legal {
    justify-self: start;
    text-align: left;
  }
}

:focus-visible {
  outline: 3px solid rgba(10, 114, 240, 0.28);
  outline-offset: 4px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 780ms var(--ease), transform 780ms var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .split-section,
  .pricing-section,
  .screenshot-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero {
    min-height: auto;
    padding-top: 74px;
  }

  .sticky {
    position: static;
  }

  .shot-card.large {
    grid-row: auto;
    min-height: 560px;
  }

  .large .mini-shot {
    min-height: 390px;
  }

  .proof,
  .roadmap {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer p {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 680px) {
  .site-header,
  .hero,
  .proof,
  .section,
  .footer {
    width: auto;
    max-width: none;
    margin-left: 12px;
    margin-right: 12px;
  }

  .site-header {
    top: 10px;
    min-height: 58px;
    margin-right: 20px;
    border-radius: 20px;
    gap: 10px;
    padding: 8px;
  }

  .brand {
    gap: 8px;
  }

  .brand span {
    font-size: 0.96rem;
  }

  .nav-cta {
    padding: 9px 12px;
    font-size: 0.86rem;
    white-space: nowrap;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.72rem, 11vw, 3.75rem);
    line-height: 1;
  }

  .hero-copy,
  .lede,
  .trial-line {
    max-width: 100%;
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 3.55rem);
  }

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

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-copy {
    max-width: 21rem;
  }

  .lede,
  .trial-line {
    max-width: 20.5rem;
  }

  .screen-shell {
    padding: 6px;
    border-radius: 25px;
  }

  .mac-window {
    min-height: auto;
    border-radius: 20px;
  }

  .window-top {
    grid-template-columns: 72px 1fr;
  }

  .window-actions {
    display: none;
  }

  .window-body {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    display: grid;
    grid-template-columns: repeat(4, max-content);
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 19, 24, 0.07);
  }

  .app-icon {
    display: none;
  }

  .app-content {
    padding: 14px;
  }

  .running-entry,
  .entry-row {
    grid-template-columns: 1fr;
  }

  .running-entry time {
    font-size: 1.25rem;
  }

  .table-head {
    display: none;
  }

  figcaption {
    text-align: left;
  }

  .proof,
  .roadmap,
  .clients-shot {
    grid-template-columns: 1fr;
  }

  .proof div {
    min-height: 112px;
  }

  .section {
    padding: 86px 0;
  }

  .shot-card,
  .shot-card.large {
    min-height: auto;
  }

  .large .mini-shot,
  .mini-shot {
    min-height: 260px;
  }

  .feature-list article {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 16px 40px rgba(17, 19, 24, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 320ms var(--ease), transform 320ms var(--ease), background 320ms var(--ease);
}

.back-to-top svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #252934;
}

@media (max-width: 680px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
