:root {
  --bg: #0c0f11;
  --bg-deep: #090b0d;
  --surface: rgba(10, 14, 16, 0.56);
  --surface-strong: rgba(10, 14, 16, 0.7);
  --line: rgba(255, 255, 255, 0.16);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f1f3f4;
  --muted: #aeb6bd;
  --accent: #1ea9d9;
  --accent-bright: #b8c81b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

main {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

button {
  font: inherit;
  color: inherit;
}

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

h1,
h2,
h3,
p,
ul,
ol {
  margin: 0;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.list-reset {
  padding: 0;
  margin: 0;
  list-style: none;
}

.panel {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 7vw, 6.3rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 700;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.1rem, 4.6vw, 3.85rem);
  line-height: 0.97;
  letter-spacing: -0.05em;
  font-weight: 700;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.lead {
  max-width: 42rem;
  color: rgba(241, 243, 244, 0.92);
  font-size: 1.32rem;
  line-height: 1.55;
}

.support-copy,
.section-copy {
  max-width: 42rem;
  font-size: 1.08rem;
  line-height: 1.7;
}

.support-copy {
  margin-top: 18px;
  margin-bottom: 28px;
}

.section-copy + .section-copy {
  margin-top: 16px;
}

.section-copy--large {
  max-width: 44rem;
  font-size: 1.18rem;
}

.text-muted {
  color: var(--muted);
}

/* Navigation */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(
    180deg,
    rgba(8, 11, 14, 0.82) 0%,
    rgba(8, 11, 14, 0.5) 58%,
    rgba(8, 11, 14, 0.08) 100%
  );
  backdrop-filter: blur(14px);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 88px;
}

.site-brand {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.site-brand:hover,
.site-nav__link:hover,
.site-nav__link:focus-visible,
.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  color: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav__link,
.nav-submenu a {
  color: rgba(241, 243, 244, 0.9);
  font-size: 0.96rem;
  font-weight: 500;
}

.nav-item {
  position: relative;
}

.nav-item__row {
  display: flex;
  align-items: center;
}

.nav-item--products::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 18px;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  display: grid;
  gap: 8px;
  min-width: 220px;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(10, 14, 16, 0.96);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-submenu a {
  padding: 2px 0;
}

.nav-item--products:hover .nav-submenu,
.nav-item--products:focus-within .nav-submenu,
.nav-item--products.is-open .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-toggle,
.nav-submenu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 14, 16, 0.84);
  cursor: pointer;
}

.nav-toggle {
  min-height: 42px;
  padding: 0 14px;
}

.nav-submenu-toggle {
  min-width: 32px;
  min-height: 32px;
  margin-left: 8px;
  padding: 0;
  line-height: 1;
}

/* Sections */

.hero,
.section {
  position: relative;
  background-color: var(--bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero {
  min-height: 100svh;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 150px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(8, 11, 14, 0) 0%,
    rgba(8, 11, 14, 0.42) 48%,
    rgba(8, 11, 14, 0.96) 100%
  );
}

.hero-shell {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 84px;
}

.purchase-hero {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: center;
}

.section {
  padding: 110px 0;
  scroll-margin-top: 100px;
}

.hero-panel {
  max-width: 740px;
  padding: 40px 42px;
}

.hero-panel--wide {
  max-width: 860px;
}

.hero-panel--purchase {
  max-width: none;
}

.section-panel {
  max-width: 760px;
  padding: 34px 36px;
}

.section-panel--about {
  max-width: 780px;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 40px;
}

.strip-panel {
  max-width: 840px;
  padding: 24px 28px;
}

.strip-copy {
  margin-bottom: 10px;
  font-size: 1.12rem;
  font-weight: 600;
}

.strip-meta,
.pricing-note {
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.hero-points p {
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.94rem;
  font-weight: 600;
}

.purchase-card {
  padding: 30px 28px;
  background: var(--surface-strong);
}

.purchase-title {
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
}

.purchase-copy {
  margin-bottom: 22px;
  color: rgba(241, 243, 244, 0.88);
  font-size: 1.03rem;
  line-height: 1.65;
}

.purchase-options {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.purchase-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.purchase-option__size {
  font-weight: 600;
}

.purchase-option__price {
  color: var(--accent);
  font-size: 1.22rem;
  font-weight: 700;
}

.purchase-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.launch-note {
  margin-top: 22px;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 1.6rem;
  line-height: 1.15;
  font-weight: 700;
}

.waitlist-note {
  font-size: 1.08rem;
}

.waitlist-note a,
.detail-row a {
  font-weight: 700;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 14, 16, 0.8);
  font-weight: 700;
}

.button-link:hover,
.button-link:focus-visible {
  border-color: rgba(30, 169, 217, 0.55);
  background: rgba(10, 14, 16, 0.9);
  color: var(--accent);
}

.button-link--full {
  width: 100%;
  margin-top: 22px;
}

/* Grids and cards */

.card-grid {
  display: grid;
  gap: 20px;
}

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

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

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

.card-grid--products {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.info-card,
.step-card,
.pricing-card,
.faq-card {
  padding: 24px;
}

.info-card p,
.step-card p:last-child,
.pricing-card p:last-of-type,
.faq-card p {
  margin-bottom: 0;
}

.product-card {
  padding: 18px;
}

.product-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-media {
  min-height: 320px;
  position: relative;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.04);
}

.product-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(10, 14, 16, 0.2), rgba(10, 14, 16, 0.2)),
    var(--product-art) center / cover no-repeat;
  filter: blur(22px);
  transform: scale(1.08);
  opacity: 0.72;
}

.product-logo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(100%, 420px);
  max-height: 100%;
  height: auto;
  object-fit: contain;
}

