/* Guace site. Static CSS, self-hosted fonts, product-first layout. */

@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./assets/fonts/plex-sans-400.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./assets/fonts/plex-sans-500.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./assets/fonts/plex-sans-600.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./assets/fonts/plex-mono-400.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./assets/fonts/plex-mono-500.woff2") format("woff2");
}

:root {
  --canvas: #f4f6f1;
  --surface: #ffffff;
  --surface-soft: #e9efe8;
  --surface-ink: #17211c;
  --ink: #17211c;
  --ink-muted: #5b6a61;
  --ink-soft: #7f8b83;
  --line: #d6ddd4;
  --line-strong: #aebbae;
  --accent: #1f9d6b;
  --accent-strong: #0c6b4e;
  --accent-soft: rgba(31, 157, 107, 0.14);
  --accent-text: #0a6046;
  --button-text: #ffffff;
  --shadow-soft: 0 18px 44px rgba(25, 40, 33, 0.09);
  --shadow-product: 0 34px 90px rgba(25, 40, 33, 0.22);
  --radius-sm: 4px;
  --radius: 8px;
  --font-sans: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, system-ui, "Helvetica Neue", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --speed: 180ms;
  --ease: cubic-bezier(0.2, 0, 0, 1);
  --bg-canvas: var(--canvas);
  --bg-surface: var(--surface);
  --bg-subtle: var(--surface-soft);
  --fg-primary: var(--ink);
  --fg-secondary: var(--ink-muted);
  --fg-muted: var(--ink-soft);
  --fg-on-accent: var(--button-text);
  --border-hairline: var(--line);
  --border-strong: var(--line-strong);
  --accent-hover: var(--accent-strong);
  --accent-ink: var(--accent-text);
  --accent-subtle: var(--accent-soft);
  --shadow-shot: var(--shadow-product);
  --radius-lg: var(--radius);
  --radius-xl: var(--radius);
  --duration: var(--speed);
  --easing: var(--ease);
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;
  --space-24: 96px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --canvas: #101511;
    --surface: #172019;
    --surface-soft: #1f2b23;
    --surface-ink: #ecf4ed;
    --ink: #ecf4ed;
    --ink-muted: #aebbad;
    --ink-soft: #89968b;
    --line: #2c382f;
    --line-strong: #4a5a4f;
    --accent: #36c48d;
    --accent-strong: #7ce0b5;
    --accent-soft: rgba(54, 196, 141, 0.16);
    --accent-text: #78dcae;
    --button-text: #07120d;
    --shadow-soft: 0 18px 44px rgba(0, 0, 0, 0.24);
    --shadow-product: 0 34px 90px rgba(0, 0, 0, 0.42);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    var(--canvas);
  background-size: 96px 96px;
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: color-mix(in srgb, var(--canvas) 88%, transparent);
}

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

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

.nowrap {
  white-space: nowrap;
}

