@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Semi Condensed";
  src: url("../fonts/barlow-semi-condensed-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Semi Condensed";
  src: url("../fonts/barlow-semi-condensed-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Semi Condensed";
  src: url("../fonts/barlow-semi-condensed-800.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --ink: #111514;
  --ink-2: #17232a;
  --paper: #f3f6f8;
  --paper-2: #e7eef2;
  --white: #ffffff;
  --muted: #667681;
  --line: rgba(17, 21, 20, 0.14);
  --brand-blue: #026db6;
  --brand-deep: #005a9c;
  --brand-light: #8bc9ea;
  --orange: var(--brand-blue);
  --orange-dark: var(--brand-deep);
  --aqua: var(--brand-light);
  --max: 1240px;
  --radius-sm: 6px;
  --radius: 16px;
  --radius-lg: 20px;
  --shadow: 0 26px 80px rgba(7, 24, 34, 0.13);
  --ease-out: cubic-bezier(.22, .75, .22, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 138px; }
.home-page [id] { scroll-margin-top: 128px; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
::selection { color: var(--white); background: var(--brand-blue); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 3px solid var(--brand-light); outline-offset: 4px; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 104px 0; }
.section--tight { padding: 72px 0; }
.section--dark { color: var(--white); background: var(--ink); }
.section--white { background: var(--white); }
.section--line { border-top: 1px solid var(--line); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
}
.eyebrow::before { width: 28px; height: 2px; background: currentColor; content: ""; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  line-height: 0.98;
  letter-spacing: -0.018em;
}
h1 { max-width: 980px; margin-bottom: 26px; font-size: clamp(3.2rem, 7vw, 7rem); font-weight: 700; }
h2 { margin-bottom: 24px; font-size: clamp(2.4rem, 4.5vw, 4.6rem); font-weight: 700; }
h3 { margin-bottom: 14px; font-size: 1.5rem; font-weight: 600; }
.lead { max-width: 760px; color: var(--muted); font-size: clamp(1.05rem, 1.7vw, 1.3rem); }
.section--dark .lead { color: #aeb9bf; }
.kicker { color: var(--muted); font-family: "Barlow Semi Condensed", sans-serif; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.muted { color: var(--muted); }
.measure { max-width: 760px; }
.split { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 80px; align-items: start; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid rgba(17, 21, 20, 0.12);
  color: var(--ink);
  background: rgba(248, 250, 251, 0.95);
  backdrop-filter: blur(14px);
  transition: min-height 240ms ease, background 240ms ease, box-shadow 240ms ease;
}
.site-header.is-scrolled { background: rgba(248, 250, 251, 0.985); box-shadow: 0 12px 38px rgba(9, 25, 34, .08); }
.home-page .site-header { position: sticky; background: #fff; backdrop-filter: none; }
.home-page .site-header.is-scrolled { background: #fff; box-shadow: none; }
.nav { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 26px; }
.brand { position: relative; display: inline-flex; align-items: center; font-weight: 800; letter-spacing: 0.11em; }
.brand-mark {
  width: 106px;
  height: 62px;
  background: url('https://storage.googleapis.com/cg-webase/media/1789204694520-bcc26413.png') center / contain no-repeat;
}
.brand-mark::after { content: none; }
.brand > span:last-child {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.brand small { display: block; }
.nav-links { display: flex; align-items: center; gap: 30px; font-family: "Barlow Semi Condensed", sans-serif; font-size: 1rem; font-weight: 600; }
.nav-links a:not(.btn) { position: relative; color: #45535c; }
.nav-links a:not(.btn)::after { position: absolute; right: 0; bottom: -9px; left: 0; height: 2px; border-radius: 2px; background: var(--brand-blue); content: ""; transform: scaleX(0); transform-origin: right; transition: transform 220ms var(--ease-out); }
.nav-links a:not(.btn):hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a:not(.btn):hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; padding: 8px; border: 0; color: var(--ink); background: transparent; font-size: 1.35rem; }

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--orange);
  color: #fff;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .01em;
  transition: transform 220ms var(--ease-out), background 180ms ease, box-shadow 220ms ease;
}
.btn::after { content: none; }
.btn:hover { transform: translateY(-2px); background: var(--orange-dark); box-shadow: 0 10px 28px rgba(0, 95, 152, .22); }
.btn .arrow { transition: transform 260ms var(--ease-out); }
.btn:hover .arrow { transform: translate(4px, -2px); }
.btn--ghost { border-color: rgba(255,255,255,.3); background: transparent; }
.btn--ghost:hover { background: rgba(255,255,255,.08); }
.btn--ink { background: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.arrow { font-size: 1.1rem; }

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.home-page .hero::before { content: none; }
.hero::after { content: none; }
.hero-inner { position: relative; z-index: 1; display: grid; min-height: calc(100vh - 78px); grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); align-items: center; gap: clamp(36px, 4vw, 56px); padding: 74px 0; }
.hero-copy-panel { position: relative; z-index: 2; display: flex; align-self: center; flex-direction: column; align-items: flex-start; }
.hero h1 { font-size: clamp(3.4rem, 4.55vw, 5rem); font-weight: 700; }
.hero h1 > span, .hero h1 > em { display: block; }
.hero-last-line { white-space: nowrap; }
.hero h1 em { color: var(--brand-light); font-family: inherit; font-style: normal; font-weight: 700; }
.hero-copy { max-width: 540px; color: #b5c0c5; font-size: 1.12rem; }
.hero-media { position: absolute; z-index: 0; inset: 0; margin: 0; overflow: hidden; }
.hero-media::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,17,19,.98) 0%, rgba(12,17,19,.88) 28%, rgba(12,17,19,.55) 48%, rgba(12,17,19,.08) 76%), linear-gradient(0deg, rgba(12,17,19,.5), transparent 42%); content: ""; }
.hero-media img { width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center; transform: scale(1.015); }
.hero-media-note { position: absolute; z-index: 2; right: max(20px, calc((100vw - var(--max)) / 2)); bottom: 28px; display: flex; gap: 20px; color: rgba(255,255,255,.66); font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: .63rem; letter-spacing: .12em; text-transform: uppercase; }
.hero-media-note span + span { padding-left: 20px; border-left: 1px solid rgba(255,255,255,.3); }
@keyframes hero-copy-enter { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.js .hero-copy-panel .eyebrow { animation: hero-copy-enter 700ms var(--ease-out) 80ms both; }
.js .hero h1 { animation: hero-copy-enter 800ms var(--ease-out) 140ms both; }
.js .hero-copy { animation: hero-copy-enter 700ms var(--ease-out) 280ms both; }
.js .hero .btn-row { animation: hero-copy-enter 700ms var(--ease-out) 380ms both; }
.js .hero-media { animation: hero-media-enter 1200ms var(--ease-out) both; }
@keyframes hero-media-enter { from { opacity: 0; transform: scale(1.025); } to { opacity: 1; transform: none; } }

.page-hero { padding: 112px 0 86px; color: var(--white); background: var(--ink); }
.page-hero h1 { max-width: 1030px; font-size: clamp(3rem, 6vw, 5.7rem); }
.page-hero .lead { color: #b5c0c5; }
.breadcrumb { margin-bottom: 36px; color: #75838b; font-size: .82rem; }
.breadcrumb a:hover { color: var(--white); }

.band { padding: 30px 0; border-bottom: 1px solid var(--line); background: var(--white); }
.band-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px 34px; }
.band-item { font-family: "Barlow Semi Condensed", sans-serif; font-size: .85rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.band-item span { margin-right: 8px; color: var(--orange); }

.section-nav {
  position: sticky;
  z-index: 35;
  top: 78px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
}
.home-page .section-nav { top: 70px; background: #fff; backdrop-filter: none; }
.home-page [id] { scroll-margin-top: 128px; }
.home-page .nav { min-height: 70px; }
.home-page .brand-mark { width: 88px; height: 52px; }
.section-nav-inner { display: flex; min-height: 58px; align-items: center; justify-content: space-between; gap: 32px; }
.section-nav-links { display: flex; height: 58px; align-items: stretch; gap: 30px; }
.section-nav-links a { position: relative; display: inline-flex; align-items: center; color: #65747d; font-size: .78rem; font-weight: 700; white-space: nowrap; }
.section-nav-links a::after { position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; background: var(--orange); content: ""; transform: scaleX(0); transform-origin: left; transition: transform 220ms ease; }
.section-nav-links a:hover, .section-nav-links a.is-active { color: var(--ink); }
.section-nav-links a.is-active::after { transform: scaleX(1); }
.section-nav-cta { display: inline-flex; min-height: 40px; align-items: center; padding: 0 20px; border-radius: var(--radius-sm); color: #fff; background: var(--brand-blue); font-family: "Barlow Semi Condensed", sans-serif; font-size: .82rem; font-weight: 700; }
.section-nav-cta:hover, .section-nav-cta.is-active { background: var(--brand-deep); }

.section--editorial { padding: 142px 0 126px; background: #fff; }
.editorial-intro { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .55fr); column-gap: 10%; align-items: end; }
.editorial-intro .eyebrow { grid-column: 1 / -1; }
.editorial-intro h2 { max-width: 820px; margin-bottom: 0; font-size: clamp(3rem, 5vw, 5.5rem); }
.editorial-intro .lead { margin-bottom: 7px; }
.benefit-list { margin-top: 120px; border-top: 1px solid var(--ink); }
.benefit-row { display: grid; min-height: 220px; grid-template-columns: 70px minmax(360px, 1.15fr) minmax(280px, .65fr); gap: 40px; align-items: center; padding: 48px 0; border-bottom: 1px solid var(--line); transition: color 260ms ease, padding 360ms var(--ease-out); }
.benefit-row:hover { padding-right: 12px; padding-left: 12px; color: var(--brand-deep); }
.benefit-index { color: var(--brand-blue); font-family: monospace; font-size: .75rem; }
.benefit-row h3 { max-width: 600px; margin: 0; font-size: clamp(2rem, 3vw, 3.25rem); }
.benefit-row > p:last-child { margin: 0; color: var(--muted); font-size: .92rem; }

.section--story { position: relative; overflow: hidden; padding: 136px 0; color: var(--ink); background: var(--paper); }
.section--story::before { content: none; }
.story-intro { position: relative; display: grid; grid-template-columns: 1.1fr .7fr; gap: 11%; align-items: end; }
.story-intro .lead { margin-bottom: 4px; color: var(--muted); }
.story-experience { position: relative; display: grid; min-height: 620px; overflow: hidden; margin-top: 84px; border-radius: var(--radius-lg); background: #fff; color: var(--ink); grid-template-columns: minmax(0, 1.35fr) minmax(330px, .65fr); }
.story-canvas { position: relative; overflow: hidden; padding: 42px 48px; background: var(--ink); color: #fff; }
.story-canvas::after { position: absolute; top: 0; right: 0; width: 8px; height: 28%; background: var(--brand-blue); content: ""; transition: height 700ms var(--ease-out); }
.story-experience[data-view="process"] .story-canvas::after { height: 58%; }
.story-experience[data-view="output"] .story-canvas::after { height: 100%; }
.story-count { position: relative; z-index: 2; font-family: monospace; font-size: .68rem; letter-spacing: .12em; }
.story-copy-state { position: absolute; z-index: 2; inset: 0; opacity: 0; visibility: hidden; transform: translateY(14px); transition: opacity 520ms ease, transform 720ms var(--ease-out), visibility 520ms; }
.story-copy-state .story-count { position: absolute; top: 42px; left: 48px; }
.story-copy-state > p { position: absolute; right: 48px; bottom: 44px; max-width: 290px; margin: 0; color: rgba(255,255,255,.84); font-size: .84rem; text-align: right; }
.story-experience[data-view="input"] .story-copy-state--input,
.story-experience[data-view="process"] .story-copy-state--process,
.story-experience[data-view="output"] .story-copy-state--output { opacity: 1; visibility: visible; transform: none; }
.story-scene { position: absolute; z-index: 0; inset: 0; overflow: hidden; background: #131b20; }
.story-scene::after { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,15,18,.12), rgba(10,15,18,.16) 42%, rgba(10,15,18,.86)), linear-gradient(90deg, rgba(10,15,18,.5), transparent 55%); content: ""; }
.story-experience[data-view="input"] { --story-progress: 0%; }
.story-experience[data-view="process"] { --story-progress: 50%; }
.story-experience[data-view="output"] { --story-progress: 100%; }
.story-scene img { width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: var(--story-progress, 0%) center; transform: scale(1.035); transition: object-position 900ms var(--ease-out), filter 500ms ease; }
.story-statement { position: absolute; z-index: 2; bottom: 46px; left: 48px; display: grid; }
.story-statement small { margin-bottom: 8px; color: rgba(255,255,255,.72); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.story-statement strong { font-family: "Inter", sans-serif; font-size: clamp(4rem, 6.5vw, 6.2rem); font-weight: 800; letter-spacing: -.065em; line-height: .82; }
.story-chapters { display: flex; flex-direction: column; }
.story-tab { display: grid; flex: 1; grid-template-columns: 42px 1fr; gap: 20px; align-items: center; padding: 34px; border: 0; border-bottom: 1px solid var(--line); background: #fff; text-align: left; cursor: pointer; transition: background 220ms ease, color 220ms ease; }
.story-tab:last-child { border-bottom: 0; }
.story-tab > span:first-child { color: #93a0a6; font-family: monospace; font-size: .7rem; }
.story-tab > span:last-child { display: grid; gap: 9px; }
.story-tab strong { font-family: "Inter", sans-serif; font-size: 1.45rem; font-weight: 700; letter-spacing: -.03em; }
.story-tab small { color: var(--muted); font-size: .78rem; }
.story-tab:hover { background: #f3f7f9; }
.story-tab.is-active { color: var(--ink); background: #eef3f5; box-shadow: inset 4px 0 0 var(--brand-blue); }
.story-tab.is-active > span:first-child, .story-tab.is-active small { color: rgba(255,255,255,.62); }
.story-tab.is-active > span:first-child { color: var(--brand-blue); }
.story-tab.is-active small { color: var(--muted); }
@keyframes story-copy-in { from { opacity: .15; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.section--line-tour { background: var(--white); }
.line-tour { position: relative; overflow: hidden; margin-top: 64px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); }
.line-tour-stage { padding: 24px; }
.line-tour-zoom { position: relative; max-width: 100%; }
.line-tour-zoom img { display: block; width: 100%; height: auto; }
.line-tour-dot { position: absolute; z-index: 4; display: grid; width: 38px; height: 38px; margin: -19px 0 0 -19px; padding: 0; place-items: center; border: 2px solid #fff; border-radius: 50%; background: var(--brand-blue); color: #fff; font-family: monospace; font-size: .78rem; box-shadow: 0 8px 20px rgba(2,109,182,.3); cursor: pointer; transition: background 300ms ease, box-shadow 300ms ease; }
.line-tour-dot::after { position: absolute; inset: -9px; border: 2px solid rgba(2,109,182,.55); border-radius: 50%; content: ""; opacity: 0; pointer-events: none; }
.line-tour[data-frame="1"] .line-tour-dot--1,
.line-tour[data-frame="2"] .line-tour-dot--2,
.line-tour[data-frame="3"] .line-tour-dot--3 { background: var(--ink); box-shadow: 0 0 0 8px rgba(2,109,182,.16); }
.line-tour[data-frame="1"] .line-tour-dot--1::after,
.line-tour[data-frame="2"] .line-tour-dot--2::after,
.line-tour[data-frame="3"] .line-tour-dot--3::after { animation: tour-dot-breathe 2.2s ease-out infinite; }
@keyframes tour-dot-breathe { 0% { opacity: .85; transform: scale(.72); } 70%, 100% { opacity: 0; transform: scale(1.38); } }
.line-tour-caption { padding: 18px 24px; border-top: 1px solid var(--line); }
.line-tour-count { color: var(--brand-deep); font-family: monospace; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.line-tour-popup strong { display: block; margin: 10px 0 8px; font-size: 1.35rem; font-weight: 700; letter-spacing: -.025em; }
.line-tour-popup p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.6; }
.line-tour-rail { display: none; position: absolute; right: 60px; bottom: 30px; left: 60px; height: 2px; background: var(--line); }
.line-tour-rail span { display: block; width: 25%; height: 100%; background: var(--brand-blue); transition: width 500ms var(--ease-out); }
.line-tour[data-frame="1"] .line-tour-rail span { width: 50%; }
.line-tour[data-frame="2"] .line-tour-rail span { width: 75%; }
.line-tour[data-frame="3"] .line-tour-rail span { width: 100%; }

.product-pair { display: grid; overflow: hidden; margin-top: 72px; border: 1px solid var(--line); border-radius: var(--radius-lg); grid-template-columns: 1.08fr .92fr; }
.product-panel { min-height: 670px; background: #fff; }
.product-panel--film { border-left: 1px solid var(--line); background: var(--paper); }
.product-panel-top { position: relative; height: 390px; overflow: hidden; padding: 28px 32px; border-bottom: 1px solid rgba(16,22,25,.12); }
.product-panel-top::after { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,16,22,.28), transparent 40%, rgba(7,16,22,.08)); content: ""; pointer-events: none; }
.product-panel-top > span { position: relative; z-index: 2; display: inline-flex; padding: 8px 10px; border: 1px solid rgba(255,255,255,.42); border-radius: 4px; color: #fff; background: rgba(10,18,23,.55); font-family: monospace; font-size: .68rem; letter-spacing: .1em; backdrop-filter: blur(10px); }
.product-panel-image { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; transition: transform 900ms var(--ease-out), filter 500ms ease; }
.product-panel:hover .product-panel-image { transform: scale(1.035); }
.product-panel-body { display: flex; min-height: 280px; padding: 36px 38px 42px; flex-direction: column; align-items: flex-start; }
.product-panel-body h3 { max-width: 520px; font-size: clamp(2.1rem, 3.5vw, 3.5rem); }
.product-panel-body p { max-width: 540px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 28px; color: var(--brand-deep); font-size: .82rem; font-weight: 800; }
.text-link span { transition: transform 240ms var(--ease-out); }
.text-link:hover span { transform: translate(5px, -5px); }

.insight-list { margin-top: 72px; border-top: 1px solid var(--ink); }
.insight-row { display: grid; min-height: 172px; grid-template-columns: 176px 180px 1fr 40px; gap: 30px; align-items: center; padding: 30px 0; border-bottom: 1px solid var(--line); transition: padding 360ms var(--ease-out), color 220ms ease; }
.insight-row > span { color: var(--brand-deep); font-family: monospace; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; }
.insight-media { overflow: hidden; aspect-ratio: 16 / 10; margin: 0; border-radius: 6px; background: var(--paper-2); }
.insight-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease-out), filter 400ms ease; }
.insight-row h3 { max-width: 760px; margin: 0; font-size: clamp(1.8rem, 3vw, 3rem); }
.insight-row i { color: var(--brand-blue); font-size: 1.5rem; font-style: normal; transition: transform 260ms var(--ease-out); }
.insight-row:hover { padding-right: 14px; padding-left: 14px; color: var(--brand-deep); }
.insight-row:hover .insight-media img { transform: scale(1.06); }
.insight-row:hover i { transform: translate(5px, -5px); }

.reveal, .js .reveal { opacity: 1; filter: none; transform: none; }

.card { position: relative; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.55); transition: border-color 240ms ease, background 240ms ease, transform 320ms var(--ease-out); }
.card--dark { border-color: rgba(255,255,255,.12); background: var(--ink-2); }
.card--dark .muted { color: #aeb9bf; }
.card-number { margin-bottom: 54px; color: var(--orange); font-family: monospace; font-size: .82rem; }
.card p:last-child { margin-bottom: 0; }
.card-link { display: inline-flex; align-items: center; margin-top: 28px; color: var(--orange-dark); font-size: .86rem; font-weight: 800; }
.card:hover .card-link { text-decoration: underline; }
.card-media { position: relative; overflow: hidden; aspect-ratio: 16/10; margin: -34px -34px 28px; border-radius: var(--radius) var(--radius) 0 0; background: var(--ink); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }

.process { display: grid; grid-template-columns: repeat(6, 1fr); margin-top: 56px; border-top: 1px solid rgba(255,255,255,.18); }
.process-step { position: relative; min-height: 210px; padding: 32px 20px 20px 0; border-right: 1px solid rgba(255,255,255,.13); }
.process-step:last-child { border-right: 0; }
.process-step b { display: block; margin-bottom: 62px; color: var(--orange); font-family: monospace; font-size: .75rem; }
.process-step p { margin: 0; color: #9fabb1; font-size: .82rem; }

.feature-list { display: grid; margin: 0; padding: 0; list-style: none; }
.feature-list li { display: grid; grid-template-columns: 48px 1fr; padding: 25px 0; border-top: 1px solid var(--line); }
.feature-list li:last-child { border-bottom: 1px solid var(--line); }
.feature-list strong { color: var(--orange); font-family: monospace; }
.feature-list p { margin: 4px 0 0; color: var(--muted); }

.metric { padding: 28px 0; border-top: 1px solid var(--line); }
.metric strong { display: block; margin-bottom: 7px; font-size: 2.1rem; letter-spacing: -.04em; }
.metric span { color: var(--muted); font-size: .84rem; }

.flow-map { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; margin-top: 46px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--line); }
.flow-item { min-height: 200px; padding: 30px; background: var(--white); }
.flow-item span { display: block; margin-bottom: 42px; color: var(--orange); font-family: monospace; }
.flow-item p { color: var(--muted); font-size: .9rem; }

.tech-table { width: 100%; border-collapse: collapse; }
.tech-table th, .tech-table td { padding: 18px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.tech-table th { width: 34%; color: var(--muted); font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; }
.tech-table td { font-weight: 650; }

.quote-panel { padding: 54px; border-radius: var(--radius-lg); color: var(--white); background: var(--ink); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 8px; }
.field--wide { grid-column: 1 / -1; }
.field label { color: #aeb8bd; font-size: .76rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #56636a;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  padding: 12px 0;
}
.field select option { color: var(--ink); }
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--aqua); }

.article-list { display: grid; gap: 22px; }
.article-card { display: grid; grid-template-columns: 0.72fr 1.28fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.article-card img { width: 100%; height: 100%; min-height: 290px; object-fit: cover; }
.article-card-body { padding: 38px; }
.article-meta { margin-bottom: 22px; color: var(--orange-dark); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.article-card h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); }
.article-card p { color: var(--muted); }
.article-content { max-width: 780px; margin: 0 auto; font-size: 1.08rem; line-height: 1.8; }
.article-content h2 { margin-top: 64px; font-size: 2rem; }
.article-content h3 { margin-top: 40px; }
.article-content img { margin: 42px 0; border-radius: var(--radius); }
.article-content a { color: var(--orange-dark); text-decoration: underline; }

.cta-strip { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 50px; padding: 72px 68px; border-radius: var(--radius); background: var(--orange); color: #fff; }
.cta-strip h2 { margin-bottom: 10px; }
.cta-strip .btn-row { justify-content: flex-end; }

.section--contact { padding: 124px 0; background: #fff; }
.contact-scene { display: grid; min-height: 650px; overflow: hidden; padding: 72px 68px; border-radius: 24px; background: var(--paper-2); grid-template-columns: minmax(0, .82fr) minmax(460px, 1fr); gap: 8%; align-items: center; }
.contact-copy { position: relative; z-index: 3; }
.contact-copy .kicker { margin-bottom: 28px; color: var(--brand-deep); }
.contact-copy h2 { max-width: 650px; margin-bottom: 24px; font-size: clamp(3rem, 4.6vw, 5rem); }
.contact-copy > p:not(.kicker) { max-width: 540px; margin-bottom: 34px; color: #52616a; font-size: 1.05rem; }
.contact-desk { position: relative; min-height: 500px; }
.contact-visual { position: absolute; inset: 0; overflow: hidden; margin: 0; border-radius: 20px; background: #1c2830; }
.contact-visual::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 38%, rgba(8,15,19,.5)); content: ""; }
.contact-visual img { width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: 62% center; transition: transform 900ms var(--ease-out); }
.contact-scene:hover .contact-visual img { transform: scale(1.025); }
.contact-card { position: absolute; overflow: hidden; border-radius: 20px; transition: transform 600ms var(--ease-out); }
.contact-card--back, .contact-card--middle { display: flex; padding: 26px; flex-direction: column; justify-content: space-between; font-family: monospace; font-size: .64rem; letter-spacing: .1em; }
.contact-card--back { top: 2%; right: 0; width: 72%; height: 72%; color: var(--ink); background: rgba(17,21,20,.08); }
.contact-card--middle { top: 12%; right: 9%; width: 72%; height: 72%; color: #fff; background: var(--brand-blue); }
.contact-card--front { top: 22%; right: 18%; width: 72%; min-height: 68%; padding: 36px 38px; color: var(--ink); background: #fff; box-shadow: 0 24px 58px rgba(7,24,34,.14); }
.contact-card--front > span { color: var(--brand-deep); font-family: monospace; font-size: .65rem; letter-spacing: .1em; }
.contact-card--front > strong { display: block; max-width: 330px; margin-top: 42px; font-family: "Inter", sans-serif; font-size: clamp(1.8rem, 2.4vw, 2.6rem); letter-spacing: -.04em; line-height: 1.05; }
.contact-card--front ul { display: grid; margin: 34px 0 0; padding: 0; list-style: none; grid-template-columns: repeat(2, 1fr); gap: 0 22px; }
.contact-card--front li { padding: 10px 0; border-top: 1px solid var(--line); color: #5b6a72; font-size: .76rem; }
.contact-scene:hover .contact-card--back { transform: translate(8px, -8px); }
.contact-scene:hover .contact-card--middle { transform: translate(4px, -4px); }
.contact-scene:hover .contact-card--front { transform: translate(-4px, 4px); }

.site-footer { padding: 78px 0 28px; border-top: 1px solid var(--line); color: var(--muted); background: #edf2f5; }
.site-footer .brand-mark { padding: 0; border-radius: 0; background-color: transparent; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 50px; padding-bottom: 60px; }
.footer-title { margin-bottom: 18px; color: var(--ink); font-family: "Barlow Semi Condensed", sans-serif; font-size: .86rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; font-size: .88rem; }
.footer-links a:hover { color: var(--brand-deep); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid var(--line); font-size: .75rem; }

.notice { padding: 16px 18px; border-left: 3px solid var(--orange); background: rgba(2,109,182,.08); color: var(--muted); font-size: .88rem; }
.tag { display: inline-flex; padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .72rem; font-weight: 700; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

.home-page {
  background: #fff;
  --paper: #fff;
  --paper-2: #fff;
  --radius-sm: 2px;
  --radius: 8px;
  --radius-lg: 12px;
}
.home-page .btn { border-radius: 2px; }
.home-page .btn:hover { transform: none; box-shadow: none; }
.home-page .btn-row { gap: 10px; }
.home-page .hero { background: var(--ink); }
.home-page .hero-inner { gap: clamp(36px, 4vw, 64px); padding: 56px 0 64px; }
.home-page .eyebrow { font-weight: 700; letter-spacing: 0.16em; }
.home-page .eyebrow::before { width: 18px; }
.home-page h2, .home-page h3 { letter-spacing: -0.02em; }
.home-page .benefit-row:hover { padding-right: 0; padding-left: 0; color: inherit; }
.home-page .section--story { background: #fff; }
.home-page .story-canvas::after { display: none; }
.home-page .story-experience { min-height: 0; border-radius: 12px; border: 1px solid var(--line); }
.home-page .story-canvas { min-height: 520px; }
.home-page .story-statement strong { font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif; letter-spacing: -0.03em; font-weight: 700; }
.home-page .story-tab strong { font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif; letter-spacing: -0.02em; }
.home-page .story-tab:hover { background: rgba(17, 21, 20, 0.03); }
.home-page .story-tab.is-active { background: #fff; box-shadow: inset 3px 0 0 var(--brand-blue); }
.home-page .product-pair { border-radius: 12px; }
.home-page .product-panel--film { background: rgba(17, 21, 20, 0.03); }
.home-page .insight-row:hover { padding-right: 0; padding-left: 0; }
.home-page .section--contact { background: var(--ink); color: #fff; }
.home-page .contact-scene {
  min-height: 0;
  padding: 96px 0;
  border-radius: 0;
  background: transparent;
}
.home-page .contact-copy .kicker { color: var(--brand-light); }
.home-page .contact-copy > p:not(.kicker) { color: #b5c0c5; }
.home-page .contact-desk { min-height: 560px; }
.home-page .contact-visual { border-radius: 12px; }
.home-page .contact-card { top: auto; right: auto; height: auto; border-radius: 10px; }
.home-page .contact-card--front {
  position: absolute;
  bottom: 24px;
  left: 24px;
  width: min(calc(100% - 48px), 430px);
  min-height: 0;
  padding: 30px 32px;
  box-shadow: 0 22px 54px rgba(4,12,17,.28);
  border: 0;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
}
.home-page .contact-card--front > strong { margin-top: 24px; font-size: clamp(1.65rem, 2.1vw, 2.25rem); }
.home-page .contact-card--front ul { margin-top: 24px; }
.home-page .contact-card--front > strong { font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif; letter-spacing: -0.03em; }
.home-page .contact-scene:hover .contact-card--front { transform: none; }
.home-page .site-footer { background: #fff; }

/* Desktop scroll narrative. CSS owns the scene layout; ScrollTrigger only maps scroll progress. */
@media (min-width: 981px) {
  .motion-active .line-tour-zoom { will-change: transform; }
  .motion-active .story-scene img { transition: none; will-change: object-position; }

  .motion-active .section--line-tour { overflow: hidden; padding: 0; }
  .motion-active .section--line-tour .split { display: none; }
  .motion-active .section--line-tour .container {
    display: grid;
    height: 100vh;
    padding: 0;
    grid-template-rows: minmax(0, 1fr);
  }
  .motion-active .line-tour {
    min-height: 0;
    width: 100vw;
    margin-top: 0;
    margin-left: calc(50% - 50vw);
    border: 0;
    border-radius: 0;
  }
  .motion-active .line-tour-stage { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: 16px 60px 84px; }
  .motion-active .line-tour-zoom { height: 100%; max-width: 100%; aspect-ratio: 1260 / 750; will-change: transform; }
  .motion-active .line-tour-zoom img { position: absolute; inset: 0; width: 100%; height: 100%; }
  .motion-active .line-tour-dot { width: 46px; height: 46px; margin: -23px 0 0 -23px; font-size: .85rem; will-change: transform; }
  .motion-active .line-tour-caption { display: block; position: absolute; z-index: 3; inset: 0; padding: 0; border: 0; opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity 320ms ease, transform 420ms var(--ease-out), visibility 320ms; pointer-events: none; }
  .motion-active .line-tour[data-frame="0"] .line-tour-caption--0,
  .motion-active .line-tour[data-frame="1"] .line-tour-caption--1,
  .motion-active .line-tour[data-frame="2"] .line-tour-caption--2,
  .motion-active .line-tour[data-frame="3"] .line-tour-caption--3 { opacity: 1; visibility: visible; transform: none; }
  .motion-active .line-tour-popup {
    position: absolute;
    bottom: 64px;
    left: 60px;
    max-width: 380px;
    padding: 24px 28px;
    border: 1px solid rgba(255,255,255,.65);
    border-radius: var(--radius);
    background: rgba(255,255,255,.72);
    -webkit-backdrop-filter: blur(18px) saturate(1.3);
    backdrop-filter: blur(18px) saturate(1.3);
    box-shadow: 0 20px 50px rgba(7,24,34,.12);
  }
  .motion-active .line-tour-popup strong { font-size: 1.6rem; }
  .motion-active .line-tour-rail { display: block; }
}

@media (max-width: 980px) {
  .hero-inner, .split, .cta-strip { grid-template-columns: 1fr; }
  .hero-inner { padding-top: 90px; }
  .hero-copy-panel { max-width: 680px; }
  .hero-media img { object-position: 62% center; }
  .hero-media::after { background: linear-gradient(90deg, rgba(12,17,19,.96), rgba(12,17,19,.74) 60%, rgba(12,17,19,.32)), linear-gradient(0deg, rgba(12,17,19,.62), transparent 56%); }
  .editorial-intro, .story-intro { grid-template-columns: 1fr; row-gap: 34px; }
  .editorial-intro .lead { max-width: 690px; }
  .benefit-row { grid-template-columns: 60px 1fr; }
  .benefit-row > p:last-child { grid-column: 2; }
  .story-experience { grid-template-columns: 1fr; }
  .story-canvas { min-height: 540px; }
  .story-chapters { display: grid; grid-template-columns: repeat(3, 1fr); }
  .story-tab { min-height: 190px; border-right: 1px solid var(--line); border-bottom: 0; }
  .story-tab:last-child { border-right: 0; }
  .product-pair { grid-template-columns: 1fr; }
  .product-panel { min-height: 0; }
  .product-panel--film { border-top: 1px solid var(--line); border-left: 0; }
  .contact-scene { padding: 60px 54px; grid-template-columns: 1fr; gap: 40px; }
  .contact-copy { max-width: 720px; }
  .contact-desk { width: min(100%, 680px); min-height: 460px; margin-left: auto; }
  .section-nav-inner { overflow-x: auto; }
  .section-nav-links { min-width: max-content; }
  .insight-row { grid-template-columns: 145px 160px 1fr 30px; gap: 22px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(3, 1fr); }
  .process-step:nth-child(3) { border-right: 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-strip .btn-row { justify-content: flex-start; }
  .nav-links {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 26px 20px 34px;
    background: #fff;
    flex-direction: column;
    z-index: 50;
  }
  .home-page .nav-links { top: 70px; min-height: calc(100dvh - 70px); }
  .nav-links.is-open { display: flex; }
  .menu-toggle { display: block; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 76px 0; }
  [id] { scroll-margin-top: 124px; }
  .section-nav { top: 78px; }
  .home-page [id] { scroll-margin-top: 128px; }
  .home-page .section-nav { top: 70px; }
  .home-page .story-canvas { min-height: 420px; }
  .home-page .story-statement { top: auto; bottom: 106px; }
  .home-page .story-copy-state > p { bottom: 24px; }
  .section-nav-inner { width: 100%; overflow: hidden; padding-right: 14px; padding-left: 14px; gap: 18px; }
  .section-nav-links { min-width: 0; overflow-x: auto; gap: 24px; padding-right: 20px; scrollbar-width: none; }
  .section-nav-links::-webkit-scrollbar { display: none; }
  .section-nav-cta { flex: none; padding: 0 16px; }
  .hero-inner { padding-top: 56px; }
  .hero h1 { font-size: clamp(3.3rem, 16vw, 4.5rem); }
  .hero-last-line { white-space: normal; }
  .hero-media-note { right: 14px; bottom: 16px; display: none; }
  .section--editorial, .section--story { padding: 88px 0; }
  .benefit-list { margin-top: 68px; }
  .benefit-row { min-height: 0; grid-template-columns: 42px 1fr; gap: 14px 18px; padding: 30px 0; }
  .benefit-row h3, .benefit-row > p:last-child { grid-column: 2; }
  .benefit-row h3 { font-size: 2.2rem; }
  .story-experience { min-height: 0; margin-top: 52px; }
  .story-canvas { min-height: 540px; padding: 26px 24px; }
  .story-statement { top: 330px; bottom: auto; left: 24px; }
  .story-statement strong { font-size: clamp(3.4rem, 17vw, 4.6rem); }
  .story-copy-state .story-count { top: 26px; left: 24px; }
  .story-copy-state > p { right: 24px; bottom: 24px; left: 24px; text-align: left; }
  .story-chapters { display: flex; }
  .story-tab { min-height: 132px; border-right: 0; border-bottom: 1px solid var(--line); padding: 24px 22px; }
  .story-tab:last-child { border-bottom: 0; }
  .product-pair { margin-top: 48px; }
  .product-panel-top { height: 270px; }
  .product-panel-body { min-height: 265px; padding: 30px 25px 34px; }
  .insight-list { margin-top: 48px; }
  .insight-row { min-height: 0; grid-template-columns: 1fr 30px; gap: 16px; padding: 28px 0; }
  .insight-row > span { grid-column: 1 / -1; }
  .insight-media { grid-column: 1 / -1; width: 100%; aspect-ratio: 16 / 9; }
  .insight-row h3 { font-size: 2rem; }
  .grid-2, .grid-3, .grid-4, .form-grid, .article-card, .flow-map { grid-template-columns: 1fr; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(3) { border-right: 1px solid rgba(255,255,255,.13); }
  .process-step:nth-child(even) { border-right: 0; }
  .article-card img { min-height: 220px; }
  .quote-panel, .cta-strip { padding: 34px 24px; }
  .section--contact { padding: 76px 0; }
  .home-page .contact-scene { padding: 72px 0 18px; }
  .contact-scene { min-height: 0; padding: 44px 24px 24px; border-radius: 20px; }
  .contact-copy h2 { font-size: 2.7rem; }
  .contact-desk { min-height: 430px; }
  .home-page .contact-desk { width: 100%; min-height: 610px; margin-left: 0; }
  .home-page .contact-card--front { right: 14px; bottom: 14px; left: 14px; width: auto; padding: 26px 24px; }
  .contact-card--back { right: -8%; width: 86%; }
  .contact-card--middle { right: 0; width: 86%; }
  .contact-card--front { right: 8%; width: 86%; padding: 28px 24px; }
  .contact-card--front > strong { margin-top: 30px; font-size: 1.8rem; }
  .contact-card--front ul { margin-top: 28px; grid-template-columns: 1fr; }
  .contact-card--front li { padding: 8px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 420px) {
  .hero .btn-row { align-items: stretch; flex-direction: column; }
  .hero .btn { width: 100%; }
}

@media print {
  .js .reveal { opacity: 1; transform: none; }
  .site-header, .section-nav { position: static; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-delay: 0s !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; transition-delay: 0s !important; }
  .js .reveal { opacity: 1; transform: none; }
  .js .benefit-row.reveal h3, .js .benefit-row.reveal > p:last-child { opacity: 1; transform: none; }
  .js .contact-scene.reveal:not(.is-visible) .contact-card { transform: none; }
  .hero-media img, .story-scene img, .product-panel-image, .insight-media img, .contact-visual img { transform: none !important; }
}
