:root {
  color-scheme: light dark;
  --ink: #092033;
  --ink-soft: #2d4557;
  --navy: #0e2a3f;
  --paper: #f3f7f8;
  --surface: #fbfdfd;
  --surface-2: #e9f1f3;
  --line: #cfdee3;
  --muted: #5b6f7d;
  --accent: #008d8b;
  --accent-soft: #d9efee;
  --on-accent: #f7ffff;
  --shadow: rgba(31, 73, 94, .15);
  --radius: 16px;
  --max: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  left: 18px;
  top: -60px;
  z-index: 50;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--on-accent);
  background: var(--accent);
}

.skip-link:focus { top: 18px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  height: 78px;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--shadow) 45%, transparent);
  backdrop-filter: blur(18px) saturate(1.25);
}

.header-shell {
  height: 100%;
  max-width: var(--max);
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.brand-emblem {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--accent) 25%, var(--line));
  border-radius: 10px;
  background: var(--accent-soft);
}

.brand-copy { display: flex; flex-direction: column; gap: 3px; }
.brand-copy strong { font-size: 15px; line-height: 1; }
.brand-copy small { color: var(--muted); font-size: 9px; font-weight: 650; letter-spacing: .06em; }

.brand-mark {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
}

.brand-mark i {
  display: block;
  width: 5px;
  border-radius: 4px;
  background: var(--accent);
}

.brand-mark i:nth-child(1) { height: 10px; }
.brand-mark i:nth-child(2) { height: 18px; }
.brand-mark i:nth-child(3) { height: 14px; }

.site-header nav {
  display: flex;
  gap: 30px;
  font-size: 14px;
  color: var(--ink-soft);
}

.site-header nav a {
  position: relative;
  padding: 28px 0 25px;
  transition: color .2s ease;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 17px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transition: right .25s cubic-bezier(.16, 1, .3, 1);
}

.site-header nav a:hover,
.site-header nav a[aria-current] { color: var(--accent); }
.site-header nav a:hover::after,
.site-header nav a[aria-current]::after { right: 0; }
.header-shell > .button { justify-self: end; }

.button {
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  white-space: nowrap;
  color: var(--on-accent);
  background: var(--accent);
  font-weight: 750;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.16, 1, .3, 1), background .2s ease;
}

