:root {
  --nav-ink: #071832;
  --nav-text: #667287;
  --nav-muted: #98a2b3;
  --nav-border: #e7eaf0;
  --nav-surface: #ffffff;
  --nav-background: #fffefd;
  --nav-soft: #f5f6f9;
  --nav-lavender: #f0edff;
  --nav-orange: #fff1e4;
  --nav-green: #eaf8ef;
  --nav-blue: #eaf1ff;
  --nav-radius-sm: 10px;
  --nav-radius-md: 14px;
  --nav-radius-lg: 20px;
  --nav-shadow: 0 18px 45px rgba(16, 24, 40, 0.08);
  --nav-shadow-soft: 0 14px 36px rgba(16, 24, 40, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--nav-background);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(246, 247, 250, 0.58), transparent 34rem),
    var(--nav-background);
  color: var(--nav-ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(92, 110, 255, 0.36);
  outline-offset: 3px;
}

.nav-shell {
  width: min(100% - 192px, 1248px);
  margin-inline: auto;
}

.nav-header {
  padding-top: 22px;
}

.nav-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 46px;
}

.nav-logo {
  font-size: 29px;
  font-weight: 800;
  line-height: 1;
  color: #071733;
}

.nav-menu {
  display: flex;
  gap: 47px;
  align-items: center;
  color: #071733;
  font-size: 15px;
  font-weight: 500;
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
}

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 650;
  white-space: nowrap;
}

.nav-button--small {
  min-width: 130px;
  height: 46px;
  background: var(--nav-ink);
  color: #fff;
  box-shadow: 0 10px 18px rgba(7, 24, 50, 0.16);
}

.nav-hero {
  padding-top: 62px;
}

.nav-hero__grid {
  display: grid;
  grid-template-columns: minmax(520px, 0.43fr) minmax(540px, 0.57fr);
  gap: 34px;
  align-items: start;
}

