:root {
  --paper: #f1eee4;
  --paper-soft: #f7f4eb;
  --paper-light: #fffdf7;
  --ink: #171814;
  --ink-soft: #34362f;
  --muted: #66685f;
  --line: rgba(23, 24, 20, 0.18);
  --line-strong: rgba(23, 24, 20, 0.42);
  --lime: #c7ff4a;
  --lime-deep: #a9e822;
  --cobalt: #3152d8;
  --cobalt-dark: #243da4;
  --danger: #a93329;
  --success: #1b6f45;
  --shadow: 0 28px 70px rgba(20, 22, 17, 0.16);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1460px, calc(100% - 96px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(23, 24, 20, 0.025) 1px, transparent 1px) 0 0 / 100% 28px,
    var(--paper);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

picture {
  display: block;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

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

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

:focus-visible {
  outline: 3px solid var(--cobalt);
  outline-offset: 4px;
}

::selection {
  color: var(--ink);
  background: var(--lime);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--paper-light);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 80;
  background: rgba(241, 238, 228, 0.92);
  border-bottom: 1px solid var(--ink);
}

@supports (backdrop-filter: blur(14px)) {
  .site-header {
    background: rgba(241, 238, 228, 0.82);
    backdrop-filter: blur(14px);
  }
}

.header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(240px, 1fr);
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 820;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  aspect-ratio: 1;
  color: var(--paper-light);
  background: var(--ink);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  transform: rotate(-3deg);
}

.brand-word {
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.4vw, 42px);
}

.desktop-nav a,
.lang-link {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 690;
}

.desktop-nav a::after,
.lang-link::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--ink);
  transition: right 0.2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after,
.lang-link:hover::after {
  right: 0;
}

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

.release-pill {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 11px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 253, 247, 0.62);
  font-size: 0.7rem;
  font-weight: 730;
  white-space: nowrap;
}

.release-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cobalt);
  box-shadow: 0 0 0 3px rgba(49, 82, 216, 0.14);
}

.lang-link {
  min-width: 44px;
  justify-content: center;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  width: 20px;
  height: 2px;
  display: block;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -3;
  top: 0;
  right: 0;
  width: min(31vw, 520px);
  height: 360px;
  background: var(--lime);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  top: 88px;
  right: 0;
  width: 13px;
  height: 430px;
  background: var(--cobalt);
}

.hero-grid {
  min-height: 710px;
  display: grid;
  grid-template-columns: minmax(430px, 0.82fr) minmax(600px, 1.18fr);
  align-items: center;
  gap: clamp(52px, 5vw, 90px);
  padding-block: 54px 48px;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: #484a43;
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 3px;
  flex: 0 0 auto;
  background: var(--cobalt);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  color: var(--ink);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 4.6vw, 4.85rem);
  font-weight: 560;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero h1 em,
.marker {
  position: relative;
  z-index: 0;
  font-style: italic;
  font-weight: 500;
  white-space: nowrap;
}

.hero h1 em::after,
.marker::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -4px;
  bottom: 0.08em;
  left: -3px;
  height: 0.25em;
  background: var(--lime);
  transform: rotate(-1deg);
}

.hero-intro,
.page-hero .lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: #4f514a;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.65;
  letter-spacing: -0.012em;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 760;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button-primary {
  color: var(--paper-light);
  background: var(--ink);
  box-shadow: 5px 5px 0 var(--cobalt);
}

.button-primary::after {
  content: "↗";
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1;
}

.button-primary:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--cobalt);
}

.button-secondary {
  background: var(--paper-light);
  box-shadow: 4px 4px 0 var(--lime-deep);
}

.button-secondary:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--lime-deep);
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 720;
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding: 40px 0 52px 24px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 5px;
  right: -90px;
  width: 70%;
  height: 84%;
  border: 1px solid rgba(23, 24, 20, 0.13);
  background: var(--paper-light);
  box-shadow: 0 18px 45px rgba(23, 24, 20, 0.08);
  transform: rotate(1.7deg);
}

