:root {
  --black: #07090c;
  --ink: #0d1117;
  --panel: #12171e;
  --panel-2: #181e27;
  --paper: #f3efe7;
  --paper-2: #e9e3d8;
  --white: #faf8f3;
  --text: #f2eee6;
  --text-soft: #bdb8af;
  --text-faint: #85827c;
  --dark-text: #14171c;
  --dark-soft: #5e5d59;
  --line: rgba(242, 238, 230, 0.14);
  --line-strong: rgba(242, 238, 230, 0.27);
  --dark-line: rgba(20, 23, 28, 0.16);
  --gold: #e2b75e;
  --gold-bright: #f2cf7f;
  --gold-soft: #f6e7bd;
  --cyan: #59d8d1;
  --cyan-deep: #1fa9a4;
  --danger: #e66c57;
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Noto Sans CJK SC", "Microsoft YaHei", sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  --shell: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-space: clamp(88px, 11vw, 144px);
  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-height: 78px;
}
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  background: var(--black);
}
body {
  margin: 0;
  color: var(--text);
  background: var(--black);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
[hidden] { display: none !important; }
::selection { color: var(--black); background: var(--gold-bright); }
:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--black);
  background: var(--gold-bright);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }
.shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--shell));
  margin-inline: auto;
}
.page-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 500;
  height: 2px;
  pointer-events: none;
}
.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
}
/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 400;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background 280ms ease, border-color 280ms ease, height 280ms ease;
}
.site-header.is-scrolled,
.site-header.is-menu-open {
  background: rgba(7, 9, 12, 0.9);
  border-bottom-color: var(--line);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.site-header.is-scrolled { height: 68px; }
.header-inner {
  width: min(calc(100% - (var(--gutter) * 2)), var(--shell));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  flex: 0 0 auto;
}
.brand-frame {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  color: var(--gold-bright);
  font: 600 10px/1 var(--font-mono);
  letter-spacing: 0.04em;
}
.brand-frame::before,
.brand-frame::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--black);
  border: solid currentColor;
}
.brand-frame::before { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.brand-frame::after { right: -1px; bottom: -1px; border-width: 0 1px 1px 0; }
.brand-copy { display: flex; flex-direction: column; gap: 2px; }
.brand-copy strong { font-size: 17px; font-weight: 600; letter-spacing: 0.08em; line-height: 1.2; }
.brand-copy small { color: var(--text-faint); font: 500 8px/1.2 var(--font-mono); letter-spacing: 0.08em; }
.main-nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); }
.main-nav > a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(250, 248, 243, 0.72);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 180ms ease;
}
.main-nav > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}
.main-nav > a:hover,
.main-nav > a.is-active { color: var(--white); }
.main-nav > a:hover::after,
.main-nav > a.is-active::after { transform: scaleX(1); transform-origin: left; }
.main-nav .nav-action {
  min-height: 42px;
  padding: 0 18px;
  color: var(--black);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
}
.main-nav .nav-action::after { display: none; }
.main-nav .nav-action:hover { color: var(--black); background: var(--gold-bright); }
.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  padding: 0;
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 240ms var(--ease), opacity 180ms ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
/* Shared type and actions */
.section { position: relative; padding: var(--section-space) 0; }
.section--paper { color: var(--dark-text); background: var(--paper); }
.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--dark-soft);
  font: 500 11px/1.2 var(--font-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow span { display: inline-flex; align-items: center; gap: 12px; }
.eyebrow span::before { content: ""; width: 24px; height: 1px; background: currentColor; }
.eyebrow b { font-weight: 500; }
.eyebrow--gold { color: var(--gold-bright); }
.eyebrow--cyan { color: var(--cyan); }
.section-heading { margin-bottom: clamp(48px, 7vw, 82px); }
.section-heading h2 {
  max-width: 900px;
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.052em;
}
.section-heading--dark h2 { color: var(--dark-text); }
.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: clamp(42px, 8vw, 120px);
}
.section-heading--split .section-lead {
  margin: 0 0 6px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.8;
}
.section-heading--dark .section-lead { color: var(--dark-soft); }
.button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 220ms var(--ease), background 220ms ease, border-color 220ms ease;
}
.button:hover { transform: translateY(-2px); }
.button--gold { color: var(--black); background: var(--gold); border-color: var(--gold); }
.button--gold:hover { background: var(--gold-bright); }
.button--glass { color: var(--white); background: rgba(255, 255, 255, 0.05); border-color: var(--line-strong); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.button--glass:hover { background: rgba(255, 255, 255, 0.1); }
/* Hero */
.hero {
  position: relative;
  min-height: 900px;
  height: max(900px, 100svh);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-video,
.hero-shade,
.hero-grain { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-video { object-fit: cover; object-position: center; z-index: 0; filter: saturate(0.72) contrast(1.08); }
.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.94) 0%, rgba(5, 7, 10, 0.72) 46%, rgba(5, 7, 10, 0.18) 78%, rgba(5, 7, 10, 0.34) 100%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.4) 0%, rgba(5, 7, 10, 0.08) 42%, rgba(5, 7, 10, 0.88) 100%);
}
.hero-grain {
  z-index: 2;
  opacity: 0.13;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(circle at 18% 32%, transparent 0, rgba(255,255,255,.12) .6px, transparent 1px, transparent 4px),
    repeating-linear-gradient(0deg, transparent 0, rgba(255,255,255,.025) 1px, transparent 2px, transparent 4px);
  background-size: 7px 7px, 100% 4px;
  mix-blend-mode: soft-light;
}
.hero-inner {
  position: relative;
  z-index: 3;
  width: min(calc(100% - (var(--gutter) * 2)), var(--shell));
  min-height: 100%;
  margin-inline: auto;
  padding: calc(var(--header-height) + 88px) 0 112px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.55fr);
  align-items: center;
  gap: 72px;
}
.hero-copy { max-width: 820px; }
.hero-copy h1 {
  margin: 0 0 30px;
  color: var(--white);
  font-size: clamp(60px, 8.2vw, 116px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.065em;
  text-wrap: balance;
}
.hero-copy h1 em { color: var(--gold-bright); font-style: normal; }
.hero-lead {
  max-width: 670px;
  margin: 0;
  color: rgba(250, 248, 243, 0.76);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.85;
}
.hero-actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-meta {
  align-self: end;
  margin-bottom: 36px;
  padding-left: 26px;
  border-left: 1px solid var(--line-strong);
}
.frame-counter__label { color: var(--text-faint); font: 500 10px/1.3 var(--font-mono); letter-spacing: 0.14em; }
.frame-counter strong { margin: 8px 0 16px; display: block; font: 500 46px/1 var(--font-mono); letter-spacing: -0.08em; }
.frame-counter strong span { margin: 0 8px; color: var(--gold); font-size: 22px; }
.frame-counter__line { display: block; width: 100%; height: 1px; background: linear-gradient(90deg, var(--gold) 0 38%, var(--line) 38%); }
.hero-meta > p { margin: 18px 0 0; color: var(--text-soft); font-size: 12px; line-height: 1.8; }
.video-toggle {
  position: absolute;
  z-index: 4;
  right: var(--gutter);
  bottom: 34px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 2px;
  color: var(--text-soft);
  border: 0;
  background: transparent;
  font: 500 9px/1 var(--font-mono);
  letter-spacing: 0.12em;
  cursor: pointer;
}
.video-toggle__pause { width: 14px; height: 14px; border-left: 3px double currentColor; border-right: 3px double currentColor; }
.video-toggle.is-paused .video-toggle__pause { border: 0; width: 0; height: 0; border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-left: 11px solid currentColor; }
.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 28px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-faint);
  text-decoration: none;
  transform: translateX(-50%);
  font: 500 8px/1 var(--font-mono);
  letter-spacing: 0.14em;
}
.scroll-cue i { width: 1px; height: 26px; background: linear-gradient(var(--gold), transparent); }
.film-strip {
  position: relative;
  z-index: 3;
  overflow: hidden;
  color: var(--black);
  background: var(--gold);
  border-block: 1px solid rgba(0,0,0,.24);
}
.film-strip::before,
.film-strip::after {
  content: "";
  position: absolute;
  inset: 6px 0 auto;
  height: 5px;
  opacity: .38;
  background: repeating-linear-gradient(90deg, var(--black) 0 10px, transparent 10px 20px);
}
.film-strip::after { inset: auto 0 6px; }
.film-strip__track {
  width: max-content;
  min-width: 100%;
  min-height: 68px;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
  font: 600 10px/1 var(--font-mono);
  letter-spacing: 0.12em;
}
.film-strip__track i { width: 4px; height: 4px; background: currentColor; transform: rotate(45deg); }
/* About */
.intro { padding-top: calc(var(--section-space) + 20px); }
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: clamp(56px, 10vw, 140px);
  align-items: end;
  margin-bottom: clamp(72px, 9vw, 116px);
}
.intro .section-heading { margin: 0; }
.intro .section-heading h2 { font-size: clamp(46px, 6.3vw, 82px); }
.intro-statement { padding-left: 30px; border-left: 1px solid var(--dark-line); }
.intro-statement p { margin: 0 0 20px; color: var(--dark-soft); font-size: 18px; line-height: 1.9; }
.intro-statement p:first-child { color: var(--dark-text); font-size: 22px; }
.intro-statement p:last-child { margin-bottom: 0; }
.capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--dark-line); border-bottom: 1px solid var(--dark-line); }
.capability-item {
  min-height: 330px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 60px;
  border-right: 1px solid var(--dark-line);
  transition: color 220ms ease, background 220ms ease;
}
.capability-item:last-child { border-right: 0; }
.capability-item:hover { color: var(--white); background: var(--dark-text); }
.capability-item__index { color: var(--dark-soft); font: 500 11px/1 var(--font-mono); }
.capability-item:hover .capability-item__index { color: var(--gold); }
.capability-item__type { margin: 0 0 12px; color: var(--dark-soft); font: 500 10px/1 var(--font-mono); letter-spacing: 0.12em; }
.capability-item:hover .capability-item__type { color: var(--cyan); }
.capability-item h3 { margin: 0 0 14px; font-size: 26px; font-weight: 500; letter-spacing: -0.04em; }
.capability-item p:last-child { margin: 0; color: var(--dark-soft); font-size: 14px; line-height: 1.75; }
.capability-item:hover p:last-child { color: var(--text-soft); }
/* Business matrix */
.business { background: var(--ink); }
.business-matrix {
  display: grid;
  grid-template-columns: 190px 1fr 1fr;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}
