:root {
  color-scheme: light;
  --ink: #171717;
  --muted: #60646c;
  --line: #d8dbe2;
  --surface: #ffffff;
  --soft: #f4f6f8;
  --accent: #c9282d;
  --accent-dark: #9d1f24;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
}

body.modal-open {
  overflow: hidden;
}

.hidden-field {
  display: none;
}

.sample-form .hidden-field,
.sample-form .hidden-field label,
.sample-form .hidden-field input {
  display: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 64px;
  padding: 0 32px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.brand {
  font-weight: 800;
}

.site-header .brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}

.site-header .brand span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav {
  display: flex;
  justify-self: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.language-links {
  display: flex;
  justify-self: end;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}

.home-sidebar {
  position: fixed;
  top: 64px;
  bottom: 0;
  left: 0;
  z-index: 8;
  display: block;
  width: 168px;
  border-right: 1px solid var(--line);
  padding: 24px 14px;
  background: #fff;
}

.home-sidebar a {
  display: flex;
  align-items: center;
  min-height: 38px;
  border-radius: 8px;
  padding: 0 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-sidebar .brand {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
}

.home-sidebar a:hover,
.home-sidebar a:focus-visible {
  background: var(--soft);
  color: var(--ink);
}

#top {
  margin-left: 168px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 64px);
  padding: 64px 32px;
  max-width: 1320px;
  margin: 0 auto;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(38px, 5.2vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions,
.gateway-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  background: #fff;
}

.video-placeholder {
  display: grid;
  place-items: center;
  aspect-ratio: 9 / 16;
  min-height: 480px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--muted);
  font-weight: 800;
}

.language-gateway {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.gateway {
  width: min(560px, calc(100vw - 32px));
}

@media (max-width: 820px) {
  .site-header {
    padding: 0 18px;
  }

  nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 40px 18px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .video-placeholder {
    min-height: 360px;
  }
}

.section,
.band,
.sample-section {
  padding: 72px 32px;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
}

.band {
  background: var(--soft);
}

.band > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  margin-bottom: 28px;
}

.library-case-heading {
  display: grid;
  grid-template-columns: max-content minmax(420px, 760px);
  align-items: end;
  gap: 16px;
  margin-bottom: 14px;
}

.library-case-heading > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.section-heading h2,
.sample-section h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

.reason-grid,
.point-grid,
.checklist {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.reason,
.point-grid div,
.checklist div {
  min-height: 88px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 750;
}

#product .section-heading {
  display: grid;
  justify-items: center;
  margin-bottom: 28px;
  text-align: center;
}

#product {
  background: #171717;
  color: #fff;
}

#product .section-heading h2 {
  color: #fff;
}

#product .point-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

#product .point-grid div {
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 174px;
  padding: 22px;
  color: var(--ink);
}

#product .point-grid strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

#product .point-grid span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.featured-grid,
.library-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.case-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.hero-video-card .case-card {
  box-shadow: 0 18px 48px rgba(23, 23, 23, 0.12);
}

.video-frame {
  position: relative;
  background: #111;
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #111;
}

.missing-video {
  display: none;
  padding: 10px;
  background: #fff7ed;
  color: #9a3412;
  font-size: 12px;
  font-weight: 700;
}

.case-body {
  padding: 16px;
}

.case-body h3 {
  margin: 6px 0 8px;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: 0;
}

.case-body p,
.breakdown p {
  color: var(--muted);
  line-height: 1.55;
}

.case-meta {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0;
}

.chips span {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.research-card .chips {
  align-content: start;
  max-height: 34px;
  overflow: hidden;
  min-height: 0;
  gap: 3px;
  margin: 4px 0 0;
}

.research-card .chips span {
  padding: 1px 5px;
  font-size: 8px;
  line-height: 1.25;
  background: #f8fafc;
}

.research-card .button {
  justify-self: end;
  min-height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  font-size: 9px;
  line-height: 18px;
}

.case-topline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px;
  align-items: center;
  min-height: 22px;
}

