:root {
  --ink: #061326;
  --navy: #06162e;
  --blue: #1d63ff;
  --cyan: #8de7ff;
  --gold: #ffcf4d;
  --paper: #f7f9fc;
  --muted: #657184;
  --line: #dde5ef;
  --white: #ffffff;
  --ease: cubic-bezier(.19, 1, .22, 1);
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  --font-display: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; }
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { overflow-wrap: anywhere; }

.motion-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  background: #071326;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 3px;
  background: rgba(255,255,255,.08);
}
.scroll-progress i {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--gold));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: rgba(3,13,28,.84);
  border-bottom: 1px solid rgba(255,207,77,.16);
  backdrop-filter: blur(20px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .02em;
}
.brand strong {
  display: grid;
  gap: 1px;
  white-space: nowrap;
}
.brand b {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  font: inherit;
}
.brand em {
  color: rgba(255,255,255,.58);
  font-size: 12px;
  font-style: normal;
  font-weight: 620;
  letter-spacing: 0;
}
.brand small {
  color: rgba(255,207,77,.7);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.brand span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 50%;
}
nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .01em;
}
nav a:hover { color: var(--white); }
.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255,255,255,.08);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  cursor: pointer;
  white-space: nowrap;
}
.language-toggle:hover {
  border-color: rgba(255,207,77,.55);
  background: rgba(255,207,77,.12);
}
.language-toggle i {
  color: rgba(255,255,255,.36);
  font-style: normal;
}
body.lang-en .language-toggle span:last-child,
body.lang-zh .language-toggle span:first-child {
  color: var(--gold);
}
body .en {
  display: none !important;
}