.matrix-axis,
.matrix-label,
.matrix-cell { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.matrix-axis {
  min-height: 86px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.matrix-axis span { font-size: 14px; font-weight: 500; }
.matrix-axis b { color: var(--text-faint); font: 500 9px/1 var(--font-mono); letter-spacing: .12em; }
.matrix-axis--corner { display: block; color: var(--text-faint); }
.matrix-axis--corner span { display: block; margin-bottom: 8px; }
.matrix-label { min-height: 210px; padding: 26px 22px; display: flex; flex-direction: column; }
.matrix-label > span { color: var(--gold); font: 500 11px/1 var(--font-mono); }
.matrix-label strong { margin-top: auto; font-size: 18px; font-weight: 500; }
.matrix-label small { margin-top: 7px; color: var(--text-faint); font: 500 8px/1 var(--font-mono); letter-spacing: .1em; }
.matrix-cell {
  position: relative;
  min-height: 210px;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  transition: background 240ms ease;
}
.matrix-cell::before { content: ""; position: absolute; inset: 0; opacity: 0; background: radial-gradient(circle at 90% 0, rgba(255,255,255,.1), transparent 48%); transition: opacity 240ms ease; }
.matrix-cell:hover { background: var(--panel-2); }
.matrix-cell:hover::before { opacity: 1; }
.matrix-cell p { position: absolute; top: 24px; left: 30px; margin: 0; color: var(--text-faint); font: 500 9px/1 var(--font-mono); letter-spacing: .12em; }
.matrix-cell h3 { position: relative; margin: 0 0 10px; font-size: clamp(20px, 2vw, 28px); font-weight: 500; letter-spacing: -.035em; }
.matrix-cell > span { position: relative; color: var(--text-soft); font-size: 13px; }
.matrix-cell--gold h3 { color: var(--gold-bright); }
.matrix-cell--cyan h3 { color: var(--cyan); }
/* Production */
.track-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--dark-line); }
.track-card {
  min-height: 410px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--dark-line);
  background: transparent;
  transition: transform 260ms var(--ease), background 260ms ease;
}
.track-card:last-child { border-right: 0; }
.track-card:hover { transform: translateY(-5px); background: var(--white); }
.track-card--feature { color: var(--white); background: var(--dark-text); }
.track-card--feature:hover { background: #20242b; }
.track-card__top { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.track-card__top span { color: var(--gold); font: 500 11px/1 var(--font-mono); }
.track-card__top p { margin: 0; color: var(--dark-soft); font: 500 9px/1 var(--font-mono); letter-spacing: .12em; }
.track-card--feature .track-card__top p { color: var(--text-faint); }
.track-card h3 { margin: auto 0 18px; font-size: 36px; font-weight: 500; letter-spacing: -.05em; }
.track-card > p { margin: 0 0 26px; color: var(--dark-soft); font-size: 15px; line-height: 1.8; }
.track-card--feature > p { color: var(--text-soft); }
.track-card ul { margin: 0; padding: 18px 0 0; display: flex; flex-wrap: wrap; gap: 8px 16px; list-style: none; border-top: 1px solid currentColor; border-color: var(--dark-line); }
.track-card li { color: var(--dark-soft); font-size: 12px; }
.track-card li::before { content: "+"; margin-right: 6px; color: var(--gold); }
.track-card--feature ul { border-color: var(--line); }
.track-card--feature li { color: var(--text-soft); }
.efficiency { margin-top: clamp(80px, 10vw, 132px); display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(48px, 8vw, 112px); }
.efficiency-intro h3 { margin: 0 0 22px; font-size: clamp(34px, 4vw, 52px); font-weight: 500; line-height: 1.15; letter-spacing: -.05em; }
.efficiency-intro > p:last-child { margin: 0; color: var(--dark-soft); line-height: 1.85; }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--dark-line); border-bottom: 1px solid var(--dark-line); }
.metric { min-height: 245px; padding: 28px 22px; display: flex; flex-direction: column; border-right: 1px solid var(--dark-line); }
.metric:last-child { border-right: 0; }
.metric strong { color: var(--dark-text); font-size: clamp(42px, 4.6vw, 64px); font-weight: 500; line-height: 1; letter-spacing: -.07em; }
.metric span { margin-top: auto; color: var(--dark-soft); font-size: 13px; }
.metric small { margin-top: 8px; color: var(--gold); font: 500 9px/1 var(--font-mono); letter-spacing: .12em; }
.comparison-table { grid-column: 1 / -1; margin-top: 28px; border-top: 1px solid var(--dark-line); }
.comparison-table > div { display: grid; grid-template-columns: .7fr 1.15fr 1.15fr; min-height: 66px; align-items: center; border-bottom: 1px solid var(--dark-line); }
.comparison-table span,
.comparison-table strong { padding: 14px 20px; font-size: 14px; font-weight: 400; }
.comparison-table strong { color: var(--dark-text); font-weight: 600; }
.comparison-table__head { color: var(--dark-soft); font: 500 10px/1 var(--font-mono); letter-spacing: .08em; text-transform: uppercase; }
.showreel { margin-top: clamp(90px, 12vw, 160px); display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(300px, .6fr); align-items: center; gap: clamp(42px, 7vw, 92px); }
.showreel-media { position: relative; overflow: hidden; background: var(--black); box-shadow: 0 30px 80px -50px rgba(7,9,12,.72); }
.showreel-media::before { content: ""; display: block; padding-top: 56.25%; }
.showreel-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.showreel-stamp { position: absolute; top: 16px; left: 16px; z-index: 2; padding: 8px 10px; color: var(--white); background: rgba(7,9,12,.72); font: 500 8px/1 var(--font-mono); letter-spacing: .1em; }
.showreel-copy h3 { margin: 0 0 22px; font-size: clamp(36px, 4.2vw, 58px); font-weight: 500; line-height: 1.08; letter-spacing: -.055em; }
.showreel-copy > p:not(.eyebrow) { margin: 0; color: var(--dark-soft); line-height: 1.9; }
.showreel-steps { margin-top: 30px; display: flex; align-items: center; gap: 10px; color: var(--dark-soft); font-size: 12px; }
.showreel-steps i { flex: 1; height: 1px; background: var(--dark-line); }
.works-heading { margin-top: clamp(90px, 11vw, 148px); padding-bottom: 26px; display: flex; align-items: end; justify-content: space-between; gap: 30px; border-bottom: 1px solid var(--dark-line); }
.works-heading p { margin: 0; color: var(--dark-soft); font: 500 10px/1 var(--font-mono); letter-spacing: .12em; }
.works-heading h3 { margin: 0; font-size: 28px; font-weight: 500; }
.works-grid { margin-top: 28px; display: grid; grid-template-columns: 1.1fr .9fr .9fr; gap: 18px; }
.work-card { position: relative; min-height: 430px; margin: 0; overflow: hidden; background: var(--dark-text); }
.work-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82); transition: transform 700ms var(--ease), filter 300ms ease; }
.work-card:hover img { transform: scale(1.035); filter: saturate(1); }
.work-card figcaption { position: absolute; inset: auto 0 0; padding: 56px 24px 22px; display: flex; align-items: end; justify-content: space-between; gap: 20px; color: var(--white); background: linear-gradient(transparent, rgba(7,9,12,.88)); }
.work-card figcaption span { color: var(--gold-bright); font: 500 9px/1 var(--font-mono); letter-spacing: .08em; }
.work-card figcaption strong { font-size: 14px; font-weight: 500; }
/* Platform */
.platform { overflow: hidden; background: #080b10; }
.platform-glow { position: absolute; top: -20%; left: 40%; width: 70vw; height: 70vw; max-width: 1100px; max-height: 1100px; opacity: .12; background: radial-gradient(circle, var(--cyan), transparent 68%); pointer-events: none; }
.product-intro { position: relative; display: grid; grid-template-columns: .45fr 1.2fr; align-items: end; gap: clamp(60px, 10vw, 150px); }
.product-intro .section-heading { margin-bottom: 0; }
.product-lockup { padding-bottom: 8px; display: flex; align-items: center; gap: 20px; }
.product-logo { width: 118px; height: 82px; padding: 8px; display: grid; place-items: center; overflow: hidden; border-radius: 18px; background: #fff; box-shadow: 0 20px 60px -34px rgba(89,216,209,.75); }
.product-logo img { width: 100%; height: 100%; object-fit: contain; }
.product-lockup p { margin: 0 0 6px; color: var(--cyan); font: 500 9px/1 var(--font-mono); letter-spacing: .12em; }
.product-lockup strong { font-size: 28px; font-weight: 600; }
.workflow-board { position: relative; margin-top: clamp(70px, 9vw, 110px); overflow: hidden; border: 1px solid rgba(89,216,209,.28); border-radius: 16px; background: #0d1219; box-shadow: 0 40px 100px -50px rgba(0,0,0,.9); }
.workflow-board__chrome { min-height: 52px; padding: 0 18px; display: flex; align-items: center; gap: 20px; color: var(--text-faint); border-bottom: 1px solid var(--line); font: 500 8px/1 var(--font-mono); letter-spacing: .1em; }
.workflow-board__chrome > span { flex: 1; }
.workflow-board__chrome > b { color: var(--cyan); font-weight: 500; }
.workflow-board__dots { display: flex; gap: 6px; }
.workflow-board__dots i { width: 7px; height: 7px; border: 1px solid var(--line-strong); border-radius: 50%; }
.workflow-board__body { min-height: 520px; display: grid; grid-template-columns: 66px 1fr; }
.workflow-sidebar { padding: 18px 0; display: flex; flex-direction: column; align-items: center; gap: 22px; border-right: 1px solid var(--line); background: rgba(255,255,255,.015); }
.workflow-sidebar__brand { width: 30px; height: 30px; display: grid; place-items: center; color: var(--black); background: var(--cyan); border-radius: 8px; font: 700 15px/1 var(--font-sans); }
.workflow-sidebar i { width: 16px; height: 16px; border: 1px solid var(--line-strong); border-radius: 4px; }
.workflow-sidebar i.is-active { border-color: var(--cyan); background: rgba(89,216,209,.16); }
.workflow-canvas { position: relative; padding: 24px clamp(20px, 4vw, 54px) 34px; overflow: hidden; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 24px 24px; }
.workflow-canvas__head { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.workflow-canvas__head p { margin: 0; color: var(--text-soft); font-size: 12px; }
.workflow-canvas__head p span { margin-right: 8px; color: var(--cyan); font: 500 8px/1 var(--font-mono); letter-spacing: .1em; }
.workflow-canvas__head b { color: var(--text-faint); font-size: 10px; font-weight: 400; }
.workflow-nodes { min-height: 355px; display: flex; align-items: center; justify-content: center; }
.workflow-node { position: relative; width: min(190px, 18vw); min-height: 128px; padding: 20px; display: flex; flex-direction: column; border: 1px solid var(--line-strong); border-radius: 12px; background: rgba(18,23,30,.94); box-shadow: 0 18px 46px -30px #000; }
.workflow-node small { color: var(--text-faint); font: 500 8px/1 var(--font-mono); letter-spacing: .08em; }
.workflow-node strong { margin: auto 0 8px; font-size: 15px; font-weight: 500; }
.workflow-node > span { color: var(--text-faint); font-size: 10px; }
.workflow-node--story { border-top-color: var(--gold); }
.workflow-node--frame,
.workflow-node--render { border-top-color: var(--cyan); }
.workflow-node--edit { border-top-color: #a58bf5; }
.workflow-link { position: relative; width: clamp(18px, 3vw, 42px); height: 1px; flex: 0 0 auto; background: var(--line-strong); }
.workflow-link::after { content: ""; position: absolute; right: 0; top: -3px; width: 6px; height: 6px; border-top: 1px solid var(--line-strong); border-right: 1px solid var(--line-strong); transform: rotate(45deg); }
.workflow-timeline { display: grid; grid-template-columns: 38px 1fr 38px; align-items: center; gap: 10px; color: var(--text-faint); font: 500 8px/1 var(--font-mono); }
.workflow-timeline > div { position: relative; height: 42px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; align-items: end; border-bottom: 1px solid var(--line-strong); }
.workflow-timeline i { height: 18px; background: rgba(89,216,209,.2); border: 1px solid rgba(89,216,209,.28); }
.workflow-timeline i:nth-child(2), .workflow-timeline i:nth-child(4) { height: 28px; }
.workflow-timeline b { position: absolute; top: 0; left: 42%; width: 1px; height: 42px; background: var(--gold); }
.platform-pillars { margin-top: 24px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.platform-pillars article { min-height: 275px; padding: 28px; display: flex; flex-direction: column; border-right: 1px solid var(--line); }
.platform-pillars article:last-child { border-right: 0; }
.platform-pillars span { color: var(--cyan); font: 500 10px/1 var(--font-mono); }
.platform-pillars h3 { margin: auto 0 14px; font-size: 22px; font-weight: 500; }
.platform-pillars p { margin: 0; color: var(--text-soft); font-size: 14px; line-height: 1.8; }
.feature-system { margin-top: clamp(90px, 11vw, 150px); }
.feature-system__head { display: flex; align-items: end; justify-content: space-between; gap: 38px; padding-bottom: 28px; border-bottom: 1px solid var(--line-strong); }
.feature-system__head .eyebrow { margin-bottom: 14px; }
.feature-system__head h3 { margin: 0; font-size: clamp(34px, 4vw, 52px); font-weight: 500; letter-spacing: -.045em; }
.feature-tabs { display: flex; gap: 6px; padding: 5px; border: 1px solid var(--line); border-radius: 999px; }
.feature-tabs button { min-width: 66px; min-height: 40px; padding: 0 16px; color: var(--text-soft); border: 0; border-radius: 999px; background: transparent; cursor: pointer; font-size: 12px; }
.feature-tabs button[aria-selected="true"] { color: var(--black); background: var(--cyan); }
.feature-panels { border-bottom: 1px solid var(--line-strong); }
.feature-panel { display: grid; grid-template-columns: repeat(2, 1fr); }
.js .feature-panel:not(.is-active) { display: none; }
.feature-panel article { min-height: 250px; padding: 34px 30px; display: flex; flex-direction: column; border-right: 1px solid var(--line); }
.feature-panel article:last-child { border-right: 0; }
.feature-panel span { color: var(--cyan); font: 500 10px/1 var(--font-mono); }
.feature-panel h4 { margin: auto 0 12px; font-size: 24px; font-weight: 500; }
.feature-panel p { margin: 0; max-width: 480px; color: var(--text-soft); font-size: 14px; }
/* Technology */
.technology { background: #0b0e13; border-top: 1px solid var(--line); }
.architecture { display: grid; grid-template-columns: 70px 1fr; border: 1px solid var(--line); }
.architecture-side { display: grid; grid-template-rows: repeat(4, 1fr); border-right: 1px solid var(--line); }
.architecture-side span { padding: 14px 0; display: flex; align-items: center; justify-content: center; color: var(--text-faint); border-bottom: 1px solid var(--line); font: 500 7px/1 var(--font-mono); letter-spacing: .1em; writing-mode: vertical-rl; transform: rotate(180deg); }
.architecture-side span:last-child { border-bottom: 0; }
.architecture-layer { min-height: 130px; padding: 22px 28px; display: grid; grid-template-columns: 160px 1fr; align-items: center; gap: 20px; border-bottom: 1px solid var(--line); }
.architecture-layer:last-child { border-bottom: 0; }
.architecture-layer > p { margin: 0; color: var(--text-soft); font-size: 14px; }
.architecture-layer > div { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.architecture-layer span { min-height: 54px; padding: 8px; display: grid; place-items: center; color: var(--text-soft); border: 1px solid var(--line); background: rgba(255,255,255,.018); font-size: 12px; text-align: center; }
.architecture-layer--top { background: linear-gradient(90deg, rgba(226,183,94,.08), transparent); }
.architecture-layer--top span { border-color: rgba(226,183,94,.24); }
.architecture-layer--base { background: linear-gradient(90deg, rgba(89,216,209,.08), transparent); }
.architecture-layer--base span { border-color: rgba(89,216,209,.24); }
.tech-notes { margin-top: 24px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.tech-notes article { min-height: 270px; padding: 26px; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tech-notes span { color: var(--cyan); font: 500 10px/1 var(--font-mono); }
.tech-notes h3 { margin: auto 0 14px; font-size: 20px; font-weight: 500; line-height: 1.4; }
.tech-notes p { margin: 0; color: var(--text-soft); font-size: 13px; line-height: 1.75; }
/* Services */
.service-lanes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-lane { min-height: 610px; padding: clamp(28px, 4vw, 50px); display: flex; flex-direction: column; }
.service-lane--dark { color: var(--white); background: var(--dark-text); }
.service-lane--gold { color: var(--dark-text); background: var(--gold-soft); }
.service-lane__head { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.service-lane__head span { color: var(--gold); font: 500 11px/1 var(--font-mono); }
.service-lane--gold .service-lane__head span { color: #906d25; }
.service-lane__head p { margin: 0; color: var(--text-faint); font: 500 9px/1 var(--font-mono); letter-spacing: .12em; }
.service-lane--gold .service-lane__head p { color: #806f4f; }
.service-lane h3 { margin: 78px 0 20px; font-size: clamp(34px, 4vw, 50px); font-weight: 500; letter-spacing: -.05em; }
.service-lane > p { margin: 0 0 34px; max-width: 540px; color: var(--text-soft); }
.service-lane--gold > p { color: #665b47; }
.service-lane ul { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); list-style: none; border-top: 1px solid var(--line); }
.service-lane--gold ul { border-color: rgba(20,23,28,.14); }
.service-lane li { padding: 16px 0; color: var(--text-soft); border-bottom: 1px solid var(--line); font-size: 14px; }
.service-lane li:nth-child(odd) { border-right: 1px solid var(--line); }
.service-lane li:nth-child(even) { padding-left: 20px; }
.service-lane li::before { content: "+"; margin-right: 8px; color: var(--gold); }
.service-lane--gold li { color: #665b47; border-color: rgba(20,23,28,.14); }
.service-lane--gold li:nth-child(odd) { border-color: rgba(20,23,28,.14); }
.service-lane--gold li::before { color: #906d25; }
.service-results { margin-top: auto; display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.service-results > div { padding-top: 22px; }
.service-results strong { display: block; color: var(--gold-bright); font-size: 44px; font-weight: 500; letter-spacing: -.06em; }
.service-results span { color: var(--text-soft); font-size: 12px; }
.training-path { margin-top: auto; padding-top: 26px; display: flex; align-items: center; gap: 12px; color: #665b47; border-top: 1px solid rgba(20,23,28,.14); font-size: 12px; }
.training-path i { flex: 1; height: 1px; background: rgba(20,23,28,.22); }
/* Global */
.global { overflow: hidden; background: var(--black); }
.global-grid-bg { position: absolute; inset: 0; opacity: .22; pointer-events: none; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 80px 80px; -webkit-mask-image: linear-gradient(transparent, #000 22%, #000 78%, transparent); mask-image: linear-gradient(transparent, #000 22%, #000 78%, transparent); }
.world-board { position: relative; display: grid; grid-template-columns: .76fr 1.24fr; border: 1px solid var(--line-strong); background: rgba(7,9,12,.75); }
.world-board__markets { padding: clamp(28px, 4vw, 48px); border-right: 1px solid var(--line); }
.world-board__markets > p { margin: 0 0 30px; color: var(--gold); font: 500 9px/1 var(--font-mono); letter-spacing: .12em; }
.market-list { display: flex; flex-direction: column; }
.market-list article { min-height: 118px; padding: 24px 0; display: grid; grid-template-columns: 44px 1fr; align-items: center; border-top: 1px solid var(--line); }
.market-list article > span { color: var(--text-faint); font: 500 10px/1 var(--font-mono); }
.market-list strong { font-size: 21px; font-weight: 500; }
.market-list small { grid-column: 2; color: var(--text-faint); font: 500 8px/1 var(--font-mono); letter-spacing: .08em; }
.world-board__advantages { display: grid; grid-template-columns: repeat(3, 1fr); }
.world-board__advantages article { min-height: 440px; padding: 30px 26px; display: flex; flex-direction: column; border-right: 1px solid var(--line); }
.world-board__advantages article:last-child { border-right: 0; }
.world-board__advantages span { color: var(--cyan); font: 500 9px/1 var(--font-mono); letter-spacing: .1em; }
.world-board__advantages h3 { margin: auto 0 14px; font-size: 26px; font-weight: 500; }
.world-board__advantages p { margin: 0; color: var(--text-soft); font-size: 14px; }
.global-route { position: relative; margin-top: 24px; padding: 30px; border: 1px solid var(--line); background: rgba(7,9,12,.68); }
.global-route > p { margin: 0 0 28px; color: var(--gold); font: 500 9px/1 var(--font-mono); letter-spacing: .12em; }
.global-route ol { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); list-style: none; }
.global-route li { position: relative; min-height: 92px; padding: 0 22px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid var(--line); }
.global-route li::after { content: ""; position: absolute; right: -4px; top: 50%; z-index: 1; width: 7px; height: 7px; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); transform: translateY(-50%) rotate(45deg); }
.global-route li:last-child::after { display: none; }
.global-route li span { margin-bottom: 10px; color: var(--text-faint); font: 500 9px/1 var(--font-mono); }
.global-route li strong { font-size: 13px; font-weight: 500; }
/* Contact */
.contact { position: relative; min-height: 900px; padding: var(--section-space) 0; display: flex; align-items: center; overflow: hidden; background: var(--black); }
.contact-media,
.contact-shade { position: absolute; inset: 0; }
.contact-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: grayscale(1) contrast(1.08); }
.contact-shade { background: linear-gradient(90deg, rgba(7,9,12,.97) 0%, rgba(7,9,12,.88) 46%, rgba(7,9,12,.56) 100%), linear-gradient(180deg, rgba(7,9,12,.2), rgba(7,9,12,.92)); }
.contact-shell { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(56px, 9vw, 130px); }
.contact-copy h2 { margin: 0 0 26px; font-size: clamp(50px, 6.6vw, 88px); font-weight: 500; line-height: 1.02; letter-spacing: -.06em; }
.contact-copy > p:not(.eyebrow) { max-width: 560px; margin: 0; color: var(--text-soft); font-size: 17px; }
.contact-mail { margin-top: 30px; display: inline-flex; align-items: center; gap: 14px; color: var(--gold-bright); text-decoration: none; font-size: clamp(18px, 2vw, 24px); border-bottom: 1px solid rgba(226,183,94,.4); }
.contact-topics { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 8px; }
.contact-topics span { padding: 8px 12px; color: var(--text-soft); border: 1px solid var(--line); border-radius: 999px; font-size: 11px; }
.inquiry-form { padding: clamp(28px, 4vw, 46px); border: 1px solid var(--line-strong); background: rgba(13,17,23,.9); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); box-shadow: 0 30px 80px -50px #000; }
.inquiry-form__head { margin-bottom: 30px; padding-bottom: 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--text-faint); border-bottom: 1px solid var(--line); font: 500 9px/1 var(--font-mono); letter-spacing: .12em; }
.inquiry-form__head b { color: var(--gold); font-weight: 500; }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { margin-bottom: 18px; display: block; }
.field > span { margin-bottom: 8px; display: block; color: var(--text-soft); font-size: 12px; }
.field input,
.field textarea,
.field select { width: 100%; min-height: 50px; padding: 12px 14px; color: var(--white); border: 1px solid var(--line); border-radius: 0; background: rgba(255,255,255,.035); outline: none; transition: border-color 180ms ease, background 180ms ease; }
.field textarea { min-height: 116px; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: var(--text-faint); }
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--gold); background: rgba(255,255,255,.06); }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--text-soft) 50%), linear-gradient(135deg, var(--text-soft) 50%, transparent 50%); background-position: calc(100% - 18px) 22px, calc(100% - 13px) 22px; background-size: 5px 5px; background-repeat: no-repeat; }
.field select option { color: var(--dark-text); background: var(--white); }
.inquiry-form__submit { width: 100%; margin-top: 2px; }
.form-note { margin: 14px 0 0; color: var(--text-faint); font-size: 10px; line-height: 1.6; text-align: center; }
.form-note.is-error { color: #ff9b89; }
/* Footer */
.site-footer { padding: 80px 0 30px; color: var(--text-soft); background: #05070a; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr .72fr; gap: clamp(50px, 8vw, 110px); }
.footer-brand > p { margin: 24px 0 0; color: var(--text-faint); font-size: 13px; }
.footer-nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.footer-nav > div { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-nav p,
.footer-contact p { margin: 0 0 12px; color: var(--gold); font: 500 9px/1 var(--font-mono); letter-spacing: .1em; }
.footer-nav a { color: var(--text-soft); text-decoration: none; font-size: 13px; }
.footer-nav a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; align-items: flex-start; }
.footer-contact a { color: var(--white); text-decoration: none; font-size: 14px; word-break: break-word; }
.footer-contact span { margin-top: 12px; color: var(--text-faint); font: 500 9px/1.4 var(--font-mono); letter-spacing: .08em; }
.footer-bottom { margin-top: 70px; padding-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); }
.footer-bottom p { margin: 0; color: var(--text-faint); font-size: 11px; }
/* Reveal motion */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms var(--ease), transform 720ms var(--ease);
}
.js [data-reveal][data-reveal-delay="1"] { transition-delay: 100ms; }
.js [data-reveal][data-reveal-delay="2"] { transition-delay: 200ms; }
.js [data-reveal][data-reveal-delay="3"] { transition-delay: 300ms; }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
/* Responsive */
@media (max-width: 1120px) {
  .main-nav { gap: 13px; }
  .main-nav > a { font-size: 12px; }
  .hero-inner { grid-template-columns: 1fr 260px; }
  .workflow-node { padding: 16px; }
  .world-board { grid-template-columns: 1fr; }
  .world-board__markets { border-right: 0; border-bottom: 1px solid var(--line); }
  .market-list { display: grid; grid-template-columns: repeat(3, 1fr); }
  .market-list article { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
  .market-list small { margin-top: 8px; }
}
@media (max-width: 960px) {
  :root { --header-height: 70px; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .main-nav {
    position: fixed;
    inset: 0;
    padding: calc(var(--header-height) + 48px) var(--gutter) 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
    visibility: hidden;
    opacity: 0;
    background: rgba(7,9,12,.98);
    transform: translateY(-10px);
    transition: opacity 220ms ease, transform 220ms var(--ease), visibility 220ms;
  }
  .main-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .main-nav > a { width: 100%; min-height: 58px; color: var(--text-soft); border-bottom: 1px solid var(--line); font-size: 22px; font-weight: 500; }
  .main-nav > a::after { display: none; }
  .main-nav .nav-action { width: auto; min-height: 50px; margin-top: 24px; padding: 0 24px; border-bottom: 0; font-size: 15px; }
  .hero { min-height: 820px; height: max(820px, 100svh); }
  .hero-inner { grid-template-columns: 1fr; align-content: center; gap: 54px; }
  .hero-meta { max-width: 330px; margin: 0; align-self: auto; }
  .video-toggle { right: var(--gutter); }
  .section-heading--split,
  .intro-grid,
  .product-intro,
  .contact-shell { grid-template-columns: 1fr; }
  .section-heading--split { gap: 34px; }
  .section-heading--split .section-lead { max-width: 680px; }
  .intro-statement { max-width: 680px; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .capability-item:nth-child(2) { border-right: 0; }
  .capability-item:nth-child(-n+2) { border-bottom: 1px solid var(--dark-line); }
  .business-matrix { grid-template-columns: 148px 1fr 1fr; }
  .matrix-cell { padding: 24px 20px; }
  .matrix-cell p { left: 20px; }
  .track-grid { grid-template-columns: 1fr; }
  .track-card { min-height: 330px; border-right: 0; border-bottom: 1px solid var(--dark-line); }
  .track-card:last-child { border-bottom: 0; }
  .efficiency { grid-template-columns: 1fr; }
  .showreel { grid-template-columns: 1fr; }
  .showreel-copy { max-width: 680px; }
  .works-grid { grid-template-columns: repeat(2, 1fr); }
  .work-card:first-child { grid-column: 1 / -1; min-height: 520px; }
  .product-lockup { order: 2; }
  .workflow-board__body { min-height: 460px; }
  .workflow-node { width: 22%; }
  .platform-pillars { grid-template-columns: 1fr; }
  .platform-pillars article { min-height: 220px; border-right: 0; border-bottom: 1px solid var(--line); }
  .platform-pillars article:last-child { border-bottom: 0; }
  .architecture-layer { grid-template-columns: 130px 1fr; }
  .architecture-layer > div { grid-template-columns: repeat(2, 1fr); }
  .tech-notes { grid-template-columns: repeat(2, 1fr); }
  .service-lanes { grid-template-columns: 1fr; }
  .service-lane { min-height: 570px; }
  .global-route ol { grid-template-columns: 1fr; }
  .global-route li { min-height: 70px; padding: 16px 12px 16px 56px; border-left: 0; border-top: 1px solid var(--line); }
  .global-route li::after { right: auto; top: auto; bottom: -4px; left: 24px; transform: rotate(135deg); }
  .global-route li span { position: absolute; left: 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-contact { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
  :root { --section-space: 82px; --gutter: 20px; }
  .brand-copy strong { font-size: 15px; }
  .brand-copy small { font-size: 7px; }
  .brand-frame { width: 36px; height: 36px; }
  .hero { min-height: 780px; }
  .hero-inner { padding-top: calc(var(--header-height) + 72px); padding-bottom: 100px; }
  .hero-shade { background: linear-gradient(180deg, rgba(5,7,10,.6) 0%, rgba(5,7,10,.78) 50%, rgba(5,7,10,.96) 100%), linear-gradient(90deg, rgba(5,7,10,.85), rgba(5,7,10,.25)); }
  .hero-copy h1 { font-size: clamp(52px, 15vw, 72px); }
  .hero-lead { font-size: 16px; line-height: 1.75; }
  .hero-meta { display: none; }
  .video-toggle__text,
  .scroll-cue span { display: none; }
  .scroll-cue { bottom: 32px; }
  .film-strip__track { justify-content: flex-start; }
  .eyebrow { font-size: 9px; }
  .section-heading h2 { font-size: clamp(38px, 12vw, 58px); }
  .intro-statement { padding-left: 20px; }
  .intro-statement p:first-child { font-size: 19px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-item { min-height: 265px; border-right: 0; border-bottom: 1px solid var(--dark-line); }
  .capability-item:last-child { border-bottom: 0; }
  .business-matrix { display: block; border-top: 0; }
  .matrix-axis { display: none; }
  .matrix-label { min-height: 86px; padding: 20px; display: grid; grid-template-columns: 38px 1fr; align-items: center; }
  .matrix-label strong { margin: 0; }
  .matrix-label small { grid-column: 2; }
  .matrix-cell { min-height: 190px; }
  .metric-grid { grid-template-columns: 1fr; }
  .metric { min-height: 178px; border-right: 0; border-bottom: 1px solid var(--dark-line); }
  .metric:last-child { border-bottom: 0; }
  .comparison-table { overflow-x: auto; }
  .comparison-table > div { min-width: 620px; }
  .works-grid { grid-template-columns: 1fr; }
  .work-card,
  .work-card:first-child { grid-column: auto; min-height: 420px; }
  .product-logo { width: 102px; height: 72px; }
  .workflow-board__body { grid-template-columns: 44px 1fr; min-height: 560px; }
  .workflow-sidebar { gap: 18px; }
  .workflow-sidebar__brand { width: 26px; height: 26px; }
  .workflow-canvas { padding: 20px 16px 26px; }
  .workflow-canvas__head b { display: none; }
  .workflow-nodes { min-height: 450px; flex-direction: column; gap: 0; }
  .workflow-node { width: 100%; min-height: 84px; }
  .workflow-link { width: 1px; height: 22px; }
  .workflow-link::after { right: -3px; top: auto; bottom: 0; transform: rotate(135deg); }
  .workflow-timeline { grid-template-columns: 34px 1fr 34px; }
  .feature-system__head { align-items: flex-start; flex-direction: column; }
  .feature-tabs { width: 100%; overflow-x: auto; }
  .feature-tabs button { flex: 1; min-width: 58px; padding: 0 10px; }
  .feature-panel { grid-template-columns: 1fr; }
  .feature-panel article { min-height: 210px; border-right: 0; border-bottom: 1px solid var(--line); }
  .feature-panel article:last-child { border-bottom: 0; }
  .architecture { grid-template-columns: 42px 1fr; }
  .architecture-layer { min-height: auto; padding: 18px; grid-template-columns: 1fr; }
  .architecture-layer > div { grid-template-columns: 1fr 1fr; }
  .architecture-layer span { min-height: 48px; font-size: 11px; }
  .tech-notes { grid-template-columns: 1fr; }
  .tech-notes article { min-height: 220px; }
  .service-lane { min-height: 620px; }
  .service-lane h3 { margin-top: 54px; }
  .service-lane ul { grid-template-columns: 1fr; }
  .service-lane li:nth-child(odd) { border-right: 0; }
  .service-lane li:nth-child(even) { padding-left: 0; }
  .training-path { flex-wrap: wrap; }
  .training-path i { min-width: 24px; }
  .market-list { grid-template-columns: 1fr; }
  .market-list article { min-height: 104px; }
  .world-board__advantages { grid-template-columns: 1fr; }
  .world-board__advantages article { min-height: 240px; border-right: 0; border-bottom: 1px solid var(--line); }
  .world-board__advantages article:last-child { border-bottom: 0; }
  .contact { min-height: auto; }
  .contact-copy h2 { font-size: clamp(44px, 13vw, 66px); }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .inquiry-form { padding: 26px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-contact { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 420px) {
  .brand-copy small { display: none; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .showreel-steps { gap: 6px; font-size: 10px; }
  .works-heading { align-items: flex-start; flex-direction: column; }
  .service-results strong { font-size: 38px; }
  .contact-mail { font-size: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .hero-video { display: none; }
}
@media print {
  .site-header, .page-progress, .video-toggle, .scroll-cue, .inquiry-form { display: none !important; }
  body { color: #111; background: #fff; }
  .hero { min-height: 680px; }
  .section { break-inside: avoid; }
}