.case-topline .case-meta {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.breakdown {
  margin-top: 12px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.breakdown summary {
  cursor: pointer;
  font-weight: 850;
}

.breakdown-grid {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.breakdown ul {
  padding-left: 18px;
  color: var(--muted);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.filters button {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 0 12px;
  font-weight: 800;
  cursor: pointer;
}

.filters button.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.text-link {
  color: var(--accent);
  font-weight: 850;
}

.sample-section {
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(360px, 440px);
  gap: 60px;
  align-items: stretch;
  max-width: 860px;
  min-height: 354px;
  margin: 0 auto;
  background: #171717;
  box-shadow: 0 0 0 100vmax #171717;
  clip-path: inset(0 -100vmax);
  color: #fff;
}

.sample-section p {
  color: #d8dbe2;
  line-height: 1.7;
}

.sample-copy {
  display: grid;
  align-content: center;
  align-self: stretch;
  width: 100%;
  max-width: 280px;
  justify-self: start;
}

.sample-copy h2 {
  margin: 0;
}

.sample-form {
  width: 100%;
  align-self: stretch;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 440px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 18px;
  background: #222;
}

.sample-form label,
.sample-form fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  border: 0;
  padding: 0;
  color: #fff;
  font-weight: 850;
}

.sample-form input {
  min-height: 40px;
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  font: inherit;
  font-weight: 750;
}

.sample-form fieldset {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sample-form legend {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.sample-form fieldset label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #303030;
}

.sample-form fieldset input {
  width: auto;
  min-height: 0;
}

.sample-form .button,
.sample-form p {
  grid-column: 1 / -1;
}

.sample-form p {
  margin: 0;
  font-size: 13px;
}

.sample-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.sample-cta-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  place-items: center;
  text-align: center;
}

.sample-cta-section .sample-copy {
  width: min(100%, 640px);
  max-width: 560px;
  justify-items: center;
  justify-self: center;
  text-align: center;
}

.sample-cta-section .sample-copy > * {
  justify-self: center;
}

.sample-cta-section .sample-copy p {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.sample-cta-section .gateway-actions {
  width: 100%;
  align-items: center;
  justify-content: center;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 8px;
  color: #fff;
  font-weight: 800;
}

.whatsapp-icon-button {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: #25d366;
  color: #102316;
  font-size: 13px;
  font-weight: 900;
}

.whatsapp-icon-button:hover {
  background: #2ee375;
}

@media (max-width: 980px) {
  .reason-grid,
  .point-grid,
  .checklist,
  .featured-grid,
  .library-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px), (hover: none) and (pointer: coarse) and (max-width: 980px) {
  .section,
  .band,
  .sample-section {
    padding: 48px 18px;
  }

  .reason-grid,
  .point-grid,
  .checklist,
  .featured-grid,
  .library-grid {
    grid-template-columns: 1fr;
  }
}

.library-page {
  background: #fff;
}

.library-top-layout {
  display: grid;
}

.library-shell.library-top-layout {
  grid-template-columns: 200px minmax(0, 1fr);
}

.library-top-layout .library-sidebar {
  display: block;
  top: 64px;
  height: calc(100vh - 64px);
  padding: 18px 14px;
  background: #fff;
}

.library-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
}

.library-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 24px 18px;
  border-right: 1px solid var(--line);
  background: var(--soft);
}

.library-sidebar a {
  display: flex;
  align-items: center;
  min-height: 34px;
  border-radius: 8px;
  padding: 0 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.library-sidebar .brand {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 15px;
}

.library-sidebar a:hover {
  background: #fff;
  color: var(--ink);
}

.library-content {
  min-width: 0;
}

.library-hero,
.library-intro {
  max-width: none;
  margin: 0 auto;
  padding: 28px 20px 20px;
}

.library-hero h1,
.library-intro h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: 0;
}

.library-hero p,
.library-intro p {
  max-width: 920px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.library-page .section {
  max-width: none;
  padding-left: 40px;
  padding-right: 40px;
}

.library-page .band {
  padding-left: 40px;
  padding-right: 40px;
}

.library-page .band > * {
  max-width: none;
}

.research-list {
  display: grid;
  gap: 24px;
}

.library-search {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.library-search input {
  min-height: 44px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 8px;
}

.research-card {
  display: grid;
  grid-template-rows: auto 118px;
  width: 100%;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  break-inside: avoid;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
  will-change: transform;
}

.research-card:hover,
.research-card:focus-visible {
  border-color: rgba(183, 24, 35, 0.34);
  box-shadow: 0 12px 26px rgba(23, 23, 23, 0.14);
  transform: translateY(-2px) scale(1.015);
}

.research-card:focus-visible {
  outline: 2px solid rgba(183, 24, 35, 0.44);
  outline-offset: 3px;
}

.research-video {
  background: #111;
}

.research-video video,
.research-video img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  height: auto;
  object-fit: contain;
  background: #111;
}

.research-video video {
  pointer-events: none;
}

.research-body {
  display: grid;
  grid-template-rows: 22px 32px 33px 1fr;
  align-content: start;
  padding: 5px 6px 6px;
  overflow: hidden;
}

.research-body h2 {
  margin: 0;
  min-height: 32px;
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3px;
  margin: 2px 0 0;
}

.metric-card {
  display: grid;
  justify-items: center;
  gap: 2px;
  min-height: 31px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
}

.metric-card span {
  display: grid;
  place-items: center;
  height: 19px;
  width: 19px;
  border-radius: 50%;
  color: #111827;
  background: transparent;
}

.metric-card svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metric-card strong {
  display: block;
  color: var(--ink);
  font-size: 10px;
  line-height: 1.05;
  font-weight: 850;
}

.metric-card em {
  display: none;
}

.research-summary {
  display: grid;
  gap: 7px;
  margin: 10px 0;
}

.research-summary div {
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.research-summary dt {
  margin-bottom: 3px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 850;
}

.research-summary dd {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.45;
}

.creator-guide {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.guide-block {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.guide-block strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
}

.guide-block p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
}

.guide-block ul {
  margin: 0;
  padding-left: 20px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
}

.guide-lead {
  background: #fff;
}

.guide-lead p {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.guide-transcript p,
.guide-caption p {
  white-space: pre-line;
}

.template-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.template-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.template-card h3 {
  margin: 6px 0 16px;
  font-size: 24px;
  line-height: 1.18;
}

.template-card strong {
  display: block;
  margin-top: 14px;
}

.template-card p,
.template-card li {
  color: var(--muted);
  line-height: 1.65;
}

.research-modal[hidden] {
  display: none;
}

.research-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 32px;
}

.research-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.research-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100vw - 64px));
  height: min(820px, calc(100vh - 64px));
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.research-modal-panel > [data-modal-content] {
  height: 100%;
  min-height: 0;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 28px;
  z-index: 2;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 0 12px;
  font-weight: 850;
  cursor: pointer;
}

.modal-layout {
  display: flex;
  align-items: stretch;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  gap: 0;
}

.modal-video {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 clamp(360px, 42%, 500px);
  width: clamp(360px, 42%, 500px);
  min-width: 0;
  height: 100%;
  overflow: hidden;
  background: #111;
}

.modal-video-controls {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  border-radius: 8px;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.modal-video.controls-visible .modal-video-controls,
.modal-video.controls-pinned .modal-video-controls,
.modal-video:focus-within .modal-video-controls {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.modal-video-controls button {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-weight: 900;
  cursor: pointer;
}

.modal-video-controls input {
  width: 100%;
  accent-color: #fff;
}

.modal-video-controls span {
  min-width: 86px;
  font-size: 12px;
  font-weight: 850;
  text-align: right;
}

.modal-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #111;
}

.modal-scroll-hint {
  display: none;
}

.modal-breakdown {
  flex: 1 1 auto;
  width: 0;
  height: 100%;
  max-height: 100%;
  min-height: 0;
  scrollbar-gutter: stable;
  overflow-y: scroll;
  overscroll-behavior: contain;
  touch-action: pan-y;
  padding: 52px 36px 32px;
}

.modal-breakdown h2 {
  margin: 6px 0 12px;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.08;
}

@media (max-width: 1200px) {
  .masonry-grid {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .library-case-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .library-shell,
  .template-grid {
    grid-template-columns: 1fr;
  }

  .sample-section,
  .sample-form {
    grid-template-columns: 1fr;
  }

  .library-top-layout .library-sidebar,
  .library-sidebar {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    height: auto;
    padding: 12px 18px;
  }

  .library-sidebar .brand {
    width: 100%;
    margin-bottom: 0;
  }

  .masonry-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .modal-layout {
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    overflow-y: auto;
  }

  .modal-video {
    width: 100%;
    height: min(70vh, 760px);
    justify-self: center;
  }

  .modal-video video {
    min-height: 0;
  }

  .modal-breakdown {
    width: auto;
    height: auto;
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 640px), (hover: none) and (pointer: coarse) and (max-width: 980px) {
  .library-hero,
  .library-intro {
    padding: 48px 18px 32px;
  }

  .research-body {
    padding: 12px;
  }

  .library-page .section,
  .library-page .band {
    padding-left: 18px;
    padding-right: 18px;
  }

  .masonry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .research-modal-panel {
    width: 100vw;
    max-height: 100vh;
    min-height: 100vh;
    margin: 0;
    border-radius: 0;
  }

  .modal-breakdown {
    padding: 52px 18px 18px;
  }
}


/* Home page merge from completed homepage */
.hero {
  grid-template-columns: minmax(620px, 1fr) minmax(420px, 520px);
}

.hero-video-card {
  width: 100%;
  max-width: 320px;
  justify-self: end;
}

.hero-sample-card {
  width: 100%;
  max-width: 520px;
  justify-self: end;
  padding: 26px;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(23, 23, 23, 0.12);
}

.hero-sample-copy {
  display: grid;
  gap: 9px;
  margin-bottom: 16px;
}

.hero-sample-copy h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.08;
}

.hero-sample-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.hero-sample-card .sample-form {
  max-width: none;
}

.hero-sample-card .sample-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  justify-self: center;
  border-color: rgba(17, 44, 68, 0.08);
  background: #172f45;
  gap: 13px;
  padding: 20px;
}

.hero-sample-card .sample-form label,
.hero-sample-card .sample-form fieldset {
  min-width: 0;
}

.hero-sample-card .sample-form > label {
  grid-template-columns: 1fr;
  gap: 7px;
}

.hero-sample-card .sample-form > label span {
  white-space: nowrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.86);
}

.hero-sample-card .sample-form input {
  min-width: 0;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #fff;
}

.hero-sample-card .sample-form fieldset {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding-top: 2px;
}

.hero-sample-card .sample-form legend {
  grid-column: 1 / -1;
  margin: 0 0 4px;
  white-space: nowrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.86);
}

.hero-sample-card .sample-form .button,
.hero-sample-card .sample-form p {
  grid-column: 1 / -1;
}

.hero-sample-card .sample-form p {
  color: rgba(255, 255, 255, 0.72);
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
  line-height: 1.55;
}

.hero-transition {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 32px;
  border-top: 1px solid #171717;
  border-bottom: 1px solid #171717;
  background: #171717;
  box-shadow: 0 0 0 100vmax #171717;
  clip-path: inset(0 -100vmax);
  color: #fff;
}

.hero-transition > div:first-child {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.hero-transition .eyebrow {
  margin: 0;
}

.hero-transition h2 {
  margin: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: 0;
}

.transition-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 760px);
}