.screen-frame {
  position: relative;
  padding: 10px;
  border: 1px solid var(--ink);
  background: var(--ink);
  box-shadow: var(--shadow);
  transform: rotate(-0.55deg);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.screen-frame:hover {
  transform: rotate(0) translateY(-5px);
}

.screen-bar {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 0 6px;
  color: rgba(255, 253, 247, 0.68);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.screen-dots {
  display: flex;
  gap: 6px;
}

.screen-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5c5d58;
}

.screen-dots i:first-child {
  background: var(--lime);
}

.screen-image {
  width: 100%;
  aspect-ratio: 1920 / 1032;
  object-fit: cover;
  object-position: center top;
  background: #23241f;
}

.visual-sticker {
  position: absolute;
  z-index: 3;
  right: -24px;
  bottom: 10px;
  width: 158px;
  padding: 17px;
  color: var(--paper-light);
  background: var(--cobalt);
  box-shadow: 8px 10px 0 rgba(23, 24, 20, 0.15);
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.22;
  transform: rotate(2.5deg);
}

.visual-sticker strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.visual-caption {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 17px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.86rem;
  font-style: italic;
}

.visual-caption::before {
  content: "";
  width: 55px;
  height: 1px;
  margin-top: 0.65em;
  background: var(--ink);
}

.proof-strip {
  border-block: 1px solid var(--ink);
  background: rgba(255, 253, 247, 0.54);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  border-right: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.2;
}

.proof-item:last-child {
  border-right: 0;
}

.proof-index {
  width: 31px;
  aspect-ratio: 1;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 760;
}

.proof-item:nth-child(2) .proof-index { background: var(--lime); }
.proof-item:nth-child(4) .proof-index { color: #fff; border-color: var(--cobalt); background: var(--cobalt); }

.section {
  padding-block: clamp(76px, 8vw, 124px);
}

.section-tight {
  padding-block: clamp(56px, 6vw, 88px);
}

.section-paper {
  border-block: 1px solid var(--line);
  background: var(--paper-light);
}

.section-ink {
  color: var(--paper-light);
  background: var(--ink);
}

.section-ink h2,
.section-ink h3,
.section-ink .eyebrow {
  color: var(--paper-light);
}

.section-ink .eyebrow::before { background: var(--lime); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 64px;
  margin-bottom: 42px;
}

.section-head h2,
.editorial-copy h2,
.cta-band h2,
.footer-lead h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  font-weight: 550;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.section-head > p {
  margin: 0 0 4px;
  color: var(--muted);
  line-height: 1.65;
}

.section-ink .section-head > p,
.section-ink .muted {
  color: rgba(255, 253, 247, 0.66);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.feature-card {
  grid-column: span 4;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--paper-light);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-card.feature-wide {
  grid-column: span 6;
}

.feature-card:hover {
  border-color: var(--ink);
  box-shadow: 6px 6px 0 var(--lime);
  transform: translate(-2px, -2px);
}

.feature-card-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23, 24, 20, 0.11);
  background: #d9d8d2;
}

.feature-card-media img {
  width: 100%;
  aspect-ratio: 1920 / 1032;
  object-fit: cover;
  object-position: top;
  filter: saturate(0.9) contrast(1.02);
  transition: transform 0.45s ease;
}

.feature-card:hover img {
  transform: scale(1.018);
}

.feature-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 8px 10px;
}

