:root {
  --ink: #131a2d;
  --ink-soft: #5d6475;
  --paper: #f5f3ee;
  --white: #ffffff;
  --navy: #10182f;
  --navy-2: #172445;
  --coral: #ff6d52;
  --coral-light: #ff9d86;
  --lime: #d8ff57;
  --line: rgba(19, 26, 45, 0.14);
  --radius-lg: 30px;
  --radius-md: 20px;
  --shadow: 0 24px 70px rgba(24, 29, 45, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Helvetica Neue",
    Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

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

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    background 220ms ease,
    box-shadow 220ms ease;
}

.site-header.scrolled {
  background: rgba(16, 24, 47, 0.94);
  box-shadow: 0 12px 36px rgba(4, 10, 28, 0.16);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.04em;
}

.brand > span:last-child {
  display: grid;
  line-height: 1.05;
}

.brand strong {
  font-size: 17px;
  letter-spacing: 0.08em;
}

.brand small {
  margin-top: 5px;
  font-size: 10px;
  opacity: 0.68;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--coral);
  transform: rotate(-10deg);
}

.brand-mark i {
  position: absolute;
  top: 8px;
  left: 17px;
  width: 4px;
  height: 22px;
  border-radius: 8px;
  background: var(--white);
  transform-origin: center;
}

.brand-mark i:nth-child(2) {
  transform: rotate(60deg);
}

.brand-mark i:nth-child(3) {
  transform: rotate(120deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
}

.site-nav > a {
  opacity: 0.76;
  transition:
    opacity 180ms ease,
    color 180ms ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible {
  opacity: 1;
}

.site-nav .nav-cta {
  padding: 10px 18px;
  color: var(--navy);
  background: var(--lime);
  border-radius: 999px;
  opacity: 1;
  font-weight: 700;
}

.site-nav .lang-switch {
  padding: 5px 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 6px auto;
  background: var(--white);
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: 840px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(255, 109, 82, 0.05), transparent 42%),
    var(--navy);
}

.hero::after {
  position: absolute;
  right: -12%;
  bottom: -38%;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.76;
}

.orb-one {
  top: 16%;
  right: 5%;
  width: 370px;
  height: 370px;
  background: radial-gradient(circle at 38% 36%, #ff8c72, var(--coral) 52%, #d94a43);
  box-shadow: 0 0 100px rgba(255, 109, 82, 0.24);
}

.orb-two {
  right: 28%;
  bottom: 2%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at 35% 30%, #e8ff9f, var(--lime));
  opacity: 0.92;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 76px;
  align-items: center;
  min-height: 840px;
  padding-top: 82px;
}

.eyebrow,
.section-index {
  margin: 0 0 22px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.58);
}

.eyebrow span {
  width: 32px;
  height: 2px;
  background: var(--coral);
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(52px, 5.2vw, 82px);
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.hero h1 em {
  color: var(--lime);
  font-style: normal;
}

.hero-lead {
  max-width: 590px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
}

.hero-global {
  max-width: 560px;
  margin: 12px 0 0;
  color: rgba(216, 255, 87, 0.74);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.035em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
}

.button-primary {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 14px 34px rgba(255, 109, 82, 0.2);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button-primary:hover {
  box-shadow: 0 18px 38px rgba(255, 109, 82, 0.28);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  font-weight: 650;
}

.text-link span {
  color: var(--lime);
  font-size: 19px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 54px;
}

.hero-tags span {
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 11px;
}

.hero-stage {
  position: relative;
  height: 570px;
}

.stage-frame {
  position: absolute;
  top: 62px;
  right: 28px;
  width: min(520px, 92%);
  height: 390px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015)),
    rgba(17, 25, 48, 0.32);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(22px);
  transform: rotate(2.5deg);
}

.frame-top {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.live-dot::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.stage-center {
  display: grid;
  place-content: center;
  height: 265px;
  text-align: center;
  transform: rotate(-2.5deg);
}

.stage-center p {
  margin: 0;
  font-size: clamp(54px, 5vw, 76px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.07em;
}

.stage-center p:last-child {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.7);
}

.stage-center span {
  margin: 9px 0 7px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4em;
}

.timeline {
  display: grid;
  grid-template-columns: 1fr repeat(3, 8px);
  gap: 14px;
  align-items: center;
}

.timeline span {
  position: relative;
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
}

.timeline span::after {
  display: block;
  width: 66%;
  height: 100%;
  background: var(--coral);
  content: "";
}

.timeline i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: grid;
  min-width: 180px;
  padding: 18px 20px;
  color: var(--ink);
  border-radius: 17px;
  box-shadow: var(--shadow);
}

.floating-card small {
  margin-bottom: 18px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  opacity: 0.52;
}

.floating-card strong {
  font-size: 24px;
  line-height: 1;
}

.floating-card span {
  margin-top: 7px;
  font-size: 10px;
  opacity: 0.58;
}

.card-script {
  top: 24px;
  left: -10px;
  background: var(--lime);
  transform: rotate(-5deg);
}

.card-edit {
  right: -2px;
  bottom: 16px;
  color: var(--white);
  background: var(--coral);
  transform: rotate(5deg);
}

.section {
  padding: 120px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.section-heading h2,
.workflow h2,
.about h2,
.contact h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.16;
  letter-spacing: -0.045em;
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--ink-soft);
  font-size: 15px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  min-height: 460px;
  padding: 34px 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.48);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.service-card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.service-card.featured {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.service-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--ink-soft);
  font-size: 11px;
}