.transition-points span {
  display: grid;
  place-items: center;
  min-height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 850;
}

.home-case-library {
  max-width: 1040px;
}

.home-library-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.home-library-heading .button {
  margin-bottom: 4px;
  white-space: nowrap;
}

.creator-notes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 54px;
  max-width: 1120px;
  text-align: center;
}

.creator-notes .section-heading,
.creator-notes-copy h2 {
  margin: 0;
}

.creator-notes-copy {
  position: static;
  display: grid;
  justify-items: center;
  align-self: auto;
}

.creator-notes-copy h2 {
  width: 100%;
  max-width: 1120px;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
}

.reason-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  grid-auto-rows: 1fr;
  gap: 14px;
  width: 100%;
  margin-top: 26px;
  text-align: left;
}

.reason-list div {
  display: grid;
  align-content: start;
  gap: 8px;
  height: 100%;
  min-height: 132px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.48;
}

.reason-list strong,
.creator-notes .checklist strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.reason-list span,
.creator-notes .checklist span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.creator-notes-panel {
  display: grid;
  justify-items: center;
  width: 100%;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.creator-notes-panel h3 {
  max-width: 760px;
  margin: 0 0 24px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: 0;
}

.creator-notes .checklist {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  grid-auto-rows: 1fr;
  gap: 14px;
  width: 100%;
  text-align: left;
}

.creator-notes .checklist div {
  display: grid;
  align-content: start;
  gap: 8px;
  height: 100%;
  min-height: 132px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
}

.creator-notes .checklist strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.creator-notes .checklist span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.55;
}