.product-body {
  display: grid;
  gap: 14px;
}

.product-card h3 {
  color: var(--accent-bright);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.product-link:hover .inline-link,
.product-link:focus-visible .inline-link {
  color: #8bd9ef;
}

.step-number {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 1.85rem;
  line-height: 1;
  font-weight: 700;
}

.pricing-price {
  margin-bottom: 6px;
  font-size: 1.52rem;
  line-height: 1.1;
  font-weight: 700;
}

.pricing-cap {
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 600;
}

.pricing-note {
  margin-top: 28px;
}

.purchase-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.7fr);
  gap: 24px;
  align-items: start;
}

.buyer-fit-card {
  padding: 28px 26px;
}

.buyer-fit-list {
  display: grid;
  gap: 10px;
  color: rgba(241, 243, 244, 0.92);
}

.buyer-fit-list li {
  padding-top: 10px;
  border-top: 1px solid var(--line-soft);
}

.buyer-fit-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.pricing-cta {
  margin-top: 28px;
  padding: 28px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.pricing-cta h3 {
  margin-bottom: 10px;
}

.chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 24px;
}

.chip {
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: rgba(10, 14, 16, 0.48);
}

.detail-list {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
}

.detail-row {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 18px;
  align-items: start;
}

.detail-label {
  color: var(--muted);
}

/* Backgrounds */

.hero--home {
  background-image:
    linear-gradient(rgba(8, 11, 14, 0.56), rgba(8, 11, 14, 0.76)),
    url("assets/images/slate-rock.jpg");
}

.hero--teamfonts {
  background-image:
    linear-gradient(rgba(8, 11, 14, 0.5), rgba(8, 11, 14, 0.72)),
    url("assets/images/water-texture.jpg");
}

.hero--documentary {
  background-image:
    linear-gradient(rgba(8, 11, 14, 0.58), rgba(8, 11, 14, 0.76)),
    url("assets/images/moon-water.jpg");
}

.bg--mountains {
  background-image:
    linear-gradient(rgba(8, 11, 14, 0.68), rgba(8, 11, 14, 0.82)),
    url("assets/images/drone-mountains.png");
}

.bg--marsh {
  background-image:
    linear-gradient(rgba(8, 11, 14, 0.68), rgba(8, 11, 14, 0.84)),
    url("assets/images/marsh-land.jpg");
}

.bg--trees {
  background-image:
    linear-gradient(rgba(8, 11, 14, 0.72), rgba(8, 11, 14, 0.84)),
    url("assets/images/trees.jpg");
}

.bg--shore {
  background-image:
    linear-gradient(rgba(8, 11, 14, 0.68), rgba(8, 11, 14, 0.82)),
    url("assets/images/hero-coast-beach.jpg");
}

.bg--water {
  background-image:
    linear-gradient(rgba(8, 11, 14, 0.68), rgba(8, 11, 14, 0.84)),
    url("assets/images/rock-water.jpg");
}

.bg--rock {
  background-image:
    linear-gradient(rgba(8, 11, 14, 0.72), rgba(8, 11, 14, 0.88)),
    url("assets/images/slate-rock.jpg");
}

.bg--geo {
  background-image:
    linear-gradient(rgba(8, 11, 14, 0.72), rgba(8, 11, 14, 0.86)),
    url("assets/images/geo-grid.png");
}

