:root {
  --ink-25: #fbfbfd;
  --ink-50: #f6f7f9;
  --ink-100: #eceef3;
  --ink-200: #dde0e8;
  --ink-300: #c4c8d4;
  --ink-400: #9aa0b0;
  --ink-500: #6e748a;
  --ink-600: #4d5266;
  --ink-700: #353a4c;
  --ink-800: #232636;
  --ink-900: #171927;
  --brand: #ff5950;
  --brand-dark: #c92822;
  --brand-dot: #ff4646;
  --dark: #141f24;
  --dark-elevated: #1b292f;
  --dark-border: #2c3b41;
  --success: #10b981;
  --warning: #f59e0b;
  --info: #3b82f6;
  --font-sans:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;
  --shell: min(1180px, calc(100vw - 48px));
  --shadow: 0 30px 90px rgba(20, 31, 36, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--ink-25);
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
svg {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--dark);
  color: white;
  translate: 0 -160%;
}
.skip-link:focus {
  translate: 0;
}
:focus-visible {
  outline: 3px solid rgba(255, 89, 80, 0.45);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  padding: 18px 0;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease;
}

.site-header.is-scrolled {
  padding: 9px 0;
  background: rgba(251, 251, 253, 0.9);
  box-shadow: 0 1px 0 rgba(20, 31, 36, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
}

.brand-mark,
.dialog-mark {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  background: var(--dark);
  box-shadow: 0 8px 18px rgba(20, 31, 36, 0.13);
}

.brand-mark svg {
  width: 30px;
  height: 30px;
}
.brand-mark path,
.footer-symbol path,
.dialog-mark path {
  fill: none;
  stroke: #f1f3f5;
  stroke-width: 13px;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.brand-mark circle,
.footer-symbol circle,
.dialog-mark circle {
  fill: var(--brand-dot);
}

.brand-copy {
  display: grid;
  min-width: 0;
  line-height: 1.05;
}
.brand-copy strong {
  color: var(--dark);
  font-size: 17px;
  font-weight: 760;
  letter-spacing: -0.035em;
}
.brand-copy span {
  margin-top: 4px;
  color: var(--ink-500);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 650;
}
.primary-nav > a:not(.nav-cta) {
  position: relative;
}
.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: var(--dark);
  content: '';
  scale: 0 1;
  transform-origin: right;
  transition: scale 180ms ease;
}
.primary-nav > a:not(.nav-cta):hover::after {
  scale: 1;
  transform-origin: left;
}
.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--dark);
  color: white;
  transition:
    translate 180ms ease,
    background 180ms ease;
}
.nav-cta:hover {
  background: var(--brand);
  translate: 0 -2px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--dark);
}
.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: white;
  transition:
    rotate 180ms ease,
    translate 180ms ease;
}

.hero {
  position: relative;
  padding: 150px 0 105px;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 12%, rgba(255, 89, 80, 0.11), transparent 25%), var(--ink-25);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 31, 36, 0.037) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 31, 36, 0.037) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-orbit {
  position: absolute;
  top: -330px;
  right: -250px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(20, 31, 36, 0.07);
  border-radius: 50%;
  box-shadow:
    0 0 0 100px rgba(20, 31, 36, 0.018),
    0 0 0 200px rgba(20, 31, 36, 0.012);
}
.hero-orbit span {
  position: absolute;
  bottom: 88px;
  left: 52px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(470px, 1.08fr);
  align-items: center;
  gap: clamp(48px, 6vw, 92px);
}