img,
svg {
  display: block;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

button,
input,
textarea,
select {
  font: inherit;
}

.page {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--canvas) 88%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.topbar-inner {
  width: min(1180px, calc(100vw - 40px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

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

.brand-name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.nav-link {
  padding: 8px 10px;
  border-radius: var(--radius);
  color: var(--ink-muted);
  font-size: 14px;
  transition: color var(--speed) var(--ease), background var(--speed) var(--ease);
}

.nav-link:hover {
  color: var(--ink);
  background: var(--surface-soft);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform var(--speed) var(--ease),
    background var(--speed) var(--ease),
    border-color var(--speed) var(--ease),
    color var(--speed) var(--ease);
}

.button:active {
  transform: translateY(1px);
}

.button-primary {
  background: var(--accent);
  color: var(--button-text);
  box-shadow: 0 12px 30px rgba(31, 157, 107, 0.24);
}

.button-primary:hover {
  background: var(--accent-strong);
}

.button-secondary {
  color: var(--ink);
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  border-color: var(--line-strong);
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: var(--ink-soft);
  background: var(--surface);
}

.button-ghost {
  color: var(--ink);
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  border-color: var(--line-strong);
}

.button-sm {
  min-height: 36px;
  padding: 0 14px;
  font-size: 13px;
}

.dl-menu {
  position: relative;
  display: inline-flex;
}

.dl-caret {
  font-size: 11px;
  opacity: 0.72;
}

.dl-card {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 30;
  min-width: 250px;
  padding: 8px;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--speed) var(--ease), transform var(--speed) var(--ease), visibility var(--speed) var(--ease);
}

.dl-menu--end .dl-card {
  right: 0;
  left: auto;
}

.dl-menu.is-open .dl-card,
.dl-menu:focus-within .dl-card {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dl-card-label {
  padding: 4px 10px 8px;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 11px;
}

.dl-opt {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: var(--radius);
}

.dl-opt:hover {
  background: var(--surface-soft);
}

.dl-opt[hidden] {
  display: none;
}

.dl-chip {
  width: 22px;
  height: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background:
    linear-gradient(var(--accent-soft), var(--accent-soft)),
    var(--surface);
  box-shadow: inset 0 0 0 5px var(--surface);
}

.dl-opt-text {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 1px;
}

.dl-opt-name {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.dl-opt-sub {
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 11px;
}

.hero {
  overflow: hidden;
  min-height: calc(100dvh - 190px);
  padding: 44px 0 52px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 58px;
  align-items: center;
}

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

.kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent-text);
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  font-family: var(--font-mono);
  font-size: 12px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent-text);
  background: color-mix(in srgb, var(--surface) 80%, transparent);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 14ch;
  margin-top: 22px;
  font-size: 68px;
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: 0;
}

.hero-body {
  max-width: 48ch;
  margin-top: 24px;
  color: var(--ink-muted);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px;
  margin-top: 30px;
}

.download-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero-stat {
  position: relative;
  margin-top: 0;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 12px;
  text-align: center;
}

.dl-count {
  color: var(--accent-text);
  font-weight: 500;
}

.hero-stat.has-chart .dl-trigger {
  cursor: default;
  border-bottom: 1px solid var(--line-strong);
}

.dl-chart {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  width: 240px;
  padding: 12px;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition: opacity var(--speed) var(--ease), transform var(--speed) var(--ease);
}

.hero-stat.has-chart:hover .dl-chart,
.hero-stat.has-chart:focus-within .dl-chart {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dl-chart svg {
  width: 100%;
  height: auto;
}

.dl-chart-head,
.dl-chart-foot {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
}

.dl-chart-head {
  margin-bottom: 8px;
}

.dl-chart-foot {
  margin-top: 4px;
}

.product-stage {
  position: relative;
  min-height: 520px;
}

.product-stage::before {
  content: "";
  position: absolute;
  inset: 30px 0 88px 82px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 56%, transparent);
}

.stage-main,
.stage-small,
.feature-shot {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-product);
}

.shot-zoom {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  background: transparent;
  cursor: zoom-in;
}

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

.shot-zoom img {
  transition: transform var(--speed) var(--ease), filter var(--speed) var(--ease);
}

.shot-zoom:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.01);
}

.stage-main {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  transform: translateX(30px);
}

.stage-main img,
.stage-small img,
.feature-shot img {
  width: 100%;
  height: auto;
}

figcaption {
  color: var(--ink-muted);
  background: var(--surface);
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.4;
  padding: 10px 12px;
}

.stage-main figcaption {
  display: none;
}

.stage-small {
  position: absolute;
  z-index: 3;
  width: 272px;
}

.stage-small-a {
  left: 0;
  bottom: 52px;
}

.stage-small-b {
  right: 0;
  bottom: 10px;
}

.section {
  padding: 86px 0;
  border-top: 1px solid var(--line);
}

