:root {
  color-scheme: dark;

  /* Product-matched canvas / surface */
  --canvas: #0a1110;
  --canvas-deep: #0e1514;
  --surface: #141c1b;
  --surface-raised: #1a2422;

  /* Text */
  --ink: #f4f4f6;
  --ink-soft: #d7d8df;
  --ink-card: #0d1211;
  --muted: #99a39f;

  /* Lines (product hairline) */
  --hairline: #283533;

  /* Site accents: privacy-signal cyan */
  --accent: #7dd3c7;
  --accent-strong: #54b6aa;
  --accent-soft: rgb(125 211 199 / 16%);
  --acid: var(--accent);
  --signal: var(--accent);
  --cyan: #7dd3c7;
  --danger: #ff6b61;
  --button-ink: #06100f;

  /* Status dots */
  --dot-live: #88e7bb;
  --dot-beta: #d9ad63;
  --dot-info: var(--accent);

  /* Pastel chips (tag/badge fills only — never section bg) */
  --pale-green-bg: #edf3ec;
  --pale-green-fg: #346538;
  --pale-blue-bg: #e1f3fe;
  --pale-blue-fg: #1f6c9f;
  --pale-red-bg: #fdebec;
  --pale-red-fg: #9f2f2d;
  --pale-yellow-bg: #fbf3db;
  --pale-yellow-fg: #956400;

  /* Geometry */
  --radius: 14px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow-hover: 0 12px 36px rgb(0 0 0 / 24%);
  --shadow-screen: 0 24px 100px rgb(0 0 0 / 42%);

  /* Product typography */
  --display: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  /* Backward-compat aliases */
  --paper: var(--canvas);
  --paper-deep: var(--canvas-deep);
  --white: var(--ink);
  --line: var(--hairline);
  --ink-muted: var(--muted);
  --blue: var(--accent);
  --coral: var(--dot-beta);
  --mint: var(--dot-live);
  --shadow: var(--shadow-screen);

  font-family: var(--sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at center, rgb(255 255 255 / 7%) 1.1px, transparent 1.7px) 0 0 / 28px 28px,
    var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

main section[id] {
  scroll-margin-top: 96px;
}

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

.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  width: auto;
  height: auto;
  clip-path: none;
  border-radius: var(--radius);
  background: var(--acid);
  color: var(--button-ink);
  padding: 10px 14px;
  font-weight: 800;
  white-space: normal;
}

/* ---------------------------------------------------------- *
 * Layout shell                                                *
 * Sections only provide vertical band styling; horizontal     *
 * constraint and padding lives on .section-shell so every     *
 * section honours the same content rhythm.                    *
 * ---------------------------------------------------------- */

.section-shell {
  width: 100%;
  max-width: 1292px; /* 1180 max content + 2 × 56 padding */
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 56px);
}

.site-header {
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: 56px;
  transform: translateX(-50%);
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: var(--radius-pill);
  background: rgb(9 16 15 / 78%);
  padding: 7px 8px 7px 14px;
  color: var(--ink);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-name {
  font-family: var(--sans);
  font-size: 17px;
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1;
}

.brand-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  background: var(--acid);
  color: var(--button-ink);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 28px);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
}

.nav-links a,
.footer-links a {
  text-decoration: none;
}

.nav-links a {
  color: rgb(255 255 255 / 82%);
  transition: color 160ms ease;
}

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

.header-download {
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--button-ink);
  padding: 9px 16px;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  touch-action: manipulation;
  transition:
    background-color 160ms ease,
    transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.header-download:hover {
  background: var(--accent);
  color: var(--button-ink);
}

.header-download:active {
  transform: scale(0.98);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  justify-self: end;
}

.language-menu {
  position: relative;
  z-index: 12;
}

.language-menu summary {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: var(--radius-pill);
  background: rgb(255 255 255 / 7%);
  padding: 8px 12px;
  color: rgb(255 255 255 / 82%);
  cursor: pointer;
  list-style: none;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1;
  touch-action: manipulation;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu summary::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.72;
}

.language-menu[open] summary,
.language-menu summary:hover {
  border-color: rgb(255 255 255 / 24%);
  background: rgb(255 255 255 / 12%);
  color: var(--ink);
}

.language-label {
  color: rgb(255 255 255 / 52%);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-menu summary strong {
  font-weight: 750;
}

.language-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  width: min(250px, calc(100vw - 32px));
  max-height: min(460px, calc(100vh - 110px));
  overflow: auto;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 18px;
  background: rgb(10 17 16 / 88%);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 8%) inset,
    0 24px 80px rgb(0 0 0 / 42%);
  padding: 8px;
  backdrop-filter: saturate(150%) blur(22px);
  -webkit-backdrop-filter: saturate(150%) blur(22px);
}

.language-menu-panel a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: baseline;
  border-radius: 12px;
  padding: 10px 12px;
  color: rgb(255 255 255 / 82%);
  text-decoration: none;
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.language-menu-panel a:hover,
.language-menu-panel a[aria-current="page"] {
  background: rgb(125 211 199 / 13%);
  color: var(--ink);
}

.language-menu-panel a span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 750;
}

.language-menu-panel a small {
  color: rgb(255 255 255 / 46%);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
}

/* ---------------------------------------------------------- *
 * Hero — message first, demo immediately after                *
 * ---------------------------------------------------------- */

.hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-height: auto;
  padding-block: clamp(94px, 10svh, 118px) 32px;
  background:
    radial-gradient(circle at center, rgb(255 255 255 / 7%) 1.1px, transparent 1.7px) 0 0 / 28px 28px,
    var(--canvas);
  color: var(--ink);
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.6vw, 32px);
  align-items: flex-start;
}

.hero-copy {
  width: min(100%, 1080px);
  align-self: center;
}

.hero-statement,
.hero-support {
  min-width: 0;
}

.hero-statement {
  width: 100%;
}

.eyebrow,
.section-kicker,
.demo-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: var(--radius-pill);
  background: var(--surface);
  padding: 5px 11px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  align-self: flex-start;
}

.eyebrow .eyebrow-dot,
.section-kicker .eyebrow-dot,
.demo-label .eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--dot-live);
}