.brand-intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3,13,28,.94) 0%, rgba(3,13,28,.76) 38%, rgba(3,13,28,.46) 62%, rgba(3,13,28,.82) 100%),
    linear-gradient(180deg, rgba(3,13,28,.08), rgba(3,13,28,.9)),
    url("./assets/business-skyline-intro.png") center / cover no-repeat;
  animation: haniexIntroExit 1180ms var(--ease) forwards;
  animation-delay: 4.1s;
}
.brand-intro::before {
  content: "";
  position: absolute;
  inset: -8%;
  z-index: -2;
  background: url("./assets/business-skyline-intro.png") center / cover no-repeat;
  opacity: .36;
  filter: saturate(.72) contrast(1.02) hue-rotate(3deg);
  transform: scale(1);
  animation: haniexCityPush 5.4s ease forwards;
}
.brand-intro__content {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(78vw, 620px);
  text-align: center;
}
.brand-intro__particles {
  position: absolute;
  inset: -82px -36px;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 52%, rgba(141,231,255,.58) 0 2px, transparent 3px),
    radial-gradient(circle at 36% 30%, rgba(255,255,255,.64) 0 2px, transparent 3px),
    radial-gradient(circle at 66% 26%, rgba(255,207,77,.54) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 58%, rgba(141,231,255,.5) 0 2px, transparent 3px),
    radial-gradient(circle at 50% 72%, rgba(255,255,255,.56) 0 2px, transparent 3px);
  opacity: 0;
  animation: haniexParticles 2.25s ease forwards;
  animation-delay: .55s;
}
.brand-intro__logo {
  position: relative;
  display: block;
  width: auto;
  min-width: min(82vw, 500px);
  padding: clamp(18px, 3vw, 26px) clamp(16px, 4vw, 36px);
  opacity: 0;
  transform: scale(.96);
  animation: haniexLogoReveal 1.55s ease forwards;
  animation-delay: 1.55s;
}
.brand-intro__name {
  position: relative;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(48px, 8.2vw, 96px);
  font-weight: 800;
  line-height: .95;
  letter-spacing: .08em;
  text-indent: .08em;
  text-transform: uppercase;
  transform: none;
  text-shadow:
    0 0 16px rgba(141,231,255,.18),
    0 0 28px rgba(29,99,255,.16),
    0 16px 40px rgba(0,0,0,.32);
}
@keyframes haniexCityPush {
  to { transform: scale(1.07); }
}
@keyframes haniexParticles {
  0% {
    opacity: 0;
    transform: scale(1.22);
    filter: blur(7px);
  }
  58% { opacity: 1; }
  100% {
    opacity: .22;
    transform: scale(.82);
    filter: blur(0);
  }
}
@keyframes haniexLogoReveal {
  0% {
    opacity: 0;
    transform: scale(.96);
    filter: blur(10px);
  }
  62% {
    opacity: 1;
    transform: scale(1.012);
    filter: blur(0) drop-shadow(0 10px 26px rgba(0,0,0,.28));
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0) drop-shadow(0 10px 24px rgba(0,0,0,.24));
  }
}
@keyframes haniexIntroExit {
  to {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.018);
  }
}
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(88vh - 68px);
  display: flex;
  align-items: center;
  padding: clamp(70px, 9vw, 124px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 78% 40%, rgba(141,231,255,.16), transparent 26%),
    radial-gradient(circle at 88% 15%, rgba(255,207,77,.18), transparent 22%),
    #06162e;
}
.hero-particle-word {
  position: absolute;
  inset: 10% -7% auto auto;
  z-index: 1;
  width: min(64vw, 980px);
  height: min(58vh, 560px);
  opacity: .96;
  filter:
    drop-shadow(0 0 18px rgba(141,231,255,.62))
    drop-shadow(0 0 42px rgba(29,99,255,.34))
    drop-shadow(0 0 72px rgba(255,207,77,.14));
  pointer-events: none;
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0,0,0,.08) 16%, rgba(0,0,0,.72) 32%, black 54%, rgba(0,0,0,.95) 84%, transparent 100%),
    radial-gradient(circle at 58% 50%, black 48%, rgba(0,0,0,.82) 72%, transparent 92%);
  mask-composite: intersect;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3,13,28,.02), rgba(3,13,28,.94)),
    linear-gradient(110deg, rgba(255,207,77,.08), transparent 34%),
    radial-gradient(circle at 72% 30%, rgba(141,231,255,.22), transparent 28%),
    radial-gradient(circle at 18% 78%, rgba(29,99,255,.28), transparent 38%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(3,13,28,.94) 0%, rgba(3,13,28,.78) 36%, rgba(3,13,28,.32) 62%, rgba(3,13,28,.04) 100%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.025) 0 1px, transparent 1px 42px);
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 980px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #ffd66b;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 104px);
  font-weight: 760;
  line-height: .96;
  letter-spacing: 0;
}
h1::after {
  content: "";
  display: block;
  width: min(260px, 46vw);
  height: 2px;
  margin-top: 22px;
  background: linear-gradient(90deg, var(--gold), rgba(141,231,255,.7), transparent);
  box-shadow: 0 0 20px rgba(255,207,77,.34);
}
h1 span { display: block; }
.hero-subtitle {
  margin: 22px 0 0;
  color: var(--white);
  font-size: clamp(19px, 2.2vw, 29px);
  font-weight: 760;
  line-height: 1.42;
}
.lede {
  max-width: 860px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.78;
}
.en {
  color: var(--muted);
  font-size: .92em;
  line-height: 1.7;
}
.hero .en { color: rgba(255,255,255,.58); }
.hero-slogans {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 58px;
  max-width: 820px;
  margin-top: 24px;
  border-left: 2px solid var(--gold);
  background: linear-gradient(90deg, rgba(255,207,77,.1), rgba(141,231,255,.05));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.hero-slogans p {
  grid-area: 1 / 1;
  margin: 0;
  padding: 15px 18px;
  color: rgba(255,255,255,.86);
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 680;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(14px);
  animation: slogan-cycle 16s infinite;
}
.hero-slogans p:nth-child(2) { animation-delay: 4s; }
.hero-slogans p:nth-child(3) { animation-delay: 8s; }
.hero-slogans p:nth-child(4) { animation-delay: 12s; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.site-url {
  display: inline-flex;
  width: fit-content;
  margin-top: 16px;
  padding: 7px 0;
  color: rgba(255,207,77,.82);
  border-bottom: 1px solid rgba(255,207,77,.36);
  font-size: 13px;
  font-weight: 720;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-url:hover {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,.72);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 720;
  letter-spacing: .01em;
  transition: transform .35s var(--ease), background .35s ease, color .35s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--white); color: var(--ink); border-color: var(--white); }
.button.secondary { background: rgba(255,255,255,.08); color: var(--white); }
.button.quiet {
  border-color: rgba(255,207,77,.42);
  color: rgba(255,207,77,.92);
  background: rgba(255,207,77,.08);
}

.ticker {
  position: relative;
  overflow: hidden;
  padding: 18px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.ticker-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: ticker-left 42s linear infinite;
}
.ticker span {
  display: inline-flex;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 720;
  white-space: nowrap;
}

.show-marquee {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 4vw, 52px) 0;
  background:
    radial-gradient(circle at 78% 0%, rgba(47,120,255,.16), transparent 32%),
    var(--navy);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.show-marquee-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 0 clamp(20px, 5vw, 72px) 18px;
}
.show-marquee-heading .eyebrow {
  margin: 0;
}
.show-marquee-heading span,
.show-note {
  color: rgba(255,255,255,.52);
  font-size: 12px;
}
.show-lane {
  overflow: hidden;
  padding: 10px 0;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.show-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: show-right 40s linear infinite;
}
.secondary-lane .show-track {
  animation-name: show-left;
  animation-duration: 48s;
}
.show-track span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 16px;
  border: 1px solid rgba(126,216,255,.26);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: var(--white);
  font-size: clamp(15px, 1.45vw, 22px);
  font-weight: 760;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.secondary-lane .show-track span {
  min-height: 38px;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  font-weight: 650;
}
.show-note {
  margin: 12px clamp(20px, 5vw, 72px) 0;
}

