:root {
  --bg: #07130f;
  --surface: #0d1d17;
  --surface-2: #102720;
  --ink: #f3fbf7;
  --muted: #a9bbb3;
  --line: rgba(210, 255, 231, 0.16);
  --accent: #55f08b;
  --accent-2: #55d7e5;
  --destruction: #f2a65a;
  --leaf: #b9f7a7;
  --warning: #f7c95f;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  --max: 1180px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 4%, rgba(85, 215, 229, 0.16), transparent 28rem),
    linear-gradient(180deg, #07130f 0%, #0a1712 54%, #08110e 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

body::after {
  position: fixed;
  right: clamp(1rem, 4vw, 4rem);
  top: 9rem;
  z-index: -1;
  width: clamp(7rem, 14vw, 14rem);
  aspect-ratio: 1;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(185, 247, 167, 0.18);
  border-radius: 72% 28% 66% 34% / 36% 58% 42% 64%;
  background:
    linear-gradient(135deg, rgba(185, 247, 167, 0.18), rgba(85, 215, 229, 0.04)),
    rgba(85, 240, 139, 0.035);
  transform: rotate(-18deg);
  box-shadow: inset -22px -18px 42px rgba(85, 240, 139, 0.06);
}

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

img,
svg {
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--accent);
  color: #04100b;
  padding: 0.65rem 0.85rem;
  border-radius: 6px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  width: min(calc(100% - 2rem), 1240px);
  margin: 1rem auto 0;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(7, 19, 15, 0.72);
  backdrop-filter: blur(20px);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-elevated {
  background: rgba(7, 19, 15, 0.94);
  border-color: rgba(85, 240, 139, 0.24);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  color: var(--ink);
  font-weight: 850;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  flex: 0 0 auto;
  border: 1px solid rgba(85, 240, 139, 0.4);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(85, 240, 139, 0.18), rgba(85, 215, 229, 0.1));
}

.brand-mark svg {
  width: 1.75rem;
  height: 1.75rem;
}

.brand-mark path:first-child {
  fill: rgba(85, 240, 139, 0.14);
  stroke: var(--accent);
  stroke-width: 2.2;
}

.brand-mark path:not(:first-child) {
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
}

.site-nav a,
.nav-cta {
  min-height: 2.5rem;
  padding: 0.68rem 0.9rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a:hover,
.nav-cta:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

.nav-menu {
  position: relative;
}

.nav-menu > a {
  display: inline-flex;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 50%;
  display: grid;
  gap: 0.2rem;
  width: 15rem;
  padding: 0.5rem;
  border: 1px solid rgba(210, 255, 231, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(18, 44, 35, 0.98), rgba(7, 19, 15, 0.98));
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -0.25rem);
  transition: opacity 150ms ease, transform 150ms ease;
}

.nav-menu:hover .nav-submenu,
.nav-menu:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-submenu a {
  justify-content: flex-start;
  border-radius: 10px;
  color: #d8e8e0;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: end;
  gap: 0.55rem;
  min-width: 0;
}

.language-menu {
  position: relative;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  min-width: 4.6rem;
  min-height: 2.55rem;
  border: 1px solid rgba(210, 255, 231, 0.13);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(7, 19, 15, 0.76);
  color: #e4f1eb;
  padding: 0 0.78rem;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 850;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.language-toggle:hover,
.language-menu.is-open .language-toggle {
  border-color: rgba(85, 240, 139, 0.42);
  background:
    linear-gradient(180deg, rgba(85, 240, 139, 0.16), rgba(85, 215, 229, 0.055)),
    rgba(7, 19, 15, 0.86);
  color: var(--ink);
}

.language-toggle svg {
  width: 0.98rem;
  height: 0.98rem;
  flex: 0 0 auto;
}

.language-toggle svg * {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.language-panel {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0;
  display: grid;
  gap: 0.16rem;
  min-width: 10rem;
  padding: 0.48rem;
  border: 1px solid rgba(210, 255, 231, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(18, 44, 35, 0.98), rgba(7, 19, 15, 0.98));
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.25rem);
  transition: opacity 150ms ease, transform 150ms ease;
}

.language-menu.is-open .language-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-panel button {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 2.15rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #b9cbc3;
  padding: 0 0.78rem;
  text-align: left;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 820;
}

.language-panel button:hover,
.language-panel button[aria-checked="true"] {
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
}

.language-panel button[aria-checked="true"]::after {
  content: "";
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(85, 240, 139, 0.11);
}

.nav-cta {
  background: rgba(85, 240, 139, 0.14);
  color: var(--accent);
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 12, 9, 0.92) 0%, rgba(3, 12, 9, 0.76) 42%, rgba(3, 12, 9, 0.22) 100%),
    radial-gradient(circle at 72% 34%, rgba(242, 166, 90, 0.16), transparent 22rem),
    linear-gradient(0deg, rgba(7, 19, 15, 1) 0%, rgba(7, 19, 15, 0.02) 48%);
}

