:root {
  --ink: #111827;
  --muted: #5b6675;
  --paper: #f6f6f6;
  --soft: #edf3f4;
  --theme: #e44400;
  --theme-bg: #faf0ee;
  --gray: #818181;
  --border-light: #ededed;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: white;
  border-bottom: 1px solid #f8f8f8;
  /* backdrop-filter: blur(16px); */
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 76px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.08rem;
}

.brand img {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.25rem;
  object-fit: cover;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: conic-gradient(from 180deg,
      var(--theme),
      var(--theme),
      var(--gray),
      var(--gray),
      var(--theme));
  display: grid;
  place-items: center;
  color: white;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.12);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: #394252;
  font-weight: 700;
  font-size: 0.94rem;
  padding: 10px 13px;
  border-radius: 8px;
}

.nav-links a[aria-current="page"] {
  background: var(--theme-bg);
  color: var(--theme);
}

.nav-links a:hover {
  color: var(--theme);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-light);
  background: white;
  border-radius: 8px;
  color: var(--ink);
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 84px 24px;
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  min-height: auto;
  padding: 8rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 48px;
  align-items: center;
}

.hero-copy {
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--theme);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

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

h1 {
  margin: 0;
  font-size: clamp(3rem, 6.2vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: 0;
  max-width: 720px;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.company-title {
  font-size: clamp(3rem, 6.2vw, 6.6rem);
  line-height: 0.92;
  max-width: 720px;
}

h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.2;
}

.lead {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  max-width: 620px;
}

.actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 800;
  border: 1px solid var(--ink);
}

.button.theme,
.button.primary {
  color: white;
  background: var(--ink);
  box-shadow: 0 15px 30px rgba(17, 24, 39, 0.16);
}

.button.secondary {
  background: white;
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero-visual {
  align-self: stretch;
  display: flex;
  align-items: center;
}

.hero-visual img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(17, 24, 39, 0.18);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--theme-bg);
  border: 1px solid var(--border-light);
}

.metric {
  background: white;
  padding: 26px;
}

.metric strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.metric span {
  line-height: 0.5;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 520px;
  margin: 0;
  margin-bottom: 0.2rem;
}

.section-head>p:last-child {
  margin-bottom: 1.2rem;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

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

.card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 26px;
  min-width: 0;
}

.card p {
  color: var(--muted);
  margin: 0;
}

.brand-message {
  position: relative;
  min-height: calc(100vh - 76px);
  padding: 26px 24px 126px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--paper);
  color: var(--ink);
  border-bottom: 1px solid var(--theme-bg);
}

.brand-message>* {
  width: 100%;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.brand-message h1 {
  max-width: 980px;
  margin-bottom: 24px;
  padding-bottom: 28px;
  border-bottom: 4px solid var(--theme-bg);
  font-size: clamp(4.2rem, 12vw, 12rem);
  line-height: 0.82;
}

.brand-message p {
  max-width: 820px;
  margin: 0;
  max-width: var(--max);
  color: var(--muted);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-left: auto;
  margin-right: auto;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  box-shadow: 0 0.25rem 20px 0px rgb(199, 199, 199);
  background: white;
  color: var(--ink);
  cursor: pointer;
  transform: translateX(-50%);
  transition:
    opacity 160ms ease,
    visibility 160ms ease,
    transform 160ms ease;
}

.scroll-hint svg {
  width: 2rem;
  height: 2rem;
}

.scroll-hint:hover {
  color: var(--theme);
  border-color: var(--theme-bg);
}

.scroll-hint.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
}

.home-next {
  padding-top: 54px;
}

.focus-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.focus-card h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 14px;
}

.focus-card .eyebrow {
  margin-bottom: 12px;
}

.focus-card .button {
  align-self: flex-start;
}

.icon-box {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--theme-bg);
  color: var(--theme);
  margin-bottom: 22px;
}

.icon-box svg {
  width: 24px;
  height: 24px;
}

.case {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  border-radius: 8px;
  padding: 28px;
  background: #121821;
  overflow: hidden;
  position: relative;
}

