:root {
  --color-action: #0066cc;
  --color-action-focus: #0071e3;
  --color-action-dark: #2997ff;
  --color-ink: #1d1d1f;
  --color-muted: #6e6e73;
  --color-canvas: #ffffff;
  --color-parchment: #f5f5f7;
  --color-pearl: #fafafc;
  --color-dark: #272729;
  --color-dark-2: #1d1d1f;
  --color-black: #000000;
  --color-hairline: #e0e0e0;
  --color-dark-hairline: #3a3a3c;
  --color-sale: #d70015;
  --color-sale-highlight: #fff1a8;
  --color-sale-ink: #5c3800;
  --color-free-badge: #ffd400;
  --color-free-badge-ink: #171200;
  --color-promo-navy: #07162f;
  --color-promo-cyan: #70e8ff;
  --font-sans: Inter, "SF Pro Display", "SF Pro Text", -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --content-width: 1200px;
  --wide-width: 1440px;
  --product-shadow: 3px 5px 30px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--color-canvas);
}

body {
  margin: 0;
  background: var(--color-canvas);
  color: var(--color-ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -0.022em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--color-action-focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--color-canvas);
  color: var(--color-ink);
  padding: 10px 14px;
  font-size: 14px;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.shell {
  width: min(var(--content-width), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 52px;
  background: var(--color-black);
  color: var(--color-canvas);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(var(--content-width), calc(100% - 48px));
  height: 52px;
  margin-inline: auto;
}

.brand {
  color: var(--color-canvas);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.brand span {
  color: #38c7c7;
}

.brand-dark {
  color: var(--color-ink);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.5vw, 36px);
}

.desktop-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #d2d2d7;
  font-size: 13px;
  letter-spacing: -0.01em;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--color-action-dark);
  content: "";
  opacity: 0;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--color-canvas);
}

.desktop-nav a.is-active::after {
  opacity: 1;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 21px;
  cursor: pointer;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  transition:
    transform 140ms ease,
    background-color 140ms ease,
    color 140ms ease;
}

.button:active {
  transform: scale(0.95);
}

.button-primary {
  background: var(--color-action);
  color: var(--color-canvas);
}

.button-primary:hover {
  background: var(--color-action-focus);
}

.button-primary:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.button-secondary {
  border-color: var(--color-action);
  background: transparent;
  color: var(--color-action);
}

.button-secondary:hover {
  background: var(--color-action);
  color: var(--color-canvas);
}

.button-light {
  background: var(--color-canvas);
  color: var(--color-action);
}

.button-light:hover {
  background: var(--color-parchment);
}

.button-small {
  min-height: 40px;
  padding: 9px 16px;
  font-size: 14px;
}

.nav-cta {
  min-height: 34px;
  padding: 8px 15px;
  font-size: 13px;
}

.mobile-menu-trigger {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--color-canvas);
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  flex-direction: column;
  background: var(--color-black);
  color: var(--color-canvas);
  padding: 4px 24px 32px;
  animation: menu-in 180ms ease-out;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
}

.mobile-menu-top .mobile-menu-trigger {
  display: inline-flex;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}

