:root {
  color-scheme: light;
  --bg: #f5f5f7;
  --bg-soft: #ffffff;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(29, 29, 31, 0.11);
  --card: rgba(255, 255, 255, 0.78);
  --card-strong: #ffffff;
  --blue: #0066cc;
  --green: #16895a;
  --white: #ffffff;
  --max: 1200px;
  --radius: 28px;
  --shadow: 0 24px 70px rgba(16, 24, 40, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 70% 0%, rgba(0, 102, 204, 0.12), transparent 34rem),
    linear-gradient(180deg, #fbfbfd 0%, #f5f5f7 44%, #ffffff 100%),
    var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body[data-active-view="home"] {
  color-scheme: dark;
  --bg: #050505;
  --bg-soft: #0f1115;
  --ink: #f5f5f7;
  --muted: #a1a1a6;
  --line: rgba(255, 255, 255, 0.14);
  --card: rgba(255, 255, 255, 0.075);
  --card-strong: rgba(255, 255, 255, 0.12);
  --blue: #2997ff;
  --green: #66d9a0;
  background:
    radial-gradient(circle at 65% 0%, rgba(41, 151, 255, 0.18), transparent 34rem),
    radial-gradient(circle at 14% 20%, rgba(102, 217, 160, 0.08), transparent 24rem),
    #050505;
}

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

button {
  font: inherit;
}

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

.cursor-glow {
  position: fixed;
  left: var(--x, 50%);
  top: var(--y, 18%);
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.16), transparent 66%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: left 160ms ease, top 160ms ease;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 56px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(29, 29, 31, 0.08);
  background: rgba(251, 251, 253, 0.78);
  backdrop-filter: blur(22px) saturate(180%);
}

body[data-active-view="home"] .site-header {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.72);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 128px;
  font-size: 16px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  /* border: 1px solid rgba(29, 29, 31, 0.14); */
  border-radius: 50%;
  /* background: linear-gradient(145deg, #1d1d1f, #57575d); */
  /* color: #ffffff; */
}

body[data-active-view="home"] .brand-mark {
  /* border-color: rgba(255, 255, 255, 0.26);
  background: linear-gradient(145deg, #f8f8fb, #9fa2aa);
  color: #080808; */
}

.nav-links {
  justify-self: center;
  display: flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 10px 32px rgba(16, 24, 40, 0.06);
}

body[data-active-view="home"] .nav-links {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(29, 29, 31, 0.68);
  font-size: 13px;
  transition: background 240ms ease, color 240ms ease, transform 240ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  background: #1d1d1f;
  color: var(--white);
  transform: translateY(-1px);
}

body[data-active-view="home"] .nav-links a {
  color: rgba(245, 245, 247, 0.74);
}