.card-kicker,
.section-number {
  color: var(--cobalt);
  font-size: 0.66rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-card h3 {
  margin: 9px 0 8px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 570;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.card-arrow {
  margin-top: auto;
  padding-top: 20px;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.editorial-list {
  border-top: 1px solid var(--ink);
}

.editorial-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 0.85fr) minmax(430px, 1.15fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  padding-block: clamp(44px, 6vw, 86px);
  border-bottom: 1px solid var(--line);
}

.editorial-copy h2 {
  font-size: clamp(2rem, 3.2vw, 3.5rem);
}

.editorial-copy p {
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.editorial-media {
  padding: 8px;
  border: 1px solid var(--ink);
  background: var(--ink);
  box-shadow: 10px 12px 0 var(--lime);
  transform: rotate(0.45deg);
}

.editorial-media img {
  width: 100%;
  aspect-ratio: 1920 / 1032;
  object-fit: cover;
  object-position: top;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid rgba(255, 253, 247, 0.3);
}

.stat {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border-right: 1px solid rgba(255, 253, 247, 0.2);
}

.stat:last-child { border-right: 0; }

.stat strong {
  color: var(--lime);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-weight: 540;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.stat span {
  color: rgba(255, 253, 247, 0.72);
  font-size: 0.8rem;
}

.workflow {
  counter-reset: workflow;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
}

.workflow-step {
  counter-increment: workflow;
  min-height: 260px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.workflow-step:last-child { border-right: 0; }

.workflow-step::before {
  content: "0" counter(workflow);
  display: inline-flex;
  margin-bottom: 54px;
  padding: 3px 8px;
  color: var(--paper-light);
  background: var(--cobalt);
  font-size: 0.68rem;
  font-weight: 780;
}

.workflow-step h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 570;
}

.workflow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.quote-panel {
  position: relative;
  padding: clamp(40px, 6vw, 84px);
  border: 1px solid var(--ink);
  background: var(--lime);
  box-shadow: 12px 14px 0 var(--cobalt);
}

.quote-panel blockquote {
  max-width: 1050px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4.4rem);
  font-weight: 540;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.quote-panel p {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--ink-soft);
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
}

.page-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: clamp(110px, 18vw, 340px);
  height: 100%;
  background: var(--lime);
}

.page-hero-inner {
  min-height: 480px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.62fr);
  align-items: end;
  gap: 70px;
  padding-block: 72px 68px;
}

.page-hero-aside {
  position: relative;
  z-index: 1;
  padding: 28px;
  color: var(--paper-light);
  background: var(--cobalt);
  box-shadow: 10px 12px 0 var(--ink);
  transform: rotate(1deg);
}

.page-hero-aside strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 560;
}

.page-hero-aside p {
  margin: 0;
  color: rgba(255, 253, 247, 0.78);
  font-size: 0.9rem;
}

.breadcrumbs {
  border-bottom: 1px solid var(--line);
  background: var(--paper-light);
}

.breadcrumbs ol {
  min-height: 52px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.75rem;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 9px;
  color: var(--line-strong);
}

.breadcrumbs a {
  min-width: 24px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.content-sections {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: clamp(50px, 8vw, 130px);
}

.content-index {
  position: sticky;
  top: 32px;
  align-self: start;
  padding-top: 7px;
}

.content-index p {
  margin: 0 0 14px;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.content-index a {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
}

.content-index a:hover { color: var(--ink); }

.content-block {
  padding-bottom: clamp(56px, 7vw, 96px);
  border-bottom: 1px solid var(--line);
}

.content-block + .content-block {
  padding-top: clamp(56px, 7vw, 96px);
}

.content-block:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.content-block h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 3.7rem);
  font-weight: 550;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.content-block .section-copy {
  max-width: 800px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

.content-block img {
  width: 100%;
  margin-top: 34px;
  border: 8px solid var(--ink);
  box-shadow: 10px 12px 0 var(--lime);
}

.bullet-grid,
.tool-grid,
.requirements-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.bullet-grid li,
.tool-card,
.requirement {
  position: relative;
  min-height: 96px;
  padding: 22px 22px 20px 50px;
  border: 1px solid var(--line);
  background: var(--paper-light);
  font-size: 0.9rem;
}

.bullet-grid li::before {
  content: "↗";
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--cobalt);
  font-family: var(--serif);
  font-size: 1.1rem;
}

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

.tool-card {
  min-height: 150px;
  padding: 23px;
}

.tool-card strong,
.requirement strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 580;
}

.tool-card span,
.requirement span {
  color: var(--muted);
  font-size: 0.84rem;
}

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

.media-tile {
  padding: 9px;
  border: 1px solid var(--ink);
  background: var(--ink);
}

.media-tile img {
  width: 100%;
  aspect-ratio: 1920 / 1032;
  object-fit: cover;
  object-position: top;
}

.media-tile figcaption {
  padding: 12px 5px 4px;
  color: rgba(255, 253, 247, 0.72);
  font-size: 0.74rem;
}

.video-showcase {
  overflow: hidden;
}

.video-section-head {
  align-items: end;
}

.video-section-head h2 {
  max-width: 840px;
}

.video-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(280px, 0.52fr);
  border: 1px solid rgba(255, 253, 247, 0.42);
  background: var(--paper-light);
  color: var(--ink);
  box-shadow: 12px 14px 0 var(--lime);
}