.mobile-nav-links a {
  min-height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #2c2c2e;
  font-size: clamp(28px, 8vw, 40px);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.mobile-nav-links a.is-active {
  color: var(--color-action-dark);
}

.mobile-menu-cta {
  align-self: flex-start;
  margin-top: 32px;
}

.mobile-menu-note {
  margin-top: auto;
  max-width: 340px;
  color: #98989d;
  font-size: 14px;
}

.sale-announcement-strip {
  position: relative;
  z-index: 4;
  min-height: 40px;
  display: block;
  overflow: hidden;
  background: var(--color-sale);
  color: var(--color-canvas);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
}

.sale-announcement-strip:focus-visible {
  outline-color: var(--color-canvas);
  outline-offset: -3px;
}

.sale-announcement-viewport {
  min-height: 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.sale-announcement-track {
  width: max-content;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  -webkit-animation: sale-announcement-scroll 24s linear infinite;
  animation: sale-announcement-scroll 24s linear infinite;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.sale-announcement-message {
  min-height: 40px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
  padding-inline: 28px;
  white-space: nowrap;
}

.sale-announcement-message s {
  color: rgba(255, 255, 255, 0.76);
  text-decoration-thickness: 1.5px;
}

.sale-announcement-message strong {
  border-radius: 999px;
  background: var(--color-sale-highlight);
  color: var(--color-sale-ink);
  padding: 5px 9px;
  font-size: 14px;
  line-height: 1;
}

.sale-announcement-static {
  display: none;
}

@keyframes sale-announcement-scroll {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
}

.floating-sale-widget {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 90;
  min-width: 126px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  background: var(--color-sale);
  box-shadow:
    0 14px 34px rgba(120, 0, 12, 0.32),
    0 0 0 3px rgba(215, 0, 21, 0.14);
  color: var(--color-canvas);
  padding: 10px 12px;
  opacity: 1;
  -webkit-animation: floating-sale-widget-in 320ms ease-out both;
  animation: floating-sale-widget-in 320ms ease-out both;
  transition:
    opacity 160ms ease,
    visibility 160ms ease;
}

.floating-sale-widget:hover {
  background: #bf0013;
}

.floating-sale-widget.is-footer-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.floating-sale-widget-inner {
  display: flex;
  align-items: center;
  gap: 9px;
  -webkit-animation: floating-sale-widget-attention 4.8s ease-in-out infinite;
  animation: floating-sale-widget-attention 4.8s ease-in-out infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform-origin: center;
  will-change: transform;
}

.floating-sale-widget-inner > svg {
  flex: 0 0 auto;
}

.floating-sale-widget-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.floating-sale-widget-label {
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.floating-sale-widget-prices {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 4px;
  line-height: 1;
}

.floating-sale-widget-prices s {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  text-decoration-thickness: 1.5px;
}

.floating-sale-widget-prices strong {
  color: var(--color-sale-highlight);
  font-size: 18px;
  font-weight: 800;
}

.floating-sale-widget-cta {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 10px;
  line-height: 1;
}

@keyframes floating-sale-widget-in {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes floating-sale-widget-attention {
  0%,
  72%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  80% {
    transform: translate3d(0, -4px, 0) scale(1);
  }

  86% {
    transform: translate3d(0, -4px, 0) scale(1.035);
  }

  92% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow-blue {
  color: var(--color-action);
}

.hero-section {
  overflow: hidden;
  background: var(--color-parchment);
}

.hero-layout {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: 36px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-block: 96px;
}

.hero-copy h1 {
  max-width: 660px;
  margin-bottom: 24px;
  font-size: clamp(52px, 5.2vw, 74px);
  font-weight: 600;
  line-height: 0.99;
  letter-spacing: -0.058em;
}

.hero-copy > p {
  max-width: 600px;
  margin-bottom: 32px;
  color: #4e4e52;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.28;
  letter-spacing: -0.03em;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 42px;
  color: var(--color-muted);
  font-size: 13px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof span::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-action);
  content: "";
}

.hero-covers {
  position: relative;
  width: calc(100% + clamp(56px, 7vw, 112px));
  min-height: 620px;
  margin-right: calc(clamp(56px, 7vw, 112px) * -1);
  align-self: end;
}

.hero-covers > .hero-cover {
  position: absolute;
  bottom: -18px;
  transform-origin: 50% 100%;
}

.hero-cover img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--product-shadow);
}

.hero-cover-left {
  left: 0;
  z-index: 3;
  width: 43%;
  transform: rotate(-1.5deg);
}

.hero-cover-center {
  bottom: -20px;
  left: 41%;
  z-index: 2;
  width: 36%;
  transform: rotate(2deg);
}

.hero-cover-right {
  left: 75%;
  z-index: 1;
  width: 29%;
  transform: rotate(5deg);
}

.community-proof-section {
  border-top: 1px solid var(--color-hairline);
  border-bottom: 1px solid var(--color-hairline);
  padding-block: 96px 88px;
  background: var(--color-canvas);
}

.community-proof-heading {
  max-width: 1180px;
  margin-bottom: 48px;
}

.community-proof-heading .eyebrow {
  margin-bottom: 22px;
}

.community-proof-heading .eyebrow::after {
  display: block;
  width: 30px;
  height: 2px;
  margin-top: 14px;
  background: var(--color-promo-cyan);
  content: "";
}

.community-proof-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(40px, 3.8vw, 52px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.community-proof-heading p {
  color: var(--color-muted);
  font-size: 19px;
}

.community-proof-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.community-proof-stat {
  min-height: 136px;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  border: 1px solid var(--color-hairline);
  border-radius: 18px;
  padding: 22px;
  background: var(--color-canvas);
}

.community-proof-stat-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #edf5ff;
  color: var(--color-action);
}

.community-proof-mask,
.community-proof-platform-icon {
  display: block;
  background: currentColor;
  -webkit-mask-image: var(--community-proof-icon);
  mask-image: var(--community-proof-icon);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.community-proof-mask {
  width: 32px;
  height: 32px;
}

.community-proof-stat-copy {
  position: relative;
  min-height: 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--color-hairline);
  padding-left: 20px;
}

.community-proof-stat-copy::after {
  width: 32px;
  height: 2px;
  margin-top: 12px;
  background: var(--color-promo-cyan);
  content: "";
}

.community-proof-stat-copy strong {
  color: var(--color-ink);
  font-size: clamp(34px, 3.2vw, 44px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.community-proof-stat-copy > span {
  margin-top: 9px;
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.community-proof-platforms {
  min-height: 64px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 24px 0 0;
  border: 1px solid rgba(0, 102, 204, 0.24);
  border-radius: 999px;
  padding: 0 22px;
  list-style: none;
}

.community-proof-platforms li {
  min-width: 0;
  min-height: 62px;
  display: grid;
  place-items: center;
  color: var(--color-action);
}

.community-proof-platforms li + li {
  border-left: 1px solid var(--color-hairline);
}

.community-proof-platform-icon {
  width: 25px;
  height: 25px;
}

.pathway-section,
.featured-products-section,
.continue-section {
  padding-block: 112px;
  background: var(--color-canvas);
}

.section-heading {
  margin-bottom: 52px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(38px, 4.2vw, 56px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.section-heading > p,
.split-heading > p {
  max-width: 550px;
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 19px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 64px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--color-hairline);
}

.pathway-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--color-hairline);
  padding: 30px 32px 32px 0;
}

.pathway-card + .pathway-card {
  padding-left: 32px;
}

.pathway-card:last-child {
  border-right: 0;
}

.pathway-index {
  margin-bottom: auto;
  color: var(--color-action);
  font-family: var(--font-mono);
  font-size: 12px;
}

.pathway-card h3 {
  margin-bottom: 12px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.pathway-card p {
  color: var(--color-muted);
  font-size: 16px;
}

.pathway-card a,
.text-link,
.text-link-on-dark {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--color-action);
  font-size: 16px;
}

.pathway-card a {
  margin-top: 16px;
}

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

.dark-showcase {
  padding-block: 112px;
  background: var(--color-dark-2);
  color: var(--color-canvas);
}

.section-heading-dark .eyebrow {
  color: #8e8e93;
}

.section-heading-dark p {
  color: #b9b9bd;
}

.showcase-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-bottom: 52px;
}

.showcase-resource {
  min-width: 0;
}

.showcase-cover {
  display: block;
  margin-bottom: 28px;
}

.showcase-cover img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--product-shadow);
}

.showcase-resource .eyebrow {
  color: #8e8e93;
}

.showcase-resource h3 {
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.catalog-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.product-card,
.resource-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-hairline);
  border-radius: 18px;
  background: var(--color-canvas);
}

.product-card > .product-cover-wrap,
.resource-card > .card-cover {
  display: block;
  margin: 16px 16px 0;
}

.product-cover-wrap {
  position: relative;
}

.cover-image-shell {
  position: relative;
  isolation: isolate;
}

.cover-image-picture {
  display: block;
}

.cover-edge-light {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  border-radius: var(--cover-edge-radius, 8px);
  padding: 2px;
  pointer-events: none;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.cover-edge-light::before {
  content: "";
  position: absolute;
  inset: -70%;
  background: conic-gradient(
    from 0deg,
    transparent 0 70%,
    rgba(41, 151, 255, 0.16) 78%,
    var(--color-promo-cyan) 84%,
    #ffffff 87%,
    #2997ff 90%,
    transparent 96%
  );
  filter: drop-shadow(0 0 8px rgba(104, 235, 255, 0.92));
  -webkit-animation: cover-edge-light-orbit 3.6s linear infinite;
  animation: cover-edge-light-orbit 3.6s linear infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0) rotate(0deg);
  transform: translateZ(0) rotate(0deg);
  will-change: transform;
}

@keyframes cover-edge-light-orbit {
  from {
    -webkit-transform: translateZ(0) rotate(0deg);
    transform: translateZ(0) rotate(0deg);
  }

  to {
    -webkit-transform: translateZ(0) rotate(1turn);
    transform: translateZ(0) rotate(1turn);
  }
}

.product-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  background: var(--color-action);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: var(--color-canvas);
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
}