body[data-active-view="home"] .nav-links a:hover,
body[data-active-view="home"] .nav-links a.is-active {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

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

.lang-switch {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  width: 82px;
  height: 30px;
  padding: 3px;
  border: 1px solid rgba(29, 29, 31, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

body[data-active-view="home"] .lang-switch {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
}

.lang-switch button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
}

.lang-switch button[aria-pressed="true"] {
  background: #1d1d1f;
  color: #ffffff;
}

body[data-active-view="home"] .lang-switch button[aria-pressed="true"] {
  background: var(--white);
  color: #050505;
}

.view {
  display: none;
  min-height: calc(100vh - 112px);
  animation: viewIn 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.view.is-active {
  display: block;
}

@keyframes viewIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.cinema-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: calc(100vh - 56px);
  padding: 88px 24px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.78;
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.86), rgba(5, 5, 5, 0.28) 52%, rgba(5, 5, 5, 0.76)),
    linear-gradient(0deg, #050505, transparent 28%, transparent 70%, rgba(5, 5, 5, 0.8));
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowScale 12s ease-in-out infinite alternate;
}

@keyframes slowScale {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

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

h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4.3vw, 58px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.045em;
}

body:not([data-active-view="home"]) h2 {
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.1;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.hero-lead,
.page-hero p,
.story-panel p,
.feature-card p,
.process-lanes p,
.product-stage p,
.jobs p,
.contact-board p,
.slide p {
  color: var(--muted);
  line-height: 1.58;
}

body:not([data-active-view="home"]) .page-hero p,
body:not([data-active-view="home"]) .feature-card p,
body:not([data-active-view="home"]) .process-lanes p,
body:not([data-active-view="home"]) .product-stage p,
body:not([data-active-view="home"]) .jobs p,
body:not([data-active-view="home"]) .contact-board p,
body:not([data-active-view="home"]) .timeline span,
body:not([data-active-view="home"]) .data-wall span,
body:not([data-active-view="home"]) address {
  color: #5f6368;
}

.hero-lead {
  max-width: 680px;
  font-size: clamp(18px, 2vw, 24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.pill:hover {
  transform: scale(1.04);
}

.pill.primary {
  background: var(--blue);
  color: white;
}

.pill.glass {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.snap-story,
.carousel-shell,
.page-hero,
.content-grid,
.timeline,
.milestones,
.process-lanes,
.product-stage,
.data-wall,
.jobs,
.cta-band,
.contact-board {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.snap-story {
  padding: 96px 0;
}

.story-panel {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 52px;
  align-items: center;
  min-height: 74vh;
  padding: 46px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035));
  transform-origin: center;
}

.story-panel.reverse {
  grid-template-columns: 1fr 0.78fr;
}

.story-panel.reverse img {
  order: -1;
}

.story-panel img,
.page-hero img,
.product-stage img,
.slide img,
.campus-showcase img,
.contact-board img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

body[data-active-view="home"] .story-panel img,
body[data-active-view="home"] .slide img {
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}

.story-panel img {
  aspect-ratio: 16 / 10;
}

.story-panel:hover,
.feature-card:hover,
.process-lanes article:hover,
.product-stage article:hover,
.jobs article:hover {
  transform: translateY(-8px) scale(1.015);
}

.story-panel,
.feature-card,
.process-lanes article,
.product-stage article,
.jobs article {
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1), border-color 300ms ease, background 300ms ease;
}

.section-head {
  /* max-width: 820px; */
  margin-bottom: 28px;
}

.carousel-shell {
  padding: 40px 0 112px;
}

.carousel {
  position: relative;
}

.slide-track {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #101115;
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: end;
  padding: 36px;
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.slide.is-current {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.slide img {
  height: 100%;
  min-height: 500px;
}

body:not([data-active-view="home"]) .pill.glass {
  border-color: rgba(29, 29, 31, 0.14);
  background: rgba(255, 255, 255, 0.78);
  color: #1d1d1f;
}

.slide span,
.process-lanes span {
  color: var(--green);
  font-weight: 800;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-arrow::before {
  display: block;
  width: 12px;
  height: 12px;
  margin: 16px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  content: "";
}

.carousel-arrow.prev {
  left: 18px;
}

.carousel-arrow.prev::before {
  transform: rotate(-135deg);
}

.carousel-arrow.next {
  right: 18px;
}

.carousel-arrow.next::before {
  transform: rotate(45deg);
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 4;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.carousel-dots button {
  width: 36px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
}

.carousel-dots button.is-current {
  background: white;
}

.page-hero {
  padding: 86px 0 44px;
}

.page-hero.compact {
  max-width: 980px;
}

.page-hero.image-hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: center;
}

.page-hero.image-hero img {
  aspect-ratio: 16 / 11;
}

.page-hero:not(.compact) h1,
.page-hero.compact h1,
.contact-board h1 {
  max-width: 760px;
  font-size: clamp(36px, 4.7vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.048em;
}

.content-grid,
.product-stage,
.jobs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 26px 0 92px;
}

.feature-card,
.process-lanes article,
.product-stage article,
.jobs article,
.cta-band,
.contact-board {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 18px 58px rgba(16, 24, 40, 0.07);
}

.feature-card {
  min-height: 248px;
  padding: 30px;
}

.feature-card.dark {
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 102, 204, 0.16), transparent 16rem),
    #ffffff;
}

body[data-active-view="home"] .feature-card.dark {
  background: linear-gradient(145deg, rgba(41, 151, 255, 0.2), rgba(255, 255, 255, 0.06));
}

.campus-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 32px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(245, 245, 247, 0.78)),
    #ffffff;
  box-shadow: var(--shadow);
}

.campus-showcase img {
  aspect-ratio: 16 / 10;
}

.campus-showcase div {
  padding-right: 18px;
}

.campus-showcase p:last-child {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.timeline,
.data-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-bottom: 100px;
}

.timeline div,
.data-wall div {
  min-height: 156px;
  padding: 26px;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 48px rgba(16, 24, 40, 0.06);
}

body[data-active-view="home"] .timeline div,
body[data-active-view="home"] .data-wall div {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.timeline strong,
.data-wall strong {
  display: block;
  margin-bottom: 16px;
  font-size: 36px;
  letter-spacing: -0.045em;
}

.timeline span,
.data-wall span {
  color: var(--muted);
  line-height: 1.5;
}

.milestones {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 80px;
}

.milestones .section-head {
  margin-bottom: 48px;
}

.milestones-track {
  position: relative;
  padding-left: 52px;
}

.milestones-track::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--line);
  border-radius: 2px;
}

.milestone {
  position: relative;
  margin-bottom: 32px;
}

.milestone:last-child {
  margin-bottom: 0;
}

.milestone-dot {
  position: absolute;
  left: -44px;
  top: 26px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  border: 4px solid var(--bg-soft);
  z-index: 1;
  box-shadow: 0 0 0 1px rgba(0, 102, 204, 0.2);
  transition: transform 380ms ease, box-shadow 380ms ease;
}

.milestone:hover .milestone-dot {
  transform: scale(1.25);
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.12);
}