.video-frame,
.video-result-frame {
  position: relative;
  min-width: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #080a10;
}

.youtube-player,
.video-launch,
.video-launch img {
  width: 100%;
  height: 100%;
}

.youtube-player {
  display: block;
  border: 0;
}

.video-launch {
  position: relative;
  display: block;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #080a10;
  color: #fff;
  cursor: pointer;
}

.video-launch img {
  display: block;
  object-fit: cover;
  transition: transform 280ms ease, filter 280ms ease;
}

.video-launch::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(4, 5, 8, 0.62));
  pointer-events: none;
}

.video-launch:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.025);
}

.video-launch:focus-visible {
  outline: 4px solid var(--lime);
  outline-offset: -4px;
}

.video-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(58px, 8vw, 84px);
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  box-shadow: 6px 7px 0 var(--cobalt);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.video-play span {
  margin-left: 5px;
  font-size: clamp(1rem, 2.4vw, 1.45rem);
}

.video-launch:hover .video-play {
  box-shadow: 3px 4px 0 var(--cobalt);
  transform: translate(-50%, -50%) scale(1.04);
}

.video-duration {
  position: absolute;
  z-index: 3;
  right: 12px;
  bottom: 12px;
  padding: 5px 8px;
  background: rgba(4, 5, 8, 0.88);
  color: #fff;
  font-size: 0.74rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.video-featured-copy {
  display: flex;
  min-width: 0;
  padding: clamp(26px, 4vw, 46px);
  flex-direction: column;
  justify-content: center;
}

.video-featured-copy h3 {
  margin: 18px 0 14px;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.7vw, 2.55rem);
  font-weight: 580;
  line-height: 1.02;
}

.video-featured-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.video-external,
.video-result-copy a {
  display: inline-flex;
  width: fit-content;
  margin-top: 24px;
  gap: 8px;
  align-items: center;
  color: inherit;
  font-size: 0.82rem;
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.video-results-head {
  display: flex;
  margin: 64px 0 20px;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 253, 247, 0.25);
  padding-bottom: 16px;
}

.video-results-head h3,
.video-results-head p {
  margin: 0;
}

.video-results-head h3 {
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 580;
}

.video-results-head p {
  color: rgba(255, 253, 247, 0.68);
  font-size: 0.84rem;
}

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

.video-result {
  min-width: 0;
  border: 1px solid rgba(255, 253, 247, 0.26);
  background: rgba(255, 253, 247, 0.045);
}

.video-result-copy {
  padding: 20px;
}

.video-result-copy > span {
  color: var(--lime);
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.12em;
}

.video-result-copy h4 {
  margin: 10px 0 0;
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 580;
  line-height: 1.14;
}

.video-result-copy a {
  margin-top: 16px;
  color: rgba(255, 253, 247, 0.76);
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid var(--ink);
  background: var(--paper-light);
}

.price-card.featured {
  color: var(--paper-light);
  background: var(--ink);
  box-shadow: 10px 12px 0 var(--lime);
}

.price-card.featured h2,
.price-card.featured .price {
  color: var(--paper-light);
}

.price-label {
  margin: 0 0 24px;
  color: var(--cobalt);
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.featured .price-label { color: var(--lime); }

.price-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 560;
}

.price {
  margin: 20px 0 6px;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 540;
  line-height: 1;
  letter-spacing: -0.06em;
}

.price-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.featured .price-note { color: rgba(255, 253, 247, 0.63); }

.price-card ul {
  margin: 34px 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}

.featured li { border-color: rgba(255, 253, 247, 0.18); }

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

.featured .button {
  color: var(--ink);
  border-color: var(--lime);
  background: var(--lime);
  box-shadow: 5px 5px 0 var(--cobalt);
}

.notice {
  margin-top: 26px;
  padding: 20px 22px;
  border-left: 5px solid var(--cobalt);
  background: rgba(49, 82, 216, 0.08);
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 18px 4px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  font-weight: 570;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 1rem;
}

.faq-item[open] summary::after {
  content: "−";
  color: var(--paper-light);
  background: var(--cobalt);
  border-color: var(--cobalt);
}

.faq-answer {
  max-width: 900px;
  padding: 0 54px 28px 4px;
  color: var(--muted);
  line-height: 1.75;
}