.product-badge-label,
.product-badge-spark,
.product-badge-sale-mark {
  position: relative;
  z-index: 1;
}

.product-badge-sale::after,
.product-badge-free::after,
.product-badge-best-seller::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: -45%;
  bottom: -45%;
  left: -58%;
  width: 38%;
  background: rgba(255, 255, 255, 0.7);
  -webkit-animation: product-badge-sheen 2.8s ease-in-out infinite;
  animation: product-badge-sheen 2.8s ease-in-out infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0) skewX(-22deg);
  transform: translate3d(0, 0, 0) skewX(-22deg);
  will-change: transform;
  pointer-events: none;
}

@keyframes product-badge-sheen {
  0%,
  48% {
    -webkit-transform: translate3d(0, 0, 0) skewX(-22deg);
    transform: translate3d(0, 0, 0) skewX(-22deg);
  }

  76%,
  100% {
    -webkit-transform: translate3d(490%, 0, 0) skewX(-22deg);
    transform: translate3d(490%, 0, 0) skewX(-22deg);
  }
}

.product-badge-best-seller {
  top: 14px;
  right: 10px;
  min-height: 36px;
  border: 1px solid rgba(112, 232, 255, 0.96);
  border-radius: 4px 14px 4px 14px;
  background: var(--color-promo-navy);
  box-shadow:
    0 0 0 3px rgba(0, 102, 204, 0.2),
    0 10px 26px rgba(0, 102, 204, 0.34);
  color: #ffffff;
  padding: 8px 13px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  -webkit-animation: best-seller-float 2.3s ease-in-out infinite;
  animation: best-seller-float 2.3s ease-in-out infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

.product-badge-spark {
  margin-right: 6px;
  color: var(--color-promo-cyan);
  font-size: 14px;
  line-height: 1;
  text-shadow: 0 0 8px rgba(112, 232, 255, 0.92);
}

@keyframes best-seller-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -4px, 0) scale(1.025);
  }
}