.featured .service-number {
  color: rgba(255, 255, 255, 0.48);
}

.service-icon {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 34px 0 56px;
  border-radius: 19px;
  background: var(--coral);
}

.icon-play::after {
  position: absolute;
  top: 23px;
  left: 29px;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid var(--white);
  content: "";
}

.icon-frame {
  background: var(--lime);
}

.icon-frame::before,
.icon-frame::after {
  position: absolute;
  border: 2px solid var(--navy);
  content: "";
}

.icon-frame::before {
  inset: 17px;
}

.icon-frame::after {
  inset: 26px 10px 10px 26px;
  border-color: var(--coral);
}

.icon-spark {
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
}

.icon-spark::before,
.icon-spark::after {
  position: absolute;
  top: 15px;
  left: 33px;
  width: 6px;
  height: 42px;
  border-radius: 6px;
  background: var(--coral);
  content: "";
}

.icon-spark::after {
  transform: rotate(90deg);
}

.service-card h3 {
  margin: 0 0 14px;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.service-card > p {
  min-height: 80px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.featured > p {
  color: rgba(255, 255, 255, 0.64);
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 28px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  font-size: 12px;
}

.featured ul {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.14);
}

.service-card li::before {
  margin-right: 8px;
  color: var(--coral);
  content: "—";
}

.showcase {
  color: var(--white);
  background:
    radial-gradient(circle at 16% 18%, rgba(216, 255, 87, 0.08), transparent 24%),
    #0a1022;
}

.showcase-heading > p {
  color: rgba(255, 255, 255, 0.58);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  min-height: 650px;
}

.video-card-primary {
  grid-row: 1 / 3;
}

.video-frame {
  position: relative;
  height: 100%;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: var(--navy);
}

.video-frame::after {
  position: absolute;
  inset: 35% 0 0;
  z-index: 1;
  background: linear-gradient(to bottom, transparent, rgba(6, 11, 27, 0.88));
  content: "";
  pointer-events: none;
}

.video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.video-card:hover video {
  transform: scale(1.035);
}

.video-toggle {
  position: absolute;
  z-index: 3;
  top: 20px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--navy);
  border: 0;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 10px 28px rgba(3, 8, 22, 0.24);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.video-toggle:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
}

.video-caption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 26px;
  left: 28px;
}

.video-caption > span {
  color: var(--lime);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.video-caption h3 {
  margin: 10px 0 0;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.video-caption p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.workflow {
  position: relative;
  color: var(--white);
  background: var(--navy);
}

.workflow::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
  content: "";
}

.workflow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.section-index.light {
  color: var(--lime);
}

.workflow-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.workflow-intro > p:last-child {
  max-width: 460px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.6);
}

.workflow-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 28px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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

.workflow-list li > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--navy);
  border-radius: 50%;
  background: var(--lime);
  font-size: 11px;
  font-weight: 800;
}

.workflow-list h3 {
  margin: 0;
  font-size: 22px;
}

.workflow-list p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.collaboration {
  padding: 76px 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 109, 82, 0.16), transparent 22%),
    var(--paper);
}

.collaboration-band {
  display: grid;
  grid-template-columns: 0.7fr 1.15fr;
  gap: 38px 90px;
  align-items: end;
  padding: 54px 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.56);
}

.collaboration-title .section-index {
  margin-bottom: 14px;
}

