:root {
  --ink: #0b0b0c;
  --ink-soft: #1a1a1d;
  --paper: #ffffff;
  --surface: #f3f4f5;
  --line: #d9dcdf;
  --muted: #666b70;
  --accent: #ff5a36;
  --accent-dark: #d83d1f;
  --line-green: #06c755;
  --teal: #006b69;
  --max-width: 1240px;
  --radius: 6px;
  --header-height: 66px;
  font-family:
    "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
}

body.dialog-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  line-height: 1.75;
}

svg {
  width: 1.1em;
  height: 1.1em;
  stroke-width: 1.8;
}

.container {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.section {
  padding-block: 112px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}

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

.launch-bar {
  position: relative;
  z-index: 102;
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 7px 20px;
  background: var(--accent);
  color: var(--paper);
  font-size: 13px;
}

.launch-bar span,
.launch-bar strong {
  line-height: 1.3;
}

.launch-bar strong {
  font-size: 15px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 0 max(24px, calc((100vw - var(--max-width)) / 2));
  border-bottom: 1px solid rgba(10, 10, 10, 0.09);
  background: rgba(255, 255, 255, 0.96);
  transition:
    box-shadow 180ms ease,
    background 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  background: var(--paper);
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 14px;
}

.brand-wordmark {
  display: block;
  width: 98px;
  height: auto;
  flex: 0 0 auto;
}

.brand-service {
  padding-left: 14px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding-block: 23px;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--accent);
  content: "";
  transform-origin: right;
  transition: transform 160ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
}

.mobile-nav {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: var(--paper);
}

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

.button-line {
  background: var(--line-green);
  color: #05280f;
}

.button-line:hover {
  background: #05b94e;
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.58);
  color: var(--paper);
}

.button-ghost-light:hover {
  border-color: var(--paper);
  background: rgba(255, 255, 255, 0.1);
}

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