.case::after {
  content: "";
  position: absolute;
  inset: auto -30px -60px 35%;
  height: 180px;
  background: radial-gradient(circle, rgba(14, 143, 143, 0.5), transparent 62%);
}

.case:nth-child(2)::after {
  background: radial-gradient(circle,
      rgba(217, 108, 44, 0.48),
      transparent 62%);
}

.case:nth-child(3)::after {
  background: radial-gradient(circle, rgba(36, 87, 166, 0.55), transparent 62%);
}

.case p,
.case span {
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  z-index: 1;
}

.case h3 {
  font-size: 1.6rem;
  position: relative;
  z-index: 1;
}

.product-hero,
.donation-hero {
  min-height: auto;
  padding-top: 78px;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.product-heading {
  display: flex;
  align-items: center;
  gap: 14px;
}

.product-heading img {
  width: 2rem;
  height: 2rem;
  border-radius: 0.25rem;
  object-fit: cover;
}

.product-card .badge-container {
  display: flex;
  flex-wrap: wrap;
}

.product-card .product-cta {
  align-self: flex-start;
}

.product-cta {
  min-height: 40px;
  padding: 9px 13px;
  border-color: var(--border-light);
}

.package-card {
  display: flex;
  flex-direction: column;
}

.package-card .product-cta {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.badge {
  display: flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.76rem;
  color: var(--theme);
  background: var(--theme-bg);
  margin: 0 0.5rem 0 0;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.coming-soon {
  max-width: var(--max);
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: 96px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coming-soon h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 8vw, 8.5rem);
}

.coming-soon p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  font-weight: 700;
}

.blog-hero {
  min-height: auto;
  padding-top: 78px;
  padding-bottom: 34px;
}

.featured-post {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 0;
  overflow: hidden;
  padding: 0;
}

.post-media {
  min-height: 360px;
  background:
    linear-gradient(135deg, rgba(222, 66, 19, 0.9), rgba(17, 24, 39, 0.96)),
    repeating-linear-gradient(90deg,
      transparent 0 28px,
      rgba(255, 255, 255, 0.1) 28px 29px);
  display: grid;
  place-items: center;
  color: white;
}

.post-media svg {
  width: min(72%, 330px);
  height: auto;
}

.post-content {
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.post-meta span:first-child {
  color: var(--theme);
}

.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
}

.blog-card h3 {
  font-size: 1.32rem;
  margin: 1rem 0;
}

.blog-card .button {
  align-self: flex-start;
  margin-top: auto;
  min-height: 40px;
  padding: 9px 13px;
  border-color: var(--border-light);
}

.blog-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.topic-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--border-light);
  color: #394252;
  font-weight: 800;
  font-size: 0.86rem;
}

.article-layout {
  max-width: 880px;
  margin: 0 auto;
  padding: 76px 24px 88px;
}

.article-header {
  margin-bottom: 34px;
}

.article-header h1 {
  max-width: 860px;
  font-size: clamp(2.7rem, 5.7vw, 5.5rem);
}

.article-hero-art {
  min-height: 360px;
  border-radius: 8px;
  margin: 34px 0;
  background:
    linear-gradient(135deg, rgba(222, 66, 19, 0.92), rgba(17, 24, 39, 0.96)),
    repeating-linear-gradient(90deg,
      transparent 0 30px,
      rgba(255, 255, 255, 0.11) 30px 31px);
  display: grid;
  place-items: center;
  color: white;
  overflow: hidden;
}

.article-hero-art svg {
  width: min(74%, 480px);
  height: auto;
}

.article-body {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 42px;
}

.article-body p {
  color: #354052;
  font-size: 1.08rem;
  margin: 0 0 22px;
}

.article-body h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  margin-top: 42px;
}

.article-body ul {
  margin: 0 0 24px;
  padding-left: 22px;
  color: #354052;
}

.article-body li {
  margin-bottom: 10px;
}

