:root {
  --night: #0c0c0d;
  --night-2: #141416;
  --surface: #171719;
  --surface-2: #1e1e21;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f4f1ea;
  --mute: #9a968c;
  --accent: #f4f1ea;
  --accent-ink: #0c0c0d;
  --brand: #6ee7d4;
  --brand-2: #8bd5f0;
  --ink: #161615;
  --paper: #f3f1eb;
  --paper-2: #e8e4db;
  --card: #fffcf7;
  --line-soft: rgba(22, 22, 21, 0.1);
  --mute-ink: #6e6b64;
  --radius: 14px;
  --header: 80px;
  --hero: 520px;
  --hero-visual-h: 300px;
  --max: 1180px;
  --font: "Instrument Sans", system-ui, sans-serif;
  --display: "Instrument Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  min-height: 100%;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 80;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 8px 12px;
  font-weight: 600;
}

.skip:focus {
  top: 12px;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  display: flex;
  align-items: center;
  border-bottom: 0;
  background: var(--night);
  color: var(--text);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand img {
  height: 38px;
  width: 38px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0;
}

.brand-name {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.04em;
  font-size: 1.08rem;
  line-height: 1;
  margin-right: 8px;
}

.brand-since {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mute);
  line-height: 1;
}

.brand-since::before {
  content: "|";
  margin-right: 8px;
  color: rgba(154, 150, 140, 0.55);
  font-weight: 400;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  color: var(--mute);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav a:hover,
.nav a.is-active {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.btn-primary:hover {
  background: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--text);
  background: var(--night);
}

.slides {
  position: relative;
  z-index: 1;
  height: var(--hero);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.slide-grid {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 36px;
  align-items: center;
  padding: 18px 0 72px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mute);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.kicker::before {
  content: "";
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
}

.hero h1,
.hero .h1 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.028em;
  font-weight: 600;
  margin: 0 0 14px;
  max-width: 14ch;
}

.hero-heading-wide {
  max-width: 16ch;
}

.slide h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.8vw, 2.45rem);
  line-height: 1.14;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin: 0 0 12px;
}

.product-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.product-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.product-logo-lg {
  width: 48px;
  height: 48px;
}

.slide-tagline {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--text);
  max-width: 28rem;
}

.hero-visual-media {
  padding: 0;
  background: #0a0a0b;
}

.hero-shot {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-shot-fit {
  object-fit: contain;
  object-position: center;
  padding: 8px;
  box-sizing: border-box;
  background: #0a0a0b;
}

.hero .lede {
  color: var(--mute);
  font-size: 0.98rem;
  line-height: 1.65;
  font-weight: 400;
  max-width: 34rem;
  margin: 0 0 24px;
}

.lede {
  color: var(--mute);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 38rem;
  margin: 0 0 24px;
}

.slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero .btn {
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 555px;
  height: var(--hero-visual-h);
  min-height: var(--hero-visual-h);
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(110, 231, 212, 0.1), transparent 48%),
    radial-gradient(90% 80% at 0% 100%, rgba(139, 213, 240, 0.07), transparent 46%),
    var(--surface);
  overflow: hidden;
}

.hero-visual img {
  width: 120px;
  height: 120px;
  margin: 0;
}

.hero-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  margin: 0;
  color: var(--mute);
  font-size: 0.82rem;
  text-align: center;
  z-index: 2;
}

.company-nodes {
  position: relative;
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 0;
  padding: 28px 24px 52px;
}

.company-nodes svg {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  width: min(100%, 300px);
  height: auto;
  margin: 0;
}

.panel {
  position: absolute;
  border: 1px solid var(--line);
  background: rgba(17, 22, 26, 0.9);
  border-radius: 12px;
  padding: 14px 16px;
}

.panel-a {
  top: 36px;
  left: 28px;
  width: 58%;
}

.panel-b {
  top: 148px;
  right: 24px;
  width: 54%;
}

.panel-c {
  bottom: 78px;
  left: 40px;
  width: 62%;
}

.panel strong {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 6px;
}