.hero-copy,
.product-preview {
  min-width: 0;
}
.payoff,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--ink-600);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.payoff > span,
.eyebrow > span {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(255, 89, 80, 0.11);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--dark);
  font-size: clamp(52px, 5.65vw, 80px);
  font-weight: 450;
  letter-spacing: -0.065em;
  line-height: 0.99;
  text-wrap: balance;
}
.hero h1 em {
  color: var(--brand);
  font-style: normal;
  font-weight: 790;
}
.hero-lead {
  max-width: 620px;
  margin: 27px 0 0;
  color: var(--ink-600);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.62;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 6px 7px 6px 23px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 720;
  letter-spacing: -0.01em;
  transition:
    box-shadow 180ms ease,
    translate 180ms ease,
    background 180ms ease;
}
.button--primary {
  background: var(--brand);
  color: white;
  box-shadow: 0 12px 30px rgba(255, 89, 80, 0.22);
}
.button--primary:hover {
  background: #f34b43;
  box-shadow: 0 16px 34px rgba(255, 89, 80, 0.27);
  translate: 0 -2px;
}
.button-arrow {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 16px;
}
.button-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid var(--ink-300);
  font-size: 13px;
  font-weight: 680;
}
.button-link span {
  color: var(--brand);
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 25px 0 0;
  color: var(--ink-500);
  font-size: 11px;
  font-weight: 600;
}
.hero-note i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--brand);
}

.product-preview {
  overflow: hidden;
  border: 1px solid rgba(20, 31, 36, 0.11);
  border-radius: 19px;
  background: white;
  box-shadow: var(--shadow);
}

.preview-bar {
  display: grid;
  min-height: 37px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 13px;
  border-bottom: 1px solid var(--ink-100);
  background: linear-gradient(#fcfcfd, #f4f5f7);
  color: var(--ink-500);
  font-size: 9px;
  font-weight: 650;
}
.window-lights {
  display: flex;
  gap: 5px;
}
.window-lights i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6257;
}
.window-lights i:nth-child(2) {
  background: #ffc04a;
}
.window-lights i:nth-child(3) {
  background: #28ca42;
}
.complete {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 6px;
}
.complete i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
}

.preview-body {
  padding: clamp(23px, 3vw, 34px);
  background: var(--ink-25);
}
.preview-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}
.preview-heading > div > span {
  color: var(--ink-500);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
}
.preview-heading h2 {
  margin: 4px 0 0;
  color: var(--ink-900);
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}
.priority-total {
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: 999px;
  background: #fff1f0;
  color: var(--brand-dark);
  font-size: 9px;
  font-weight: 750;
}
.priority-list {
  display: grid;
  gap: 9px;
  margin-top: 24px;
}

.priority-row {
  display: grid;
  min-width: 0;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border: 1px solid var(--ink-100);
  border-radius: 11px;
  background: white;
}
.severity {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  justify-content: center;
  padding: 0 7px;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}
.severity--high {
  background: #fef2f2;
  color: #b91c1c;
}
.severity--medium {
  background: #fffbeb;
  color: #b45309;
}
.severity--low {
  background: #eff6ff;
  color: #1d4ed8;
}
.priority-row h3 {
  margin: 0;
  color: var(--ink-900);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: -0.01em;
}
.priority-row p {
  margin: 2px 0 0;
  color: var(--ink-500);
  font-size: 9px;
}
.priority-row strong {
  color: var(--ink-700);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 650;
  white-space: nowrap;
}

.preview-result {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #ecfdf5;
}
.result-check {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--success);
  color: white;
  font-size: 12px;
  font-weight: 800;
}
.preview-result p {
  margin: 0;
  color: #047857;
  font-size: 10px;
}

.value-strip {
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
  background: white;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.value-grid article {
  display: grid;
  min-width: 0;
  min-height: 145px;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 28px 34px;
  border-right: 1px solid var(--ink-100);
}
.value-grid article:first-child {
  padding-left: 0;
}
.value-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}
.value-grid article > span {
  color: var(--brand);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
}
.value-grid h2 {
  margin: 0;
  color: var(--dark);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.035em;
}
.value-grid p {
  margin: 4px 0 0;
  color: var(--ink-500);
  font-size: 12px;
}