.article-callout {
  margin: 34px 0;
  padding: 24px;
  border-left: 5px solid var(--theme);
  background: var(--theme-bg);
  color: var(--ink);
  font-weight: 800;
}

.feature-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.feature-list svg {
  width: 18px;
  height: 18px;
  color: var(--theme);
  flex: 0 0 auto;
  margin-top: 3px;
}

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.tier {
  border-top: 6px solid var(--theme);
  min-height: 430px;
}

.tier:nth-child(1) {
  border-top-color: var(--gray);
}

.tier:nth-child(2) {
  border-top-color: var(--theme);
}

.tier:nth-child(3) {
  border-top-color: var(--gray);
}

.price {
  margin: 18px 0;
  font-size: 2.3rem;
  line-height: 1;
  font-weight: 900;
}

.price span {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 700;
}

.donation-band {
  background: #111827;
  color: white;
}

.donation-band .section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.donation-band p {
  color: rgba(255, 255, 255, 0.72);
}

.logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.logo-tile {
  min-height: 98px;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.8);
}

.presence-section {
  padding-top: 52px;
  padding-bottom: 24px;
}

.presence-section .section-head {
  margin-bottom: 18px;
}

.presence-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.presence-link {
  min-height: 58px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-weight: 900;
}

.presence-link:hover {
  color: var(--theme);
  border-color: var(--theme-bg);
}

.presence-mark {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--theme-bg);
  color: var(--theme);
}

.presence-mark svg {
  width: 19px;
  height: 19px;
}

.presence-mark.npm-mark svg {
  width: 22px;
  height: 22px;
}

.form-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

form {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 26px;
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: #354052;
  font-weight: 800;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  min-height: 46px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: #fbfcfb;
}

textarea {
  min-height: 20rem;
  resize: vertical;
}

.footer {
  border-top: 1px solid var(--theme-bg);
  background: white;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
}

.footer-brand img {
  width: 32px;
  height: 32px;
}

.footer-copy {
  margin: 0;
  white-space: nowrap;
}

.footer-products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 10px;
  font-size: 0.88rem;
}

.footer-products a+a::before {
  content: "\2022";
  margin-right: 10px;
  color: var(--muted);
}

.footer-products a:hover {
  color: var(--theme);
}

.footer-presence {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-presence-link {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: white;
}

.footer-presence-link:hover {
  border-color: var(--theme-bg);
  background: var(--theme-bg);
}

.footer-presence-link img {
  width: 18px;
  height: 18px;
}

@media (max-width: 920px) {

  .product-heading img {
    width: 1.75rem;
    height: 1.75rem;
  }

  .brand img {
    width: 2.25rem;
    height: 2.25rem;
  }

  .hero,
  .form-shell,
  .featured-post {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 8rem;
    min-height: auto;
  }

  .metrics,
  .grid.three,
  .product-list,
  .presence-links,
  .tiers,
  .logos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {

  .product-heading img {
    width: 1.5rem;
    height: 1.5rem;
  }

  .brand img {
    width: 2rem;
    height: 2rem;
  }

  .nav {
    min-height: 68px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    padding: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    box-shadow: 0 24px 50px rgba(17, 24, 39, 0.14);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .section {
    padding: 58px 18px;
  }

  .hero {
    padding: 7rem 1rem 3rem;
  }

  .scroll-hint {
    bottom: 2rem;
  }

  .coming-soon {
    min-height: calc(100vh - 68px);
    padding: 72px 18px;
  }

  .blog-hero {
    padding-top: 42px;
  }

  .post-content {
    padding: 26px;
  }

  .post-media {
    min-height: 240px;
  }

  .article-layout {
    padding: 42px 18px 58px;
  }

  .article-body {
    padding: 26px;
  }

  .article-hero-art {
    min-height: 240px;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4.2rem);
  }

  .section-head {
    display: block;
  }

  .metrics,
  .grid.two,
  .grid.three,
  .product-list,
  .presence-links,
  .tiers,
  .logos {
    grid-template-columns: 1fr;
  }

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

  .footer-products {
    justify-content: flex-start;
  }
}