.button-light:hover {
  background: var(--surface);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow.light {
  color: #ffd4c9;
}

.hero {
  position: relative;
  display: flex;
  height: calc(100svh - 150px);
  min-height: 620px;
  max-height: 760px;
  align-items: flex-end;
  overflow: hidden;
  background: #17100e url("assets/hero/ksong-ai-video-unbranded.jpg") center 47% / cover
    no-repeat;
  color: var(--paper);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 5, 4, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 72px;
}

.hero .eyebrow span {
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  text-transform: none;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: 68px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 span {
  display: inline;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-specs {
  display: grid;
  max-width: 740px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-specs li {
  display: flex;
  min-height: 56px;
  flex-direction: column;
  justify-content: center;
  padding: 0 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-specs li:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-specs strong {
  margin-bottom: 5px;
  font-size: 17px;
}

.hero-specs span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.hero-credit {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
}

.hero-credit span:first-child {
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 64px;
  margin-bottom: 54px;
}

.section-heading h2,
.formats-intro h2,
.trust-layout h2,
.faq-intro h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.24;
  letter-spacing: 0;
}

.section-heading > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.work-section {
  background: var(--paper);
}

.filter-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 28px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-tabs::-webkit-scrollbar {
  display: none;
}

.filter-button {
  min-width: 70px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.work-grid {
  display: grid;
  max-width: 980px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 18px;
  margin-inline: auto;
}

.work-item {
  min-width: 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 560px;
}

.work-item.is-hidden {
  display: none;
}

.work-item-wide {
  grid-column: span 2;
}

.work-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: #dedede;
  cursor: zoom-in;
}

.work-item-wide .work-media {
  aspect-ratio: 16 / 10;
}

.work-media img,
.work-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 220ms ease,
    transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.work-media img {
  opacity: 1;
}

.work-video {
  opacity: 0;
  pointer-events: none;
}

.work-media.has-video img {
  opacity: 0;
}

.work-media.has-video .work-video {
  opacity: 1;
}

.work-media:hover img,
.work-media:hover .work-video,
.work-media:focus-visible img,
.work-media:focus-visible .work-video {
  transform: scale(1.035);
}

.demo-label {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 9px;
  border-radius: 4px;
  background: rgba(11, 11, 12, 0.84);
  color: var(--paper);
  font-size: 11px;
  font-weight: 800;
}

.view-icon {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  transition: transform 180ms ease;
}

.mute-indicator {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(11, 11, 12, 0.78);
  color: var(--paper);
  opacity: 0;
  transition: opacity 180ms ease;
}

.mute-indicator svg {
  width: 16px;
  height: 16px;
}

.work-media.is-playing .mute-indicator {
  opacity: 1;
}

.work-media:hover .view-icon {
  transform: scale(1.08);
}

.work-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
}

.work-meta p {
  margin-bottom: 5px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
}

.work-meta h3 {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.45;
}

.work-meta > span {
  flex: 0 0 auto;
  padding-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

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

.service-heading > p {
  color: rgba(255, 255, 255, 0.65);
}

.offer-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.8fr) minmax(0, 1.2fr);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.offer-price,
.offer-includes {
  padding-block: 52px;
}

.offer-price {
  padding-right: 64px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.offer-price > p:first-child {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  font-weight: 800;
}

.price-line {
  display: flex;
  align-items: baseline;
  margin-bottom: 14px;
}

.price-line strong {
  font-size: 92px;
  line-height: 0.9;
}

.price-line span:first-child {
  margin-right: 8px;
  color: var(--accent);
  font-size: 18px;
  font-weight: 900;
}

.price-line span:last-child {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 700;
}

.price-note {
  margin-bottom: 30px;
  color: #ffd4c9;
  font-size: 15px;
  font-weight: 800;
}

.offer-includes {
  padding-left: 64px;
}

.offer-includes h3 {
  margin-bottom: 28px;
  font-size: 18px;
}

.offer-includes ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 34px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.offer-includes li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.65;
}

.offer-includes li svg {
  margin-top: 2px;
  color: var(--accent);
}

.offer-includes li strong {
  display: block;
  margin-bottom: 3px;
  color: var(--paper);
  font-size: 15px;
}

.offer-footnote {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.formats-section {
  background: var(--surface);
}

.formats-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 92px;
}

.formats-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.format-list {
  border-top: 1px solid #bdc1c5;
}

.format-list article {
  display: grid;
  grid-template-columns: 40px 1fr 52px;
  align-items: center;
  gap: 24px;
  min-height: 150px;
  padding: 28px 0;
  border-bottom: 1px solid #bdc1c5;
}

.format-list article > span {
  align-self: start;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
}

.format-list h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.format-list p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.format-list article > svg {
  width: 36px;
  height: 36px;
  justify-self: end;
  color: var(--teal);
  stroke-width: 1.4;
}

.process-section {
  background: var(--paper);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.process-grid li {
  position: relative;
  min-height: 300px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid li > span {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
}

.process-grid li > svg {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 25px;
  height: 25px;
  color: var(--teal);
}

.process-grid h3 {
  margin: 88px 0 12px;
  font-size: 20px;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.pilot-section {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111 url("assets/covers/office-fashion.jpg") center 34% / cover
    no-repeat;
  color: var(--paper);
}

.pilot-section::before {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 7, 0.68);
  content: "";
}

.pilot-content {
  position: relative;
  z-index: 1;
}

.pilot-content h2 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 48px;
  line-height: 1.2;
}

.pilot-content > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.pilot-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.pilot-points span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
}

.trust-section {
  overflow: hidden;
  padding-bottom: 78px;
  background: var(--paper);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 90px;
  margin-bottom: 90px;
}

.trust-copy > p {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 17px;
}

.trust-copy ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.trust-copy li {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 800;
}

.industry-marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.industry-marquee div {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.industry-marquee span {
  position: relative;
  display: inline-flex;
  min-height: 76px;
  align-items: center;
  padding: 0 38px;
  font-size: 22px;
  font-weight: 900;
}

.industry-marquee span::after {
  position: absolute;
  right: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.faq-section {
  background: var(--surface);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: 110px;
}

.faq-intro {
  align-self: start;
}

.faq-intro h2 {
  margin-bottom: 28px;
}

.faq-intro > a {
  display: inline-flex;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.faq-list {
  border-top: 1px solid #bdc1c5;
}

.faq-list details {
  border-bottom: 1px solid #bdc1c5;
}

.faq-list summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary svg {
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.faq-list details[open] summary svg {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 680px;
  margin: -2px 0 26px;
  color: var(--muted);
  font-size: 14px;
}

.final-cta {
  background: var(--teal);
  color: var(--paper);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: end;
  gap: 80px;
}

.final-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.text-link-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 800;
}

.site-footer {
  padding-block: 52px;
  background: var(--ink);
  color: var(--paper);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
}

.brand-wordmark-light {
  filter: invert(1);
}

.footer-brand p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.footer-info {
  text-align: right;
}

.footer-info p,
.footer-info a {
  display: block;
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.copyright {
  grid-column: 1 / -1;
  margin: 22px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.36);
  font-size: 11px;
}

.floating-line {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  background: var(--line-green);
  color: #04240e;
  font-size: 13px;
  font-weight: 900;
}

.work-dialog {
  width: min(1040px, calc(100% - 40px));
  max-height: calc(100svh - 40px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}

.work-dialog::backdrop {
  background: rgba(0, 0, 0, 0.78);
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  cursor: pointer;
}

.dialog-layout {
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
}

.dialog-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #ddd;
}

.dialog-media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050506;
}

.dialog-media > span {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 8px 10px;
  border-radius: 4px;
  background: rgba(11, 11, 12, 0.85);
  color: var(--paper);
  font-size: 11px;
  font-weight: 800;
}

.dialog-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px;
}

.dialog-copy h2 {
  margin-bottom: 18px;
  font-size: 32px;
  line-height: 1.25;
}

.dialog-copy > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
}

.dialog-copy dl {
  margin: 0 0 30px;
  border-top: 1px solid var(--line);
}

.dialog-copy dl div {
  display: grid;
  grid-template-columns: 70px 1fr;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.dialog-copy dt {
  color: var(--muted);
}

.dialog-copy dd {
  margin: 0;
  font-weight: 800;
}

:focus-visible {
  outline: 3px solid #ffb19f;
  outline-offset: 3px;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-line {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    flex-direction: column;
    gap: 0;
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
    background: var(--paper);
  }

  .mobile-nav.is-open {
    display: flex;
  }

  .mobile-nav > a:not(.button) {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    font-weight: 800;
  }

  .mobile-nav .button {
    margin-top: 16px;
  }

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

  .section-heading,
  .formats-layout,
  .trust-layout,
  .faq-layout,
  .final-cta-inner {
    gap: 48px;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  }

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

  .work-item-wide {
    grid-column: span 2;
  }

  .offer-layout {
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  }

  .offer-price {
    padding-right: 38px;
  }

  .offer-includes {
    padding-left: 38px;
  }

  .offer-includes ul {
    grid-template-columns: 1fr;
  }

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

  .faq-layout {
    grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  }

  .dialog-layout {
    grid-template-columns: 1fr 380px;
  }
}

@media (max-width: 740px) {
  :root {
    --header-height: 60px;
  }

  html {
    scroll-padding-top: 72px;
  }

  .container {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .section {
    padding-block: 76px;
  }

  .launch-bar {
    min-height: 42px;
    gap: 7px;
    padding-inline: 10px;
    font-size: 11px;
    text-align: center;
  }

  .launch-bar span:first-child {
    display: none;
  }

  .launch-bar strong {
    font-size: 13px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand {
    gap: 8px;
  }

  .brand-wordmark {
    width: 88px;
  }

  .brand-service {
    padding-left: 8px;
    font-size: 11px;
  }

  .hero {
    height: calc(100svh - 137px);
    min-height: 530px;
    max-height: 650px;
    background-position: 62% center;
  }

  .hero-content {
    padding-bottom: 36px;
  }

  .hero .eyebrow span {
    display: none;
  }

  .hero h1 {
    max-width: 520px;
    margin-bottom: 16px;
    font-size: 40px;
    line-height: 1.14;
  }

  .hero h1 span {
    display: block;
  }

  .hero-lead {
    max-width: 520px;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    margin-bottom: 32px;
  }

  .hero-actions .button {
    min-height: 44px;
  }

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

  .hero-specs li {
    min-height: 48px;
    padding: 0 12px;
  }

  .hero-specs strong {
    font-size: 13px;
  }

  .hero-specs span {
    font-size: 10px;
  }

  .hero-credit {
    display: none;
  }

  .eyebrow {
    margin-bottom: 15px;
  }

  .section-heading,
  .formats-layout,
  .trust-layout,
  .faq-layout,
  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .formats-intro h2,
  .trust-layout h2,
  .faq-intro h2,
  .final-cta h2 {
    font-size: 31px;
    line-height: 1.3;
  }

  .section-heading > p {
    font-size: 14px;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .work-item-wide {
    grid-column: auto;
  }

  .work-media,
  .work-item-wide .work-media {
    aspect-ratio: 4 / 5;
  }

  .work-item-wide:first-child .work-media {
    aspect-ratio: 4 / 3;
  }

  .work-meta h3 {
    font-size: 17px;
  }

  .work-meta > span {
    font-size: 10px;
  }

  .offer-layout {
    grid-template-columns: 1fr;
  }

  .offer-price {
    padding: 38px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .offer-includes {
    padding: 38px 0;
  }

  .price-line strong {
    font-size: 76px;
  }

  .offer-includes ul {
    gap: 22px;
  }

  .formats-layout {
    gap: 40px;
  }

  .formats-intro {
    position: static;
  }

  .format-list article {
    grid-template-columns: 30px 1fr 34px;
    gap: 14px;
    min-height: 132px;
  }

  .format-list h3 {
    font-size: 19px;
  }

  .format-list p {
    font-size: 13px;
  }

  .format-list article > svg {
    width: 28px;
    height: 28px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid li {
    min-height: 220px;
    padding: 24px;
  }

  .process-grid h3 {
    margin-top: 40px;
  }

  .pilot-section {
    min-height: 640px;
    background-position: center top;
  }

  .pilot-content h2 {
    font-size: 34px;
  }

  .pilot-content > p:not(.eyebrow) {
    font-size: 15px;
  }

  .pilot-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .pilot-points span:last-child {
    grid-column: 1 / -1;
  }

  .trust-layout {
    margin-bottom: 58px;
  }

  .industry-marquee span {
    min-height: 64px;
    padding-inline: 28px;
    font-size: 18px;
  }

  .faq-layout {
    gap: 42px;
  }

  .faq-list summary {
    min-height: 72px;
    font-size: 15px;
  }

  .final-cta-inner {
    gap: 38px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-info {
    text-align: left;
  }

  .floating-line {
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
    justify-content: center;
    padding: 0;
  }

  .floating-line span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .work-dialog {
    width: calc(100% - 20px);
    max-height: calc(100svh - 20px);
    overflow-y: auto;
  }

  .dialog-layout {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .dialog-media {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .dialog-copy {
    padding: 32px 24px 38px;
  }

  .dialog-copy h2 {
    font-size: 27px;
  }
}

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

  .hero {
    min-height: 530px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-specs li {
    padding-inline: 8px;
  }

  .hero-specs strong {
    font-size: 12px;
  }

  .work-meta {
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