.hero-content {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 10rem 0 4.5rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 1.15rem;
  font-size: clamp(2.72rem, 5.9vw, 5.25rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.9rem, 3.65vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: 0;
}

html.lang-en h1 {
  max-width: 900px;
  font-size: clamp(2.66rem, 5.65vw, 5.05rem);
  line-height: 0.98;
}

html.lang-en h2 {
  font-size: clamp(1.86rem, 3.45vw, 3.18rem);
  line-height: 1.06;
}

html[lang="zh-CN"] h1 {
  max-width: 900px;
  font-size: clamp(2.75rem, 5.8vw, 5.2rem);
  line-height: 1.08;
}

html[lang="zh-CN"] h2 {
  font-size: clamp(1.82rem, 3.55vw, 3.25rem);
  line-height: 1.14;
}

html.lang-ko h1 {
  max-width: 900px;
  font-size: clamp(2.58rem, 5.45vw, 4.8rem);
  line-height: 1.06;
}

html.lang-ko h2 {
  font-size: clamp(1.78rem, 3.25vw, 2.95rem);
  line-height: 1.12;
}

html.lang-de h1 {
  max-width: 940px;
  font-size: clamp(2.46rem, 5vw, 4.55rem);
  line-height: 1.02;
}

html.lang-de h2 {
  font-size: clamp(1.72rem, 3.05vw, 2.82rem);
  line-height: 1.1;
}

html[lang="zh-CN"] .hero-copy,
html[lang="zh-CN"] .intro p:last-child,
html[lang="zh-CN"] .report-panel p,
html[lang="zh-CN"] .contact-copy p,
html[lang="zh-CN"] .story-copy p {
  font-size: 1.02rem;
}

html.lang-ko .hero-copy,
html.lang-ko .intro p:last-child,
html.lang-ko .report-panel p,
html.lang-ko .contact-copy p,
html.lang-ko .story-copy p,
html.lang-de .hero-copy,
html.lang-de .intro p:last-child,
html.lang-de .report-panel p,
html.lang-de .contact-copy p,
html.lang-de .story-copy p {
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.68;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 700px;
  color: #d9e7e1;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  cursor: pointer;
}

.button.primary {
  background: var(--accent);
  color: #04100b;
  box-shadow: 0 12px 34px rgba(85, 240, 139, 0.22);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

.button:hover {
  transform: translateY(-1px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 690px;
  gap: 0.65rem;
  margin: 3.4rem 0 0;
}

.hero-stats div {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(7, 19, 15, 0.62);
  backdrop-filter: blur(16px);
}

.hero-stats dt {
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 0.1rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  width: min(calc(100% - 2rem), var(--max));
  margin: -2.1rem auto 0;
  padding: 0.65rem;
  border: 1px solid rgba(210, 255, 231, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(8, 23, 18, 0.88);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
  position: relative;
  z-index: 2;
}

.trust-band span {
  display: flex;
  align-items: center;
  gap: 0.82rem;
  min-height: 5.1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.038);
  color: #d8e8e0;
  font-weight: 750;
}

.trust-band i {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(85, 240, 139, 0.12);
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(85, 240, 139, 0.2);
}

.trust-band span span {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
}

.section {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.intro {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(2rem, 7vw, 6rem);
  align-items: end;
}

.intro p:last-child,
.report-panel p,
.contact-copy p,
.story-copy p {
  color: var(--muted);
  font-size: 1.1rem;
}

.story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding-top: 0;
}

.story-panel,
.credentials,
.quote-steps {
  border: 1px solid rgba(210, 255, 231, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(13, 29, 23, 0.8);
  box-shadow: var(--shadow);
}

.story-panel {
  display: grid;
  gap: 0.72rem;
  padding: 0.85rem;
}

.story-panel div {
  display: grid;
  gap: 0.28rem;
  padding: 1.15rem;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.045);
}

.story-panel strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.story-panel span {
  color: var(--muted);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 2rem;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

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

.split-grid .lane-card {
  grid-column: span 2;
  min-height: 22rem;
}

.solution-card {
  position: relative;
  min-height: 19rem;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--surface);
  overflow: hidden;
}

.solution-card::after {
  position: absolute;
  right: -2.1rem;
  bottom: -2.1rem;
  width: 7rem;
  height: 7rem;
  border: 1px solid rgba(85, 240, 139, 0.28);
  border-radius: 50%;
  content: "";
}

.solution-card::before {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 2.9rem;
  height: 2.9rem;
  content: "";
  border: 1px solid rgba(185, 247, 167, 0.22);
  border-radius: 68% 32% 66% 34% / 36% 60% 40% 64%;
  background: rgba(185, 247, 167, 0.08);
  transform: rotate(-24deg);
}

.electronics-lane {
  border-color: rgba(85, 215, 229, 0.24);
  background:
    linear-gradient(135deg, rgba(85, 215, 229, 0.13), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    #0b211d;
}

.destruction-lane {
  border-color: rgba(242, 166, 90, 0.28);
  background:
    linear-gradient(135deg, rgba(242, 166, 90, 0.16), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)),
    #161812;
}

.destruction-lane::after {
  border-color: rgba(242, 166, 90, 0.34);
}

.destruction-lane .card-index,
.destruction-lane h3 {
  color: #ffd3a3;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.service-tags li {
  padding: 0.42rem 0.58rem;
  border: 1px solid rgba(85, 215, 229, 0.22);
  border-radius: 999px;
  background: rgba(85, 215, 229, 0.075);
  color: #c9f4f5;
  font-size: 0.82rem;
  font-weight: 820;
}

.service-tags.warm-tags li {
  border-color: rgba(242, 166, 90, 0.28);
  background: rgba(242, 166, 90, 0.095);
  color: #ffe0bb;
}

.solution-card p {
  color: var(--muted);
}

.streams {
  padding-top: 0;
}

.stream-grid,
.impact-grid,
.quote-grid,
.blog-grid {
  display: grid;
  gap: 1rem;
}

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

.stream-grid article,
.impact-grid article,
.quote-grid article,
.blog-grid article {
  position: relative;
  min-height: 13.5rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(13, 29, 23, 0.78);
}

.stream-grid article:nth-child(1),
.stream-grid article:nth-child(2),
.stream-grid article:nth-child(3),
.stream-grid article:nth-child(4) {
  border-color: rgba(242, 166, 90, 0.22);
  background:
    linear-gradient(180deg, rgba(242, 166, 90, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(21, 24, 18, 0.84);
}

.stream-grid article > span,
.blog-grid article > span {
  display: inline-flex;
  margin-bottom: 2.8rem;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stream-grid article > span {
  color: #ffc789;
}

.stream-grid p,
.impact-grid p,
.quote-grid p,
.blog-grid p {
  color: var(--muted);
}

.card-index {
  display: inline-flex;
  margin-bottom: 4.5rem;
  color: var(--accent-2);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.9rem;
  font-weight: 800;
}

.process {
  background:
    linear-gradient(90deg, rgba(85, 240, 139, 0.08), transparent 34%),
    #0a1712;
  border-block: 1px solid var(--line);
}

.process-inner {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(2rem, 6vw, 5rem);
}

.timeline {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.timeline span {
  color: var(--accent);
  font-weight: 900;
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.reporting {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.report-panel {
  padding: clamp(1.3rem, 4vw, 2rem);
  border-left: 3px solid var(--accent);
}

.ledger {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
  border: 1px solid rgba(85, 240, 139, 0.25);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(85, 240, 139, 0.1), rgba(85, 215, 229, 0.04)), var(--surface);
  box-shadow: var(--shadow);
}

.ledger div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-radius: 6px;
  background: rgba(4, 16, 11, 0.54);
}

.ledger span {
  color: var(--muted);
}

.ledger strong {
  color: var(--ink);
  font-size: 1.25rem;
}

.impact {
  padding-top: 0;
}

.zero-waste {
  position: relative;
  padding-inline: clamp(1rem, 3vw, 2rem);
  border: 1px solid rgba(185, 247, 167, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(185, 247, 167, 0.11), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014));
  overflow: hidden;
}

.zero-waste::after {
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  top: clamp(1rem, 4vw, 2.5rem);
  width: 5.4rem;
  height: 5.4rem;
  content: "";
  border: 1px solid rgba(185, 247, 167, 0.2);
  border-radius: 74% 26% 62% 38% / 34% 64% 36% 66%;
  background: rgba(185, 247, 167, 0.07);
  transform: rotate(28deg);
}

.impact-lead {
  max-width: 780px;
  margin: -0.8rem 0 2rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.impact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.impact-grid article > span,
.quote-grid article > span {
  display: grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  margin-bottom: 2.2rem;
  border-radius: 999px;
  background: rgba(85, 240, 139, 0.12);
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 900;
}

.industries {
  padding-top: 0;
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.industry-list span {
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #dbe9e3;
  font-weight: 750;
}

.quote-steps {
  padding: clamp(1.2rem, 4vw, 2rem);
}

.quote-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quote-grid article {
  min-height: 12.5rem;
}

.credentials {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(1.3rem, 4vw, 2rem);
}

.credential-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.credential-list span {
  padding: 0.82rem 1rem;
  border: 1px solid rgba(85, 240, 139, 0.18);
  border-radius: 999px;
  background: rgba(85, 240, 139, 0.07);
  color: #dfeee7;
  font-weight: 820;
}

.insights {
  padding-top: 0;
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-grid article {
  min-height: 16rem;
}

.blog-grid article::after {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.1rem;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0.5;
}

.contact {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto clamp(4rem, 8vw, 7rem);
  padding: clamp(1.2rem, 4vw, 2rem);
  border: 1px solid rgba(85, 240, 139, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(85, 240, 139, 0.14), transparent 44%),
    var(--surface-2);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.42rem;
  color: #dfeee7;
  font-weight: 750;
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(4, 16, 11, 0.64);
  color: var(--ink);
  padding: 0.82rem 0.9rem;
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  margin: 0;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(85, 240, 139, 0.32);
  border-radius: 12px;
  background: rgba(85, 240, 139, 0.1);
  color: #dff8ea;
  font-size: 0.94rem;
}

.form-status[data-state="error"] {
  border-color: rgba(242, 166, 90, 0.42);
  background: rgba(242, 166, 90, 0.12);
  color: #ffe9cf;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem max(1rem, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand {
  color: var(--ink);
}

.site-footer p {
  margin: 0;
}

.site-footer a:not(.brand) {
  color: var(--accent);
  font-weight: 800;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
    border-radius: 18px;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    padding-top: 8rem;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(3, 12, 9, 0.8) 0%, rgba(3, 12, 9, 0.66) 45%, rgba(3, 12, 9, 0.94) 100%);
  }

  .hero-stats,
  .trust-band,
  .intro,
  .story,
  .process-inner,
  .reporting,
  .credentials,
  .contact,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .solution-grid,
  .split-grid,
  .stream-grid,
  .impact-grid,
  .quote-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-grid .lane-card {
    grid-column: span 2;
  }
}

@media (max-width: 620px) {
  .site-header {
    width: calc(100% - 1rem);
    margin-top: 0.5rem;
    padding: 0.55rem;
  }

  .brand {
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 2.35rem;
    height: 2.35rem;
  }

  .nav-cta {
    padding-inline: 0.75rem;
    font-size: 0.86rem;
  }

  .header-actions {
    gap: 0.35rem;
  }

  .language-toggle {
    min-width: 3.1rem;
    padding: 0 0.58rem;
  }

  .language-toggle span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .language-panel {
    right: -4.4rem;
  }

  h1 {
    font-size: clamp(2.28rem, 11.5vw, 3.35rem);
    line-height: 1;
  }

  html.lang-en h1 {
    font-size: clamp(2.2rem, 10.8vw, 3.25rem);
  }

  html[lang="zh-CN"] h1 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  html.lang-ko h1 {
    font-size: clamp(2.08rem, 10vw, 3.05rem);
    line-height: 1.08;
  }

  html.lang-de h1 {
    font-size: clamp(1.98rem, 9.4vw, 2.92rem);
    line-height: 1.04;
  }

  h2,
  html.lang-en h2,
  html[lang="zh-CN"] h2,
  html.lang-ko h2,
  html.lang-de h2 {
    font-size: clamp(1.65rem, 7.2vw, 2.42rem);
  }

  .hero-stats,
  .solution-grid,
  .split-grid,
  .stream-grid,
  .impact-grid,
  .quote-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .split-grid .lane-card {
    grid-column: auto;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .site-footer {
    align-items: start;
  }
}

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