:root {
  --navy-950: #031329;
  --navy-900: #061a32;
  --navy-800: #0a2848;
  --navy-700: #0f3a60;
  --cyan: #20ddeb;
  --cyan-light: #a2f8fb;
  --cyan-dark: #007b96;
  --mist: #edf4f6;
  --mist-2: #f6f9fa;
  --ink: #0b2941;
  --muted: #4b6476;
  --white: #fff;
  --line: rgba(8, 42, 68, .12);
  --shadow: 0 24px 70px rgba(5, 35, 59, .12);
  --radius-lg: 36px;
  --radius-md: 24px;
  --shell: min(1160px, calc(100% - 48px));
  --font: "Microsoft YaHei UI", "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--mist-2);
  font-family: var(--font);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img, svg { display: block; max-width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 999; top: 12px; left: 12px; padding: 10px 16px; border-radius: 10px; background: var(--cyan); color: var(--navy-950); font-weight: 700; transform: translateY(-150%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }

.site-header { position: fixed; z-index: 100; top: 0; left: 0; width: 100%; transition: background .3s, box-shadow .3s, backdrop-filter .3s; }
.site-header.scrolled { background: rgba(3, 19, 41, .82); box-shadow: 0 8px 30px rgba(0,0,0,.15); backdrop-filter: blur(18px); }
.nav-wrap { width: var(--shell); height: 82px; margin: auto; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--white); }
.brand-mark { width: 40px; height: 40px; fill: var(--cyan); flex: 0 0 auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: 17px; letter-spacing: .08em; }
.brand-text small { margin-top: 5px; font-size: 10px; color: rgba(255,255,255,.62); letter-spacing: .16em; }
.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav a { color: rgba(255,255,255,.72); font-size: 14px; transition: color .2s, transform .2s, background .2s; }
.site-nav a:hover { color: var(--white); }
.site-nav .nav-cta { padding: 10px 17px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: var(--white); background: rgba(255,255,255,.08); }
.site-nav .nav-cta:hover { background: var(--cyan); color: var(--navy-950); transform: translateY(-2px); }
.nav-cta span { margin-left: 5px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: rgba(255,255,255,.1); cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--white); transition: transform .2s, opacity .2s; }

.hero { position: relative; min-height: 800px; overflow: hidden; color: var(--white); background: radial-gradient(circle at 80% 25%, #0a456d 0, transparent 28%), radial-gradient(circle at 12% 90%, #063151 0, transparent 32%), linear-gradient(145deg, var(--navy-950), var(--navy-900) 55%, #082a47); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .08; background-image: linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px); background-size: 90px 90px; mask-image: linear-gradient(to right, transparent, #000 30%, #000 70%, transparent); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .3; }
.glow-one { width: 330px; height: 330px; right: -150px; top: 260px; border: 1px solid var(--cyan); box-shadow: 0 0 100px rgba(32,221,235,.12) inset; }
.glow-two { width: 110px; height: 110px; left: 44%; bottom: 65px; background: rgba(32,221,235,.08); }
.hero-inner { position: relative; z-index: 2; width: var(--shell); min-height: 800px; margin: auto; padding: 148px 0 95px; display: grid; grid-template-columns: .94fr 1.06fr; align-items: center; gap: 28px; }
.eyebrow { margin: 0 0 22px; display: flex; align-items: center; gap: 10px; color: var(--cyan-light); font-size: 13px; font-weight: 700; letter-spacing: .18em; }
.eyebrow span { width: 30px; height: 2px; background: var(--cyan); }
.eyebrow.dark { color: var(--cyan-dark); }
.hero h1 { margin: 0; font-size: clamp(50px, 6vw, 82px); line-height: 1.12; letter-spacing: -.055em; font-weight: 760; }
.hero h1 em { color: var(--cyan); font-style: normal; }
.hero-intro { max-width: 590px; margin: 28px 0 0; color: rgba(255,255,255,.68); font-size: 18px; line-height: 1.9; }
.hero-actions { margin-top: 38px; display: flex; align-items: center; gap: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 52px; padding: 0 24px; border-radius: 999px; font-size: 14px; font-weight: 700; transition: transform .22s, box-shadow .22s, background .22s; }
.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--navy-950); background: var(--cyan); box-shadow: 0 12px 34px rgba(32,221,235,.22); }
.button-primary:hover { box-shadow: 0 16px 40px rgba(32,221,235,.35); background: var(--cyan-light); }
.text-link { display: inline-flex; gap: 10px; align-items: center; padding: 8px 0; color: rgba(255,255,255,.78); font-size: 14px; border-bottom: 1px solid rgba(255,255,255,.2); transition: color .2s, border-color .2s; }
.text-link:hover { color: var(--cyan); border-color: var(--cyan); }
.hero-tags { margin-top: 58px; display: flex; gap: 9px; flex-wrap: wrap; }
.hero-tags span { padding: 7px 13px; border: 1px solid rgba(255,255,255,.12); border-radius: 99px; color: rgba(255,255,255,.55); font-size: 12px; background: rgba(255,255,255,.035); backdrop-filter: blur(8px); }