.button:hover { background: #007977; transform: translateY(-2px); }
.button:active { transform: translateY(1px) scale(.99); }
.button:disabled { cursor: wait; opacity: .72; transform: none; }
.button-small { min-height: 40px; padding: 0 18px; font-size: 14px; }

.menu-button { display: none; width: 42px; height: 42px; padding: 8px; border: 0; background: none; }
.menu-button span { display: block; height: 2px; margin: 7px 0; background: currentColor; transition: transform .2s ease; }

.hero {
  position: relative;
  min-height: calc(100dvh - 78px);
  max-width: var(--max);
  margin: auto;
  padding: 50px 24px 76px;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: 64px;
}

.hero-copy { position: relative; z-index: 2; }

.eyebrow {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(48px, 5.15vw, 74px);
  line-height: 1.06;
  letter-spacing: -.055em;
  font-weight: 800;
}

.hero h1 strong { color: var(--accent); font-weight: inherit; }

.hero-lead {
  max-width: 520px;
  margin: 28px 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions { display: flex; align-items: center; gap: 28px; }
.text-link { padding: 10px 0; border-bottom: 1px solid var(--ink); font-size: 14px; font-weight: 750; }
.text-link:hover { color: var(--accent); border-color: var(--accent); }

.hero-visual {
  position: relative;
  min-width: 0;
  padding: 0 0 58px 36px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -20px -8vw 82px 0;
  z-index: -1;
  border-radius: var(--radius) 0 0 var(--radius);
  background: var(--surface-2);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: clamp(420px, 38vw, 520px);
  aspect-ratio: 1.42;
  object-fit: cover;
  object-position: 62% center;
  border-radius: var(--radius);
  box-shadow: 0 28px 70px var(--shadow);
}

.order-pulse {
  position: absolute;
  left: 0;
  right: 34px;
  bottom: 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: 0 16px 44px var(--shadow);
  backdrop-filter: blur(16px);
}

.pulse-head, .pulse-main, .pulse-foot { display: flex; align-items: center; }
.pulse-head { justify-content: space-between; font-size: 11px; color: var(--muted); }
.pulse-head span { display: flex; align-items: center; color: var(--ink); font-weight: 800; }
.pulse-head i { width: 8px; height: 8px; margin-right: 8px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
.pulse-main { gap: 10px; margin-top: 10px; }
.pulse-main strong { font-size: 16px; }
.pulse-main span { color: var(--muted); font-size: 11px; }

.pulse-route {
  position: relative;
  margin: 17px 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.pulse-route::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 15px;
  height: 1px;
  background: var(--line);
}

.pulse-route button {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 6px;
  border: 0;
  background: none;
  cursor: pointer;
}

.pulse-route button i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  background: var(--surface);
  font-size: 10px;
  font-style: normal;
}

.pulse-route button span { color: var(--muted); font-size: 10px; }
.pulse-route .done i { color: var(--on-accent); border-color: var(--accent); background: var(--accent); }
.pulse-route .current i { color: var(--accent); border: 2px solid var(--accent); }
.pulse-route .current span { color: var(--ink); font-weight: 800; }
.pulse-route button:hover i { transform: translateY(-2px); }

.pulse-foot { padding-top: 13px; border-top: 1px solid var(--line); gap: 10px; font-size: 10px; }
.pulse-foot span, .pulse-foot em { color: var(--muted); }
.pulse-foot strong { font-size: 11px; }
.pulse-foot em { margin-left: auto; font-style: normal; }

.proof-strip {
  max-width: calc(var(--max) - 48px);
  margin: 0 auto;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 150px) 1fr;
  align-items: center;
  gap: 24px;
}

.proof-strip div { display: flex; flex-direction: column; gap: 5px; }
.proof-strip strong { font-size: 16px; }
.proof-strip span, .proof-strip p { color: var(--muted); font-size: 11px; }
.proof-strip p { margin: 0; text-align: right; }

.statement { max-width: 1100px; margin: auto; padding: 138px 24px; }
.statement p { margin: 0 0 24px; color: var(--muted); font-size: 16px; }
.statement h2 { margin: 0; max-width: 960px; font-size: clamp(38px, 5.3vw, 68px); line-height: 1.16; letter-spacing: -.045em; }

.workflow { padding: 120px 24px; background: var(--surface); }
.section-heading { max-width: var(--max); margin: 0 auto 54px; }
.section-heading h2 { margin: 0; max-width: 780px; font-size: 44px; line-height: 1.16; letter-spacing: -.04em; }
.section-heading p { max-width: 600px; margin: 20px 0 0; color: var(--muted); line-height: 1.75; }

.workflow-grid {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: 470px 390px;
  gap: 18px;
}

.feature {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.feature-copy { position: relative; z-index: 2; }
.feature-copy > span { color: var(--accent); font-size: 12px; font-weight: 800; }
.feature h3 { max-width: 470px; margin: 16px 0 12px; font-size: 29px; line-height: 1.3; letter-spacing: -.03em; }
.feature p { max-width: 460px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.feature-orders { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 32px; background: var(--surface-2); }
.order-list { border: 1px solid var(--line); border-radius: 12px; background: var(--surface); box-shadow: 0 16px 38px var(--shadow); }
.order-list > div { min-height: 82px; padding: 14px 16px; display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 12px; }
.order-list > div + div { border-top: 1px solid var(--line); }
.initial { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; color: var(--accent); background: var(--accent-soft); font-size: 11px; font-weight: 800; }
.order-list p { display: flex; flex-direction: column; gap: 5px; }
.order-list strong { color: var(--ink); font-size: 12px; }
.order-list small { font-size: 10px; }
.order-list em { color: var(--accent); font-size: 10px; font-style: normal; }

.feature-quote { display: flex; flex-direction: column; justify-content: space-between; }
.quote-preview { align-self: flex-end; width: 80%; padding: 20px; border-radius: 12px; background: var(--navy); color: #f3f8fa; box-shadow: -18px 18px 0 var(--accent-soft); }
.quote-preview small { color: #a9c0cb; }
.quote-preview > strong { float: right; font-size: 12px; }
.quote-preview p { margin-top: 16px; display: grid; grid-template-columns: auto 1fr; gap: 12px; color: #b8cad2; font-size: 10px; }
.quote-preview p i { align-self: center; height: 2px; background: #365369; }

.feature-ground { background: var(--accent-soft); }
.resource-map { position: absolute; left: 38px; right: 38px; bottom: 45px; display: flex; align-items: center; }
.resource-map span { width: 66px; height: 66px; display: grid; place-items: center; border: 1px solid color-mix(in srgb, var(--accent) 40%, var(--line)); border-radius: 50%; background: var(--surface); font-size: 12px; }
.resource-map i { position: relative; flex: 1; height: 1px; background: color-mix(in srgb, var(--accent) 40%, var(--line)); }
.resource-map i::after { content: ""; position: absolute; right: 0; top: -2px; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

.feature-finance { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; }
.metric { width: 270px; padding: 28px; border-left: 3px solid var(--accent); background: var(--surface); box-shadow: 0 14px 36px var(--shadow); }
.metric span, .metric small { display: block; color: var(--muted); font-size: 10px; }
.metric strong { display: block; margin: 12px 0; font-size: 34px; letter-spacing: -.04em; }

.roles { max-width: var(--max); margin: auto; padding: 128px 24px; }
.roles-title h2 { max-width: 780px; margin: 0 0 66px 33%; font-size: 46px; line-height: 1.2; letter-spacing: -.04em; }
.role-list { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.role-list article { min-height: 285px; padding: 30px 26px 12px 0; display: flex; flex-direction: column; }
.role-list article + article { padding-left: 26px; border-left: 1px solid var(--line); }
.role-list b { color: var(--accent); font-size: 12px; }
.role-list h3 { margin: 30px 0 12px; font-size: 22px; }
.role-list p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.role-list span { margin-top: auto; color: var(--muted); font-size: 10px; }

.value { padding: 116px max(24px, calc((100vw - 1192px) / 2)); background: var(--surface-2); }
.value-copy { max-width: 850px; }
.value-copy h2 { margin: 0; font-size: 50px; line-height: 1.18; letter-spacing: -.045em; }
.value-copy > p:last-child { max-width: 620px; margin: 24px 0 0; color: var(--muted); line-height: 1.75; }
.value-grid { margin-top: 70px; display: grid; grid-template-columns: 1.35fr .9fr 1.05fr .8fr; gap: 14px; }
.value-grid article { min-height: 240px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.value-grid article:nth-child(1), .value-grid article:nth-child(3) { transform: translateY(28px); }
.value-grid span { color: var(--accent); font-size: 11px; font-weight: 800; }
.value-grid h3 { margin: 42px 0 12px; font-size: 24px; }
.value-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.contact { max-width: var(--max); margin: auto; padding: 138px 24px; display: grid; grid-template-columns: 1fr .85fr; gap: 110px; align-items: center; }
.contact-copy h2 { max-width: 640px; margin: 0; font-size: 50px; line-height: 1.18; letter-spacing: -.045em; }
.contact-copy p { max-width: 560px; margin: 28px 0 0; color: var(--muted); line-height: 1.8; }
.contact-form { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: 0 18px 60px var(--shadow); }
.field { margin-bottom: 19px; }
.field label { display: block; margin-bottom: 7px; font-size: 12px; font-weight: 750; }
.field input, .field select { width: 100%; padding: 12px 0; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; outline: 0; color: var(--ink); background: transparent; font-size: 14px; }
.field input::placeholder { color: color-mix(in srgb, var(--muted) 82%, var(--surface)); opacity: 1; }
.field input:focus, .field select:focus { border-color: var(--accent); box-shadow: 0 2px 0 var(--accent); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: #b5364a; box-shadow: 0 1px 0 #b5364a; }
.field-error { display: block; min-height: 16px; padding-top: 5px; color: #a5283c; font-size: 11px; }
.consent-field { margin: 5px 0 8px; display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 11px; line-height: 1.65; cursor: pointer; }
.consent-field input { width: 16px; height: 16px; margin: 1px 0 0; accent-color: var(--accent); }
.consent-field a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.consent-error { margin: -5px 0 12px; }
.contact-form .button { width: 100%; }
.form-message { min-height: 20px; margin: 12px 0 0; text-align: center; color: var(--accent); font-size: 12px; }

.site-footer {
  position: relative;
  padding: 82px max(24px, calc((100vw - 1192px) / 2)) 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--surface-2);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: max(24px, calc((100vw - 1192px) / 2));
  width: 96px;
  height: 4px;
  background: var(--accent);
}

.footer-shell {
  padding-bottom: 72px;
  display: grid;
  grid-template-columns: 1.15fr .85fr .82fr;
  gap: 74px;
}

.footer-brand .brand { margin-bottom: 36px; }
.footer-brand h2 { margin: 0; font-size: 34px; line-height: 1.25; letter-spacing: -.035em; }
.footer-brand > p { max-width: 430px; margin: 20px 0 0; color: var(--muted); font-size: 13px; line-height: 1.8; }

.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.footer-links div { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }
.footer-links h3 { margin: 5px 0 9px; color: var(--ink); font-size: 12px; }
.footer-links a { color: var(--muted); font-size: 12px; transition: color .2s ease, transform .2s ease; }
.footer-links a:hover { color: var(--accent); transform: translateX(3px); }

.footer-action {
  align-self: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 16px 36px color-mix(in srgb, var(--shadow) 55%, transparent);
}

.footer-action > span { color: var(--accent); font-size: 11px; font-weight: 800; }
.footer-action h3 { margin: 20px 0 28px; font-size: 22px; line-height: 1.45; letter-spacing: -.02em; }
.footer-action .button { width: 100%; }

.footer-bottom {
  min-height: 68px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--muted);
  font-size: 10px;
}

.footer-bottom p { margin: 0; }
.footer-bottom a { justify-self: end; color: var(--ink-soft); font-weight: 700; }
.footer-bottom a:hover { color: var(--accent); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .72s cubic-bezier(.16, 1, .3, 1), transform .72s cubic-bezier(.16, 1, .3, 1); }
.reveal.visible { opacity: 1; transform: none; }

@keyframes pulse {
  50% { box-shadow: 0 0 0 8px color-mix(in srgb, var(--accent) 0%, transparent); }
}

:focus-visible { outline: 3px solid color-mix(in srgb, var(--accent) 35%, transparent); outline-offset: 4px; }

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #e8f1f4;
    --ink-soft: #bed0d7;
    --navy: #071a29;
    --paper: #0b1d2a;
    --surface: #102735;
    --surface-2: #142e3b;
    --line: #2c4652;
    --muted: #a5bac3;
    --accent: #41c2bd;
    --accent-soft: #173e43;
    --on-accent: #071b1b;
    --shadow: rgba(0, 6, 12, .38);
  }

  .button:hover { background: #70d7d2; }
  .quote-preview { background: #081c2a; }
  .field-error { color: #ff9aab; }
  .hero-visual img { filter: brightness(.82) saturate(.9); }
}

@media (max-width: 980px) {
  .header-shell { grid-template-columns: 1fr auto; }
  .site-header nav, .header-shell > .button { display: none; }
  .menu-button { display: block; }
  .site-header.open nav { position: absolute; top: 68px; left: 16px; right: 16px; padding: 18px 22px; display: flex; flex-direction: column; gap: 4px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: 0 18px 46px var(--shadow); }
  .site-header.open nav a { padding: 13px 0; }
  .site-header.open nav a::after { bottom: 7px; }
  .hero { grid-template-columns: 1fr; gap: 52px; padding-top: 44px; }
  .hero-copy { max-width: 710px; }
  .hero-visual { padding-left: 0; }
  .hero-visual::before { left: -8vw; }
  .proof-strip { grid-template-columns: repeat(3, 1fr); margin: 0 24px; }
  .proof-strip p { grid-column: 1 / -1; text-align: left; }
  .workflow-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .feature { min-height: 420px; }
  .feature-orders { grid-template-columns: .8fr 1.2fr; }
  .roles-title h2 { margin-left: 18%; }
  .role-list { grid-template-columns: repeat(2, 1fr); }
  .role-list article:nth-child(3) { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .role-list article:nth-child(4) { border-top: 1px solid var(--line); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid article:nth-child(n) { transform: none; }
  .contact { grid-template-columns: 1fr; gap: 56px; }
  .footer-shell { grid-template-columns: 1fr 1fr; gap: 54px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand > p { max-width: 560px; }
}

@media (max-width: 640px) {
  .site-header { height: 68px; }
  .header-shell { padding: 0 20px; }
  .brand-emblem { width: 34px; height: 34px; }
  .site-header .brand-copy small { display: none; }
  .hero { min-height: auto; padding: 42px 20px 72px; gap: 50px; }
  .hero h1 { font-size: 44px; }
  .hero-lead { margin: 24px 0; font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .hero-visual { padding-bottom: 118px; }
  .hero-visual img { height: 480px; aspect-ratio: .88; object-position: 68% center; }
  .order-pulse { right: -8px; left: 12px; padding: 16px 13px; }
  .pulse-main { align-items: flex-start; flex-direction: column; gap: 3px; }
  .pulse-route button span { font-size: 9px; }
  .pulse-foot em { display: none; }
  .proof-strip { margin: 0 20px; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .proof-strip strong { font-size: 14px; }
  .proof-strip span { font-size: 9px; }
  .statement { padding: 96px 20px; }
  .statement h2 { font-size: 38px; }
  .workflow { padding: 92px 18px; }
  .section-heading h2 { font-size: 35px; }
  .feature { min-height: 400px; padding: 28px; }
  .feature h3 { font-size: 25px; }
  .feature-orders { grid-template-columns: 1fr; align-content: space-between; }
  .order-list > div { padding: 12px; grid-template-columns: 32px 1fr; }
  .order-list em { display: none; }
  .quote-preview { width: 90%; }
  .resource-map { left: 20px; right: 20px; }
  .resource-map span { width: 54px; height: 54px; font-size: 10px; }
  .feature-finance { grid-template-columns: 1fr; align-content: space-between; }
  .metric { width: 100%; }
  .roles { padding: 96px 20px; }
  .roles-title h2 { margin: 0 0 46px; font-size: 35px; }
  .role-list { grid-template-columns: 1fr; }
  .role-list article { min-height: 225px; padding: 28px 0 14px; border-left: 0 !important; border-top: 1px solid var(--line); }
  .role-list article:first-child { border-top: 0; }
  .value { padding: 92px 20px; }
  .value-copy h2 { font-size: 38px; }
  .value-grid { grid-template-columns: 1fr; margin-top: 50px; }
  .value-grid article { min-height: 190px; }
  .value-grid h3 { margin-top: 28px; }
  .contact { padding: 96px 20px; }
  .contact-copy h2 { font-size: 38px; }
  .contact-form { padding: 24px; }
  .site-footer { padding: 70px 20px 0; }
  .site-footer::before { left: 20px; }
  .footer-shell { grid-template-columns: 1fr; gap: 46px; padding-bottom: 54px; }
  .footer-brand { grid-column: auto; }
  .footer-brand .brand { margin-bottom: 28px; }
  .footer-brand h2 { font-size: 30px; }
  .footer-links { gap: 28px; }
  .footer-action { padding: 24px; }
  .footer-bottom { padding: 20px 0; grid-template-columns: 1fr auto; gap: 10px; }
  .footer-bottom p:nth-child(2) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .pulse-head i { animation: none; }
  .button, .site-header nav a { transition: none; }
}