.nav-hero__copy {
  padding-top: 3px;
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 36px;
  padding: 0 17px 0 13px;
  border-radius: 999px;
  background: #f0f1f4;
  color: var(--nav-ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.nav-pill svg {
  width: 16px;
  height: 16px;
  fill: var(--nav-ink);
}

.nav-hero h1 {
  width: 620px;
  margin: 31px 0 22px;
  color: var(--nav-ink);
  font-size: clamp(50px, 5.05vw, 76px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.nav-hero__lede {
  margin: 0;
  color: var(--nav-text);
  font-size: 24px;
  line-height: 1.38;
  font-weight: 450;
}

.nav-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 25px;
}

.nav-button--primary,
.nav-button--secondary {
  height: 56px;
  padding-inline: 31px;
  font-size: 17px;
}

.nav-button--primary {
  min-width: 194px;
  background: var(--nav-ink);
  color: #fff;
  box-shadow: 0 14px 25px rgba(7, 24, 50, 0.14);
}

.nav-button--secondary {
  min-width: 240px;
  background: rgba(255, 255, 255, 0.76);
  border-color: var(--nav-border);
  color: var(--nav-ink);
  box-shadow: 0 10px 26px rgba(16, 24, 40, 0.04);
}

.nav-button--secondary svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.nav-button--secondary::after {
  content: "";
  width: 15px;
  height: 15px;
  margin-left: 7px;
  border-radius: 999px;
  background: #edf0f4;
}

.nav-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 29px;
  padding: 0;
  margin: 35px 0 0;
  list-style: none;
  color: #546176;
  font-size: 15px;
}

.nav-proof li {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.nav-proof span {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #ecebff;
  color: #3541be;
  font-size: 13px;
  font-weight: 800;
}

.nav-hero__visual {
  position: relative;
  min-height: 457px;
}

.nav-blob,
.nav-dots {
  position: absolute;
  pointer-events: none;
}

.nav-blob--lavender {
  width: 300px;
  height: 330px;
  right: -63px;
  top: -30px;
  border-radius: 55% 45% 42% 58% / 49% 46% 54% 51%;
  background: #dcd7f2;
  opacity: 0.82;
}

.nav-blob--orange {
  width: 220px;
  height: 250px;
  left: -73px;
  bottom: 34px;
  border-radius: 54% 46% 49% 51% / 46% 52% 48% 54%;
  background: #fde6cb;
  opacity: 0.82;
}

.nav-dots {
  width: 150px;
  height: 110px;
  right: -29px;
  top: -18px;
  opacity: 0.42;
  background-image: radial-gradient(#7e8799 1.7px, transparent 1.7px);
  background-size: 16px 16px;
}

.nav-mini-app {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 8px;
  display: grid;
  grid-template-columns: 170px 1fr;
  width: 656px;
  min-height: 414px;
  overflow: hidden;
  border: 1px solid #dee2e9;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--nav-shadow);
}

.nav-mini-sidebar {
  padding: 24px 12px 22px 18px;
  border-right: 1px solid var(--nav-border);
}

.nav-mini-sidebar h2 {
  margin: 0 0 19px 6px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.nav-mini-nav,
.nav-collections {
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-mini-nav li,
.nav-collections li {
  display: flex;
  align-items: center;
  gap: 11px;
  height: 34px;
  padding-inline: 10px;
  border-radius: 7px;
  font-size: 13px;
  color: #18253b;
}

.nav-mini-nav li.is-active {
  background: #efedf8;
}

.nav-mini-nav svg {
  width: 16px;
  height: 16px;
  color: #071832;
}

.nav-mini-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 21px 11px 7px;
  color: #737d91;
  font-size: 12px;
}

.nav-mini-heading b {
  color: #667085;
  font-size: 17px;
  font-weight: 500;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #9aa2ad;
}

.dot--stone { background: #b5bbb2; }
.dot--rose { background: #c8869c; }
.dot--violet { background: #8c8ab8; }
.dot--orange { background: #c99059; }
.dot--blue { background: #7793c8; }

.nav-mini-main {
  padding: 56px 24px 22px 23px;
}

.nav-mini-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 21px;
}

.nav-search {
  position: relative;
  display: block;
  flex: 1;
}

.nav-search svg {
  position: absolute;
  left: 13px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  color: #667287;
}

.nav-search input,
.nav-capture input,
.nav-fake-select {
  width: 100%;
  height: 41px;
  border: 1px solid var(--nav-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--nav-ink);
  box-shadow: inset 0 1px 1px rgba(16, 24, 40, 0.02);
}

.nav-search input {
  padding: 0 14px 0 39px;
  font-size: 12px;
}

.nav-search input::placeholder,
.nav-capture input::placeholder {
  color: #7c8798;
  opacity: 1;
}

.nav-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 41px;
  min-width: 96px;
  border: 0;
  border-radius: 8px;
  background: var(--nav-ink);
  color: #fff;
  font-size: 13px;
  font-weight: 650;
  box-shadow: 0 9px 17px rgba(7, 24, 50, 0.16);
}

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

.nav-row {
  display: grid;
  grid-template-columns: 36px minmax(160px, 1fr) auto auto auto;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  padding: 10px 15px;
  border: 1px solid var(--nav-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.nav-row strong {
  display: block;
  margin-bottom: 2px;
  color: #101828;
  font-size: 12.5px;
  font-weight: 800;
}

.nav-row small {
  display: block;
  color: #758196;
  font-size: 12px;
}

.nav-row button,
.nav-card-bottom button {
  border: 0;
  background: transparent;
  color: #667287;
  font-size: 22px;
  line-height: 1;
}

.app-icon,
.site-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  border-radius: 8px;
  font-weight: 800;
}

.app-icon--stripe {
  background: linear-gradient(135deg, #8767ff, #5375ff);
  color: #fff;
  font-size: 23px;
}

.app-icon--dark {
  background: #141414;
  color: #fff;
  font-size: 18px;
}

.app-icon--cloud {
  color: #ff7d17;
  font-size: 20px;
}

.app-icon--linear {
  border-radius: 50%;
  background:
    repeating-linear-gradient(45deg, transparent 0 4px, rgba(255, 255, 255, 0.72) 4px 6px),
    #122047;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 2px 9px;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}

.tag--lavender { background: var(--nav-lavender); color: #6846b9; }
.tag--orange { background: var(--nav-orange); color: #b66518; }
.tag--blue { background: var(--nav-blue); color: #2767c8; }
.tag--green { background: var(--nav-green); color: #228147; }

.nav-product {
  display: grid;
  grid-template-columns: minmax(0, 3.14fr) minmax(260px, 1fr);
  min-height: 328px;
  margin-top: 19px;
  overflow: hidden;
  border: 1px solid #e3e6ec;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 26px rgba(16, 24, 40, 0.035);
}

.nav-product__main {
  padding: 29px 31px 24px;
}

.nav-product__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 19px;
}

.nav-title-row {
  display: flex;
  align-items: baseline;
  gap: 21px;
}

.nav-title-row h2,
.nav-capture h2 {
  margin: 0;
  color: var(--nav-ink);
  font-size: 27px;
  font-weight: 800;
  line-height: 1;
}

.nav-title-row span {
  color: #667287;
  font-size: 13px;
  font-weight: 500;
}

.nav-add--compact {
  width: 99px;
  height: 37px;
}

.nav-product__tools {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 112px 136px 40px;
  gap: 12px;
  margin-bottom: 14px;
}

.nav-search--wide input {
  height: 36px;
}

.nav-select,
.nav-grid-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 36px;
  border: 1px solid var(--nav-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: #26354a;
  font-size: 14px;
  font-weight: 500;
}

.nav-select svg,
.nav-grid-button svg {
  width: 17px;
  height: 17px;
}

.nav-select span {
  margin-left: auto;
  color: #7a8495;
}

.nav-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
}

.nav-link-card {
  display: flex;
  min-height: 168px;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px 14px 12px;
  border: 1px solid var(--nav-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.nav-card-top {
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
}

.nav-card-top h3 {
  margin: 1px 0 2px;
  color: #111827;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
}

.nav-card-top p,
.nav-card-copy {
  margin: 0;
  color: #667287;
  font-size: 13px;
  line-height: 1.38;
}

.nav-card-copy {
  padding-right: 4px;
}

.star {
  color: #ffbd38;
  font-size: 16px;
  line-height: 1;
}

.nav-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 25px;
}

.site-icon--github {
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 65%, #fff 0 16%, transparent 17%),
    radial-gradient(circle at 36% 35%, #fff 0 8%, transparent 9%),
    radial-gradient(circle at 64% 35%, #fff 0 8%, transparent 9%),
    #030303;
}

.site-icon--ds {
  background: linear-gradient(135deg, #7a62ff, #5982ff);
  color: #fff;
  font-size: 22px;
}

.site-icon--notion {
  border: 2px solid #111;
  border-radius: 4px;
  color: #111;
  font-family: Georgia, serif;
  font-size: 20px;
  background: #fff;
}

.site-icon--maps {
  background:
    radial-gradient(circle at 52% 50%, #fff 0 10%, transparent 11%),
    conic-gradient(from 215deg, #34a853 0 30%, #fbbc05 0 52%, #4285f4 0 74%, #ea4335 0 100%);
  clip-path: polygon(50% 100%, 23% 56%, 18% 34%, 30% 13%, 50% 5%, 70% 13%, 82% 34%, 77% 56%);
}

.nav-capture {
  padding: 40px 19px 24px;
  border-left: 1px solid var(--nav-border);
}

.nav-capture h2 {
  font-size: 19px;
}

.nav-capture p {
  margin: 12px 0 15px;
  color: #667287;
  font-size: 13px;
  line-height: 1.35;
}

.nav-capture form {
  display: grid;
  gap: 11px;
}

.nav-capture input,
.nav-fake-select {
  height: 43px;
  padding: 0 13px;
  font-size: 13px;
}

.nav-fake-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #667287;
}

.nav-fake-select b {
  font-size: 16px;
  font-weight: 500;
}

.nav-capture button {
  height: 39px;
  border: 0;
  border-radius: 8px;
  background: var(--nav-ink);
  color: #fff;
  font-size: 14px;
  font-weight: 650;
  box-shadow: 0 9px 17px rgba(7, 24, 50, 0.14);
}

.nav-audience {
  padding: 20px 0 66px;
  text-align: center;
}

.nav-audience p {
  margin: 0 0 18px;
  color: #667287;
  font-size: 14px;
}

.nav-audience ul {
  display: flex;
  justify-content: center;
  gap: clamp(34px, 6.7vw, 79px);
  padding: 0;
  margin: 0;
  list-style: none;
  color: #536176;
  font-size: 14px;
}

.nav-audience li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.nav-audience svg {
  width: 20px;
  height: 20px;
  color: #667287;
}

@media (max-width: 1190px) {
  .nav-shell {
    width: min(100% - 64px, 1040px);
  }

  .nav-hero__grid {
    grid-template-columns: minmax(360px, 0.43fr) minmax(480px, 0.57fr);
    gap: 28px;
  }

  .nav-mini-app {
    width: 570px;
    grid-template-columns: 150px 1fr;
  }

  .nav-row {
    grid-template-columns: 32px minmax(120px, 1fr) auto auto;
  }

  .nav-row .tag:nth-of-type(2) {
    display: none;
  }

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

@media (max-width: 980px) {
  .nav-menu {
    gap: 24px;
  }

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

  .nav-hero h1 {
    width: 100%;
  }

  .nav-hero__visual {
    min-height: 450px;
  }

  .nav-mini-app {
    left: 50%;
    transform: translateX(-50%);
    width: min(100%, 656px);
  }

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

  .nav-capture {
    border-left: 0;
    border-top: 1px solid var(--nav-border);
    padding-top: 25px;
  }
}

@media (max-width: 767px) {
  .nav-shell {
    width: calc(100% - 42px);
    max-width: 640px;
    margin-left: 21px;
    margin-right: auto;
  }

  .nav-header {
    padding-top: 18px;
  }

  .nav-header__inner {
    display: flex;
    justify-content: space-between;
    gap: 18px;
  }

  .nav-menu,
  .nav-login {
    display: none;
  }

  .nav-actions {
    grid-column: 2;
    gap: 0;
  }

  .nav-logo {
    font-size: 26px;
  }

  .nav-button--small {
    min-width: 116px;
    height: 42px;
  }

  .nav-hero {
    padding-top: 52px;
  }

  .nav-hero h1 {
    margin-top: 25px;
    font-size: clamp(45px, 15vw, 66px);
  }

  .nav-hero__copy,
  .nav-hero__lede,
  .nav-hero__buttons {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .nav-hero__lede {
    font-size: 20px;
  }

  .nav-button--primary,
  .nav-button--secondary {
    width: 100%;
    min-width: 0;
  }

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

  .nav-proof {
    gap: 14px 22px;
  }

  .nav-hero__visual {
    min-height: 386px;
    margin-inline: -8px;
  }

  .nav-mini-app {
    top: 18px;
    grid-template-columns: 120px 1fr;
    min-height: 350px;
  }

  .nav-mini-sidebar {
    padding: 18px 8px 18px 10px;
  }

  .nav-mini-sidebar h2 {
    font-size: 17px;
  }

  .nav-mini-nav li,
  .nav-collections li {
    height: 30px;
    gap: 7px;
    padding-inline: 7px;
    font-size: 11px;
  }

  .nav-mini-main {
    padding: 46px 14px 16px;
  }

  .nav-mini-toolbar {
    gap: 10px;
  }

  .nav-add {
    min-width: 42px;
  }

  .nav-add span {
    display: none;
  }

  .nav-row {
    grid-template-columns: 31px minmax(0, 1fr) auto;
  }

  .nav-row .tag {
    display: none;
  }

  .nav-blob--lavender {
    right: -110px;
  }

  .nav-blob--orange {
    left: -95px;
  }

  .nav-product {
    margin-top: 10px;
  }

  .nav-product__main {
    padding: 24px 18px 20px;
  }

  .nav-product__header {
    align-items: flex-start;
    gap: 18px;
  }

  .nav-title-row {
    display: block;
  }

  .nav-title-row span {
    display: block;
    margin-top: 7px;
  }

  .nav-product__tools {
    grid-template-columns: 1fr 42px;
  }

  .nav-search--wide {
    grid-column: 1 / -1;
  }

  .nav-select {
    min-width: 0;
  }

  .nav-select:nth-of-type(2) {
    display: none;
  }

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

  .nav-audience ul {
    flex-wrap: wrap;
    gap: 18px 34px;
  }
}

@media (max-width: 430px) {
  .nav-shell {
    width: calc(100% - 40px);
    max-width: 390px;
  }

  .nav-pill {
    max-width: 100%;
    font-size: 11px;
  }

  .nav-hero__lede br {
    display: none;
  }

  .nav-hero__visual {
    min-height: 360px;
  }

  .nav-mini-app {
    width: 530px;
    left: 0;
    transform: scale(0.68);
    transform-origin: top left;
  }

  .nav-product {
    border-radius: 8px;
  }
}

@media (max-width: 520px) {
  .nav-shell {
    max-width: 348px;
  }
}