.product-badge-sale {
  top: 14px;
  right: 8px;
  min-height: 38px;
  border-radius: 0;
  background: var(--color-sale);
  box-shadow: none;
  clip-path: polygon(
    0 0,
    calc(100% - 10px) 0,
    100% 50%,
    calc(100% - 10px) 100%,
    0 100%,
    8px 50%
  );
  color: #ffffff;
  padding: 7px 17px 7px 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  filter: drop-shadow(0 9px 13px rgba(215, 0, 21, 0.38));
  -webkit-animation: sale-badge-bob 1.25s ease-in-out infinite;
  animation: sale-badge-bob 1.25s ease-in-out infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

.product-badge-sale-mark {
  display: inline-grid;
  flex: 0 0 22px;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 7px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--color-sale);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

@keyframes sale-badge-bob {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -6px, 0);
  }
}

.product-badge-free {
  top: 16px;
  right: 8px;
  min-height: 40px;
  border-radius: 0;
  background: var(--color-free-badge);
  box-shadow:
    0 5px 0 #111827,
    0 12px 24px rgba(17, 24, 39, 0.28);
  clip-path: polygon(9% 0, 100% 0, 100% 100%, 9% 100%, 0 74%, 7% 50%, 0 26%);
  color: var(--color-free-badge-ink);
  padding: 10px 18px 10px 21px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  transform-origin: center;
  -webkit-animation: free-badge-pop 1.8s ease-in-out infinite;
  animation: free-badge-pop 1.8s ease-in-out infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

@keyframes free-badge-pop {
  0%,
  70%,
  100% {
    transform: translateZ(0) rotate(2deg) scale(1);
  }

  78% {
    transform: translateZ(0) rotate(2deg) scale(1.08);
  }

  86% {
    transform: translateZ(0) rotate(2deg) scale(0.98);
  }

  92% {
    transform: translateZ(0) rotate(2deg) scale(1.04);
  }
}

.card-cover img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--product-shadow);
}

.card-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 26px 24px 24px;
}

.card-copy h2 {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.card-copy > p {
  margin-bottom: 26px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.5;
}

.card-footer {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--color-hairline);
}

.card-footer strong {
  font-size: 18px;
  font-weight: 600;
}