.statement,
.section {
  position: relative;
  background: var(--paper);
}
.statement {
  padding: clamp(78px, 10vw, 132px) clamp(20px, 5vw, 72px);
}
.statement h2 {
  max-width: 1180px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 5.2vw, 82px);
  font-weight: 740;
  line-height: 1.08;
  letter-spacing: 0;
}
.statement h2 span { display: block; }
.statement h2 span:first-child { color: var(--ink); }
.statement-keywords {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  max-width: 980px;
  margin-top: 24px;
  border: 1px solid var(--line);
  background: var(--line);
}
.statement-keywords span {
  display: grid;
  place-items: center;
  min-height: 58px;
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,249,252,.96));
  color: var(--navy);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 760;
  letter-spacing: .06em;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: var(--line);
}
.problem-grid article {
  min-height: 190px;
  padding: 22px;
  background: #fff;
}
.problem-grid strong {
  display: block;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 760;
  line-height: 1.35;
}
.problem-grid span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}
.execution-loop {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 980px;
  margin-top: 34px;
}
.execution-loop span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 720;
  box-shadow: 0 10px 30px rgba(6,19,38,.05);
}
.statement-copy {
  max-width: 980px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.78;
}

.quick-brief {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, .32fr) minmax(0, .68fr);
  gap: clamp(20px, 4vw, 68px);
  padding: clamp(54px, 7vw, 88px) clamp(20px, 5vw, 72px);
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quick-brief h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 740;
  line-height: 1.08;
}
.quick-brief .eyebrow { color: var(--blue); }
.brief-copy {
  display: grid;
  gap: 14px;
  max-width: 900px;
}
.brief-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.8;
}

.section {
  padding: clamp(72px, 9vw, 116px) clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(170px, .28fr) minmax(0, .72fr);
  gap: clamp(20px, 4vw, 70px);
  align-items: start;
  margin-bottom: 38px;
}
.section h2,
.contact h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 64px);
  font-weight: 740;
  line-height: 1.08;
  letter-spacing: 0;
}
.section .eyebrow,
.statement .eyebrow,
.contact .eyebrow { color: var(--blue); }

.service-grid,
.case-grid,
.process-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}
.service-grid article,
.case-grid article,
.process-grid article,
.faq-grid article {
  min-height: 260px;
  padding: 26px;
  background: #fff;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.service-grid article:hover,
.case-grid article:hover,
.process-grid article:hover,
.faq-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 58px rgba(6,19,38,.12);
}
.service-grid span,
.advantage-list span,
.process-grid span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: .04em;
}
.service-grid h3,
.case-grid h3,
.advantage-list h3,
.process-grid h3,
.faq-grid h3 {
  margin: 34px 0 14px;
  font-size: 20px;
  font-weight: 760;
  line-height: 1.32;
}
.service-grid p,
.case-grid p,
.process-grid p,
.faq-grid p,
.advantage-list p,
.text-columns p,
.contact p {
  color: var(--muted);
  line-height: 1.76;
}