.section {
  padding: 130px 0;
}
.case-section {
  background: white;
}
.case-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  column-gap: 72px;
}
.case-intro .eyebrow {
  grid-column: 1 / -1;
}
.case-intro h2,
.benefits-heading h2,
.download-copy h2,
.name-story h2 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(42px, 5.2vw, 68px);
  font-weight: 470;
  letter-spacing: -0.06em;
  line-height: 1;
  text-wrap: balance;
}
.case-intro > p:last-child {
  max-width: 420px;
  margin: 0 0 5px;
  color: var(--ink-600);
  font-size: 16px;
  line-height: 1.65;
}
.case-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  align-items: stretch;
  gap: 64px;
  margin-top: 76px;
}
.case-story {
  min-width: 0;
}
.story-block {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 20px;
  padding: 25px 0;
  border-top: 1px solid var(--ink-100);
}
.story-block > span {
  color: var(--ink-400);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.story-block p {
  margin: 0;
  color: var(--ink-600);
  font-size: 14px;
  line-height: 1.65;
}
.story-block--active > span {
  color: var(--brand);
}
.case-story blockquote {
  margin: 28px 0 0;
  padding: 0 0 0 22px;
  border-left: 3px solid var(--brand);
  color: var(--dark);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.output-card {
  min-width: 0;
  padding: clamp(26px, 4vw, 44px);
  border-radius: 22px;
  background: var(--dark);
  box-shadow: var(--shadow);
  color: white;
}
.output-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #8b979e;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.output-badge {
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 89, 80, 0.15);
  color: #ff8b84;
}
.output-card h3 {
  max-width: 620px;
  margin: 52px 0 0;
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 560;
  letter-spacing: -0.05em;
  line-height: 1.08;
  text-wrap: balance;
}
.output-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 18px 0 0;
  color: #93a0a6;
  font-size: 11px;
}
.output-meta i {
  width: 3px;
  height: 3px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brand);
}