.faq-answer p { margin: 0; }

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

.contact-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--ink);
  background: var(--paper-light);
  text-decoration: none;
}

.contact-card:nth-child(2) { background: var(--lime); }
.contact-card:nth-child(3) { color: var(--paper-light); background: var(--cobalt); }

.contact-card small {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card strong {
  margin-top: auto;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 560;
  line-height: 1.1;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 120px);
}

.legal-meta {
  align-self: start;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--paper-light);
  color: var(--muted);
  font-size: 0.76rem;
}

.legal-copy {
  max-width: 870px;
}

.legal-copy h2 {
  margin: 58px 0 16px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 560;
}

.legal-copy h2:first-child { margin-top: 0; }

.legal-copy p,
.legal-copy li {
  color: var(--ink-soft);
  line-height: 1.8;
}

.cta-wrap {
  padding-block: 0 clamp(80px, 9vw, 130px);
}

.cta-band {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 50px;
  padding: clamp(38px, 6vw, 78px);
  color: var(--paper-light);
  border: 1px solid var(--ink);
  background: var(--cobalt);
  box-shadow: 12px 14px 0 var(--lime);
}

.cta-band::before {
  content: "";
  position: absolute;
  top: -70px;
  right: 22%;
  width: 160px;
  height: 160px;
  border: 28px solid rgba(199, 255, 74, 0.16);
  border-radius: 50%;
}

.cta-band h2 { color: var(--paper-light); }

.cta-band p {
  max-width: 700px;
  margin: 18px 0 0;
  color: rgba(255, 253, 247, 0.76);
}

.cta-band .button {
  position: relative;
  z-index: 1;
  color: var(--ink);
  border-color: var(--lime);
  background: var(--lime);
  box-shadow: 5px 5px 0 var(--ink);
}

.site-footer {
  color: var(--paper-light);
  background: var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(340px, 1.15fr) minmax(0, 0.85fr);
  gap: 80px;
  padding-block: clamp(72px, 8vw, 120px);
}

.footer-lead .brand {
  color: var(--paper-light);
}

.footer-lead .brand-mark {
  color: var(--ink);
  background: var(--lime);
}

.footer-lead h2 {
  max-width: 620px;
  margin-top: 38px;
  color: var(--paper-light);
  font-size: clamp(2.5rem, 4.5vw, 4.7rem);
}

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

.footer-nav h3 {
  margin: 0 0 18px;
  color: var(--lime);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-nav a {
  min-height: 38px;
  display: flex;
  align-items: center;
  color: rgba(255, 253, 247, 0.7);
  text-decoration: none;
  font-size: 0.86rem;
}

.footer-nav a:hover { color: var(--paper-light); }

.footer-bottom {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 253, 247, 0.18);
  color: rgba(255, 253, 247, 0.52);
  font-size: 0.72rem;
}

.footer-bottom p { margin: 0; }

.footer-bottom a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--paper-light);
}

.not-found {
  min-height: calc(100vh - 88px);
  display: grid;
  place-items: center;
  text-align: center;
}

.not-found strong {
  display: block;
  color: var(--cobalt);
  font-family: var(--serif);
  font-size: clamp(6rem, 18vw, 15rem);
  font-weight: 520;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.not-found h1 {
  margin: 34px 0 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 550;
}

.not-found p {
  margin: 16px auto 28px;
  color: var(--muted);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 1180px) {
  :root { --shell: min(1040px, calc(100% - 48px)); }

  .header-inner { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }

  .mobile-nav {
    position: fixed;
    inset: 88px 0 0;
    z-index: 70;
    display: none;
    overflow-y: auto;
    padding: 28px 24px 60px;
    border-top: 1px solid var(--ink);
    background: var(--paper);
  }

  .mobile-nav[data-open="true"] { display: block; }

  .mobile-nav a {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    font-family: var(--serif);
    font-size: 1.45rem;
  }

  .mobile-nav a::after { content: "↗"; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 74px;
  }

  .hero-copy { max-width: 780px; }
  .hero-visual { padding-left: 0; }
  .hero-visual::before { right: -40px; }

  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }

  .feature-card { grid-column: span 6; }
  .editorial-row { grid-template-columns: 54px minmax(0, 0.72fr) minmax(390px, 1fr); gap: 35px; }
  .workflow { grid-template-columns: repeat(2, 1fr); }
  .workflow-step:nth-child(2) { border-right: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 253, 247, 0.2); }
}