.hero-visual { position: relative; height: 620px; }
.hero-visual::before { content: ""; position: absolute; width: 380px; height: 480px; left: 130px; top: 65px; border-radius: 50% 50% 45% 55%; background: linear-gradient(160deg, rgba(32,221,235,.12), rgba(32,221,235,.01)); filter: blur(2px); }
.orbit { position: absolute; border: 1px solid rgba(32,221,235,.18); border-radius: 50%; }
.orbit-one { width: 460px; height: 460px; left: 65px; top: 74px; }
.orbit-two { width: 540px; height: 310px; left: 20px; top: 155px; transform: rotate(-22deg); }
.route-line { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.route-line path:first-child { stroke: rgba(255,255,255,.1); stroke-width: 2; }
.route-line .route-dash { stroke: var(--cyan); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 7 13; opacity: .7; }
.route-line circle { fill: var(--cyan); stroke: rgba(32,221,235,.2); stroke-width: 16; }
.runner-wrap { position: absolute; width: 310px; left: 165px; top: 74px; }
.runner { position: relative; z-index: 2; width: 100%; filter: drop-shadow(0 20px 25px rgba(0,0,0,.2)); }
.runner-halo { position: absolute; inset: 60px 15px 20px; border-radius: 50%; background: radial-gradient(circle, rgba(32,221,235,.23), transparent 68%); filter: blur(18px); }
.terrain { position: absolute; left: 48px; bottom: 54px; width: 480px; height: 140px; opacity: .42; clip-path: polygon(0 75%, 18% 35%, 29% 62%, 48% 9%, 61% 51%, 78% 26%, 100% 72%, 100% 100%, 0 100%); }
.terrain-back { background: #0b4770; transform: translate(38px,-26px) scale(.96); opacity: .2; }
.terrain-front { background: linear-gradient(180deg, #0a3d62, #051a32); }
.visual-card { position: absolute; z-index: 5; display: flex; align-items: center; gap: 12px; padding: 14px 17px; border: 1px solid rgba(255,255,255,.14); border-radius: 17px; background: rgba(8,37,61,.64); backdrop-filter: blur(15px); box-shadow: 0 16px 36px rgba(0,0,0,.18); }
.visual-card small, .visual-card strong { display: block; }
.visual-card small { color: rgba(255,255,255,.66); font-size: 10px; }
.visual-card strong { margin-top: 2px; font-size: 13px; }
.pace-card { left: 12px; top: 204px; }
.pulse-card { right: 1px; top: 348px; }
.card-icon { display: grid; place-items: center; width: 37px; height: 37px; border-radius: 12px; color: var(--cyan); background: rgba(32,221,235,.12); }
.card-icon svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.pulse-ring { display: grid; place-items: center; width: 37px; height: 37px; border: 1px solid rgba(32,221,235,.35); border-radius: 50%; }
.pulse-ring span { width: 17px; height: 17px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 6px rgba(32,221,235,.12); }
.scroll-cue { position: absolute; z-index: 3; bottom: 24px; left: 50%; display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.35); font-size: 10px; letter-spacing: .15em; transform: translateX(-50%); }
.scroll-cue span { width: 1px; height: 30px; background: linear-gradient(var(--cyan), transparent); }

.section { padding: 130px 0; }
.section-shell { width: var(--shell); margin: auto; }
.about { background: var(--mist-2); }
.about-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; align-items: start; }
.section-heading h2, .approach h2, .contact h2 { margin: 0; color: var(--ink); font-size: clamp(38px, 5vw, 64px); line-height: 1.2; letter-spacing: -.04em; }
.about-content { padding-top: 42px; }
.about-content > p { max-width: 760px; color: var(--muted); }
.about-content .lead { margin-top: 0; color: var(--ink); font-size: 21px; line-height: 1.85; font-weight: 600; }
.principles { margin-top: 56px; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.principles article { padding: 25px 22px; border-top: 1px solid var(--line); }
.principles span { color: var(--cyan-dark); font-size: 11px; font-weight: 800; }
.principles h3 { margin: 11px 0 7px; font-size: 17px; }
.principles p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }

.scenes { position: relative; overflow: hidden; color: var(--white); background: var(--navy-900); }
.scenes::before { content: ""; position: absolute; width: 800px; height: 800px; right: -450px; top: 200px; border: 1px solid rgba(32,221,235,.08); border-radius: 50%; }
.section-heading.centered { max-width: 760px; margin: auto; text-align: center; }
.centered .eyebrow { justify-content: center; }
.centered h2 { color: var(--white); }
.centered > p:last-child { margin: 20px auto 0; color: rgba(255,255,255,.55); }
.scene-list { margin-top: 75px; display: grid; gap: 34px; }
.scene-card { min-height: 400px; display: grid; grid-template-columns: 1.2fr .8fr; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); background: linear-gradient(120deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); box-shadow: 0 28px 60px rgba(0,0,0,.16); }
.scene-card:nth-child(even) .scene-art { order: 2; }
.scene-art { position: relative; min-height: 400px; overflow: hidden; background: linear-gradient(150deg, rgba(19,75,109,.7), rgba(3,19,41,.4)); }
.scene-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 70%, rgba(6,26,50,.65)); }
.scene-card:nth-child(even) .scene-art::after { background: linear-gradient(-90deg, transparent 70%, rgba(6,26,50,.65)); }
.scene-art svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.city-line { fill: rgba(82,182,206,.18); }
.scene-route { fill: none; stroke: var(--cyan); stroke-width: 3; stroke-dasharray: 8 12; }
.scene-art circle:not(.outdoor-sun) { fill: var(--cyan); }
.art-sun { position: absolute; width: 105px; height: 105px; top: 62px; left: 92px; border-radius: 50%; background: radial-gradient(circle at 40% 40%, var(--cyan-light), var(--cyan) 40%, transparent 42%), radial-gradient(circle, rgba(32,221,235,.22), transparent 68%); box-shadow: 0 0 60px rgba(32,221,235,.18); }
.outdoor-sun { fill: var(--cyan); opacity: .7; }
.mountain-back { fill: #155779; opacity: .46; }
.mountain-front { fill: #082c4b; }
.scene-balance .scene-art { background: radial-gradient(circle at center, #0d496d, #082942 65%); }
.balance-orbit { position: absolute; width: 300px; height: 300px; border: 1px solid rgba(32,221,235,.18); border-radius: 50%; top: 50px; left: calc(50% - 150px); }
.wave-one, .wave-two { fill: none; stroke: rgba(32,221,235,.3); stroke-width: 2; }
.wave-two { stroke: rgba(255,255,255,.12); }
.scene-balance circle { fill: rgba(32,221,235,.12) !important; stroke: var(--cyan); stroke-width: 2; }
.balance-figure { fill: none; stroke: var(--cyan-light); stroke-width: 7; stroke-linecap: round; stroke-linejoin: round; }
.scene-copy { padding: 54px 50px; display: flex; flex-direction: column; justify-content: center; }
.scene-number { color: rgba(255,255,255,.55); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.scene-kicker { margin: 16px 0 5px !important; color: var(--cyan) !important; font-size: 12px !important; font-weight: 800; letter-spacing: .15em; }
.scene-copy h3 { margin: 0; font-size: 28px; line-height: 1.35; }
.scene-copy > p { color: rgba(255,255,255,.58); font-size: 14px; }
.scene-copy ul { display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 12px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.72); font-size: 12px; }
.scene-copy li::before { content: ""; display: inline-block; width: 5px; height: 5px; margin-right: 8px; border-radius: 50%; background: var(--cyan); vertical-align: 1px; }

.approach { background: var(--mist); }
.approach-layout { display: grid; grid-template-columns: .86fr 1.14fr; gap: 110px; align-items: center; }
.approach-copy > p:not(.eyebrow) { max-width: 510px; margin: 27px 0 33px; color: var(--muted); }
.button-dark { color: var(--white); background: var(--navy-900); box-shadow: 0 12px 28px rgba(6,26,50,.15); }
.button-dark:hover { background: var(--navy-700); }
.approach-steps { display: grid; }
.approach-steps article { display: grid; grid-template-columns: 64px 1fr; gap: 23px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.approach-steps article:first-child { border-top: 1px solid var(--line); }
.step-icon { display: grid; place-items: center; width: 62px; height: 62px; border-radius: 21px; color: var(--cyan-dark); background: rgba(255,255,255,.72); box-shadow: 0 8px 24px rgba(12,48,70,.06); }
.step-icon svg { width: 31px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.approach-steps span { color: var(--cyan-dark); font-size: 11px; font-weight: 800; letter-spacing: .15em; }
.approach-steps h3 { margin: 4px 0 5px; font-size: 20px; }
.approach-steps p { margin: 0; color: var(--muted); font-size: 13px; }

.manifesto { position: relative; min-height: 580px; display: grid; place-items: center; overflow: hidden; color: var(--white); text-align: center; background: radial-gradient(circle at 50% 45%, #0b456b, transparent 32%), var(--navy-950); }
.manifesto::before, .manifesto::after { content: ""; position: absolute; border: 1px solid rgba(32,221,235,.1); border-radius: 50%; }
.manifesto::before { width: 500px; height: 500px; }
.manifesto::after { width: 750px; height: 270px; transform: rotate(-12deg); }
.manifesto-track { position: absolute; top: 50%; left: 50%; width: max-content; display: flex; align-items: center; gap: 35px; color: rgba(255,255,255,.025); font-size: 90px; font-weight: 800; letter-spacing: -.05em; transform: translate(-50%,-50%) rotate(-5deg); white-space: nowrap; }
.manifesto-track i { width: 18px; height: 18px; border-radius: 50%; background: currentColor; }
.manifesto-content { position: relative; z-index: 2; }
.manifesto-content svg { width: 62px; margin: 0 auto 27px; fill: var(--cyan); }
.manifesto blockquote { margin: 0; font-size: clamp(26px, 3.5vw, 43px); font-weight: 680; line-height: 1.65; letter-spacing: -.025em; }
.manifesto-content p { margin: 22px 0 0; color: rgba(255,255,255,.66); font-size: 12px; letter-spacing: .2em; }

.contact { background: var(--mist-2); }
.contact-panel { position: relative; min-height: 480px; display: grid; grid-template-columns: 1fr .85fr; align-items: center; overflow: hidden; padding: 76px 80px; border-radius: 42px; color: var(--white); background: linear-gradient(125deg, #082c4c, var(--navy-950)); box-shadow: var(--shadow); }
.contact-panel::before { content: ""; position: absolute; width: 360px; height: 360px; left: -180px; bottom: -250px; border: 1px solid rgba(32,221,235,.18); border-radius: 50%; }
.contact-copy { position: relative; z-index: 2; }
.contact h2 { color: var(--white); font-size: clamp(36px,4.2vw,57px); }
.contact-copy > p:not(.eyebrow) { max-width: 560px; margin: 23px 0 30px; color: rgba(255,255,255,.58); }
.contact-actions { display: flex; align-items: center; gap: 28px; }
.button-light { color: var(--navy-950); background: var(--cyan); }
.button-light:hover { background: var(--cyan-light); }
.text-link.light { color: rgba(255,255,255,.7); }
.contact-visual { position: relative; height: 360px; }
.contact-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.contact-visual path { fill: none; stroke: var(--cyan); stroke-width: 2; stroke-dasharray: 7 11; }
.contact-visual circle { fill: var(--cyan); stroke: rgba(32,221,235,.15); stroke-width: 14; }
.contact-orbit { position: absolute; border: 1px solid rgba(32,221,235,.15); border-radius: 50%; }
.contact-orbit.one { width: 310px; height: 310px; left: 55px; top: 15px; }
.contact-orbit.two { width: 370px; height: 175px; left: 25px; top: 92px; transform: rotate(-28deg); }
.contact-badge { position: absolute; top: 142px; left: 110px; padding: 15px 20px; border: 1px solid rgba(255,255,255,.12); border-radius: 99px; color: rgba(255,255,255,.72); background: rgba(255,255,255,.07); backdrop-filter: blur(14px); font-size: 12px; }
.contact-badge span { display: inline-block; width: 7px; height: 7px; margin-right: 9px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px rgba(32,221,235,.1); }

body > footer {
  padding: 28px max(24px, calc((100% - 1160px)/2));
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.72);
  background: var(--navy-950);
  text-align: center;
}
body > footer p { max-width: 1160px; margin: 0 auto; font-size: 12px; line-height: 2; }
body > footer a { color: var(--cyan-light); text-decoration: underline; text-underline-offset: 3px; overflow-wrap: anywhere; }
body > footer a:hover { color: var(--white); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  :root { --shell: min(100% - 40px, 760px); }
  .menu-toggle { display: block; position: relative; z-index: 102; }
  .site-nav { position: fixed; z-index: 101; inset: 0; padding: 115px 24px 40px; flex-direction: column; align-items: stretch; gap: 8px; visibility: hidden; opacity: 0; transform: translateY(-12px); background: rgba(3,19,41,.98); transition: opacity .24s, transform .24s, visibility .24s; }
  .site-nav.open { visibility: visible; opacity: 1; transform: translateY(0); }
  .site-nav a { padding: 13px 0; text-align: center; font-size: 17px; }
  .site-nav .nav-cta { margin-top: 14px; padding: 13px 17px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-6px) rotate(-45deg); }
  body.menu-open { overflow: hidden; }
  .hero-inner { min-height: auto; padding: 145px 0 80px; grid-template-columns: 1fr; text-align: center; }
  .hero-copy { position: relative; z-index: 4; }
  .hero .eyebrow, .hero-actions, .hero-tags { justify-content: center; }
  .hero-intro { margin-left: auto; margin-right: auto; }
  .hero-visual { width: min(600px, 100%); margin: -15px auto 0; height: 555px; }
  .scroll-cue { display: none; }
  .about-grid, .approach-layout { grid-template-columns: 1fr; gap: 36px; }
  .about-content { padding-top: 0; }
  .scene-card { grid-template-columns: 1fr; }
  .scene-card:nth-child(even) .scene-art { order: 0; }
  .scene-art { min-height: 330px; }
  .scene-art::after, .scene-card:nth-child(even) .scene-art::after { background: linear-gradient(0deg, rgba(6,26,50,.65), transparent 45%); }
  .scene-copy { padding: 38px 42px 44px; }
  .contact-panel { grid-template-columns: 1fr; padding: 60px; }
  .contact-visual { height: 260px; margin-top: -15px; }
  .contact-badge { top: 105px; }
}

@media (max-width: 650px) {
  :root { --shell: calc(100% - 32px); --radius-lg: 27px; }
  html { scroll-padding-top: 75px; }
  .nav-wrap { height: 70px; }
  .brand-mark { width: 35px; height: 35px; }
  .brand-text strong { font-size: 15px; }
  .brand-text small { font-size: 8px; }
  .hero { min-height: auto; }
  .hero-inner { padding: 122px 0 60px; }
  .hero h1 { font-size: clamp(41px, 12vw, 57px); }
  .hero-intro { font-size: 16px; }
  .hero-actions { flex-direction: column; gap: 14px; }
  .hero-tags { margin-top: 36px; }
  .hero-visual { height: 440px; transform: scale(.92); transform-origin: top center; margin-bottom: -35px; }
  .runner-wrap { width: 240px; left: calc(50% - 120px); top: 55px; }
  .orbit-one { width: 350px; height: 350px; left: calc(50% - 175px); top: 45px; }
  .orbit-two { width: 390px; height: 240px; left: calc(50% - 195px); top: 110px; }
  .pace-card { top: 150px; left: -2px; }
  .pulse-card { top: 285px; right: -2px; }
  .terrain { width: 380px; left: calc(50% - 190px); bottom: 38px; }
  .section { padding: 90px 0; }
  .section-heading h2, .approach h2 { font-size: 40px; }
  .about-content .lead { font-size: 18px; }
  .principles { grid-template-columns: 1fr; margin-top: 36px; gap: 0; }
  .principles article { padding: 19px 2px; }
  .scene-list { margin-top: 48px; gap: 22px; }
  .scene-art { min-height: 260px; }
  .scene-card { min-height: 0; }
  .scene-copy { padding: 31px 25px 35px; }
  .scene-copy h3 { font-size: 23px; }
  .approach-steps article { grid-template-columns: 52px 1fr; gap: 17px; }
  .step-icon { width: 50px; height: 50px; border-radius: 16px; }
  .step-icon svg { width: 26px; }
  .manifesto { min-height: 500px; padding: 70px 20px; }
  .manifesto blockquote br { display: none; }
  .manifesto-track { font-size: 66px; }
  .contact-panel { width: calc(100% - 24px); padding: 50px 25px 30px; border-radius: 30px; }
  .contact h2 { font-size: 36px; }
  .contact h2 br { display: none; }
  .contact-actions { align-items: flex-start; flex-direction: column; gap: 15px; }
  .contact-visual { height: 220px; margin-top: 12px; transform: scale(.8); transform-origin: center; }
  .contact-badge { left: 65px; }
  body > footer { padding: 24px 16px; }
  body > footer p { font-size: 11px; line-height: 1.9; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (forced-colors: active) {
  .hero-tags span, .scene-card, .contact-panel, .step-icon { border: 1px solid CanvasText; }
  .eyebrow span, .pulse-ring span, .contact-badge span { background: CanvasText; }
}