.eyebrow-dot--beta {
  background: var(--dot-beta) !important;
}

.eyebrow-dot--info {
  background: var(--dot-info) !important;
}

/* Eyebrows on dark sections */
.hero .eyebrow,
.trust-section .section-kicker,
.product-section .section-kicker {
  background: rgb(255 255 255 / 6%);
  border-color: rgb(255 255 255 / 20%);
  color: rgb(255 255 255 / 80%);
}

.hero .eyebrow .eyebrow-dot {
  background: var(--dot-beta);
}

.trust-section .section-kicker .eyebrow-dot {
  background: var(--signal);
}

.hero h1 {
  margin: 0;
  max-width: 1080px;
  font-family: var(--display);
  font-size: 70px;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 em {
  font-style: normal;
  color: var(--signal);
}

.hero-lede {
  max-width: 720px;
  margin: 0;
  color: rgb(255 255 255 / 80%);
  font-family: var(--sans);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 400;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 0;
}

.hero-note {
  flex-basis: 100%;
  margin: 0;
  color: rgb(255 255 255 / 58%);
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
}

.hero-support {
  width: min(100%, 720px);
  align-self: center;
  display: flex;
  justify-content: center;
}

.hero-fineprint {
  margin: 12px 0 0;
  color: rgb(255 255 255 / 70%);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.hero-film {
  width: min(100%, 720px);
  margin: 0;
  align-self: center;
}

.hero-video-poster,
.hero-film video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 22px;
  background: #050807;
  box-shadow:
    0 1px 0 rgb(255 255 255 / 7%) inset,
    0 34px 130px rgb(0 0 0 / 52%);
  object-fit: cover;
}

.hero-video-poster[hidden],
.hero-film video[hidden] {
  display: none;
}

.hero-video-poster {
  position: relative;
  overflow: hidden;
  padding: 0;
  color: var(--ink);
  cursor: pointer;
}

.hero-video-poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.hero-video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 58%, rgb(0 0 0 / 36%)),
    radial-gradient(circle at center, rgb(255 255 255 / 10%), transparent 28%);
  pointer-events: none;
}

.hero-video-poster:hover img {
  transform: scale(1.012);
}

.hero-video-poster:focus-visible {
  outline: 3px solid rgb(125 211 199 / 68%);
  outline-offset: 4px;
}

.hero-video-play {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  transform: translate(-50%, -50%);
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: var(--radius-pill);
  background: rgb(5 8 7 / 74%);
  padding: 12px 18px;
  box-shadow: 0 18px 60px rgb(0 0 0 / 42%);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.hero-video-play::before {
  content: "";
  width: 0;
  height: 0;
  border-block: 7px solid transparent;
  border-left: 11px solid currentColor;
}

.hero-film figcaption {
  margin: 11px 0 0;
  color: rgb(255 255 255 / 52%);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.hero-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.hero-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-card);
  border: 1px solid rgb(255 255 255 / 14%);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 6%) inset,
    var(--shadow);
}

.hero-frame-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgb(255 255 255 / 8%);
  background: rgb(255 255 255 / 3%);
}

.hero-frame-dots {
  display: inline-block;
  width: 40px;
  height: 10px;
  background-image:
    radial-gradient(circle 4px at 5px 5px, rgb(255 255 255 / 26%) 50%, transparent 51%),
    radial-gradient(circle 4px at 19px 5px, rgb(255 255 255 / 26%) 50%, transparent 51%),
    radial-gradient(circle 4px at 33px 5px, rgb(255 255 255 / 26%) 50%, transparent 51%);
  background-repeat: no-repeat;
}

.hero-frame-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgb(125 211 199 / 42%);
  border-radius: var(--radius-pill);
  background: rgb(125 211 199 / 12%);
  padding: 4px 10px;
  color: var(--signal);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-frame-badge-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--signal);
  box-shadow: 0 0 8px rgb(125 211 199 / 80%);
}

.hero-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.hero-figure figcaption {
  margin: 12px 0 0;
  color: rgb(255 255 255 / 50%);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-align: right;
}

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

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 22px;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
  touch-action: manipulation;
  transition:
    transform 200ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 200ms ease,
    border-color 200ms ease,
    color 200ms ease,
    box-shadow 200ms ease;
}

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

.button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.button-light {
  background: var(--acid);
  color: var(--button-ink);
  border-color: var(--acid);
}

.button-light:hover {
  background: #9ee4da;
  border-color: #9ee4da;
  box-shadow: 0 6px 28px rgb(125 211 199 / 22%);
}

.button-outline {
  border-color: rgb(255 255 255 / 38%);
  background: rgb(255 255 255 / 8%);
  color: var(--white);
}

.button-outline:hover {
  border-color: var(--ink);
  background: rgb(255 255 255 / 14%);
}

.button-dark {
  width: 100%;
  background: var(--accent);
  color: var(--button-ink);
}

.button-dark:hover {
  background: #9ee4da;
}

.button-secondary {
  width: 100%;
  border-color: rgb(255 255 255 / 18%);
  background: transparent;
  color: var(--ink);
}

.button-secondary:hover {
  background: rgb(255 255 255 / 8%);
  color: var(--ink);
}

.button-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: 0;
  padding: 0;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  transition: color 160ms ease;
}