@media (max-width: 860px) {
  .section-head,
  .page-hero-inner,
  .content-sections,
  .legal-layout,
  .cta-band,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .section-head { align-items: start; gap: 22px; }
  .page-hero-inner { min-height: auto; gap: 42px; padding-block: 60px; }
  .page-hero-aside { max-width: 500px; }
  .content-index { position: static; }
  .content-index a { display: inline-flex; margin-right: 18px; }
  .editorial-row { grid-template-columns: 44px minmax(0, 1fr); }
  .editorial-media { grid-column: 2; }
  .tool-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .media-strip { grid-template-columns: 1fr; }
  .video-featured { grid-template-columns: 1fr; }
  .video-results { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { min-height: 190px; }
  .footer-main { gap: 56px; }
}

@media (max-width: 680px) {
  :root { --shell: calc(100% - 34px); }

  html { scroll-padding-top: 80px; }
  .header-inner { min-height: 76px; gap: 10px; }
  .brand-mark { width: 32px; }
  .brand-word { font-size: 0.75rem; }
  .release-pill { display: none; }
  .header-actions { gap: 4px; }
  .mobile-nav { inset-block-start: 76px; }

  .hero::before { width: 35vw; height: 160px; }
  .hero::after { display: none; }
  .hero-grid { min-height: auto; padding-block: 48px 36px; }
  .hero h1,
  .page-hero h1 { font-size: clamp(2.75rem, 13vw, 4rem); }
  .hero h1 em,
  .marker { white-space: normal; }
  .hero-intro { font-size: 1rem; }
  .actions { align-items: stretch; flex-direction: column; gap: 14px; }
  .actions .button { width: 100%; }
  .actions .text-link { align-self: flex-start; }
  .hero-visual { padding: 26px 0 48px; }
  .screen-frame { padding: 6px; }
  .screen-bar { height: 26px; }
  .visual-sticker { right: -3px; width: 132px; padding: 12px; font-size: 0.88rem; }
  .visual-caption { display: none; }

  .proof-grid { grid-template-columns: 1fr; }
  .proof-item { min-height: 78px; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-item:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .proof-item:last-child { border-bottom: 0; }

  .section,
  .section-tight { padding-block: 68px; }
  .section-head { margin-bottom: 30px; }
  .section-head h2,
  .editorial-copy h2,
  .cta-band h2,
  .footer-lead h2 { font-size: clamp(2.15rem, 11vw, 3.2rem); }

  .feature-grid { display: block; }
  .feature-card + .feature-card { margin-top: 14px; }
  .editorial-row { grid-template-columns: 1fr; gap: 22px; }
  .editorial-media { grid-column: 1; }
  .workflow,
  .stats-grid,
  .bullet-grid,
  .tool-grid,
  .requirements-grid,
  .pricing-grid,
  .footer-navs { grid-template-columns: 1fr; }
  .workflow-step,
  .stat { border-right: 0; }
  .workflow-step::before { margin-bottom: 32px; }
  .stat { min-height: 150px; }
  .stats-grid .stat { border-bottom: 1px solid rgba(255, 253, 247, 0.2); }
  .stats-grid .stat:last-child { border-bottom: 0; }
  .content-block img { border-width: 5px; box-shadow: 7px 8px 0 var(--lime); }
  .price-card { min-height: 450px; }
  .video-results-head { align-items: flex-start; flex-direction: column; gap: 8px; }
  .video-results { grid-template-columns: 1fr; }
  .video-featured { box-shadow: 7px 8px 0 var(--lime); }
  .faq-item summary { min-height: 70px; gap: 18px; }
  .faq-answer { padding-right: 4px; }
  .cta-wrap { padding-bottom: 78px; }
  .cta-band { align-items: stretch; padding: 34px 26px; }
  .cta-band .button { width: 100%; }
  .footer-main { padding-block: 70px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 22px; }
}

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

@media print {
  .site-header,
  .site-footer,
  .cta-wrap,
  .mobile-nav { display: none !important; }
  body { background: #fff; }
  .section { padding-block: 28px; }
}