.product-price {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-price-sale {
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
}

.product-price-original {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  white-space: nowrap;
}

.card-footer .product-price-current {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border-radius: 999px;
  background: var(--color-sale-highlight);
  box-shadow: inset 0 0 0 1px rgba(119, 75, 0, 0.16);
  color: var(--color-sale-ink);
  padding: 8px 14px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.availability {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border-radius: 999px;
  background: var(--color-parchment);
  color: var(--color-muted);
  padding: 8px 14px;
  font-size: 13px;
  white-space: nowrap;
}

.resource-meta {
  color: var(--color-muted);
  font-size: 13px;
}

.card-footer > .availability:only-child {
  margin-left: auto;
}

.centered-action {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.github-projects-section {
  padding-block: 128px;
  background: var(--color-black);
  color: var(--color-canvas);
}

.github-projects-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 96px;
  align-items: center;
}

.github-projects-heading .eyebrow {
  color: var(--color-action-dark);
}

.github-projects-heading h2 {
  max-width: 620px;
  margin: 26px 0 0;
  font-size: clamp(46px, 4.6vw, 64px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.github-projects-content p {
  max-width: 610px;
  margin: 0;
  color: #b9b9bd;
  font-size: 18px;
  line-height: 1.55;
}

.github-projects-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 24px;
  padding: 0;
  list-style: none;
}

.github-projects-benefits li {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #333336;
  border-radius: 14px;
  padding: 8px 16px;
  color: #e8e8ed;
  font-size: 14px;
  white-space: nowrap;
}

.github-projects-benefits svg {
  flex: 0 0 auto;
  color: var(--color-action-dark);
}

.github-projects-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand-close {
  padding-block: 112px;
  background: var(--color-parchment);
  text-align: center;
}

.brand-close-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-mark-large {
  margin-bottom: 36px;
  color: var(--color-action);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.brand-close h2 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.brand-close-layout > p {
  max-width: 640px;
  margin-bottom: 30px;
  color: var(--color-muted);
  font-size: 19px;
}

.page-hero {
  padding-block: 118px 106px;
}

.page-hero-light {
  background: var(--color-parchment);
}

.page-hero-dark {
  background: var(--color-dark-2);
  color: var(--color-canvas);
}

.page-hero-copy {
  text-align: center;
}

.page-hero-copy h1 {
  max-width: 980px;
  margin: 0 auto 24px;
  font-size: clamp(50px, 6vw, 76px);
  font-weight: 600;
  line-height: 0.99;
  letter-spacing: -0.058em;
}

.page-hero-copy p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 21px;
}

.page-hero-dark .eyebrow {
  color: var(--color-action-dark);
}

.page-hero-dark p {
  color: #b9b9bd;
}

.catalog-section,
.community-list-section {
  padding-block: 80px 112px;
  background: var(--color-canvas);
}

.catalog-section-parchment {
  background: var(--color-parchment);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.filter-pill {
  min-height: 44px;
  border: 1px solid var(--color-hairline);
  border-radius: 999px;
  background: var(--color-canvas);
  color: var(--color-ink);
  padding: 8px 17px;
  cursor: pointer;
  font-size: 14px;
}

.filter-pill.is-selected {
  border-color: var(--color-ink);
  background: var(--color-ink);
  color: var(--color-canvas);
}

.results-count {
  margin: 22px 0 28px;
  color: var(--color-muted);
  text-align: center;
  font-size: 13px;
}

.community-hero .page-hero-copy {
  max-width: 1020px;
}

.community-list {
  border-top: 1px solid var(--color-hairline);
}

.community-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  min-height: 176px;
  border-bottom: 1px solid var(--color-hairline);
  padding-block: 30px;
}

.community-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--color-hairline);
  border-radius: 50%;
  background: var(--color-pearl);
  color: var(--color-action);
}

.community-platform-icon {
  width: 22px;
  height: 22px;
  display: block;
  background: currentColor;
  -webkit-mask-image: var(--community-platform-icon);
  mask-image: var(--community-platform-icon);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.community-row h2 {
  margin-bottom: 8px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.community-row p {
  max-width: 680px;
  color: var(--color-muted);
  font-size: 16px;
}

.about-story-section {
  padding-block: 112px;
  background: var(--color-canvas);
}

.about-story {
  display: grid;
  grid-template-columns: 0.4fr 1.1fr;
  gap: 96px;
}

.about-statement {
  color: var(--color-action);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-story h2 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.about-story p {
  max-width: 760px;
  color: var(--color-muted);
  font-size: 20px;
}

.values-section {
  padding-block: 112px;
  background: var(--color-dark-2);
  color: var(--color-canvas);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--color-dark-hairline);
}

.values-grid article {
  min-height: 300px;
  border-right: 1px solid var(--color-dark-hairline);
  padding: 30px 32px 32px 0;
}

.values-grid article + article {
  padding-left: 32px;
}

.values-grid article:last-child {
  border-right: 0;
}

.values-grid article > span {
  color: var(--color-action-dark);
  font-family: var(--font-mono);
  font-size: 12px;
}

.values-grid h3 {
  margin: 128px 0 12px;
  font-size: 25px;
  line-height: 1.12;
}

.values-grid p {
  color: #b9b9bd;
  font-size: 16px;
}

.contact-note {
  margin-top: 28px;
  font-size: 13px !important;
}

.contact-note a {
  color: var(--color-action);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.72);
  padding: 24px;
  animation: backdrop-in 160ms ease-out;
}

.lead-dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  border: 1px solid var(--color-hairline);
  border-radius: 18px;
  background: var(--color-canvas);
  padding: 32px;
  animation: dialog-in 180ms ease-out;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: var(--color-parchment);
  color: var(--color-ink);
  cursor: pointer;
}

.dialog-resource {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 28px;
  margin-bottom: 30px;
  padding-right: 30px;
}

.dialog-cover {
  --cover-edge-radius: 6px;
}

.dialog-cover img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--product-shadow);
}

.dialog-resource h2 {
  margin-bottom: 10px;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.dialog-resource p {
  color: var(--color-muted);
  font-size: 15px;
}

.lead-form {
  display: grid;
  gap: 18px;
  border-top: 1px solid var(--color-hairline);
  padding-top: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--color-ink);
  font-size: 14px;
  font-weight: 600;
}

.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"] {
  width: 100%;
  height: 48px;
  border: 1px solid #c7c7cc;
  border-radius: 11px;
  background: var(--color-canvas);
  color: var(--color-ink);
  padding-inline: 14px;
  font-size: 16px;
  font-weight: 400;
}