.button-link::after {
  content: "→";
  color: var(--muted);
  margin-left: 2px;
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.button-link:hover {
  color: var(--accent);
}

.button-link:hover::after {
  transform: translateX(2px);
}

.keystroke {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  border: 1px solid var(--hairline);
  border-radius: 5px;
  background: var(--surface);
  padding: 4px 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.hero .keystroke {
  border-color: rgb(255 255 255 / 22%);
  background: rgb(255 255 255 / 8%);
  color: rgb(255 255 255 / 80%);
}

.release-strip {
  display: grid;
  width: 100%;
  max-width: 1080px;
  margin: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgb(255 255 255 / 18%);
}

.release-strip div {
  padding: 16px 16px 0 0;
}

.release-strip dt {
  color: rgb(255 255 255 / 52%);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.release-strip dd {
  margin: 6px 0 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

/* ---------------------------------------------------------- *
 * Section band rhythm                                         *
 * Top 3 sections share dark ink; bottom 5 share canvas.       *
 * Horizontal padding lives on .section-shell.                 *
 * ---------------------------------------------------------- */

.trust-section,
.product-section,
.film-summary {
  background:
    radial-gradient(circle at center, rgb(255 255 255 / 7%) 1.1px, transparent 1.7px) 0 0 / 28px 28px,
    var(--canvas);
  color: var(--ink);
  padding-block: clamp(72px, 10vw, 128px);
}

.film-summary {
  border-block: 1px solid var(--hairline);
  background:
    radial-gradient(circle at center, rgb(255 255 255 / 6%) 1.1px, transparent 1.7px) 0 0 / 28px 28px,
    var(--canvas-deep);
}

.trust-section {
  padding-block: 28px clamp(72px, 10vw, 128px);
}

.pricing-section,
.mac-advisor-section,
.download-band,
.signed-strip,
.channel-section,
.faq-section,
.compare-teaser {
  background:
    radial-gradient(circle at center, rgb(255 255 255 / 7%) 1.1px, transparent 1.7px) 0 0 / 28px 28px,
    var(--canvas);
  padding-block: clamp(64px, 9vw, 118px);
}

.pricing-section {
  border-top: 1px solid var(--hairline);
}

.mac-advisor-section {
  border-top: 1px solid var(--hairline);
  background:
    linear-gradient(180deg, rgb(125 211 199 / 8%), transparent 38%),
    radial-gradient(circle at center, rgb(255 255 255 / 7%) 1.1px, transparent 1.7px) 0 0 / 28px 28px,
    var(--canvas-deep);
}

.compare-teaser {
  border-top: 1px solid var(--hairline);
  background:
    linear-gradient(180deg, rgb(125 211 199 / 7%), transparent 34%),
    radial-gradient(circle at center, rgb(255 255 255 / 7%) 1.1px, transparent 1.7px) 0 0 / 28px 28px,
    var(--canvas-deep);
}

.signed-strip {
  background:
    radial-gradient(circle at center, rgb(255 255 255 / 6%) 1.1px, transparent 1.7px) 0 0 / 28px 28px,
    var(--canvas-deep);
  border-block: 1px solid var(--hairline);
  padding-block: clamp(56px, 7vw, 96px);
}

.channel-section {
  background:
    radial-gradient(circle at center, rgb(255 255 255 / 6%) 1.1px, transparent 1.7px) 0 0 / 28px 28px,
    var(--canvas-deep);
}

.faq-section {
  border-top: 1px solid var(--hairline);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading-left {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.section-heading h2 em,
.hero h1 em,
.doc-page h1 em {
  font-style: normal;
}

.section-heading h2 em {
  color: var(--accent);
}

.product-section .section-heading h2,
.trust-section .section-heading h2 {
  color: var(--ink);
}

.product-section .section-heading h2 em,
.trust-section .section-heading h2 em {
  color: var(--accent);
}

.section-heading p:not(.section-kicker) {
  margin: 20px auto 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  text-wrap: pretty;
}

.section-heading-left p:not(.section-kicker) {
  margin-left: 0;
}

.product-section .section-heading p:not(.section-kicker),
.trust-section .section-heading p:not(.section-kicker) {
  color: rgb(255 255 255 / 70%);
}

/* ---------------------------------------------------------- *
 * Product film                                                *
 * ---------------------------------------------------------- */

.film-summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.film-summary h2 {
  margin: 0;
  max-width: 13ch;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(34px, 4.6vw, 64px);
  font-weight: 880;
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.film-summary p {
  max-width: 62ch;
  margin: 0;
  color: rgb(255 255 255 / 72%);
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.62;
  text-wrap: pretty;
}

.film-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.film-copy h2 {
  margin: 0;
  max-width: 10ch;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(36px, 5.6vw, 76px);
  font-weight: 880;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.film-copy p {
  max-width: 54ch;
  margin: 22px 0 0;
  color: rgb(255 255 255 / 72%);
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.62;
  text-wrap: pretty;
}

.film-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.film-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: var(--radius-pill);
  background: rgb(255 255 255 / 6%);
  padding: 7px 11px;
  color: rgb(255 255 255 / 72%);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.film-frame {
  margin: 0;
}

.film-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 18px;
  background: #050807;
  box-shadow: var(--shadow-screen);
  object-fit: cover;
}

.film-frame figcaption {
  margin: 12px 0 0;
  color: rgb(255 255 255 / 52%);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-align: right;
}

/* ---------------------------------------------------------- *
 * Trust section — Stays / Leaves columns                      *
 * ---------------------------------------------------------- */

.trust-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.trust-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.trust-column {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  border: 1px solid rgb(255 255 255 / 10%);
  background: rgb(255 255 255 / 2%);
  padding: 30px 32px 32px;
}

.trust-column--local {
  background:
    linear-gradient(180deg, rgb(125 211 199 / 10%) 0%, rgb(125 211 199 / 0%) 60%),
    rgb(255 255 255 / 2%);
  border-color: rgb(125 211 199 / 28%);
}

.trust-column-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.trust-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: var(--radius-pill);
  background: rgb(255 255 255 / 6%);
  padding: 5px 11px;
  color: rgb(255 255 255 / 84%);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-tag--local {
  border-color: rgb(125 211 199 / 42%);
  background: rgb(125 211 199 / 12%);
  color: var(--signal);
}

.trust-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgb(255 255 255 / 56%);
}

.trust-dot--local {
  background: var(--signal);
  box-shadow: 0 0 8px rgb(125 211 199 / 72%);
}

.trust-column-lede {
  margin: 0;
  color: rgb(255 255 255 / 64%);
  font-size: 14.5px;
  line-height: 1.55;
}

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

.trust-list li {
  position: relative;
  padding: 14px 0 14px 24px;
  border-top: 1px solid rgb(255 255 255 / 8%);
  color: rgb(255 255 255 / 86%);
  font-family: var(--display);
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.012em;
}

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

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--signal);
}

.trust-list--network li::before {
  background: rgb(255 255 255 / 38%);
}

.trust-list code {
  font-family: var(--mono);
  font-size: 0.84em;
  background: rgb(255 255 255 / 8%);
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 4px;
  padding: 1px 6px;
}

.trust-list-closer {
  color: rgb(255 255 255 / 56%) !important;
  font-style: normal;
}

.trust-list-closer::before {
  display: none !important;
}

.trust-footnote {
  margin: 30px 0 0;
  color: rgb(255 255 255 / 56%);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.trust-footnote a {
  color: var(--ink);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.trust-footnote a:hover {
  color: var(--signal);
}

/* ---------------------------------------------------------- *
 * Embedded product preview                                    *
 * ---------------------------------------------------------- */

.product-shell {
  display: grid;
  gap: clamp(24px, 4vw, 56px);
  grid-template-columns: minmax(300px, 0.54fr) minmax(0, 1.46fr);
  align-items: start;
}

.product-controls {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-self: stretch;
}

.tab-list {
  display: grid;
  gap: 7px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tab-button {
  min-height: 42px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 5%);
  color: rgb(255 255 255 / 76%);
  cursor: pointer;
  font: inherit;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.1;
  touch-action: manipulation;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.tab-button:hover {
  border-color: rgb(125 211 199 / 48%);
  background: rgb(125 211 199 / 6%);
  color: var(--white);
}

.tab-button.is-active {
  border-color: var(--signal);
  background: rgb(125 211 199 / 16%);
  color: var(--ink);
  box-shadow: 0 0 0 1px rgb(125 211 199 / 32%) inset;
}

.tab-button.is-active:hover {
  border-color: var(--signal);
  color: var(--ink);
}

.demo-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.demo-copy .demo-label {
  margin: 0;
  background: rgb(255 255 255 / 8%);
  border-color: rgb(255 255 255 / 22%);
  color: rgb(255 255 255 / 78%);
}

.demo-copy h3 {
  margin: 8px 0 0;
  font-family: var(--sans);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: var(--ink);
  text-wrap: balance;
}

.demo-copy p:not(.demo-label) {
  margin: 4px 0 0;
  color: rgb(255 255 255 / 68%);
  font-size: 14.5px;
  line-height: 1.6;
}

.demo-points {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

.demo-points li {
  position: relative;
  padding: 11px 0 11px 22px;
  border-top: 1px solid rgb(255 255 255 / 8%);
  color: rgb(255 255 255 / 84%);
  font-size: 14.5px;
  line-height: 1.55;
}

.demo-points li:first-child {
  border-top: 0;
}

.demo-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--signal);
  box-shadow: 0 0 6px rgb(125 211 199 / 64%);
}

.demo-mode-caption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin: 4px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid rgb(255 255 255 / 10%);
  color: rgb(255 255 255 / 62%);
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.demo-mode-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: var(--radius-pill);
  background: rgb(255 255 255 / 4%);
  padding: 3px 10px;
  color: rgb(255 255 255 / 80%);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.demo-mode-pill--filled {
  background: rgb(255 255 255 / 14%);
  color: var(--ink);
  border-color: rgb(255 255 255 / 30%);
}

.screen-frame {
  display: flex;
  flex-direction: column;
  margin: 0;
  align-self: stretch;
}

.screen-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-bottom: 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: rgb(255 255 255 / 3%);
}

.screen-chrome-title {
  color: rgb(255 255 255 / 60%);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.screen-chrome-state {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgb(255 255 255 / 60%);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.screen-chrome-state::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--signal);
  box-shadow: 0 0 8px rgb(125 211 199 / 70%);
}

.screen-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  border: 1px solid rgb(255 255 255 / 12%);
  border-top: 0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background: var(--ink-card);
  box-shadow: var(--shadow);
  object-fit: contain;
  object-position: center;
}

.screen-frame figcaption {
  margin-top: 14px;
  color: rgb(255 255 255 / 54%);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}

/* ---------------------------------------------------------- *
 * Pricing                                                     *
 * ---------------------------------------------------------- */

.pricing-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: end;
  gap: 40px;
  margin: 0 0 44px;
  text-align: left;
}

.pricing-head h2 {
  margin: 0;
  max-width: 18ch;
  font-family: var(--display);
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.pricing-head h2 em {
  font-style: normal;
  color: var(--accent);
}

.pricing-head p {
  margin: 0;
  max-width: 40ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.pricing-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--hairline);
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.tier {
  display: flex;
  flex-direction: column;
  padding: 36px 30px 32px;
  position: relative;
}

.tier + .tier {
  border-left: 1px solid var(--hairline);
}

.tier--highlight {
  background: var(--surface-raised);
}

.tier-name {
  margin: 0;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.tier-sub {
  margin: 4px 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  min-height: 38px;
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: clamp(36px, 4.6vw, 52px);
  font-weight: 850;
  letter-spacing: -0.05em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.tier-price small {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}

.tier-price-was {
  font-size: 0.52em;
  font-weight: 600;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  letter-spacing: -0.02em;
}

.tier-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  border-top: 1px solid var(--hairline);
}

.tier-features li {
  padding: 10px 0;
  color: var(--ink);
  font-size: 13.5px;
  line-height: 1.5;
  border-bottom: 1px solid var(--hairline);
}

.tier-features li::before {
  content: "— ";
  color: var(--muted);
}

.tier-features li:last-child {
  border-bottom: 0;
}

.tier .button {
  width: 100%;
  margin-top: auto;
}

.pricing-footnote {
  margin: 22px 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.pricing-footnote a {
  color: var(--ink);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.pricing-footnote a:hover {
  color: var(--accent);
}

.checkout-pending {
  display: none;
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: var(--radius-md);
  background: rgb(255 255 255 / 6%);
}

.checkout-pending:target {
  display: block;
}

.checkout-pending strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}

.checkout-pending p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.checkout-pending a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------------------------------------------------------- *
 * Mac advisor                                                 *
 * ---------------------------------------------------------- */

.mac-advisor-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: stretch;
  gap: clamp(28px, 5vw, 64px);
}

.mac-advisor-tool {
  display: grid;
  grid-template-columns: minmax(240px, 0.86fr) minmax(0, 1.14fr);
  min-width: 0;
  min-height: 420px;
  border: 1px solid rgb(125 211 199 / 34%);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgb(125 211 199 / 13%), transparent 38%),
    rgb(255 255 255 / 4%);
  box-shadow: 0 20px 80px rgb(0 0 0 / 24%);
  overflow: hidden;
}

.mac-guide-advisor .mac-advisor-tool {
  margin-top: 24px;
}

.mac-advisor-control-panel {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 22px;
  border-right: 1px solid rgb(255 255 255 / 11%);
  padding: 28px;
}

.mac-advisor-kicker,
.mac-advisor-result-top span {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mac-advisor-fields {
  display: grid;
  gap: 16px;
}

.mac-advisor-fields label {
  display: grid;
  gap: 8px;
}

.mac-advisor-fields label > span {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.mac-advisor-fields select {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 14px;
  background: rgb(6 16 15 / 74%);
  color: var(--ink);
  padding: 0 42px 0 14px;
  font: inherit;
  font-size: 14px;
  letter-spacing: 0;
  text-overflow: ellipsis;
}

.mac-advisor-fields select:hover {
  border-color: rgb(125 211 199 / 45%);
}

.mac-advisor-fields select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.mac-advisor-noscript {
  margin: auto 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.mac-advisor-result {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 28px;
}

.mac-advisor-result-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.mac-advisor-result-top strong {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgb(125 211 199 / 42%);
  border-radius: var(--radius-pill);
  background: rgb(125 211 199 / 13%);
  color: var(--accent);
  padding: 0 12px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.mac-advisor-result h3 {
  margin: 24px 0 0;
  max-width: 16ch;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.mac-advisor-result p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
}

.mac-advisor-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 26px 0 0;
  border-top: 1px solid rgb(255 255 255 / 11%);
  border-left: 1px solid rgb(255 255 255 / 11%);
}

.mac-advisor-metric {
  min-width: 0;
  border-right: 1px solid rgb(255 255 255 / 11%);
  border-bottom: 1px solid rgb(255 255 255 / 11%);
  padding: 14px;
}

.mac-advisor-metric dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.mac-advisor-metric dd {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.mac-advisor-note {
  min-height: 46px;
}

.mac-advisor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
}

.mac-advisor-actions .button {
  min-width: 168px;
}

.mac-guide-page .doc-lede {
  max-width: 760px;
}

.mac-guide-page h1 {
  overflow-wrap: anywhere;
}

.mac-guide-faq {
  margin-top: 22px;
}

/* ---------------------------------------------------------- *
 * Downloads                                                   *
 * ---------------------------------------------------------- */

.download-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.download-grid[data-layout="single"] {
  grid-template-columns: minmax(0, 1fr);
}

.download-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 22px;
}

.download-card[data-recommended="true"] {
  border-color: var(--accent);
}

.card-topline {
  display: flex;
  min-height: 25px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.recommendation {
  visibility: hidden;
  border: 1px solid var(--accent);
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: var(--button-ink);
  padding: 3px 10px;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.download-card[data-recommended="true"] .recommendation {
  visibility: visible;
}

.download-card h3,
.channel-grid h3 {
  margin: 22px 0 0;
  font-family: var(--display);
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.download-card p,
.channel-grid p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.download-card p {
  margin: 16px 0 0;
}

.download-card .button {
  margin-top: auto;
}

.download-actions {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.download-actions .button {
  margin-top: 0;
}

.download-status {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 46px;
  margin-top: auto;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-pill);
  background: var(--surface-raised);
  padding: 0 16px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}

.download-note {
  min-height: 42px;
  font-size: 13px;
}

/* ---------------------------------------------------------- *
 * Signed strip                                                *
 * ---------------------------------------------------------- */

.signed-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  max-width: 720px;
}

.signed-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: var(--ink);
  text-wrap: balance;
}

.signed-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.signed-cell {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 24px 24px 22px;
}

.signed-cell-label {
  margin: 0 0 12px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signed-cell-value {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.012em;
}

.signed-cell-value code {
  font-family: var(--mono);
  font-size: 0.82em;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 1px 6px;
}

.signed-footnote {
  margin: 24px 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.signed-footnote a {
  color: var(--ink);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.signed-footnote a:hover {
  color: var(--accent);
}

/* ---------------------------------------------------------- *
 * Distribution                                                *
 * ---------------------------------------------------------- */

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

.channel-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 22px;
  min-height: 270px;
}

.channel-number {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--accent);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--accent);
  padding: 3px 11px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.channel-grid article:nth-child(2) .channel-number {
  background: var(--accent);
  color: var(--button-ink);
}

.channel-grid article:nth-child(3) .channel-number {
  border-color: var(--hairline);
  color: var(--muted);
}

.language-section {
  border-block: 1px solid var(--hairline);
}

.locale-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.locale-list a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: var(--radius-pill);
  background: rgb(255 255 255 / 5%);
  padding: 9px 14px;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.locale-list a:hover {
  border-color: rgb(125 211 199 / 42%);
  background: rgb(125 211 199 / 11%);
  transform: translateY(-1px);
}

.language-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.6;
}

/* ---------------------------------------------------------- *
 * FAQ                                                         *
 * ---------------------------------------------------------- */

.faq-shell {
  max-width: 980px;
}

.faq-shell .section-heading {
  margin: 0 0 36px;
  max-width: none;
}

.faq-shell .section-heading p:not(.section-kicker) {
  margin: 20px 0 0;
}

.faq-grid {
  display: grid;
  margin: 0;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--hairline);
  background: var(--surface);
  transition: background-color 160ms ease;
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item summary {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: baseline;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  list-style: none;
  touch-action: manipulation;
  transition:
    color 160ms ease,
    background-color 160ms ease;
}

.faq-item summary:hover {
  background: var(--canvas);
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-index {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}

.faq-question {
  font-family: var(--display);
  font-size: clamp(18px, 1.9vw, 22px);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.3;
  color: var(--ink);
  text-wrap: balance;
}

.faq-toggle {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  color: var(--muted);
  transition:
    transform 200ms cubic-bezier(0.16, 1, 0.3, 1),
    color 160ms ease;
  transform-origin: center;
}

.faq-item:hover .faq-toggle {
  color: var(--ink);
}

.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-answer {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 16px;
  padding: 0 28px 26px;
}

.faq-answer-body {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  max-width: 62ch;
}

.faq-answer-body a {
  color: var(--ink);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.faq-answer-body a:hover {
  color: var(--accent);
}

/* ---------------------------------------------------------- *
 * Doc pages (security, changelog)                             *
 * ---------------------------------------------------------- */

.doc-page {
  padding: clamp(132px, 18svh, 200px) max(20px, calc((100% - 880px) / 2)) clamp(64px, 9vw, 118px);
  background: var(--paper);
  min-height: calc(100svh - 200px);
}

.doc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-pill);
  background: var(--surface);
  padding: 5px 11px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.doc-eyebrow .eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--dot-info);
}

.doc-page h1 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(44px, 6.5vw, 84px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.doc-page h1 em {
  color: var(--accent);
}

.doc-page > p.doc-lede,
.doc-lede {
  margin: 0 0 56px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  max-width: 62ch;
  text-wrap: pretty;
}

.doc-section {
  margin-top: 56px;
  border-top: 1px solid var(--hairline);
  padding-top: 40px;
}

.doc-section:first-of-type {
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
}

.doc-section h2 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.045em;
  text-wrap: balance;
  scroll-margin-top: 96px;
}

.doc-section h2 em {
  font-style: normal;
  color: var(--accent);
}

.doc-meta {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.doc-section p,
.doc-section li {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
}

.doc-section ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.doc-section li {
  padding: 10px 0 10px 22px;
  border-top: 1px solid var(--hairline);
  position: relative;
}

.doc-section li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--muted);
}

.doc-section li:first-child {
  border-top: 0;
}

.doc-section li strong {
  color: var(--ink);
  font-weight: 600;
}

.doc-section a {
  color: var(--ink);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.doc-section a:hover {
  color: var(--accent);
}

.doc-section .button {
  text-decoration: none;
}

.doc-section .button-light {
  color: var(--button-ink);
}

.doc-section code {
  border: 1px solid var(--hairline);
  border-radius: 4px;
  background: var(--canvas-deep);
  padding: 1px 6px;
  font-family: var(--mono);
  font-size: 0.86em;
  font-weight: 500;
}

.release-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 0 0 16px;
}

.release-tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--accent);
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: var(--button-ink);
  padding: 4px 11px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}

.release-status {
  color: var(--pale-green-fg);
  background: var(--pale-green-bg);
  border-radius: var(--radius-pill);
  padding: 4px 11px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.release-status[data-status="alpha"] {
  color: var(--pale-yellow-fg);
  background: var(--pale-yellow-bg);
}

.release-date {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
}

/* ---------------------------------------------------------- *
 * Comparison pages                                            *
 * ---------------------------------------------------------- */

.compare-page {
  min-height: calc(100svh - 200px);
  background:
    linear-gradient(180deg, rgb(125 211 199 / 8%), transparent 360px),
    radial-gradient(circle at center, rgb(255 255 255 / 7%) 1.1px, transparent 1.7px) 0 0 / 28px 28px,
    var(--canvas);
  padding: clamp(132px, 17svh, 190px) max(20px, calc((100% - 1120px) / 2)) clamp(72px, 10vw, 128px);
}

.compare-hero {
  max-width: 940px;
}

.compare-updated {
  margin: 0 0 16px;
  color: rgb(255 255 255 / 54%);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.compare-hero h1 {
  margin: 0 0 20px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(42px, 6.4vw, 84px);
  font-weight: 880;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.compare-hero .doc-lede {
  margin-bottom: clamp(30px, 5vw, 48px);
  max-width: 76ch;
  color: rgb(255 255 255 / 72%);
  font-size: clamp(16px, 1.7vw, 19px);
}

.compare-quick-take {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.compare-quick-take article,
.compare-hub-card,
.compare-choice-card {
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 8px;
  background: rgb(20 28 27 / 72%);
}

.compare-quick-take article {
  min-height: 150px;
  padding: 18px;
}

.compare-quick-take span,
.compare-hub-card span {
  display: block;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.compare-quick-take strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.12;
}

.compare-quick-take p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}

.compare-section {
  margin-top: clamp(54px, 8vw, 88px);
  border-top: 1px solid var(--hairline);
  padding-top: clamp(30px, 5vw, 48px);
}

.compare-section h2 {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 820;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.compare-section h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.15;
}

.compare-section p {
  max-width: 78ch;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.72;
  text-wrap: pretty;
}

.compare-table-wrap {
  overflow-x: auto;
  margin-top: 24px;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: rgb(20 28 27 / 72%);
}

.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
}

.compare-table caption {
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip-path: inset(50%);
  white-space: nowrap;
}

.compare-table th,
.compare-table td {
  width: 33.333%;
  border-top: 1px solid var(--hairline);
  padding: 18px;
  vertical-align: top;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.compare-table thead th {
  border-top: 0;
  background: rgb(255 255 255 / 5%);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.compare-table tbody th {
  color: rgb(255 255 255 / 82%);
  font-weight: 700;
}

.compare-table tbody td:nth-child(2) {
  color: rgb(255 255 255 / 78%);
}

.offline-guide-page .compare-table {
  min-width: 980px;
}

.offline-guide-page .compare-table th,
.offline-guide-page .compare-table td {
  width: 25%;
}

.compare-bullets {
  display: grid;
  gap: 0;
  max-width: 820px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.compare-bullets li {
  position: relative;
  border-top: 1px solid var(--hairline);
  padding: 12px 0 12px 24px;
  color: rgb(255 255 255 / 78%);
  font-size: 14.5px;
  line-height: 1.55;
}

.compare-bullets li:first-child {
  border-top: 0;
}

.compare-bullets li::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 8px rgb(125 211 199 / 54%);
}

.compare-bullets--compact {
  margin-top: 18px;
}

.compare-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.compare-choice-card {
  padding: 22px;
}

.compare-faq-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.compare-source-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.compare-source-list a {
  display: inline-flex;
  max-width: min(100%, 520px);
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: var(--radius-pill);
  background: rgb(255 255 255 / 5%);
  padding: 7px 11px;
  color: rgb(255 255 255 / 76%);
  font-family: var(--mono);
  font-size: 11.5px;
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.compare-source-list a:hover {
  border-color: rgb(125 211 199 / 42%);
  color: var(--ink);
}

.doc-section .compare-source-list li {
  border-top: 0;
  padding: 0;
}

.doc-section .compare-source-list li::before {
  content: none;
}

.compare-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: clamp(56px, 8vw, 92px);
  border-block: 1px solid rgb(125 211 199 / 28%);
  background: rgb(125 211 199 / 7%);
  padding-block: clamp(28px, 5vw, 48px);
}

.compare-cta h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

.compare-cta p {
  max-width: 62ch;
  margin: 14px 0 0;
  color: var(--ink-soft);
}

.compare-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.compare-resource-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid rgb(255 255 255 / 12%);
  padding-top: 18px;
}

.compare-resource-links a {
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: var(--radius-pill);
  background: rgb(255 255 255 / 5%);
  padding: 7px 11px;
  color: rgb(255 255 255 / 74%);
  font-size: 12.5px;
  font-weight: 650;
  text-decoration: none;
}

.compare-resource-links a:hover {
  border-color: rgb(125 211 199 / 42%);
  color: var(--ink);
}

.compare-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(42px, 6vw, 64px);
}

.compare-hub-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 24px;
}

.compare-hub-card h2 {
  margin: 18px 0 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.06;
  letter-spacing: 0;
}

.compare-hub-card p {
  margin: 14px 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.compare-hub-card .button-link {
  margin-top: auto;
}

.compare-teaser-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.compare-teaser-grid a {
  min-height: 142px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 8px;
  background: rgb(20 28 27 / 72%);
  padding: 16px;
  text-decoration: none;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.compare-teaser-grid a:hover {
  border-color: rgb(125 211 199 / 42%);
  background: rgb(125 211 199 / 8%);
  transform: translateY(-2px);
}

.compare-teaser-grid span {
  display: block;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.compare-teaser-grid strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.28;
}

/* ---------------------------------------------------------- *
 * Footer                                                      *
 * ---------------------------------------------------------- */

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  background: var(--canvas);
  color: var(--ink);
  padding: 36px max(20px, calc((100% - 1120px) / 2));
  border-top: 1px solid var(--hairline);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--muted);
}

.footer-meta .footer-brand {
  align-items: center;
}

.footer-meta .brand-name {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--ink);
}

.footer-brand .brand-mark {
  background: var(--acid);
  width: 26px;
  height: 26px;
  font-size: 14px;
}

.site-footer p,
.site-footer .footer-tagline {
  margin: 4px 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 18px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.footer-links a {
  color: var(--muted);
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: var(--ink);
}

/* ---------------------------------------------------------- *
 * Cloud Fast upgrade page                                    *
 * ---------------------------------------------------------- */

.cloud-hero {
  min-height: 88vh;
  padding-block: 124px 72px;
}

.cloud-hero-inner {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.cloud-hero-copy h1 {
  max-width: 650px;
  margin: 18px 0 0;
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1;
  letter-spacing: 0;
}

.cloud-eyebrow {
  border-color: rgb(217 173 99 / 34%);
  background: rgb(217 173 99 / 12%);
  color: #f0c77e;
}

.cloud-screen-stack {
  position: relative;
  padding-top: 72px;
}

.cloud-mode-rail {
  position: absolute;
  top: 0;
  left: clamp(12px, 5vw, 64px);
  z-index: 2;
  display: grid;
  grid-template-columns: auto 64px auto;
  align-items: center;
  gap: 10px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: var(--radius-pill);
  background: rgb(8 14 13 / 82%);
  padding: 9px 12px;
  box-shadow: 0 18px 54px rgb(0 0 0 / 34%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.cloud-mode-chip {
  border-radius: var(--radius-pill);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.cloud-mode-chip--local {
  background: rgb(125 211 199 / 14%);
  color: var(--accent);
}

.cloud-mode-chip--cloud {
  background: rgb(217 173 99 / 18%);
  color: #f0c77e;
}

.cloud-mode-switch {
  position: relative;
  height: 24px;
  border-radius: var(--radius-pill);
  background: rgb(255 255 255 / 10%);
}

.cloud-mode-switch::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #f0c77e;
  box-shadow: 0 0 24px rgb(240 199 126 / 42%);
}

.cloud-product-frame {
  transform: rotate(-1.2deg);
  transform-origin: 50% 60%;
}

.cloud-brief,
.cloud-comparison,
.cloud-flow,
.cloud-checkout {
  padding-block: 86px;
}

.cloud-brief {
  background: linear-gradient(180deg, rgb(255 255 255 / 4%), transparent);
}

.cloud-brief-grid,
.cloud-mode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.cloud-principle,
.cloud-mode-card {
  min-height: 330px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  background: rgb(20 28 27 / 74%);
  padding: clamp(28px, 4vw, 42px);
}

.cloud-principle h2,
.cloud-mode-card h3,
.cloud-checkout-panel h2 {
  margin: 14px 0 0;
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
  letter-spacing: 0;
}

.cloud-principle p,
.cloud-checkout-panel p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 2vw, 21px);
}

.cloud-principle--cloud,
.cloud-mode-card--highlight {
  border-color: rgb(217 173 99 / 34%);
  background:
    linear-gradient(135deg, rgb(217 173 99 / 14%), transparent 42%),
    rgb(20 28 27 / 76%);
}

.cloud-mode-card {
  display: flex;
  flex-direction: column;
}

.cloud-mode-card .tier-features {
  margin-top: 24px;
}

.cloud-mode-card .button {
  width: 100%;
  margin-top: auto;
}

.cloud-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.cloud-steps li {
  min-height: 260px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  background: rgb(10 17 16 / 66%);
  padding: 26px;
}

.cloud-steps span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 14px;
  color: #f0c77e;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
}

.cloud-steps strong {
  display: block;
  margin-top: 26px;
  font-size: 22px;
  line-height: 1.1;
}

.cloud-steps p {
  margin: 12px 0 0;
  color: var(--muted);
}

.cloud-checkout-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  border: 1px solid rgb(217 173 99 / 34%);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgb(217 173 99 / 13%), transparent 52%),
    rgb(20 28 27 / 86%);
  padding: clamp(28px, 5vw, 54px);
}

/* ---------------------------------------------------------- *
 * Responsive                                                  *
 * ---------------------------------------------------------- */

@media (max-width: 980px) {
  .hero-inner {
    gap: 28px;
  }

  .cloud-hero-inner {
    grid-template-columns: 1fr;
  }

  .cloud-hero-figure {
    order: 2;
  }
}

@media (max-width: 880px) {
  .site-header {
    grid-template-columns: auto auto;
    width: min(100% - 24px, 680px);
  }

  .nav-links {
    display: none;
  }

  .header-download {
    justify-self: end;
  }

  .header-actions {
    justify-self: end;
  }

  .hero {
    min-height: 0;
    padding-block: 108px clamp(44px, 8vw, 76px);
  }

  .hero h1 {
    font-size: 56px;
    max-width: none;
  }

  .hero-support {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-note {
    text-align: center;
  }

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

  .release-strip div {
    padding-top: 9px;
  }

  .trust-grid,
  .signed-grid,
  .download-grid,
  .channel-grid,
  .film-grid,
  .film-summary-grid,
  .product-shell,
  .pricing-head,
  .pricing-band,
  .compare-quick-take,
  .compare-choice-grid,
  .compare-cta,
  .compare-hub-grid,
  .mac-advisor-layout,
  .mac-advisor-tool,
  .cloud-brief-grid,
  .cloud-mode-grid,
  .cloud-steps,
  .cloud-checkout-panel {
    grid-template-columns: 1fr;
  }

  .pricing-head {
    gap: 16px;
    align-items: start;
  }

  .tier + .tier {
    border-left: 0;
    border-top: 1px solid var(--hairline);
  }

  .mac-advisor-control-panel {
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 11%);
  }

  .mac-advisor-result h3 {
    max-width: none;
  }

  .download-card {
    min-height: 290px;
  }

  .cloud-hero {
    min-height: 0;
    padding-block: 120px 60px;
  }

  .cloud-hero-copy h1 {
    font-size: clamp(42px, 10vw, 58px);
  }

  .cloud-mode-rail {
    left: 50%;
    transform: translateX(-50%);
  }

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

  .compare-cta-actions {
    justify-content: flex-start;
  }

  .cloud-checkout-panel .button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 10px;
    min-height: 50px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .header-download {
    padding: 9px 12px;
    font-size: 13px;
  }

  .language-label {
    display: none;
  }

  .language-menu summary {
    max-width: 130px;
    padding-inline: 11px;
  }

  .language-menu summary strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-lede {
    margin-top: 0;
  }

  .hero h1 {
    font-size: 44px;
    line-height: 1.04;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    justify-content: stretch;
  }

  .hero-secondary-action {
    display: none;
  }

  .hero-actions .keystroke {
    justify-self: start;
  }

  .button {
    width: 100%;
  }

  .release-strip {
    grid-template-columns: 1fr;
  }

  .pricing-section,
  .mac-advisor-section,
  .download-band,
  .signed-strip,
  .channel-section,
  .faq-section,
  .compare-teaser,
  .film-summary,
  .trust-section,
  .product-section,
  .cloud-brief,
  .cloud-comparison,
  .cloud-flow,
  .cloud-checkout {
    padding-block: 56px;
  }

  .tier {
    padding: 28px 22px 26px;
  }

  .mac-advisor-tool {
    min-height: 0;
    border-radius: 22px;
  }

  .mac-advisor-control-panel,
  .mac-advisor-result {
    padding: 22px;
  }

  .mac-advisor-result-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .mac-advisor-result h3 {
    font-size: 26px;
  }

  .mac-advisor-metrics {
    grid-template-columns: 1fr;
  }

  .mac-advisor-actions {
    display: grid;
  }

  .trust-column {
    padding: 24px 22px 26px;
  }

  .signed-cell {
    padding: 20px;
  }

  .faq-item summary {
    grid-template-columns: 38px 1fr auto;
    padding: 18px;
    gap: 12px;
  }

  .faq-question {
    font-size: 17px;
  }

  .faq-answer {
    grid-template-columns: 38px 1fr;
    padding: 0 18px 18px;
    gap: 12px;
  }

  .faq-toggle {
    font-size: 22px;
  }

  .doc-page {
    padding-top: 112px;
  }

  .mac-guide-page h1 {
    font-size: 38px;
    line-height: 1.05;
    letter-spacing: 0;
  }

  .compare-page {
    padding-top: 112px;
  }

  .compare-hero h1 {
    font-size: clamp(36px, 11vw, 50px);
  }

  .compare-table th,
  .compare-table td {
    padding: 14px;
  }

  .compare-choice-card,
  .compare-hub-card {
    padding: 18px;
  }

  .compare-teaser-grid {
    grid-template-columns: 1fr;
  }

  .compare-cta-actions {
    display: grid;
  }

  .section-heading h2 {
    font-size: clamp(30px, 10vw, 44px);
  }

  .film-copy h2,
  .film-summary h2 {
    max-width: none;
    font-size: clamp(34px, 11vw, 50px);
  }

  .film-meta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .film-frame video,
  .hero-film video {
    border-radius: 14px;
  }

  .film-frame figcaption,
  .hero-film figcaption {
    text-align: left;
  }

  .download-card,
  .channel-grid article,
  .cloud-principle,
  .cloud-mode-card,
  .cloud-steps li {
    padding: 18px;
  }

  .cloud-mode-rail {
    position: relative;
    left: auto;
    grid-template-columns: 1fr 52px 1fr;
    width: 100%;
    transform: none;
  }

  .cloud-screen-stack {
    padding-top: 16px;
  }

  .cloud-product-frame {
    transform: none;
  }

  .tab-list {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }

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

.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 600ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal:target {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