.process-section {
  background:
    radial-gradient(circle at 92% 0%, rgba(29,99,255,.08), transparent 32%),
    #fff;
}
.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.process-grid article {
  min-height: 236px;
}
.faq-section {
  background:
    linear-gradient(180deg, #fff, var(--paper));
}
.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.faq-grid article {
  min-height: 210px;
}

.promise-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1px;
  border: 1px solid var(--line);
  border-top: 0;
  background: var(--line);
}
.promise-strip article {
  min-height: 150px;
  padding: 22px;
  background: #fff;
}
.promise-strip strong {
  display: block;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 760;
}
.promise-strip span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.dark {
  background: var(--navy);
  color: var(--white);
}
.dark .eyebrow { color: var(--gold); }
.dark p { color: rgba(255,255,255,.68); }
.dark .en { color: rgba(255,255,255,.54); }
.advantage-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.14);
}
.advantage-list article {
  min-height: 300px;
  padding: 28px;
  background: rgba(255,255,255,.055);
}
.advantage-list .featured {
  grid-column: span 2;
  background:
    radial-gradient(circle at 88% 16%, rgba(255,201,29,.24), transparent 28%),
    rgba(255,255,255,.08);
}
.advantage-list .featured h3 {
  font-size: clamp(24px, 2.7vw, 38px);
  line-height: 1.18;
}

.text-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1120px;
  font-size: 17px;
  line-height: 1.82;
}

.bilingual-summary {
  background: #fff;
}
.summary-panel {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 12%, rgba(47,120,255,.1), transparent 28%),
    #fff;
}
.summary-panel h2 {
  max-width: 980px;
  margin-bottom: 20px;
}
.summary-panel p:not(.eyebrow) {
  max-width: 980px;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.78;
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .68fr) minmax(280px, .32fr);
  gap: 28px;
  align-items: end;
  padding: clamp(78px, 9vw, 122px) clamp(20px, 5vw, 72px);
  background: var(--navy);
  color: var(--white);
}
.contact p {
  max-width: 680px;
  font-size: 17px;
  color: rgba(255,255,255,.72);
}
.contact-title {
  max-width: 760px;
}
.contact-title span {
  display: block;
}
.contact-title span + span {
  margin-top: 8px;
  color: rgba(255,255,255,.74);
  font-size: .72em;
  font-weight: 620;
}
.phone {
  display: grid;
  gap: 6px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
}
.phone span {
  color: rgba(255,255,255,.68);
  font-size: 13px;
  font-weight: 720;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.phone strong {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 760;
  line-height: 1;
  letter-spacing: .01em;
}
.phone em {
  color: rgba(255,255,255,.62);
  font-size: 13px;
  font-style: normal;
}
footer {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(20px, 5vw, 72px);
  color: rgba(255,255,255,.62);
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 13px;
  line-height: 1.55;
}
footer a {
  color: rgba(255,207,77,.82);
}
footer a:hover {
  color: var(--white);
}

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

@keyframes ticker-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes show-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@keyframes show-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes slogan-cycle {
  0%, 5% {
    opacity: 0;
    transform: translateY(14px);
  }
  10%, 25% {
    opacity: 1;
    transform: translateY(0);
  }
  30%, 100% {
    opacity: 0;
    transform: translateY(-14px);
  }
}

@media (max-width: 1020px) {
  .section-heading,
  .contact,
  .text-columns,
  .quick-brief { grid-template-columns: 1fr; }
  .service-grid,
  .case-grid,
  .promise-strip,
  .process-grid,
  .faq-grid,
  .problem-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .brand-intro__name {
    font-size: clamp(42px, 12vw, 62px);
    letter-spacing: .06em;
    text-indent: .06em;
  }
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }
  nav { justify-content: flex-start; }
  h1 {
    font-size: 42px;
    line-height: 1.02;
  }
  .hero-subtitle {
    font-size: 19px;
  }
  .lede {
    font-size: 15px;
    line-height: 1.72;
  }
  .section h2,
  .statement h2,
  .quick-brief h2,
  .contact h2 {
    font-size: 31px;
    line-height: 1.12;
  }
  .hero { min-height: auto; }
  .hero-particle-word {
    inset: 12% -36% auto auto;
    width: 132vw;
    height: 46vh;
    opacity: .68;
    filter:
      drop-shadow(0 0 20px rgba(126,216,255,.42))
      drop-shadow(0 0 34px rgba(47,120,255,.22));
    mask-image:
      linear-gradient(90deg, transparent 0%, rgba(0,0,0,.16) 16%, rgba(0,0,0,.78) 34%, black 58%, transparent 100%),
      radial-gradient(circle at 58% 50%, black 48%, rgba(0,0,0,.82) 72%, transparent 92%);
  }
  .show-marquee-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .service-grid,
  .case-grid,
  .advantage-list,
  .promise-strip,
  .process-grid,
  .faq-grid,
  .problem-grid { grid-template-columns: 1fr; }
  .statement-keywords {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .statement-keywords span {
    min-height: 48px;
    font-size: 18px;
  }
  .advantage-list .featured { grid-column: auto; }
  footer { flex-direction: column; }
}

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