.bg--geo-large {
  background-image:
    linear-gradient(rgba(8, 11, 14, 0.72), rgba(8, 11, 14, 0.86)),
    url("assets/images/geo-large.png");
}

/* Product Pages */

.product-page {
  background:
    linear-gradient(rgba(7, 9, 11, 0.6), rgba(7, 9, 11, 0.82)),
    url("assets/images/slate-rock.jpg") center top / cover fixed no-repeat;
}

.product-main {
  position: relative;
}

.product-main::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 9, 11, 0.08) 0%, rgba(7, 9, 11, 0.38) 58%, rgba(7, 9, 11, 0.74) 100%);
}

.product-hero,
.product-band,
.product-section {
  position: relative;
  z-index: 1;
}

.product-hero {
  min-height: 100svh;
}

.product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 26%, rgba(30, 169, 217, 0.15), transparent 34%),
    radial-gradient(circle at 78% 18%, rgba(184, 200, 27, 0.14), transparent 24%);
  pointer-events: none;
}

.product-hero__shell {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

.product-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.82fr);
  gap: 28px;
  width: 100%;
  align-items: end;
}

.product-hero__layout--single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 880px;
}

.product-intro,
.product-buy,
.product-copy-card,
.product-side-card,
.product-feature-card,
.product-feature-detail,
.product-step-card,
.product-price-card,
.product-strip {
  background: transparent;
  backdrop-filter: none;
}

.product-intro {
  padding: 44px 44px 42px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(10, 14, 16, 0.42);
  backdrop-filter: blur(6px);
}

.product-buy {
  padding: 30px 28px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(10, 14, 16, 0.58);
  backdrop-filter: blur(8px);
}

.product-buy__title {
  margin-bottom: 14px;
  font-size: clamp(1.95rem, 3.2vw, 2.85rem);
}

.product-page .eyebrow {
  color: var(--accent);
}

.product-page .product-intro h1,
.product-page .product-buy__title {
  color: var(--accent-bright);
}

.product-buy__copy,
.product-buy__note,
.product-note {
  color: var(--muted);
}

.product-hero-note {
  max-width: 42rem;
  margin-bottom: 22px;
  color: rgba(241, 243, 244, 0.88);
  font-size: 1.03rem;
  line-height: 1.65;
}

.product-buy__copy {
  margin-bottom: 22px;
  font-size: 1.03rem;
  line-height: 1.65;
}

.product-buy__note {
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.65;
}

.product-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.product-tag-row p {
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: rgba(184, 200, 27, 0.08);
  color: rgba(241, 243, 244, 0.92);
  font-size: 0.94rem;
  font-weight: 600;
}

.price-stack {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.price-row span {
  font-weight: 600;
}

.price-row strong {
  color: var(--accent-bright);
  font-size: 1.22rem;
  font-weight: 700;
}

.product-band {
  padding: 0 0 28px;
}

.product-strip {
  max-width: 920px;
  padding: 24px 28px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(10, 14, 16, 0.34);
  backdrop-filter: blur(6px);
}

.product-strip__title {
  margin-bottom: 8px;
  font-size: 1.14rem;
  font-weight: 600;
}

.product-strip__meta {
  color: var(--muted);
  font-size: 0.98rem;
}

.product-strip__meta + .product-strip__meta {
  margin-top: 8px;
}

.product-section {
  padding: 38px 0;
}

.product-section__intro {
  max-width: 780px;
  margin-bottom: 28px;
}

.product-grid {
  display: grid;
  gap: 20px;
}

.product-grid--summary {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.7fr);
}

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

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

