:root {
  --ink: #05060a;
  --muted: #59616f;
  --line: #e6e8ec;
  --green: #10a86a;
  --green-strong: #078a54;
  --blue: #4169e1;
  --paper: #ffffff;
  --soft: #f6f7f8;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--paper);
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: rgba(5, 6, 10, 0.12);
}

a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
}

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

.skip-link {
  background: var(--ink);
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: 16px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
  z-index: 10;
}

.skip-link:focus-visible {
  outline: 3px solid #0a84ff;
  outline-offset: 3px;
  transform: translateY(0);
}

.shell {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 28px;
  width: 100%;
}

.topbar {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 74px;
}

.topbar-bordered {
  border-bottom: 1px solid var(--line);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
}

.brand-mark {
  align-items: center;
  background: #101114;
  border-radius: 10px;
  color: #ffffff;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.brand-icon {
  border-radius: 12px;
  height: 36px;
  width: 36px;
}

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}

.button:focus-visible,
.brand:focus-visible,
.media-link:focus-visible,
.footer a:focus-visible {
  outline: 3px solid #0a84ff;
  outline-offset: 4px;
}

.button-primary {
  background: var(--ink);
  color: #ffffff;
}

.button-primary:hover {
  background: #1b1d24;
}

.button-secondary {
  border: 1px solid var(--line);
  color: #222831;
}

.button-secondary:hover {
  border-color: #cbd0d8;
  background: #f8f9fb;
}

.hero-title,
.product-title,
.section-title {
  margin: 0;
  text-wrap: balance;
}

.hero-title {
  font-size: 88px;
  letter-spacing: 0;
  line-height: 0.92;
}

.home-title {
  font-size: 58px;
  letter-spacing: 0;
  line-height: 1.06;
  max-width: 560px;
}

.home-title .title-line {
  display: block;
}

.hero-copy {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
  margin: 24px 0 0;
  max-width: 660px;
  text-wrap: pretty;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.home-page {
  background: linear-gradient(180deg, #ffffff 0%, #f7f8f8 58%, #ffffff 100%);
}

.home-hero {
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.98fr);
  min-height: auto;
  padding: 86px 0 84px;
  place-items: center;
}

.home-hero > div:first-child {
  justify-self: start;
  max-width: 560px;
  min-width: 0;
}

.product-stage {
  background: #ffffff;
  border: 1px solid rgba(5, 6, 10, 0.08);
  border-radius: 28px;
  box-shadow: 0 28px 90px rgba(20, 26, 34, 0.08);
  padding: 12px;
  width: 100%;
}

.media-link {
  border-radius: 20px;
  display: block;
  overflow: hidden;
}

.coming-next {
  align-content: space-between;
  background: #f4f6f5;
  border: 1px solid #e3e6e5;
  border-radius: 18px;
  display: grid;
  margin-top: 18px;
  min-height: 148px;
  padding: 20px;
}

.coming-next span {
  color: #77808a;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.coming-next h2 {
  font-size: 20px;
  letter-spacing: 0;
  margin: 0;
  text-wrap: balance;
}

.coming-next p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 10px 0 0;
  text-wrap: pretty;
}

.product-page .topbar {
  min-height: 82px;
}

.product-page main {
  padding-bottom: 72px;
}

.product-hero {
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(320px, 0.86fr) minmax(420px, 1.14fr);
  padding: 74px 0 56px;
}

.product-title {
  font-size: 92px;
  letter-spacing: 0;
  line-height: 0.9;
}

.product-title span {
  color: var(--green);
}

.proof-grid {
  border-top: 1px solid var(--line);
  color: #69717e;
  display: grid;
  font-size: 12px;
  column-gap: 22px;
  row-gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
  padding-top: 18px;
}

.proof-grid > span {
  display: grid;
  gap: 4px;
  grid-template-columns: auto minmax(0, 1fr);
  min-width: 0;
  padding-right: 0;
  width: auto;
}