.section-copy {
  max-width: 620px;
}

.section-copy.narrow {
  max-width: 760px;
}

.section-copy h2,
.band h2,
.blog-cta h2 {
  color: var(--ink);
  font-size: 44px;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0;
}

.section-copy p {
  margin-top: 16px;
  color: var(--ink-muted);
  font-size: 18px;
  line-height: 1.6;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 46px;
}

.workflow-item {
  position: relative;
  padding-top: 28px;
}

.workflow-rule {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--line));
}

.workflow-item h3,
.feature-tile h3 {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0;
}

.workflow-item p,
.feature-tile p {
  margin-top: 12px;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.6;
}

.feature-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 106px;
}

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

.feature-tile,
.feature-shot {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  box-shadow: var(--shadow-soft);
}

.tile-large {
  grid-column: span 4;
}

.tile-dark {
  grid-column: span 2;
  color: #eef8ef;
  background: #17211c;
  border-color: #24352c;
}

.tile-dark h3,
.tile-dark p {
  color: #eef8ef;
}

.tile-dark p {
  opacity: 0.76;
}

.feature-shot {
  grid-column: span 3;
  padding: 0;
}

.feature-shot figcaption {
  min-height: 50px;
}

.shot-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 34px;
  background: color-mix(in srgb, #07120d 72%, transparent);
}

.shot-lightbox[hidden] {
  display: none;
}

.lightbox-frame {
  width: min(96vw, 1420px);
  max-height: calc(100dvh - 92px);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.4);
}

.lightbox-frame img {
  width: 100%;
  max-height: calc(100dvh - 148px);
  object-fit: contain;
  background: #f8faf7;
}

.lightbox-frame figcaption {
  color: var(--ink);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 81;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid color-mix(in srgb, var(--surface) 28%, transparent);
  border-radius: 999px;
  color: #f5fbf7;
  background: color-mix(in srgb, #07120d 76%, transparent);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

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

.feature-tile:not(.tile-large):not(.tile-dark) {
  grid-column: span 3;
}

.tile-meter {
  background:
    linear-gradient(135deg, var(--accent-soft), transparent 56%),
    var(--surface);
}

.meter {
  display: block;
  width: 100%;
  height: 8px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--surface-soft);
}

.meter span {
  display: block;
  width: 72%;
  height: 100%;
  background: var(--accent);
}

.providers-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.providers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.provider {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink-muted);
  transition: transform var(--speed) var(--ease), border-color var(--speed) var(--ease), color var(--speed) var(--ease);
}

.provider:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  color: var(--accent-text);
}

