:root {
  --ink: #0f1115;
  --muted: #626772;
  --soft: #f5f5f7;
  --panel: #fbfbfd;
  --line: rgba(15, 17, 21, .1);
  --blue: #0071e3;
  --blue-dark: #005bb8;
  --teal: #32d3b6;
  --cream: #faf7f0;
  --white: #fff;
  --shadow: 0 26px 80px rgba(0, 0, 0, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255, 255, 255, .74);
  border-bottom: 1px solid rgba(255,255,255,.32);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
}
.site-nav.scrolled { background: rgba(255,255,255,.92); border-color: var(--line); }
.nav-inner {
  width: min(1180px, calc(100% - 34px));
  height: 56px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { font-weight: 800; white-space: nowrap; }
.brand span { color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 28px; color: rgba(15,17,21,.68); font-size: .9rem; }
.nav-links a:hover { color: var(--ink); }
.nav-links a[aria-current="page"] { color: var(--ink); font-weight: 760; }
.nav-cta {
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--blue);
  font-size: .86rem;
  font-weight: 700;
}
.menu-button {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.4rem;
  min-width: 42px;
  min-height: 42px;
}

.hero {
  min-height: 92vh;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #050506;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.76), rgba(0,0,0,.36) 47%, rgba(0,0,0,.08)),
    url("https://images.unsplash.com/photo-1629909615184-74f495363b67?w=1800&q=86") center / cover;
  transform: scale(1.02);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32vh;
  background: linear-gradient(0deg, rgba(0,0,0,.68), transparent);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
  padding: 128px 0 82px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
}
.hero .eyebrow { color: rgba(255,255,255,.68); }
.headline-xl {
  margin: 0;
  max-width: 920px;
  font-size: clamp(3.4rem, 8.6vw, 8.6rem);
  line-height: .92;
  font-weight: 760;
}
.headline-lg {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5.6rem);
  line-height: .96;
  font-weight: 750;
}
.headline-md {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 4.15rem);
  line-height: 1;
  font-weight: 740;
}
.subhead {
  margin: 24px 0 0;
  max-width: 660px;
  color: rgba(255,255,255,.82);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.38;
}
.subcopy {
  color: var(--muted);
  max-width: 730px;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.52;
}
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn {
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-large { min-height: 54px; padding: 0 28px; }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-dark); }
.btn-white { background: #fff; color: #111; }
.btn-outline { border-color: rgba(15,17,21,.16); background: rgba(255,255,255,.68); }
.btn-outline-white { color: #fff; border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.08); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}
.stat {
  min-height: 148px;
  padding: 32px 22px;
  display: grid;
  place-items: center;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1; }
.stat span { display: block; margin-top: 10px; color: var(--muted); line-height: 1.35; }

.section { padding: 108px 0; }
.section-tight { padding: 76px 0; }
.container { width: min(1180px, calc(100% - 34px)); margin: 0 auto; }
.center { text-align: center; }
.center .subcopy { margin-left: auto; margin-right: auto; }
.soft { background: var(--soft); }
.cream { background: var(--cream); }
.dark { background: #000; color: #fff; }
.dark .subcopy { color: rgba(255,255,255,.72); }

.proof-band {
  padding: 24px 0;
  background: #0b0d10;
  color: rgba(255,255,255,.72);
  font-size: .95rem;
}
.proof-inner {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.proof-inner b { color: #fff; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 54px;
}
.card {
  min-height: 320px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-3px); border-color: rgba(0,113,227,.24); box-shadow: 0 16px 48px rgba(0,0,0,.08); }
.card h3 { margin: 22px 0 12px; font-size: 1.55rem; line-height: 1.08; }
.card p { color: var(--muted); line-height: 1.5; margin: 0; }
.badge {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #05634f;
  background: rgba(50,211,182,.18);
  font-weight: 900;
}

.split {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-copy {
  padding: clamp(42px, 7vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.list li {
  padding: 17px 19px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
}
.list b { color: var(--ink); }
.dark .list li { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); color: rgba(255,255,255,.72); }
.dark .list b { color: #fff; }

.demo-frame {
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  box-shadow: var(--shadow);
}
.demo-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  opacity: .84;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 54px;
}
.price-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.price-card.featured {
  background: #111;
  color: #fff;
  transform: translateY(-12px);
}
.price-card h3 { margin: 0; font-size: 1.8rem; }
.plan-label { margin: 0 0 12px; color: var(--blue); font-size: .78rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.price { margin: 22px 0 8px; font-size: 2.4rem; font-weight: 800; }
.price small { font-size: 1rem; color: var(--muted); font-weight: 700; }
.price-card.featured small, .price-card.featured p, .price-card.featured li { color: rgba(255,255,255,.72); }
.price-card.featured .plan-label { color: #8ec5ff; }
.price-card p { color: var(--muted); line-height: 1.5; }
.price-card ul { padding-left: 18px; line-height: 1.9; }

.hero-small {
  padding: 150px 0 80px;
  background: var(--soft);
}
.hero-small .subhead { color: var(--muted); }
.page-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 44px;
  align-items: center;
}
.page-photo {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.page-photo img { width: 100%; height: 560px; object-fit: cover; }

.contact-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
}
.panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.panel p { color: var(--muted); line-height: 1.55; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 48px; }
.blog-card { min-height: 260px; display: flex; flex-direction: column; justify-content: space-between; padding: 28px; border: 1px solid var(--line); border-radius: 8px; background: #fff; transition: transform .18s ease, box-shadow .18s ease; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 18px 48px rgba(0,0,0,.08); }
.blog-card h3 { margin: 12px 0; font-size: 1.55rem; line-height: 1.1; }
.blog-card p { margin: 0; color: var(--muted); line-height: 1.55; }
.blog-meta { color: var(--blue); font-size: .78rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.article { width: min(860px, calc(100% - 34px)); margin: 0 auto; }
.article h2 { margin: 48px 0 14px; font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.05; }
.article p { color: #3f4550; font-size: 1.08rem; line-height: 1.78; }
.article ul { padding-left: 22px; color: #3f4550; font-size: 1.06rem; line-height: 1.7; }
.article .lead { color: var(--muted); font-size: 1.28rem; line-height: 1.55; }
form { display: grid; gap: 14px; }
label { font-size: .88rem; font-weight: 800; color: #363941; }
input, select, textarea {
  width: 100%;
  margin-top: 7px;
  padding: 14px 15px;
  border: 1px solid rgba(15,17,21,.16);
  border-radius: 8px;
  background: #fbfbfd;
  font: inherit;
}
textarea { min-height: 132px; resize: vertical; }
.form-status { min-height: 20px; margin: 2px 0 0; color: var(--muted); font-size: .9rem; line-height: 1.45; }

.cta {
  min-height: 540px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 90px 20px;
  color: #fff;
  background:
    linear-gradient(0deg, rgba(0,0,0,.72), rgba(0,0,0,.34)),
    url("https://images.unsplash.com/photo-1606811971618-4486d14f3f99?w=1800&q=86") center / cover;
}
.cta .subcopy { color: rgba(255,255,255,.8); margin-left: auto; margin-right: auto; }

footer {
  background: #f5f5f7;
  border-top: 1px solid var(--line);
}
.footer-inner {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
  padding: 46px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
}
.footer-logo { display: block; color: var(--ink); font-weight: 900; margin-bottom: 12px; }
.footer-grid p, .footer-grid a { color: var(--muted); line-height: 1.6; }
.footer-grid h4 { margin: 0 0 12px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-bottom {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: .9rem;
}

@media (max-width: 920px) {
  .nav-links {
    position: absolute;
    top: 56px;
    left: 17px;
    right: 17px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,.96);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px; }
  .nav-cta { display: none; }
  .menu-button { display: block; }
  .stats, .grid-3, .pricing, .footer-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
  .split, .page-grid, .contact-wrap { grid-template-columns: 1fr; }
  .split-media { min-height: 430px; }
}

@media (max-width: 620px) {
  .hero { min-height: 88vh; }
  .hero-content { padding-bottom: 56px; }
  .headline-xl { font-size: clamp(3.25rem, 17vw, 5.1rem); }
  .headline-lg { font-size: clamp(2.45rem, 13vw, 4.4rem); }
  .headline-md { font-size: clamp(2rem, 10vw, 3.4rem); }
  .nav-inner { width: min(100% - 24px, 1180px); }
  .brand { font-size: .95rem; }
  .hero-small { padding-top: 126px; }
  .stats, .grid-3, .pricing, .footer-grid, .blog-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .section { padding: 76px 0; }
  .actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .price-card.featured { transform: none; }
  .page-photo img, .demo-frame img { height: 410px; }
  .footer-bottom { flex-direction: column; }
}