.collaboration-title h2 {
  margin: 0;
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.collaboration-copy {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.collaboration-points {
  display: grid;
  grid-column: 1 / 3;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.collaboration-points span {
  padding: 24px 18px 0 0;
  font-size: 13px;
  font-weight: 700;
}

.collaboration-points strong {
  margin-right: 12px;
  color: var(--coral);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.about-art {
  position: relative;
  display: grid;
  place-content: center;
  aspect-ratio: 1;
  overflow: hidden;
  color: var(--white);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 50%, transparent 0 26%, rgba(255, 255, 255, 0.1) 26.2% 26.8%, transparent 27%),
    linear-gradient(135deg, var(--coral), #ef4f52);
}

.about-art::before,
.about-art::after {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.about-art::before {
  top: -110px;
  right: -70px;
}

.about-art::after {
  bottom: -150px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: var(--navy);
}

.about-word {
  position: relative;
  z-index: 2;
  font-size: clamp(72px, 10vw, 140px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.09em;
  transform: translateX(-5px);
}

.about-caption {
  position: relative;
  z-index: 2;
  margin-top: 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-align: center;
}

.about-lead {
  margin: 26px 0 18px;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.7;
}

.about-copy > p:not(.section-index):not(.about-lead) {
  color: var(--ink-soft);
}

.company-facts {
  margin: 42px 0 0;
  border-top: 1px solid var(--line);
}

.company-facts div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.company-facts dt {
  color: var(--ink-soft);
}

.company-facts dd {
  margin: 0;
  font-weight: 650;
}

.contact {
  padding: 100px 0;
  color: var(--white);
  background: var(--coral);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 100px;
  align-items: center;
}

.contact-card {
  padding: 34px;
  color: var(--ink);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 20px 60px rgba(106, 39, 34, 0.15);
}

.contact-card > span {
  color: var(--coral);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.contact-card h3 {
  margin: 14px 0 10px;
  font-size: 24px;
}

.contact-card > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.contact-card dl {
  margin: 28px 0 0;
}

.contact-card dl div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.contact-card dt {
  color: var(--ink-soft);
}

.contact-card dd {
  margin: 0;
  font-weight: 650;
}

.contact-card dd a {
  text-decoration-color: rgba(255, 109, 82, 0.42);
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 160ms ease;
}

.contact-card dd a:hover,
.contact-card dd a:focus-visible {
  color: var(--coral);
}

.site-footer {
  padding: 48px 0 26px;
  color: rgba(255, 255, 255, 0.72);
  background: #0a1022;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top nav {
  display: flex;
  gap: 28px;
  font-size: 12px;
}

.footer-top nav a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.footer-contact {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-contact a {
  transition: color 160ms ease;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--lime);
}

.privacy-page {
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
}

.privacy-page .site-header {
  position: static;
  background: var(--navy);
}

.privacy-main {
  padding: 88px 0 120px;
}

.privacy-wrap {
  max-width: 820px;
}

.privacy-main h1 {
  margin: 0 0 16px;
  font-size: clamp(42px, 6vw, 68px);
  letter-spacing: -0.05em;
}

.privacy-updated {
  margin: 0 0 54px;
  color: var(--ink-soft);
  font-size: 12px;
}

.privacy-block {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.privacy-block h2 {
  margin: 0 0 12px;
  font-size: 20px;
}

.privacy-block p,
.privacy-block li {
  color: var(--ink-soft);
  font-size: 14px;
}

.privacy-block ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: auto;
    padding-top: 160px;
    padding-bottom: 90px;
  }

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

  .hero-stage {
    width: min(680px, 100%);
    height: 520px;
    margin: 0 auto;
  }

  .stage-frame {
    right: 9%;
    width: 76%;
  }

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

  .showcase-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 460px 300px;
    min-height: auto;
  }

  .video-card-primary {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .service-card {
    min-height: auto;
  }

  .service-card > p {
    min-height: auto;
  }

  .workflow-grid,
  .about-grid,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .workflow::before {
    display: none;
  }

  .workflow-intro {
    position: static;
  }

  .about-art {
    width: min(600px, 100%);
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .nav-wrap {
    min-height: 72px;
  }

  .nav-toggle {
    position: relative;
    z-index: 60;
    display: block;
  }

  .nav-open .nav-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-open .nav-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 55;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 24px;
    color: var(--white);
    background: var(--navy);
    font-size: 24px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav .nav-cta {
    margin-top: 12px;
    font-size: 15px;
  }

  .hero-grid {
    padding-top: 132px;
    padding-bottom: 64px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 68px);
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-tags {
    margin-top: 36px;
  }

  .hero-stage {
    height: 410px;
    margin-top: 20px;
  }

  .stage-frame {
    top: 44px;
    right: 3%;
    width: 88%;
    height: 320px;
  }

  .stage-center {
    height: 200px;
  }

  .floating-card {
    min-width: 145px;
    padding: 14px;
  }

  .floating-card small {
    margin-bottom: 12px;
  }

  .card-script {
    left: -3px;
  }

  .card-edit {
    right: -3px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .section-heading h2,
  .workflow h2,
  .about h2,
  .contact h2 {
    font-size: 40px;
  }

  .service-card {
    padding: 28px 24px;
  }

  .showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .video-card-primary {
    grid-column: auto;
  }

  .video-frame {
    min-height: 280px;
    aspect-ratio: 4 / 3;
  }

  .collaboration {
    padding: 54px 0;
  }

  .collaboration-band {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 26px;
  }

  .collaboration-points {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .collaboration-points span {
    padding-top: 16px;
  }

  .workflow-list li {
    grid-template-columns: 44px 1fr;
    gap: 18px;
  }

  .workflow-list li > span {
    width: 40px;
    height: 40px;
  }

  .about-grid {
    gap: 44px;
  }

  .contact {
    padding: 76px 0;
  }

  .contact-inner {
    gap: 44px;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .footer-top nav {
    flex-wrap: wrap;
    gap: 16px 22px;
  }

  .footer-bottom {
    gap: 8px;
  }
}

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

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