.milestone-year {
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.milestone-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  padding: 24px 28px;
  box-shadow: 0 18px 58px rgba(16, 24, 40, 0.07);
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1), border-color 300ms ease, background 300ms ease;
}

.milestone-card:hover {
  transform: translateX(6px);
}

.milestone-card h3 {
  margin: 0 0 6px;
  font-size: clamp(18px, 1.6vw, 22px);
}

.milestone-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

body[data-active-view="home"] .milestone-dot {
  border-color: var(--bg);
  box-shadow: 0 0 0 1px rgba(41, 151, 255, 0.3);
}

body[data-active-view="home"] .milestone-card {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

body[data-active-view="home"] .milestones-track::before {
  background: rgba(255, 255, 255, 0.14);
}

.process-lanes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 20px 0 108px;
}

.process-lanes article {
  min-height: 292px;
  padding: 28px;
}

.process-lanes span {
  display: block;
  margin-bottom: 54px;
}

.product-stage article {
  padding: 18px;
  background: var(--card-strong);
}

.product-stage img {
  aspect-ratio: 16 / 10;
  margin-bottom: 22px;
}

.data-wall {
  grid-template-columns: repeat(4, 1fr);
}

.jobs {
  grid-template-columns: repeat(4, 1fr);
}

.jobs article {
  min-height: 220px;
  padding: 28px;
}

.jobs h3 {
  color: var(--green);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px;
  margin-bottom: 96px;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 46px);
}

.contact-board {
  display: grid;
  grid-template-columns: 0.95fr 0.9fr 0.62fr;
  gap: 34px;
  align-items: center;
  min-height: 68vh;
  margin-top: 68px;
  margin-bottom: 92px;
  padding: 28px;
}

.contact-board img {
  aspect-ratio: 4 / 3;
}

address {
  display: grid;
  gap: 16px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.5;
}

address a {
  color: var(--blue);
}

.factory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: min(var(--max), calc(100% - 40px));
  margin: 12px auto 92px;
}