.lead-form input:focus {
  border-color: var(--color-action-focus);
}

.optional-label {
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 400;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.lead-form .consent-row {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  font-weight: 400;
  line-height: 1.4;
}

.consent-row input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--color-action);
}

.turnstile-wrap {
  min-height: 76px;
}

.field-hint {
  margin: 5px 0 0;
  color: var(--color-muted);
  font-size: 12px;
}

.turnstile-retry {
  min-height: 44px;
  margin: 0;
  border: 0;
  background: transparent;
  color: var(--color-action);
  padding: 0;
  font: inherit;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.form-error {
  margin: 0;
  border-left: 3px solid #d70015;
  background: #fff2f2;
  color: #9b1515;
  padding: 10px 12px;
  font-size: 14px;
}

.submit-button {
  width: 100%;
}

.form-legal {
  margin: 0;
  color: var(--color-muted);
  text-align: center;
  font-size: 11px;
}

.form-legal a {
  color: var(--color-action);
}

.thank-you-hero {
  padding-block: 96px;
  background: var(--color-parchment);
}

.thank-you-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  align-items: center;
  gap: 80px;
  max-width: 1040px;
}

.thank-you-cover {
}

.thank-you-cover img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--product-shadow);
}

.success-mark {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--color-action);
  color: var(--color-canvas);
}

.thank-you-copy h1 {
  margin-bottom: 22px;
  font-size: clamp(44px, 5.2vw, 66px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.058em;
}

.thank-you-copy > p {
  max-width: 600px;
  margin-bottom: 30px;
  color: var(--color-muted);
  font-size: 20px;
}

.download-button {
  min-height: 50px;
  padding-inline: 26px;
}

.download-meta {
  display: block;
  margin-top: 14px;
  color: var(--color-muted);
  font-size: 12px;
}

.delivery-status-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  max-width: 620px;
  border: 1px solid rgba(15, 86, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 20px;
  color: var(--color-ink);
}

.delivery-status-panel > svg {
  margin-top: 2px;
  color: var(--color-action);
}

.delivery-status-panel strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.delivery-status-panel p {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
}

.download-error-page {
  display: grid;
  min-height: 68vh;
  place-items: center;
  padding-block: 96px;
  background: var(--color-parchment);
}

.download-error-card {
  max-width: 720px;
  text-align: center;
}

.error-mark {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: #fff2f2;
  color: #b91c1c;
}

.download-error-card h1 {
  margin: 14px 0 20px;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.download-error-card > p {
  max-width: 610px;
  margin: 0 auto 30px;
  color: var(--color-muted);
  font-size: 19px;
}

.related-grid .product-card {
  max-width: 440px;
}

.legal-page {
  max-width: 820px;
  padding-block: 104px 120px;
}

.legal-page-combined {
  max-width: 920px;
}

.legal-section,
.legal-contents {
  scroll-margin-top: 72px;
}

.legal-page h2 {
  margin: 44px 0 10px;
  font-size: 26px;
  line-height: 1.15;
}

.legal-page h3 {
  margin: 30px 0 8px;
  font-size: 18px;
  line-height: 1.3;
}

.legal-page p {
  color: #4e4e52;
}

.legal-page a {
  color: var(--color-action);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-page ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 22px;
  color: #4e4e52;
}

.legal-contents {
  margin-top: 0;
  border-radius: 18px;
  padding: 24px 28px;
  background: var(--color-parchment);
}

.legal-contents h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.legal-contents ol {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin: 0;
  padding-left: 22px;
}

.legal-contents a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.legal-section {
  margin-top: 72px;
  border-top: 1px solid var(--color-hairline);
  padding-top: 28px;
}

.legal-section > h2 {
  margin-top: 0;
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: -0.035em;
}

.legal-back-to-top {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 700;
}

.legal-updated {
  margin-top: 64px;
  color: var(--color-muted) !important;
  font-size: 13px;
}

.site-footer {
  background: var(--color-parchment);
  color: var(--color-ink);
  padding-block: 64px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 64px;
  padding-bottom: 56px;
}

.footer-intro p {
  max-width: 360px;
  margin-top: 22px;
  color: var(--color-muted);
  font-size: 14px;
}

.footer-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-group h2 {
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 600;
}

.footer-group a,
.footer-group span {
  color: var(--color-muted);
  font-size: 13px;
}

.footer-group a:hover {
  color: var(--color-ink);
  text-decoration: underline;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-social-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.62;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--color-hairline);
  padding-top: 22px;
  color: var(--color-muted);
  font-size: 11px;
}

.footer-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0 26px;
  border-top: 1px solid var(--color-hairline);
  padding-block: 14px;
}

.footer-policy-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--color-muted);
  font-size: 12px;
}

.footer-policy-links a:hover {
  color: var(--color-ink);
  text-decoration: underline;
}