.product-grid--capabilities {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.product-copy-card,
.product-side-card,
.product-feature-detail {
  padding: 32px;
}

.product-copy-card--full {
  max-width: 820px;
}

.product-copy-card,
.product-copy-card--full {
  border-width: 0 0 1px;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.product-side-card--cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-side-card {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(10, 14, 16, 0.3);
  backdrop-filter: blur(4px);
  box-shadow: none;
}

.product-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.product-list li {
  padding-top: 10px;
  border-top: 1px solid var(--line-soft);
}

.product-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.product-feature-card,
.product-step-card,
.product-price-card {
  padding: 24px;
  border-width: 1px 0 0;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.product-grid--features .product-feature-card,
.product-grid--capabilities .product-feature-card {
  background: rgba(255, 255, 255, 0.015);
}

.product-grid--steps .product-step-card {
  background: rgba(255, 255, 255, 0.02);
}

.product-grid--pricing .product-price-card {
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(10, 14, 16, 0.34);
  backdrop-filter: blur(6px);
}

.product-grid--two-cards .product-feature-detail {
  border-width: 1px 0 0;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  background: rgba(255, 255, 255, 0.015);
}

.product-faq {
  display: grid;
  gap: 22px;
  margin-top: 18px;
}

.product-faq h3 {
  margin-bottom: 8px;
}

.product-bullet-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
  padding-left: 22px;
  list-style: disc;
}

.product-bullet-list li {
  color: rgba(241, 243, 244, 0.94);
}

.product-bullet-list li::marker {
  color: var(--accent-bright);
}

.product-bullet-list--steps li {
  display: grid;
  gap: 4px;
}

.product-bullet-list--steps strong {
  color: var(--text);
  font-weight: 600;
}

.product-bullet-list--steps span {
  color: var(--muted);
}

.product-page .button-link:hover,
.product-page .button-link:focus-visible {
  border-color: rgba(184, 200, 27, 0.55);
  color: var(--accent);
}

.product-page .pricing-cap {
  color: var(--accent-bright);
}

.product-page .step-number,
.product-page .inline-link,
.product-page .product-strip__title a {
  color: var(--accent);
}

.teamfonts-showcase-section {
  padding-top: 12px;
}

.teamfonts-showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  align-items: start;
}

.teamfonts-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(10, 14, 16, 0.34);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.teamfonts-shot img {
  width: 100%;
  height: auto;
  display: block;
}

.teamfonts-shot--hero {
  grid-row: span 2;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: var(--bg-deep);
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
}

.footer-bar p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Responsive */

@media (max-width: 980px) {
  .purchase-hero,
  .purchase-summary,
  .card-grid--three {
    grid-template-columns: 1fr;
  }

  .product-hero__layout,
  .product-grid--summary,
  .product-grid--capabilities,
  .teamfonts-showcase-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .section-panel {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-submenu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--line);
    background: rgba(10, 14, 16, 0.96);
    backdrop-filter: blur(16px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-item,
  .nav-item__row {
    width: 100%;
  }

  .nav-item--products::after {
    display: none;
  }

  .nav-item__row {
    justify-content: space-between;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    width: 100%;
    margin-top: 10px;
    padding: 0 0 0 14px;
    border: 0;
    background: transparent;
    backdrop-filter: none;
    opacity: 0;
    visibility: visible;
    pointer-events: none;
    transform: none;
    max-height: 0;
    overflow: hidden;
  }

  .nav-item--products.is-open .nav-submenu {
    opacity: 1;
    pointer-events: auto;
    max-height: 220px;
  }

  .nav-submenu a {
    color: rgba(241, 243, 244, 0.78);
  }

  .card-grid--products,
  .card-grid--two,
  .card-grid--three,
  .chip-grid {
    grid-template-columns: 1fr;
  }

  .product-grid--features,
  .product-grid--steps,
  .product-grid--pricing,
  .product-grid--two-cards {
    grid-template-columns: 1fr;
  }

  .pricing-cta {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 640px) {
  .shell {
    width: min(100% - 32px, 1180px);
  }

  .header-bar {
    min-height: auto;
    padding: 20px 0;
  }

  .site-brand {
    font-size: 1.65rem;
  }

  .hero-shell {
    padding: 116px 0 72px;
  }

  .section {
    padding: 76px 0;
  }

  .hero-panel,
  .section-panel,
  .strip-panel,
  .purchase-card,
  .buyer-fit-card,
  .pricing-cta,
  .product-intro,
  .product-buy,
  .product-copy-card,
  .product-side-card,
  .product-feature-card,
  .product-feature-detail,
  .product-step-card,
  .product-price-card,
  .product-strip,
  .info-card,
  .step-card,
  .pricing-card,
  .faq-card {
    padding: 24px;
  }

  .product-hero__shell {
    padding: 116px 0 64px;
  }

  .teamfonts-shot {
    border-radius: 16px;
  }

  .product-media {
    min-height: 240px;
    padding: 20px;
  }

  .lead {
    font-size: 1.08rem;
  }

  .support-copy,
  .section-copy,
  .waitlist-note,
  .strip-copy,
  .strip-meta,
  .pricing-note,
  .chip,
  .detail-row {
    font-size: 1rem;
  }

  .launch-note {
    font-size: 1.34rem;
  }

  .detail-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