.proof-grid > span + span {
  padding-left: 0;
}

.proof-grid > span::before {
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 0 3px #e8f7ef;
  content: "";
  grid-row: 1 / span 2;
  height: 6px;
  margin-top: 6px;
  width: 6px;
}

.proof-grid strong {
  color: #090a0e;
  display: block;
  font-size: 14px;
  font-weight: 800;
  grid-column: 2;
  letter-spacing: 0;
  line-height: 1.15;
  white-space: nowrap;
}

.proof-grid > span > span {
  grid-column: 2;
  line-height: 1.3;
  white-space: nowrap;
}

.product-console {
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 14px;
}

.browser-frame {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.browser-chrome {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 8px;
  height: 44px;
  padding: 0 14px;
}

.dot {
  background: #cfd4dc;
  border-radius: 999px;
  height: 10px;
  width: 10px;
}

.urlbar {
  background: #f3f4f6;
  border-radius: 999px;
  color: #7a828e;
  flex: 1;
  font-size: 12px;
  margin-left: 10px;
  min-width: 0;
  overflow: hidden;
  padding: 7px 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.gig-card {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px;
}

.gig-image {
  align-items: center;
  background: #eef1f4;
  border: 1px solid #dfe3e8;
  border-radius: 8px;
  color: #c0c8d2;
  display: flex;
  font-size: 36px;
  height: 92px;
  justify-content: center;
}

.line {
  background: #dce1e7;
  border-radius: 999px;
  height: 12px;
  margin-top: 12px;
}

.line.short {
  width: 62%;
}

.metric-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.metric,
.tag {
  border-radius: 7px;
  font-size: 12px;
  padding: 6px 8px;
}

.metric {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.metric.review {
  background: #effcf5;
  border: 1px solid #8be8b5;
  color: #066f3e;
}

.metric.order {
  background: #fff7ea;
  border: 1px solid #ffc45e;
  color: #9a4400;
}

.metric.favorite {
  background: #f4f0ff;
  border: 1px solid #b9a6ff;
  color: #4b35d9;
}

.tag {
  background: #ffffff;
  border: 1px solid #d8dce2;
  color: #424954;
  font-weight: 500;
}

.feature-strip {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature {
  border-right: 1px solid var(--line);
  padding: 28px 22px;
}

.feature:last-child {
  border-right: 0;
}

.feature h2 {
  font-size: 18px;
  letter-spacing: 0;
  margin: 0;
  text-wrap: balance;
}

.feature p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 12px 0 0;
  text-wrap: pretty;
}

.simple-main {
  max-width: 780px;
  padding: 84px 0 110px;
}

.simple-main h1 {
  font-size: 68px;
  letter-spacing: 0;
  line-height: 0.95;
  margin: 0;
  text-wrap: balance;
}

.simple-main .eyebrow {
  color: #7a828e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.simple-main p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  margin: 22px 0 0;
  text-wrap: pretty;
}

.simple-main .lead {
  color: #4d5563;
  font-size: 20px;
}

.simple-main h2 {
  border-top: 1px solid var(--line);
  font-size: 24px;
  line-height: 1.2;
  margin: 42px 0 0;
  padding-top: 28px;
  text-wrap: balance;
}

.simple-main ul {
  color: #303846;
  font-size: 17px;
  line-height: 1.6;
  margin: 28px 0 0;
  padding-left: 22px;
}

.simple-main li + li {
  margin-top: 10px;
}

.summary-note {
  border-left: 3px solid var(--green);
  color: #303846;
  font-size: 17px;
  line-height: 1.55;
  margin-top: 30px;
  padding-left: 18px;
}

.policy-section a,
.support-note a {
  color: #111318;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #cfd4dc;
  text-underline-offset: 3px;
}

.simple-main .support-note {
  color: var(--muted);
  font-size: 16px;
  margin-top: 24px;
}

.footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: #69717e;
  display: flex;
  font-size: 14px;
  gap: 18px;
  justify-content: space-between;
  padding: 26px 0 34px;
}

.footer > span {
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: #222831;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--green-strong);
}

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

@media (max-width: 920px) {
  .home-hero,
  .product-hero {
    grid-template-columns: 1fr;
  }

  .home-hero {
    padding: 60px 0 48px;
  }

  .hero-title,
  .product-title {
    font-size: 72px;
  }

  .home-title {
    font-size: 56px;
    max-width: 620px;
  }

  .simple-main h1 {
    font-size: 58px;
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

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

  .feature:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .shell {
    padding: 0 16px;
  }

  .topbar {
    min-height: 62px;
  }

  .brand {
    font-size: 16px;
  }

  .brand-mark,
  .brand-icon {
    border-radius: 10px;
    height: 34px;
    width: 34px;
  }

  .product-page .topbar {
    gap: 10px;
    min-height: 66px;
  }

  .product-page .topbar .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .product-page .topbar .brand span {
    line-height: 1.08;
  }

  .product-page .topbar > .button {
    flex: 0 0 auto;
    font-size: 12px;
    min-height: 36px;
    min-width: 0;
    padding: 0 10px;
    width: auto;
  }

  .hero-title,
  .product-title {
    font-size: 54px;
    line-height: 0.94;
  }

  .home-title {
    font-size: 40px;
    line-height: 1.02;
  }

  .hero-copy {
    font-size: 17px;
    line-height: 1.42;
    margin-top: 18px;
  }

  .simple-main h1 {
    font-size: 44px;
    line-height: 1;
  }

  .home-hero,
  .product-hero {
    gap: 28px;
    padding: 38px 0 34px;
  }

  .product-hero {
    padding-top: 34px;
  }

  .product-page main {
    padding-bottom: 42px;
  }

  .cta-row {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
  }

  .cta-row .button {
    min-height: 48px;
    width: 100%;
  }

  .product-stage {
    border-radius: 22px;
    box-shadow: 0 18px 56px rgba(20, 26, 34, 0.07);
    padding: 8px;
  }

  .media-link {
    border-radius: 16px;
  }

  .coming-next {
    border-radius: 16px;
    margin-top: 12px;
    min-height: 116px;
    padding: 16px;
  }

  .coming-next h2 {
    font-size: 19px;
  }

  .coming-next p {
    font-size: 13px;
    margin-top: 8px;
  }

  .proof-grid {
    display: none;
    gap: 12px;
    grid-template-columns: 1fr;
    margin-top: 26px;
    padding-top: 18px;
  }

  .proof-grid > span {
    padding-right: 0;
  }

  .proof-grid > span + span {
    border-left: 0;
    padding-left: 0;
  }

  .proof-grid strong,
  .proof-grid > span > span {
    white-space: normal;
  }

  .product-console {
    border-radius: 14px;
    padding: 9px;
  }

  .browser-frame {
    border-radius: 11px;
  }

  .browser-chrome {
    gap: 6px;
    height: 38px;
    padding: 0 10px;
  }

  .dot {
    height: 8px;
    width: 8px;
  }

  .urlbar {
    font-size: 11px;
    margin-left: 6px;
    padding: 6px 10px;
  }

  .results-grid {
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 10px;
  }

  .gig-card {
    border-radius: 9px;
    padding: 8px;
  }

  .gig-image {
    font-size: 24px;
    height: 58px;
  }

  .line {
    height: 10px;
    margin-top: 10px;
  }

  .metric-row,
  .tag-row {
    gap: 5px;
    margin-top: 8px;
  }

  .metric,
  .tag {
    font-size: 10px;
    line-height: 1.15;
    padding: 5px 6px;
  }

  .feature {
    padding: 24px 16px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    justify-content: flex-start;
    padding: 24px 0 30px;
  }

  .footer > span {
    flex: none;
    order: 2;
    white-space: nowrap;
  }

  .footer-links {
    flex: none;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-left: 0;
    order: 1;
  }
}