.footer-policy-links + .footer-legal {
  border-top: 0;
  padding-top: 2px;
}

@keyframes menu-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes backdrop-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .hero-layout {
    min-height: 680px;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  }

  .hero-covers {
    min-height: 560px;
  }

  .community-proof-section {
    padding-block: 80px 72px;
  }

  .community-proof-stats {
    gap: 12px;
  }

  .community-proof-stat {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
  }

  .community-proof-stat-icon {
    width: 52px;
    height: 52px;
  }

  .community-proof-stat-copy {
    padding-left: 16px;
  }

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

  .featured-products-section .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .github-projects-layout {
    gap: 56px;
  }
}

@media (max-width: 880px) {
  .community-proof-stat-copy strong {
    font-size: 30px;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

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

  .mobile-menu-trigger {
    display: inline-flex;
  }

  .hero-layout {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-copy {
    padding: 88px 0 26px;
    text-align: center;
  }

  .hero-copy h1,
  .hero-copy > p {
    margin-right: auto;
    margin-left: auto;
  }

  .button-row,
  .hero-proof {
    justify-content: center;
  }

  .hero-covers {
    width: min(680px, 100%);
    min-height: 500px;
    margin-inline: auto;
  }

  .hero-cover-left {
    width: 43%;
  }

  .hero-cover-center {
    left: 41%;
    width: 36%;
  }

  .hero-cover-right {
    left: 75%;
    width: 29%;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .pathway-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .pathway-card,
  .pathway-card + .pathway-card,
  .values-grid article,
  .values-grid article + article {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--color-hairline);
    padding: 28px 0;
  }

  .values-grid article,
  .values-grid article + article {
    border-bottom-color: var(--color-dark-hairline);
  }

  .pathway-card:last-child,
  .values-grid article:last-child {
    border-bottom: 0;
  }

  .pathway-index {
    margin-bottom: 56px;
  }

  .values-grid h3 {
    margin-top: 56px;
  }

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

  .showcase-resource:last-child {
    display: none;
  }

  .featured-products-section .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-products-section .product-card:last-child {
    display: none;
  }

  .github-projects-layout,
  .about-story {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .community-row {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .community-row .button,
  .community-row .availability {
    grid-column: 2;
    justify-self: start;
  }

  .thank-you-layout {
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1.7fr 1fr 1fr;
  }

  .footer-group:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 680px) {
  .shell,
  .nav-shell {
    width: min(100% - 32px, var(--content-width));
  }

  .site-header,
  .nav-shell {
    height: 48px;
  }

  .sale-announcement-strip,
  .sale-announcement-viewport,
  .sale-announcement-message {
    min-height: 38px;
  }

  .sale-announcement-strip {
    font-size: 12px;
  }

  .sale-announcement-message {
    gap: 11px;
    padding-inline: 20px;
  }

  .sale-announcement-message strong {
    padding: 4px 8px;
    font-size: 13px;
  }

  .floating-sale-widget {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    min-width: 116px;
    border-radius: 16px;
    padding: 9px 10px;
  }

  .floating-sale-widget-prices strong {
    font-size: 17px;
  }

  .hero-copy {
    padding-top: 72px;
  }

  .hero-copy h1 {
    font-size: clamp(40px, 12vw, 54px);
    line-height: 0.99;
  }

  .hero-copy > p {
    font-size: 19px;
  }

  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-proof {
    gap: 8px 14px;
  }

  .hero-covers {
    min-height: 330px;
    margin-top: 24px;
  }

  .hero-cover-left {
    left: 0;
    width: 42%;
    transform: rotate(-2deg);
  }

  .hero-cover-center {
    bottom: -18px;
    left: 40%;
    width: 34%;
    transform: rotate(2deg);
  }

  .hero-cover-right {
    left: 71%;
    width: 29%;
    transform: rotate(5deg);
  }

  .community-proof-section {
    padding-block: 72px 64px;
  }

  .community-proof-heading {
    margin-bottom: 36px;
  }

  .community-proof-heading h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .community-proof-heading p {
    font-size: 17px;
  }

  .community-proof-stats {
    grid-template-columns: 1fr;
  }

  .community-proof-stat {
    min-height: 112px;
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 16px;
    padding: 18px 20px;
  }

  .community-proof-stat-icon {
    width: 56px;
    height: 56px;
  }

  .community-proof-stat-copy {
    min-height: 68px;
  }

  .community-proof-stat-copy strong {
    font-size: 34px;
  }

  .community-proof-platforms {
    grid-template-columns: repeat(3, 1fr);
    border-radius: 18px;
    padding: 0;
  }

  .community-proof-platforms li {
    min-height: 58px;
  }

  .community-proof-platforms li:nth-child(3n + 1) {
    border-left: 0;
  }

  .community-proof-platforms li:nth-child(n + 4) {
    border-top: 1px solid var(--color-hairline);
  }

  .pathway-section,
  .featured-products-section,
  .continue-section,
  .dark-showcase,
  .about-story-section,
  .values-section,
  .brand-close {
    padding-block: 80px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .brand-close h2 {
    font-size: 36px;
  }

  .split-heading > p,
  .section-heading > p {
    font-size: 17px;
  }

  .showcase-resource-grid,
  .catalog-grid,
  .resource-grid,
  .featured-products-section .catalog-grid {
    grid-template-columns: 1fr;
  }

  .showcase-resource:last-child,
  .featured-products-section .product-card:last-child {
    display: block;
  }

  .product-card > .product-cover-wrap,
  .resource-card > .card-cover {
    margin: 12px 12px 0;
  }

  .card-copy {
    padding: 24px 20px 22px;
  }

  .github-projects-section {
    padding-block: 80px;
  }

  .github-projects-heading h2 {
    font-size: 40px;
  }

  .github-projects-benefits {
    grid-template-columns: 1fr;
  }

  .github-projects-benefits li {
    justify-content: flex-start;
  }

  .page-hero {
    padding-block: 84px 76px;
  }

  .page-hero-copy h1 {
    font-size: 42px;
  }

  .page-hero-copy p {
    font-size: 18px;
  }

  .catalog-section,
  .community-list-section {
    padding-block: 56px 80px;
  }

  .filter-row {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    margin-right: -16px;
    margin-left: -16px;
    padding: 0 16px 6px;
    scrollbar-width: none;
  }

  .filter-row::-webkit-scrollbar {
    display: none;
  }

  .filter-pill {
    white-space: nowrap;
  }

  .community-row {
    min-height: 0;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 18px;
    padding-block: 28px;
  }

  .community-row h2 {
    font-size: 24px;
  }

  .about-story h2 {
    font-size: 40px;
  }

  .about-story p {
    font-size: 18px;
  }

  .dialog-backdrop {
    align-items: end;
    padding: 0;
  }

  .lead-dialog {
    width: 100%;
    max-height: calc(100dvh - 16px);
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 18px 18px 0 0;
    padding: 24px 16px 26px;
  }

  .dialog-resource {
    grid-template-columns: 88px 1fr;
    gap: 18px;
    padding-right: 36px;
  }

  .dialog-resource h2 {
    font-size: 27px;
  }

  .dialog-resource p {
    display: none;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .thank-you-hero {
    padding-block: 64px 72px;
  }

  .thank-you-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .thank-you-cover {
    width: min(310px, 86%);
    margin-inline: auto;
  }

  .thank-you-copy {
    text-align: center;
  }

  .thank-you-copy h1 {
    font-size: 42px;
  }

  .thank-you-copy > p {
    font-size: 18px;
  }

  .legal-page {
    padding-block: 72px 88px;
  }

  .legal-contents {
    padding: 20px;
  }

  .legal-contents ol {
    display: grid;
    gap: 0;
  }

  .legal-section {
    margin-top: 56px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px 24px;
  }

  .footer-intro {
    grid-column: 1 / -1;
  }

  .footer-group:last-child {
    grid-column: 1 / -1;
  }

  .footer-legal {
    flex-direction: column;
    gap: 6px;
  }

  .footer-policy-links {
    gap: 0 20px;
  }
}

@media (max-width: 420px) {
  .mobile-menu {
    padding-inline: 16px;
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    font-size: 38px;
  }

  .hero-covers {
    min-height: 180px;
  }

  .hero-proof {
    font-size: 12px;
  }

  .card-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .card-footer .button,
  .card-footer .availability {
    width: 100%;
  }

  .dialog-resource {
    grid-template-columns: 72px 1fr;
  }

  .dialog-resource h2 {
    font-size: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }

  .sale-announcement-track {
    display: none;
  }

  .sale-announcement-static {
    min-width: 100%;
    display: flex;
    justify-content: center;
  }

  .sale-announcement-static .sale-announcement-message {
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px 9px;
    padding: 7px 14px;
    text-align: center;
    white-space: normal;
  }

  .floating-sale-widget,
  .floating-sale-widget-inner {
    -webkit-animation: none !important;
    animation: none !important;
  }
}

/* Static-site interaction and utility additions. */
[hidden] {
  display: none !important;
}

body.menu-is-open {
  overflow: hidden;
}

.inline-icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.not-found-page {
  min-height: 68vh;
  display: grid;
  place-items: center;
  padding-block: 96px;
  background: var(--color-parchment);
  text-align: center;
}

.not-found-page h1 {
  margin-bottom: 18px;
  font-size: clamp(48px, 7vw, 78px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.not-found-page p {
  margin-bottom: 28px;
  color: var(--color-muted);
  font-size: 19px;
}

@media (max-width: 1024px) {
  .button-small,
  .nav-cta {
    min-height: 44px;
  }
}