.factory-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 18px 58px rgba(16, 24, 40, 0.07);
  overflow: hidden;
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1), border-color 300ms ease, background 300ms ease;
}

.factory-card:hover {
  transform: translateY(-8px) scale(1.015);
}

.factory-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0;
}

.factory-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 24px 24px;
  flex: 1;
}

.factory-info h3 {
  margin: 0;
  font-size: clamp(18px, 1.5vw, 22px);
}

.factory-info address {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
  line-height: 1.55;
}

.hr-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hr-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--muted);
  opacity: 0.7;
  white-space: nowrap;
}

.hr-row a {
  color: var(--blue);
  font-weight: 500;
  word-break: break-all;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 34px;
  color: rgba(29, 29, 31, 0.56);
  font-size: 13px;
}

.footer-info {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-divider {
  height: 1px;
  background: rgba(29, 29, 31, 0.10);
}

body[data-active-view="home"] .footer-divider {
  background: rgba(245, 245, 247, 0.12);
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright {
  white-space: nowrap;
}

.icp-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: inherit;
  text-decoration: none;
  transition: opacity 200ms ease;
}

.icp-link:hover {
  opacity: 0.7;
}

.beian-icon {
  height: 16px;
  width: auto;
  vertical-align: middle;
}

body[data-active-view="home"] .site-footer {
  color: rgba(245, 245, 247, 0.55);
}

.reveal {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 780ms ease, transform 780ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 16px;
  }

  .brand,
  .header-actions {
    justify-self: center;
  }

  .nav-links {
    justify-self: stretch;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .cinema-hero {
    min-height: calc(100vh - 118px);
  }

  .story-panel,
  .story-panel.reverse,
  .page-hero.image-hero,
  .slide,
  .campus-showcase,
  .contact-board {
    grid-template-columns: 1fr;
  }

  .story-panel.reverse img {
    order: 0;
  }

  .slide-track {
    min-height: 760px;
  }

  .slide img {
    min-height: 360px;
  }

  .process-lanes,
  .data-wall,
  .jobs {
    grid-template-columns: repeat(2, 1fr);
  }

  .campus-showcase div {
    padding: 0 8px 12px;
  }

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

@media (max-width: 720px) {
  .brand {
    min-width: auto;
  }

  .nav-links a {
    padding: 0 12px;
    white-space: nowrap;
  }

  h1 {
    font-size: clamp(38px, 13vw, 58px);
  }

  h2 {
    font-size: clamp(29px, 9vw, 42px);
  }

  .page-hero:not(.compact) h1,
  .page-hero.compact h1,
  .contact-board h1 {
    font-size: clamp(30px, 9.4vw, 40px);
    letter-spacing: -0.04em;
  }

  .cinema-hero {
    padding: 72px 18px;
  }

  .snap-story,
  .carousel-shell,
  .page-hero,
  .content-grid,
  .timeline,
  .milestones,
  .process-lanes,
  .product-stage,
  .data-wall,
  .jobs,
  .campus-showcase,
  .cta-band,
  .contact-board,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .story-panel {
    min-height: auto;
    padding: 22px;
  }

  .slide-track {
    min-height: 700px;
  }

  .slide {
    padding: 20px;
  }

  .slide img {
    min-height: 300px;
  }

  .carousel-arrow {
    display: none;
  }

  .content-grid,
  .timeline,
  .process-lanes,
  .product-stage,
  .data-wall,
  .jobs {
    grid-template-columns: 1fr;
  }

  .timeline,
  .data-wall,
  .content-grid,
  .process-lanes,
  .product-stage,
  .jobs {
    padding-bottom: 70px;
  }

  .process-lanes article,
  .jobs article {
    min-height: 220px;
  }

  .process-lanes span {
    margin-bottom: 38px;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-board {
    padding: 28px;
  }

  .site-footer {
    gap: 12px;
  }

  .footer-info {
    flex-direction: column;
    gap: 8px;
  }

  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-copyright {
    white-space: normal;
  }
}