.panel span {
  color: var(--mute);
  font-size: 0.8rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  height: 100%;
  padding: 22px 22px 48px;
  align-content: center;
}

.photo-grid i {
  display: block;
  aspect-ratio: 1;
  border-radius: 10px;
  background: #1c272c;
  border: 1px solid var(--line);
}

.photo-grid i.dup {
  outline: 1px solid var(--brand);
  outline-offset: 2px;
  background: linear-gradient(135deg, #1a2220, #1a2024);
}

.cloud-nodes {
  position: relative;
  height: 100%;
  padding: 24px 24px 48px;
  display: grid;
  place-items: center;
}

.cloud-nodes svg {
  width: min(100%, 320px);
  height: auto;
  max-height: 220px;
}

.company-logo {
  position: relative;
  z-index: 1;
  width: 64px !important;
  height: 64px !important;
  margin: 0 !important;
  object-fit: contain;
}

.hero-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  z-index: 3;
}

.hero-controls-inner {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 36px;
  height: 4px;
  border: 0;
  padding: 0;
  border-radius: 99px;
  background: #2a373c;
  cursor: pointer;
}

.dot.is-active {
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
}

.slide-meta {
  color: var(--mute);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-arrows {
  display: flex;
  gap: 8px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.icon-btn:hover {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--text);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--night);
  color: var(--text);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, border-color 0.15s ease, background 0.15s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: var(--night-2);
}

@media (max-width: 980px) {
  .back-to-top {
    right: 14px;
    bottom: 14px;
  }
}

.trust {
  border-bottom: 1px solid var(--line-soft);
  background: transparent;
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  padding: 14px 0;
  align-items: center;
}

.trust-item-link {
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  transition: background 0.15s ease;
}

.trust-item-link:hover {
  background: rgba(12, 12, 13, 0.04);
}

.trust-item {
  padding: 6px 10px;
}

.trust-item-press {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  transition: background 0.15s ease;
}

.trust-item-press:hover {
  background: rgba(12, 12, 13, 0.04);
}

.trust-press-logo {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

.trust-press-logo-dzone {
  height: 22px;
  max-width: 96px;
  border-radius: 4px;
}

.trust-press-logo-altbuzz {
  height: 28px;
  width: 28px;
  border-radius: 50%;
}

.trust-item-press span {
  color: var(--mute);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.25;
}

.trust-item strong {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.trust-item span {
  color: var(--mute);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--mute);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 88px 0;
}

.sheet {
  color: var(--ink);
  background:
    radial-gradient(800px 280px at 50% 0%, rgba(110, 231, 212, 0.08), transparent 55%),
    var(--paper);
}

.sheet .section-kicker,
.sheet .trust-item span,
.sheet .group h3,
.sheet .card p,
.sheet .why-grid p,
.sheet .review p,
.sheet .review .src {
  color: var(--mute-ink);
}

.sheet .chip {
  border-color: var(--line-soft);
  color: var(--mute-ink);
  background: #fff;
}

.sheet .chip.is-active,
.sheet .chip:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.sheet .card,
.sheet .why-grid article,
.sheet .review {
  background: var(--card);
  border: 1px solid var(--line-soft);
}

.sheet .card.featured {
  background: var(--card);
}

.sheet .mark {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line-soft);
}

.sheet .mark-logo {
  background: #fff;
}

.sheet .badge {
  color: var(--mute-ink);
  border-color: var(--line-soft);
}

.sheet .card-link {
  color: var(--ink);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}

.section h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.04em;
  margin: 8px 0 0;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.chip {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--mute);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.86rem;
}

.chip:hover,
.chip.is-active {
  color: var(--accent-ink);
  background: var(--accent);
  border-color: var(--accent);
}

.group {
  margin-bottom: 42px;
  scroll-margin-top: 100px;
}

.group.is-empty {
  display: none;
}

#products {
  scroll-margin-top: 100px;
}