.case-carousel {
  position: relative;
}

.mobile-header-apply,
.mobile-menu-toggle,
.mobile-menu,
.mobile-hero-benefits,
.mobile-hero-title,
.product-carousel,
.sticky-sample-bar,
.modal-back-to-top {
  display: none;
}

@media (max-width: 1180px) {
  .creator-notes-copy h2 {
    white-space: normal;
  }
}

.case-carousel-viewport {
  overflow: hidden;
}

.case-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
  transition: transform 220ms ease;
}

.case-carousel-slide {
  min-width: 0;
}

.case-carousel-button {
  position: absolute;
  top: 38%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #111;
  border-radius: 999px;
  background: #111;
  color: #fff;
  box-shadow: 0 12px 30px rgba(23, 23, 23, 0.22);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.case-carousel-button.previous {
  left: -52px;
}

.case-carousel-button.next {
  right: -52px;
}

.case-carousel-button:disabled {
  opacity: 0.35;
  cursor: default;
}

.hero-carousel {
  position: relative;
  display: block;
}

.hero-carousel-slide[hidden] {
  display: none;
}

.hero-carousel-controls {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% + 56px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}

.hero-carousel-controls button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 10px 28px rgba(23, 23, 23, 0.16);
}

.case-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.detail-button {
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  padding: 0 14px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  white-space: nowrap;
}

.case-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 8px 0 12px;
}

.case-stats span {
  display: grid;
  justify-items: center;
  gap: 4px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
}

.case-stats i {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--accent);
  font-style: normal;
  font-size: 13px;
}

@media (max-width: 980px) {
  .home-sidebar {
    display: none;
  }

  #top {
    margin-left: 0;
  }

  .reason-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .creator-notes .checklist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .hero-transition {
    grid-template-columns: 1fr;
    padding: 28px 18px;
  }
}