.output-example {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px 16px;
  margin-top: 36px;
  padding: 18px;
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  background: var(--dark-elevated);
}
.output-example > span {
  grid-column: 1 / -1;
  color: #728087;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.output-example code {
  min-width: 0;
  overflow: hidden;
  color: #dce2e4;
  font-family: var(--font-mono);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.output-example strong {
  color: #ff837c;
  font-family: var(--font-mono);
  font-size: 10px;
}
.output-action {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-top: 13px;
  padding: 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}
.action-icon {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  background: var(--brand);
  font-size: 14px;
}
.output-action div > span {
  color: #ff918a;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.output-action p {
  margin: 4px 0 0;
  color: #d3dadd;
  font-size: 12px;
  line-height: 1.55;
}
.output-owners {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 28px;
}
.output-owners span {
  padding: 6px 9px;
  border: 1px solid var(--dark-border);
  border-radius: 999px;
  color: #9ba8ad;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.benefits-section {
  background: var(--ink-50);
}
.benefits-heading {
  max-width: 780px;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 60px;
}
.benefit-grid article {
  min-width: 0;
  min-height: 300px;
  padding: 30px;
  border: 1px solid var(--ink-100);
  border-radius: 18px;
  background: white;
}
.benefit-icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 12px;
  background: #fff1f0;
  color: var(--brand);
  font-size: 18px;
  font-weight: 800;
}
.benefit-grid h3 {
  margin: 78px 0 0;
  color: var(--dark);
  font-size: 25px;
  font-weight: 670;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.benefit-grid p {
  max-width: 310px;
  margin: 13px 0 0;
  color: var(--ink-600);
  font-size: 14px;
  line-height: 1.65;
}

.download-section {
  background: var(--dark);
  color: white;
}
.download-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(500px, 1.28fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}
.eyebrow--light {
  color: #829097;
}
.download-copy h2 {
  color: white;
}
.download-copy > p {
  max-width: 440px;
  margin: 24px 0 0;
  color: #a2adb2;
  font-size: 16px;
  line-height: 1.65;
}
.download-copy > small {
  display: block;
  margin-top: 19px;
  color: #748288;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.download-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.download-card {
  display: flex;
  min-width: 0;
  min-height: 330px;
  flex-direction: column;
  padding: 27px;
  border-radius: 18px;
}
.download-card--mac {
  border: 1px solid #3b4a50;
  background: var(--dark-elevated);
}
.download-card--windows {
  border: 1px solid #28373d;
  background: rgba(255, 255, 255, 0.025);
}
.platform-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  color: #d9dfe1;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.release-badge {
  padding: 5px 7px;
  border-radius: 999px;
  background: rgba(255, 89, 80, 0.15);
  color: #ff918a;
  font-size: 7px;
  text-align: right;
}
.release-badge--muted {
  background: rgba(255, 255, 255, 0.07);
  color: #819097;
}
.download-card h3 {
  margin: 52px 0 auto;
  font-size: 25px;
  font-weight: 640;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.button--download {
  width: 100%;
  margin-top: 28px;
}
.button--download[aria-disabled='true'] {
  box-shadow: none;
  cursor: not-allowed;
  filter: saturate(0.65);
  opacity: 0.72;
}
.button--download[aria-disabled='true']:hover {
  background: var(--brand);
  translate: none;
}
.button--disabled {
  width: 100%;
  margin-top: 28px;
  background: #2a373d;
  color: #7f8c92;
  cursor: not-allowed;
}
.button--disabled .button-arrow {
  background: rgba(255, 255, 255, 0.05);
}
.download-card > small {
  display: block;
  min-height: 30px;
  margin: 10px 2px 0;
  color: #718087;
  font-size: 9px;
  line-height: 1.45;
}

.site-footer {
  padding-top: 118px;
  border-top: 1px solid var(--dark-border);
  background: var(--dark);
  color: white;
}
.name-story {
  position: relative;
  padding-right: 130px;
}
.footer-symbol {
  position: absolute;
  top: 2px;
  right: 0;
  display: grid;
  width: 90px;
  height: 90px;
  place-items: center;
  border: 1px solid var(--dark-border);
  border-radius: 22px;
  background: var(--dark-elevated);
}
.footer-symbol svg {
  width: 66px;
  height: 66px;
}
.name-story h2 {
  max-width: 770px;
  color: white;
}
.name-story > p:last-child {
  max-width: 700px;
  margin: 25px 0 0;
  color: #9ba7ac;
  font-size: 16px;
  line-height: 1.7;
}
.footer-bottom {
  display: grid;
  min-height: 110px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-top: 105px;
  border-top: 1px solid var(--dark-border);
  color: #748288;
  font-size: 10px;
}
.brand--footer .brand-mark {
  border: 1px solid var(--dark-border);
  background: var(--dark-elevated);
  box-shadow: none;
}
.brand--footer .brand-copy strong {
  color: white;
}
.brand--footer .brand-copy span {
  color: #75838a;
}
.footer-bottom > span:nth-child(2) {
  text-align: center;
}
.footer-bottom > span:last-child {
  justify-self: end;
}

.release-dialog {
  width: min(440px, calc(100vw - 32px));
  padding: 36px;
  border: 0;
  border-radius: 22px;
  box-shadow: 0 30px 100px rgba(20, 31, 36, 0.34);
  color: var(--dark);
}
.release-dialog::backdrop {
  background: rgba(12, 14, 26, 0.58);
  backdrop-filter: blur(5px);
}
.dialog-mark {
  width: 56px;
  height: 56px;
  border-radius: 15px;
}
.dialog-mark svg {
  width: 40px;
  height: 40px;
}
.release-dialog h2 {
  margin: 25px 0 0;
  font-size: 28px;
  letter-spacing: -0.045em;
  line-height: 1.1;
}
.release-dialog p {
  margin: 14px 0 25px;
  color: var(--ink-600);
  font-size: 14px;
  line-height: 1.65;
}
.release-dialog form {
  margin: 0;
}
.button--dark {
  width: 100%;
  min-height: 50px;
  justify-content: center;
  padding: 10px 20px;
  background: var(--dark);
  color: white;
}

.js [data-reveal] {
  opacity: 0;
  translate: 0 18px;
  transition:
    opacity 560ms ease,
    translate 560ms cubic-bezier(0.2, 0.75, 0.25, 1);
}
.js [data-reveal-delay='1'] {
  transition-delay: 80ms;
}
.js [data-reveal-delay='2'] {
  transition-delay: 160ms;
}
.js [data-reveal].is-visible {
  opacity: 1;
  translate: 0;
}

@media (max-width: 1060px) {
  .hero {
    padding-bottom: 90px;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .hero-copy {
    max-width: 850px;
  }
  .hero h1 {
    max-width: 880px;
  }
  .product-preview {
    width: min(760px, 100%);
  }
  .case-intro {
    grid-template-columns: 1fr;
  }
  .case-intro > p:last-child {
    max-width: 620px;
    margin-top: 25px;
  }
  .case-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .case-story {
    max-width: 700px;
  }
  .output-card {
    width: min(760px, 100%);
  }
  .download-shell {
    grid-template-columns: 1fr;
  }
  .download-copy {
    max-width: 720px;
  }
  .download-options {
    width: min(720px, 100%);
  }
}

@media (max-width: 800px) {
  :root {
    --shell: min(100% - 32px, 680px);
  }
  .site-header {
    padding: 12px 0;
  }
  .site-header.is-scrolled {
    padding: 7px 0;
  }
  .menu-toggle {
    display: block;
  }
  .primary-nav {
    position: fixed;
    z-index: 99;
    top: 0;
    right: 0;
    display: flex;
    width: min(360px, 88vw);
    height: 100dvh;
    align-items: stretch;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 80px 28px 40px;
    background: var(--dark);
    box-shadow: -20px 0 60px rgba(20, 31, 36, 0.2);
    color: white;
    translate: 105% 0;
    transition: translate 220ms ease;
  }
  .primary-nav.is-open {
    translate: 0;
  }
  .primary-nav > a {
    padding: 15px 0;
    border-bottom: 1px solid var(--dark-border);
    font-size: 18px;
  }
  .primary-nav > a::after {
    display: none;
  }
  .nav-cta {
    margin-top: 16px;
    padding-inline: 20px !important;
    border: 0 !important;
    background: var(--brand);
    text-align: center;
  }
  .menu-open .menu-toggle {
    position: relative;
    z-index: 101;
  }
  .menu-open .menu-toggle span:first-child {
    translate: 0 3px;
    rotate: 45deg;
  }
  .menu-open .menu-toggle span:last-child {
    translate: 0 -3px;
    rotate: -45deg;
  }
  .hero {
    padding: 125px 0 82px;
  }
  .hero h1 {
    font-size: clamp(48px, 11.5vw, 68px);
  }
  .value-grid {
    grid-template-columns: 1fr;
  }
  .value-grid article,
  .value-grid article:first-child,
  .value-grid article:last-child {
    min-height: 105px;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--ink-100);
  }
  .value-grid article:last-child {
    border-bottom: 0;
  }
  .section {
    padding: 95px 0;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .benefit-grid article {
    min-height: 235px;
  }
  .benefit-grid h3 {
    margin-top: 55px;
  }
  .name-story {
    padding-right: 0;
  }
  .footer-symbol {
    position: static;
    margin-bottom: 40px;
  }
  .footer-bottom {
    grid-template-columns: 1fr auto;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 28px);
  }
  .brand-copy span {
    display: none;
  }
  .hero h1 {
    font-size: 46px;
  }
  .hero-lead {
    font-size: 16px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .hero-note {
    flex-wrap: wrap;
  }
  .preview-bar {
    grid-template-columns: 1fr auto;
  }
  .preview-bar > span:nth-child(2) {
    display: none;
  }
  .priority-row {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 10px;
  }
  .priority-row strong {
    grid-column: 2;
  }
  .preview-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .case-intro h2,
  .benefits-heading h2,
  .download-copy h2,
  .name-story h2 {
    font-size: 40px;
  }
  .story-block {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .output-card h3 {
    margin-top: 38px;
    font-size: 30px;
  }
  .output-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
  .output-meta i {
    display: none;
  }
  .output-example {
    grid-template-columns: 1fr;
  }
  .output-example strong {
    justify-self: start;
  }
  .download-options {
    grid-template-columns: 1fr;
  }
  .download-card {
    min-height: 295px;
  }
  .site-footer {
    padding-top: 90px;
  }
  .footer-bottom {
    grid-template-columns: 1fr;
    padding: 28px 0;
  }
  .footer-bottom > span:last-child {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .js [data-reveal] {
    opacity: 1;
    translate: none;
  }
}