.group h3 {
  margin: 0 0 14px;
  font-size: 0.95rem;
  color: var(--mute);
  letter-spacing: 0.04em;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 22px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card.is-hidden {
  display: none;
}

.card.is-target {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

[id^="product-"] {
  scroll-margin-top: 100px;
}

.card.featured {
  background: var(--card);
  box-shadow: inset 3px 0 0 var(--brand);
}

.card:hover {
  border-color: rgba(22, 22, 21, 0.2);
}

.mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  color: var(--text);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  border: 1px solid var(--line);
}

.mark-logo {
  padding: 0;
  overflow: hidden;
  background: #fff;
}

.mark-logo img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.card-product-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.card-product-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.card-product-title-logo {
  display: block;
}

.card-product-wordmark {
  display: block;
  height: 36px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.card-tagline {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.35;
  color: var(--ink);
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.card-actions .card-link {
  font-size: 0.86rem;
}

.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  border-radius: 8px;
  background: #000;
  color: #fff;
  border: 1px solid #3c4043;
  text-decoration: none;
  line-height: 1.05;
  transition: background 0.15s ease, transform 0.15s ease;
}

.btn-play:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
}

.btn-play svg {
  flex-shrink: 0;
}

.btn-play span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn-play small {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
}

.btn-play strong {
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  color: var(--mute);
  font-size: 0.94rem;
  flex: 1;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--mute);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 8px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.86rem;
}

.icon-link {
  flex-shrink: 0;
  opacity: 0.9;
}

.why-grid,
.reviews,
.cta-box {
  display: grid;
  gap: 14px;
}

.why-grid {
  grid-template-columns: repeat(3, 1fr);
}

.why-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.why-grid h3 {
  margin: 0 0 8px;
  font-family: var(--display);
}

.why-grid p,
.review p {
  margin: 0;
  color: var(--mute);
}

.reviews-more {
  margin: 28px 0 0;
  color: var(--mute);
  font-size: 0.94rem;
}

.reviews-more a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.review .src a {
  color: inherit;
  text-decoration: none;
}

.review .src a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reviews {
  grid-template-columns: repeat(3, 1fr);
}

.review {
  padding: 24px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--card);
}

.review .src {
  margin-top: 16px;
  font-size: 0.72rem;
  color: var(--mute);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cta-box {
  grid-template-columns: 1.5fr 0.8fr;
  align-items: center;
  padding: 40px;
  border-radius: 22px;
  border: 0;
  color: var(--text);
  background:
    radial-gradient(70% 90% at 100% 0%, rgba(110, 231, 212, 0.12), transparent 42%),
    var(--night);
}

.cta-box h2 {
  margin: 0 0 8px;
}

.cta-box p {
  margin: 0;
  color: var(--mute);
}

.cta-box .btn-ghost {
  color: var(--text);
  border-color: var(--line);
}

.cta-box .btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.cta-box .btn-ghost {
  color: var(--text);
  border-color: var(--line);
}

.cta-box .btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  padding: 48px 0 28px;
  background: var(--night);
  color: var(--text);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(200px, 1.35fr) repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 28px;
}

.site-footer h2 {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 12px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin: 0 0 8px;
}

.site-footer a {
  color: var(--text);
  font-size: 0.92rem;
}

.site-footer a:hover {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--mute);
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.footer-social a:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.legal {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  color: var(--mute);
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.page-inner .kicker,
.page .lede,
.page-inner label span {
  color: var(--mute-ink);
}

.page {
  padding: 72px 0 96px;
}

.page h1 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0 0 14px;
}

.legal-page section {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
}

.legal-page h2 {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.legal-page h3 {
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 16px 0 8px;
  color: var(--ink);
}

.legal-page p {
  margin: 0 0 12px;
  color: var(--mute-ink);
  max-width: 46rem;
  line-height: 1.65;
}

.legal-page ul {
  margin: 0 0 12px;
  padding-left: 1.2rem;
  max-width: 46rem;
  color: var(--mute-ink);
}

.legal-page li {
  margin: 0 0 8px;
  line-height: 1.55;
}

.legal-page li ul {
  margin-top: 8px;
}

.legal-page a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page a.btn,
.legal-page .btn {
  text-decoration: none;
}

.legal-page a.btn-primary,
.legal-page .btn-primary {
  color: var(--paper);
}

.legal-page a.btn-ghost,
.legal-page .btn-ghost {
  color: var(--ink);
}

.contact-list {
  list-style: none;
  padding-left: 0;
}

.contact-list li {
  margin-bottom: 6px;
}

form {
  display: grid;
  gap: 12px;
  max-width: 520px;
  margin-top: 28px;
}

label span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
  color: var(--mute);
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line-soft);
  background: #fff;
  color: var(--ink);
  border-radius: 10px;
  padding: 12px 14px;
}