@media (max-width: 640px), (hover: none) and (pointer: coarse) and (max-width: 980px) {
  :root {
    --mobile-page-pad: 14px;
  }

  body {
    padding-bottom: 0;
    background: #fff;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 12px;
    min-height: 58px;
    padding: 0 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 1px 0 rgba(17, 24, 39, 0.08);
  }

  .site-header > nav,
  .site-header > .language-links {
    display: none;
  }

  .site-header .brand {
    font-size: 23px;
    font-weight: 950;
    letter-spacing: -0.05em;
  }

  .site-header .brand span {
    display: none;
  }

  .mobile-header-apply {
    display: inline-flex;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 6px;
    font-size: 12px;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 16px rgba(183, 24, 35, 0.18);
  }

  .mobile-header-apply.hidden-after-sample {
    display: none;
  }

  .mobile-menu-toggle {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-menu {
    position: absolute;
    top: 58px;
    right: 10px;
    left: 10px;
    display: grid;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 0 0 16px 16px;
    padding: 8px 14px 12px;
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 16px 32px rgba(17, 24, 39, 0.14);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu > a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
  }

  .mobile-menu > a::before {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    border-radius: 50%;
    background: rgba(183, 24, 35, 0.1);
    color: var(--accent);
    content: "›";
    font-size: 17px;
    font-weight: 950;
    line-height: 1;
  }

  .mobile-menu .mobile-menu-apply {
    color: var(--accent);
  }

  .mobile-menu-languages {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    border-top: 1px solid var(--line);
    padding-top: 12px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 850;
  }

  .mobile-menu-languages a {
    display: grid;
    place-items: center;
    min-height: 34px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
  }

  .mobile-menu-languages a[aria-current="page"] {
    border-color: rgba(183, 24, 35, 0.22);
    background: rgba(183, 24, 35, 0.08);
    color: var(--accent);
  }

  .mobile-menu-languages a::before {
    content: none;
  }

  .hero {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 12px;
    padding: 10px var(--mobile-page-pad) 28px;
    background: #fff;
  }

  .product-carousel {
    position: relative;
    display: block;
    order: 0;
    width: 100%;
    overflow: hidden;
    border-bottom: 0;
    border-radius: 0;
    background: #fff;
  }

  .product-carousel-track {
    display: flex;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .product-carousel-track::-webkit-scrollbar {
    display: none;
  }

  .product-carousel-slide {
    display: grid;
    flex: 0 0 100%;
    place-items: center;
    scroll-snap-align: start;
  }

  .product-carousel-slide img {
    width: 100%;
    height: min(300px, 70vw);
    object-fit: contain;
    background: #fff;
  }

  .product-carousel-button {
    position: absolute;
    top: 44%;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 999px;
    background: rgba(23, 23, 23, 0.72);
    color: #fff;
    font-size: 22px;
  }

  .product-carousel-button.previous {
    left: 8px;
  }

  .product-carousel-button.next {
    right: 8px;
  }

  .product-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    padding: 8px 0 2px;
  }

  .product-carousel-dots button {
    width: 7px;
    height: 7px;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: #c7cbd1;
  }

  .product-carousel-dots button.active {
    background: var(--accent);
  }

  .hero-copy {
    display: grid;
    justify-items: center;
    gap: 8px;
    order: 1;
    text-align: center;
  }

  .hero-copy .hero-actions {
    display: none;
  }

  .hero-copy .eyebrow {
    display: none;
  }

  .hero h1 {
    width: min(100%, 340px);
    font-size: 30px;
    line-height: 1.06;
    letter-spacing: -0.04em;
  }

  .hero p {
    max-width: 320px;
    margin: 0;
    font-size: 14px;
    line-height: 1.42;
  }

  .mobile-hero-benefits {
    display: grid;
    gap: 7px;
    margin-top: 3px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
    text-align: left;
  }

  .mobile-hero-benefits span {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mobile-hero-benefits span::before {
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(183, 24, 35, 0.1);
    color: var(--accent);
    content: "✓";
    font-size: 11px;
    font-weight: 950;
  }

  .hero-sample-card {
    order: 2;
    max-width: none;
    margin-top: 4px;
    border-color: rgba(17, 24, 39, 0.1);
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 10px 26px rgba(17, 24, 39, 0.08);
  }

  .hero-sample-copy {
    margin-bottom: 10px;
  }

  .hero-sample-copy .eyebrow {
    display: none;
  }

  .hero-sample-copy h2 {
    font-size: 18px;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
  }

  .hero-sample-copy p {
    display: none;
  }

  .hero-sample-card .sample-form {
    grid-template-columns: 1fr;
    gap: 13px;
    border: 0;
    padding: 0;
    background: #fff;
  }

  .hero-sample-card .sample-form > label span,
  .hero-sample-card .sample-form legend {
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
  }

  .hero-sample-card .sample-form input {
    min-height: 42px;
    border: 1px solid #d8dde5;
    border-radius: 7px;
    background: #fff;
    font-size: 13px;
  }

  .hero-sample-card .sample-form fieldset {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 0;
  }

  .hero-sample-card .sample-form fieldset label {
    min-height: 40px;
    border: 1px solid #d8dde5;
    border-radius: 7px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 900;
  }

  .hero-sample-card .sample-form fieldset label:has(input:checked) {
    border-color: var(--accent);
    box-shadow: inset 0 0 0 1px rgba(183, 24, 35, 0.2);
  }

  .hero-sample-card .sample-form .button {
    min-height: 45px;
    border-radius: 7px;
    background: linear-gradient(180deg, #e20d14, #c90009);
    font-size: 15px;
    box-shadow: 0 10px 18px rgba(183, 24, 35, 0.18);
  }

  .hero-sample-card .sample-form p {
    color: #667085;
    font-size: 12px;
    line-height: 1.35;
  }

  .hero-transition {
    display: block;
    max-width: none;
    margin: 0;
    border-top: 1px solid #e6e8ee;
    border-bottom: 1px solid #e6e8ee;
    padding: 26px var(--mobile-page-pad);
    background: #fff;
    box-shadow: none;
    clip-path: none;
    color: var(--ink);
    text-align: left;
  }

  .hero-transition > div:first-child {
    display: block;
  }

  .hero-transition .eyebrow {
    display: none;
  }

  .hero-transition h2 {
    color: var(--ink);
    font-size: 22px;
    line-height: 1.08;
  }

  .transition-points {
    display: grid;
    gap: 0;
    width: 100%;
    margin-top: 14px;
  }

  .transition-points span {
    position: relative;
    display: block;
    min-height: 0;
    border: 0;
    border-left: 1px dashed #d6d9df;
    padding: 0 0 18px 34px;
    background: transparent;
    color: var(--ink);
    font-size: 14px;
    line-height: 1.45;
    text-align: left;
  }

  .transition-points span::before {
    position: absolute;
    top: 0;
    left: -12px;
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    content: counter(list-item);
    font-size: 12px;
    font-weight: 950;
  }

  .transition-points {
    counter-reset: list-item;
  }

  .transition-points span {
    counter-increment: list-item;
  }

  .reason-list,
  .creator-notes .checklist {
    gap: 0;
  }

  .section,
  .band,
  .sample-section {
    border-top: 1px solid #e6e8ee;
    padding: 26px var(--mobile-page-pad);
    background: #fff;
  }

  .section-heading,
  .creator-notes .section-heading,
  .creator-notes-copy h2 {
    margin-bottom: 12px;
  }

  .section-heading .eyebrow,
  .creator-notes .eyebrow {
    display: none;
  }

  .section-heading h2,
  .sample-section h2,
  .creator-notes-copy h2,
  .creator-notes-panel h3 {
    font-size: 22px;
    line-height: 1.12;
    letter-spacing: -0.03em;
    text-align: left;
    white-space: normal;
  }

  .creator-notes {
    gap: 22px;
    text-align: left;
  }

  .creator-notes-copy,
  .creator-notes-panel {
    display: block;
  }

  .reason-list div,
  .creator-notes .checklist div {
    min-height: 0;
    border-width: 0 0 1px;
    border-radius: 0;
    padding: 12px 0;
    background: transparent;
  }

  .reason-list strong,
  .creator-notes .checklist strong,
  #product .point-grid strong {
    font-size: 15px;
    line-height: 1.25;
  }

  .reason-list span,
  .creator-notes .checklist span,
  #product .point-grid span {
    display: -webkit-box;
    margin-top: 3px;
    color: #3f4652;
    font-size: 13px;
    line-height: 1.45;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  #product .point-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  #product .point-grid div {
    min-height: 0;
    position: relative;
    border-width: 0 0 1px;
    border-radius: 0;
    padding: 12px 0 12px 26px;
    background: transparent;
  }

  #product .point-grid div::before {
    position: absolute;
    top: 14px;
    left: 0;
    color: var(--accent);
    content: "✓";
    font-weight: 950;
  }

  .home-case-library {
    padding-bottom: 32px;
  }

  .home-library-heading {
    align-items: start;
    flex-direction: row;
    margin-bottom: 12px;
  }

  .home-library-heading .button {
    min-height: 30px;
    padding: 0;
    border: 0;
    color: var(--accent);
    background: transparent;
    font-size: 12px;
  }

  .sticky-sample-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 40;
    display: block;
    border-top: 1px solid var(--line);
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -10px 24px rgba(23, 23, 23, 0.12);
  }

  .sticky-sample-bar[hidden] {
    display: none;
  }

  .sticky-sample-bar .button {
    width: 100%;
  }

  .library-page .section {
    padding: 14px var(--mobile-page-pad) 26px;
  }

  .library-shell.library-top-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .library-case-heading {
    display: none;
  }

  .library-search {
    margin-bottom: 12px;
  }

  .library-search span {
    display: none;
  }

  .library-search input {
    min-height: 48px;
    border-radius: 13px;
    padding-left: 42px;
    background:
      radial-gradient(circle at 18px 50%, transparent 5px, #111827 5.5px, #111827 6.5px, transparent 7px),
      linear-gradient(45deg, transparent calc(50% - 1px), #111827 calc(50% - 1px), #111827 calc(50% + 1px), transparent calc(50% + 1px)) 26px 29px / 8px 8px no-repeat,
      #fff;
    box-shadow: 0 8px 22px rgba(17, 24, 39, 0.06);
  }

  .filters {
    flex-wrap: nowrap;
    gap: 8px;
    margin-right: calc(-1 * var(--mobile-page-pad));
    margin-bottom: 14px;
    overflow-x: auto;
    padding-right: var(--mobile-page-pad);
    scrollbar-width: none;
  }

  .filters::-webkit-scrollbar {
    display: none;
  }

  .filters button {
    flex: 0 0 auto;
    min-height: 34px;
    border-radius: 999px;
    padding: 0 14px;
    background: #fff;
    box-shadow: none;
  }

  .library-top-layout .library-sidebar,
  .library-sidebar {
    display: none;
  }

  .masonry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
  }

  .research-card {
    display: block;
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .research-body {
    display: block;
    padding: 9px 3px 0;
    overflow: visible;
  }

  .research-video {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #111;
  }

  .research-video::after {
    position: absolute;
    bottom: 8px;
    left: 8px;
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    content: "▶";
    font-size: 10px;
    line-height: 1;
  }

  .research-video video,
  .research-video img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
  }

  .research-card .case-topline .button,
  .research-card .chips {
    display: none;
  }

  .research-card .case-topline {
    display: block;
    min-height: 0;
    margin-bottom: 5px;
  }

  .research-card .case-meta {
    color: #1f2937;
    font-size: 12px;
    font-weight: 850;
  }

  .research-body h2 {
    min-height: 31px;
    color: var(--ink);
    font-size: 13.5px;
    font-weight: 900;
    line-height: 1.22;
  }

  .metric-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    margin-top: 8px;
  }

  .metric-card {
    display: inline-flex;
    min-height: 22px;
    align-items: center;
    gap: 3px;
  }

  .metric-card span {
    width: 19px;
    height: 19px;
    background: transparent;
  }

  .metric-card svg {
    stroke-width: 3;
  }

  .metric-card strong {
    font-size: 11.5px;
    letter-spacing: -0.02em;
  }

  .research-modal {
    display: block;
    padding: 0;
  }

  .research-modal-backdrop {
    display: none;
  }

  .research-modal-panel {
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    border-radius: 0;
    background: #fff;
  }

  .modal-layout {
    display: block;
    height: auto;
    overflow: visible;
  }

  .modal-close {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 8;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    min-height: 36px;
    margin: 0;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 999px;
    padding: 0;
    background: rgba(255, 255, 255, 0.92);
    color: transparent;
    font-size: 0;
    line-height: 1;
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.12);
  }

  .modal-close::before {
    color: var(--ink);
    content: "×";
    font-size: 24px;
    line-height: 36px;
  }

  .modal-video {
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    background: #050505;
  }

  .modal-video video {
    width: 100%;
    height: 100%;
  }

  .modal-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-bottom: 1px solid #e6e8ee;
    padding: 12px 14px;
    background: #fff7f7;
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
    text-align: center;
  }

  .modal-scroll-hint::after {
    content: "↓";
    font-size: 16px;
    line-height: 1;
  }

  .modal-breakdown {
    padding: 18px var(--mobile-page-pad) 28px;
  }

  .modal-breakdown .case-meta {
    color: #1f2937;
    font-size: 13px;
  }

  .modal-breakdown h2 {
    padding-right: 0;
    font-size: 23px;
    line-height: 1.12;
    letter-spacing: -0.03em;
  }

  .modal-breakdown > .metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    margin: 14px 0 8px;
    border-bottom: 1px solid #e6e8ee;
    padding-bottom: 12px;
  }

  .modal-breakdown > .metric-grid .metric-card {
    display: grid;
    justify-items: center;
    gap: 4px;
    min-height: 44px;
    color: var(--ink);
  }

  .modal-breakdown > .metric-grid .metric-card span {
    width: 18px;
    height: 18px;
  }

  .modal-breakdown > .metric-grid .metric-card strong {
    font-size: 12px;
  }

  .modal-breakdown > .metric-grid .metric-card em {
    display: block;
    color: #747b86;
    font-size: 10px;
    font-style: normal;
  }

  .creator-guide {
    gap: 10px;
    margin-top: 16px;
  }

  .guide-block {
    border: 1px solid #e7e9ee;
    border-radius: 12px;
    padding: 14px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.04);
  }

  .guide-block strong {
    color: var(--accent);
    font-size: 14px;
    text-transform: none;
  }

  .guide-block p,
  .guide-block li {
    font-size: 13px;
    line-height: 1.5;
  }

  .guide-script,
  .guide-transcript,
  .guide-caption {
    margin-top: 0;
    border-color: #eef0f4;
    border-radius: 12px;
    padding: 14px;
    background: #f4f6f8;
  }

  .modal-back-to-top {
    position: fixed;
    right: 16px;
    bottom: 18px;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    font-size: 20px;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 8px 20px rgba(23, 23, 23, 0.16);
    transition: opacity 160ms ease;
  }

  .modal-back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
  }

  .home-library-heading {
    align-items: start;
    flex-direction: row;
  }

  .transition-points,
  .reason-list,
  .creator-notes .checklist,
  .case-carousel-track {
    grid-template-columns: 1fr;
    grid-auto-columns: 100%;
  }

  .desktop-hero-title {
    display: none;
  }

  .mobile-hero-title {
    display: inline;
    white-space: nowrap;
  }

  .hero h1 {
    width: 100%;
    max-width: none;
    font-size: clamp(24px, 7.2vw, 30px);
    line-height: 1.05;
    text-align: center;
  }

  .mobile-hero-benefits {
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    align-items: center;
    gap: 9px;
    width: 100%;
    font-size: 12px;
    white-space: nowrap;
    text-align: center;
  }

  .mobile-hero-benefits span {
    gap: 4px;
  }

  .mobile-hero-benefits span::before {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
  }

  .hero-sample-card {
    max-width: 438px;
    width: 100%;
    justify-self: center;
    margin-inline: auto;
    padding: 16px;
  }

  .hero-sample-card .sample-form {
    gap: 15px;
  }

  .hero-sample-card .sample-form > label {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 8px;
  }

  .hero-sample-card .sample-form > label span,
  .hero-sample-card .sample-form legend {
    color: #111827;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.2;
    white-space: normal;
  }

  .hero-sample-card .sample-form input {
    min-height: 42px;
    color: #111827;
  }

  .hero-sample-card .sample-form fieldset {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 10px;
  }

  .hero-sample-card .sample-form fieldset legend {
    grid-column: 1 / -1;
    margin: 0 0 1px;
  }

  .hero-sample-card .sample-form fieldset label {
    display: flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid #d8dde5;
    background: #fff;
    color: #111827;
  }

  .hero-sample-card .sample-form p {
    display: block;
    width: 100%;
    max-width: 330px;
    justify-self: center;
    margin: 0 auto;
    text-align: center;
  }

  .hero-transition,
  .hero-transition h2,
  .transition-points,
  .transition-points span,
  .creator-notes,
  .creator-notes-copy h2,
  .creator-notes-panel h3,
  .section-heading h2,
  .sample-section,
  .sample-section h2,
  .sample-copy,
  .sample-section p {
    text-align: center;
  }

  .hero-transition {
    max-width: 390px;
    margin-inline: auto;
  }

  .transition-points {
    justify-items: stretch;
    width: min(100%, 330px);
    margin-inline: auto;
  }

  .transition-points span {
    width: 100%;
    border-left: 1px solid #e1e4ea;
    padding: 0 0 18px 40px;
    font-weight: 850;
    text-align: left;
  }

  .transition-points span:last-child {
    border-left-color: transparent;
    padding-bottom: 0;
  }

  .transition-points span::before {
    left: -12px;
    top: 0;
  }

  #product {
    background: #fff;
    color: var(--ink);
  }

  #product .section-heading h2,
  #product .point-grid strong {
    color: var(--ink);
  }

  #product .point-grid span {
    color: #3f4652;
  }

  .sample-cta-section,
  .sample-cta-section .sample-copy,
  .sample-cta-section .sample-copy p,
  .sample-cta-section .contact-email {
    background: #fff;
    color: var(--ink);
    box-shadow: none;
    clip-path: none;
  }

  .sample-cta-section .gateway-actions {
    justify-content: center;
  }

  .home-case-library .case-carousel-viewport {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .home-case-library .case-carousel-viewport::-webkit-scrollbar {
    display: none;
  }

  .home-case-library .case-carousel-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 30%;
    gap: 10px;
    transform: none !important;
  }

  .home-case-library .case-carousel-slide {
    min-width: 0;
  }

  .home-case-library .case-carousel-button {
    display: none;
  }

  .home-case-library .case-card {
    border: 0;
    border-radius: 10px;
    overflow: hidden;
    background: transparent;
  }

  .home-case-library .video-frame video {
    aspect-ratio: 0.78 / 1;
    object-fit: cover;
  }

  .home-case-library .case-body {
    display: none;
  }

  .sticky-sample-bar {
    right: 12px;
    bottom: 12px;
    left: 12px;
    border: 0;
    border-radius: 12px;
    padding: 0;
    background: transparent;
    box-shadow: 0 10px 24px rgba(23, 23, 23, 0.16);
  }

  .sticky-sample-bar .button {
    min-height: 46px;
    border-radius: 10px;
  }
}