.provider-name {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.control-panel {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 56px;
  align-items: start;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, var(--accent-soft), transparent 40%),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.control-copy h2 {
  font-size: 44px;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0;
}

.control-copy p {
  margin-top: 16px;
  color: var(--ink-muted);
  font-size: 18px;
}

.control-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.control-list li {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.6;
}

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

.control-list b {
  color: var(--ink);
  font-weight: 600;
}

.footer {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 62px 0 46px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}

.footer-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.footer-name {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

.footer-nav a {
  color: var(--ink-muted);
  font-size: 15px;
  transition: color var(--speed) var(--ease);
}

.footer-nav a:hover,
.footer-copy a:hover {
  color: var(--accent-text);
}

.footer-copy {
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 12px;
}

.footer-copy a {
  color: var(--ink-muted);
}

.blog-page {
  padding: 64px 0 0;
}

.blog-hero {
  max-width: 760px;
  padding: 48px 0 64px;
}

.blog-hero h1 {
  margin-top: 16px;
  max-width: 13ch;
  font-size: 58px;
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: 0;
}

.blog-hero p:last-child {
  margin-top: 24px;
  max-width: 62ch;
  color: var(--ink-muted);
  font-size: 18px;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 32px 0 64px;
  border-top: 1px solid var(--line);
}

.blog-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: border-color var(--speed) var(--ease), transform var(--speed) var(--ease);
}

.blog-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.blog-card-kicker,
.blog-card-meta {
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 11px;
}

.blog-card-kicker {
  margin-bottom: 24px;
}

.blog-card-meta {
  margin-top: auto;
  padding-top: 24px;
}

.blog-card h2 {
  font-size: 28px;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: 0;
}

.blog-card p:not(.blog-card-kicker):not(.blog-card-meta) {
  margin-top: 16px;
  color: var(--ink-muted);
  font-size: 15px;
}

.blog-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .stage-main,
  .stage-small,
  .workflow-item,
  .feature-tile,
  .feature-shot,
  .provider,
  .control-panel {
    animation: rise 560ms var(--ease) both;
  }

  .stage-main {
    animation-delay: 80ms;
  }

  .stage-small,
  .workflow-item:nth-child(2),
  .feature-shot {
    animation-delay: 140ms;
  }

  .workflow-item:nth-child(3),
  .tile-meter,
  .control-panel {
    animation-delay: 220ms;
  }

  @keyframes rise {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 1040px) {
  .nav-feedback,
  .nav-link[href="./blog/"] {
    display: none;
  }

  .hero-grid,
  .feature-layout,
  .providers-layout,
  .control-panel {
    grid-template-columns: 1fr;
  }

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

  .hero h1 {
    max-width: 14ch;
    font-size: 60px;
  }

  .product-stage {
    min-height: 480px;
  }

  .stage-main {
    transform: none;
  }

  .sticky-copy {
    position: static;
  }

  .providers {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .blog-card {
    min-height: 0;
  }

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

@media (max-width: 760px) {
  .page,
  .topbar-inner,
  .footer {
    width: min(100vw - 28px, 1180px);
  }

  .topbar-inner {
    min-height: 62px;
  }

  .nav .nav-link {
    display: none;
  }

  .hero {
    min-height: 0;
    padding: 30px 0 42px;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero h1 {
    font-size: 43px;
    line-height: 1.02;
  }

  .hero-body {
    font-size: 17px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions .button,
  .hero-actions .download-stack,
  .hero-actions .dl-menu,
  .hero-actions .dl-menu .button {
    width: 100%;
  }

  .dl-card {
    width: min(290px, calc(100vw - 28px));
  }

  .hero-stat {
    display: none;
  }

  .product-stage {
    min-height: 0;
  }

  .product-stage::before,
  .stage-small {
    display: none;
  }

  .stage-main {
    width: 100%;
  }

  .stage-main img {
    height: 172px;
    object-fit: cover;
    object-position: top left;
  }

  .shot-lightbox {
    padding: 14px;
  }

  .lightbox-frame {
    width: calc(100vw - 28px);
    max-height: calc(100dvh - 82px);
  }

  .lightbox-frame img {
    max-height: calc(100dvh - 138px);
  }

  .section {
    padding: 58px 0;
  }

  .section-copy h2,
  .control-copy h2 {
    font-size: 34px;
  }

  .section-copy p,
  .control-copy p {
    font-size: 16px;
  }

  .workflow,
  .providers {
    grid-template-columns: 1fr;
  }

  .feature-bento {
    grid-template-columns: 1fr;
  }

  .tile-large,
  .tile-dark,
  .feature-shot,
  .feature-tile:not(.tile-large):not(.tile-dark) {
    grid-column: auto;
  }

  .control-panel {
    padding: 24px;
  }

  .provider {
    min-height: 126px;
  }

  .footer {
    padding-top: 46px;
  }

  .blog-page {
    padding-top: 32px;
  }

  .blog-hero {
    padding: 32px 0 48px;
  }

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

  .blog-cta {
    padding: 24px;
  }
}

@media (max-width: 430px) {
  .brand-name {
    display: none;
  }

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

  .button {
    min-height: 46px;
  }

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