@media (max-width: 980px) {
  .slide-grid,
  .trust-inner,
  .cards,
  .why-grid,
  .reviews,
  .cta-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .slides {
    height: auto;
    min-height: 0;
  }

  .slide {
    position: relative;
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
  }

  .slide.is-active {
    height: auto;
    overflow: visible;
  }

  .slide-grid {
    height: auto;
    padding: 16px 0 80px;
    gap: 20px;
  }

  .hero-visual {
    max-width: none;
    height: 240px;
    min-height: 240px;
    margin-left: 0;
  }

  .nav {
    display: none;
  }

  .nav.is-open {
    display: flex;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--night);
    border-bottom: 1px solid var(--line);
    padding: 8px 20px 16px;
  }

  .nav.is-open a {
    padding: 12px 0;
    width: 100%;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .header-actions .btn {
    display: none;
  }
}

/* Product landing pages */
.product-landing {
  padding-bottom: 0;
}

.product-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
  padding: 28px 0 40px;
  border-bottom: 1px solid var(--line-soft);
}

.product-hero-copy .kicker {
  margin-bottom: 10px;
}

.product-hero-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 12px;
}

.product-hero-title img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.product-hero .lede {
  margin: 0 0 18px;
  max-width: 38rem;
}

.product-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

/* CTAs on cream product pages (not dark hero) */
.product-landing .btn {
  text-decoration: none;
  min-height: 46px;
  padding: 12px 22px;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  box-shadow: none;
}

.product-landing .btn-primary {
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
}

.product-landing .btn-primary:hover {
  background: #2a2a28;
  border-color: #2a2a28;
  color: var(--paper);
}

.product-landing .btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-soft);
}

.product-landing .btn-ghost:hover {
  background: rgba(22, 22, 21, 0.05);
  border-color: rgba(22, 22, 21, 0.22);
  color: var(--ink);
}

.product-landing .cta-box .btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}

.product-landing .cta-box .btn-primary:hover {
  background: #fff;
  border-color: #fff;
  color: var(--accent-ink);
}

.product-landing .cta-box .btn-ghost {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.22);
  background: transparent;
}

.product-landing .cta-box .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text);
}

.product-landing .product-cta .slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.product-hero-visual {
  display: grid;
  place-items: center;
}

.product-hero-visual img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(12, 12, 13, 0.12);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 18px 0 8px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 18px 16px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0;
  color: var(--mute-ink);
  font-size: 0.92rem;
  line-height: 1.55;
}

.steps {
  display: grid;
  gap: 12px;
  margin: 16px 0 8px;
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 14px 16px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--night);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.step h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.step p,
.step ul {
  margin: 0;
  color: var(--mute-ink);
  font-size: 0.92rem;
}

.step ul {
  margin-top: 8px;
  padding-left: 1.1rem;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  max-width: 46rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 14px 16px;
}

.faq-item h3 {
  margin: 0 0 6px;
  font-size: 0.98rem;
  letter-spacing: -0.015em;
}

.faq-item p {
  margin: 0;
  color: var(--mute-ink);
  line-height: 1.6;
}

.product-cta {
  margin: 40px 0 0;
  padding: 28px 0 56px;
}

.benefit-list {
  columns: 2;
  column-gap: 28px;
  max-width: 40rem;
  margin: 12px 0 0;
  padding-left: 1.2rem;
  color: var(--mute-ink);
}

.benefit-list li {
  break-inside: avoid;
  margin: 0 0 8px;
}

@media (max-width: 980px) {
  .product-hero,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .benefit-list {
    columns: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .slide,
  .btn {
    transition: none;
  }
}
