:root {
  --bg-deep: #0B1B2E;
  --bg-dark: #07111F;
  --bg-card: #07111F;
  --bg-light: #E8ECF0;
  --text-white: #FFFFFF;
  --text-gray: #C4C9D1;
  --accent-green: #00F58C;
  --accent-orange: #FF6B35;
  --accent-red: #FF3B30;
  --font-display: 'Archivo Black', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', -apple-system, sans-serif;
  --font-body: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-data: 'Roboto Mono', 'JetBrains Mono', 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
  --container-w: 1200px;
  --max-line: 72ch;
  --radius-card: 16px;
  --radius-pill: 999px;
  --border-subtle: rgba(196, 201, 209, 0.14);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.28);
  --shadow-float: 0 16px 48px rgba(0, 0, 0, 0.42);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-gray);
  background-color: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 80% 50% at 15% 0%, rgba(0, 245, 140, 0.04), transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(255, 107, 53, 0.04), transparent 55%),
    linear-gradient(rgba(196, 201, 209, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 201, 209, 0.025) 1px, transparent 1px);
  background-size: auto, auto, 64px 64px, 64px 64px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  display: block;
}

#main-content {
  display: block;
  min-height: 50vh;
  scroll-margin-top: 96px;
}

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

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

a {
  color: var(--accent-green);
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.2;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

::selection {
  background: var(--accent-green);
  color: var(--bg-dark);
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 245, 140, 0.3);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 245, 140, 0.5);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 24px;
}

.container--narrow {
  max-width: 760px;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 300;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  background: var(--accent-green);
  color: var(--bg-dark);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(0, 245, 140, 0.35);
  transition: top 0.25s var(--ease-out);
}

.skip-link:focus {
  top: 16px;
  outline: none;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 200;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-orange));
  box-shadow: 0 0 10px rgba(0, 245, 140, 0.55);
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 100;
  margin-top: 16px;
  padding-inline: 16px;
}

.site-header__inner {
  position: relative;
  max-width: var(--container-w);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(7, 17, 31, 0.86);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 8px 12px 8px 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.38);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.site-header__mark {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--accent-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.site-header__mark-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bg-dark);
  top: 8px;
  right: 7px;
}

.site-header__mark-line {
  position: absolute;
  left: 7px;
  right: 7px;
  bottom: 8px;
  height: 4px;
  background: var(--bg-dark);
  transform: skewX(-28deg);
  border-radius: 2px;
}

.site-header__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.site-header__word {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.0625rem;
  color: var(--text-white);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.site-header__sub {
  font-size: 0.6563rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent-green);
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav__list a {
  position: relative;
  display: block;
  padding: 9px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-gray);
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: color 0.2s, background-color 0.2s;
}

.site-nav__list a::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent-green);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s var(--ease-out);
}

.site-nav__list a:hover {
  color: var(--text-white);
}

.site-nav__list a:hover::after,
.site-nav__list a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav__list a[aria-current="page"] {
  color: var(--accent-green);
  background: rgba(0, 245, 140, 0.06);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.pin-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 245, 140, 0.4);
  background: rgba(0, 245, 140, 0.1);
  color: var(--accent-green);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
  transition: background-color 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.pin-btn:hover {
  background: rgba(0, 245, 140, 0.18);
  box-shadow: 0 0 24px rgba(0, 245, 140, 0.18);
}

.pin-btn.is-pinned {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: var(--bg-dark);
}

.pin-btn.is-pinned:hover {
  background: var(--accent-orange);
  box-shadow: 0 0 28px rgba(255, 107, 53, 0.35);
}

.pin-btn__icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.pin-btn.is-pinned .pin-btn__icon {
  background: var(--bg-dark);
  animation: pin-pulse 1.8s ease-out infinite;
}

@keyframes pin-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.4;
  transition: border-color 0.2s, background-color 0.2s, color 0.2s;
}

.nav-toggle:hover {
  border-color: rgba(0, 245, 140, 0.4);
  background: rgba(0, 245, 140, 0.06);
}

.nav-toggle.is-active {
  border-color: var(--accent-green);
  color: var(--accent-green);
}

.nav-toggle__box {
  position: relative;
  width: 18px;
  height: 12px;
  flex-shrink: 0;
}

.nav-toggle__bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.25s var(--ease-out), top 0.25s var(--ease-out), opacity 0.15s;
}

.nav-toggle__bar[data-bar="1"] {
  top: 0;
}

.nav-toggle__bar[data-bar="2"] {
  top: 5px;
}

.nav-toggle__bar[data-bar="3"] {
  top: 10px;
}

.nav-toggle.is-active .nav-toggle__bar[data-bar="1"] {
  top: 5px;
  transform: rotate(45deg);
}

.nav-toggle.is-active .nav-toggle__bar[data-bar="2"] {
  opacity: 0;
}

.nav-toggle.is-active .nav-toggle__bar[data-bar="3"] {
  top: 5px;
  transform: rotate(-45deg);
}

.nav-toggle__text {
  font-size: 0.8125rem;
}

html[data-pinned="true"] .site-header__inner {
  border-color: rgba(255, 107, 53, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(255, 107, 53, 0.12);
}

.site-footer {
  position: relative;
  margin-top: 120px;
  background: var(--bg-dark);
  font-size: 0.8438rem;
  line-height: 1.7;
  color: var(--text-gray);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-green) 0%, rgba(0, 245, 140, 0.2) 35%, transparent 65%, var(--accent-orange) 100%);
  z-index: 1;
}

.site-footer__top {
  max-width: var(--container-w);
  margin-inline: auto;
  padding: 68px 24px 44px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px 40px;
}

.site-footer__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.375rem;
  color: var(--text-white);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.site-footer__name-sub {
  color: var(--accent-green);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-left: 6px;
  text-transform: uppercase;
}

.site-footer__about {
  color: var(--text-gray);
  max-width: 36ch;
  margin-bottom: 14px;
  font-size: 0.875rem;
}

.site-footer__note {
  font-size: 0.75rem;
  color: rgba(196, 201, 209, 0.7);
  line-height: 1.7;
}

.site-footer__heading {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-white);
  margin-bottom: 16px;
  padding-bottom: 10px;
  position: relative;
  text-transform: uppercase;
}

.site-footer__heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--accent-green);
}

.site-footer__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer__list a {
  display: inline-block;
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}

.site-footer__list a:hover {
  color: var(--accent-green);
  padding-left: 6px;
}

.site-footer__contact-item {
  margin-bottom: 12px;
  line-height: 1.5;
  color: rgba(196, 201, 209, 0.7);
  font-size: 0.7813rem;
}

.site-footer__contact-item span {
  display: block;
  color: var(--text-white);
  font-size: 0.875rem;
  font-weight: 500;
}

.site-footer__deep {
  border-top: 1px solid rgba(196, 201, 209, 0.08);
  padding: 20px 24px;
}

.site-footer__meta {
  max-width: var(--container-w);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  font-size: 0.75rem;
  color: rgba(196, 201, 209, 0.7);
}

.site-footer__copyright,
.site-footer__icp {
  margin: 0;
}

.site-footer__trust {
  max-width: var(--container-w);
  margin: 14px auto 0;
  font-size: 0.75rem;
  color: rgba(196, 201, 209, 0.55);
  line-height: 1.7;
  border-left: 2px solid rgba(0, 245, 140, 0.4);
  padding-left: 12px;
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 90;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(0, 245, 140, 0.5);
  background: rgba(7, 17, 31, 0.9);
  color: var(--accent-green);
  font-size: 1.125rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s, background-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover,
.scroll-top:focus-visible {
  background: var(--accent-green);
  color: var(--bg-dark);
  box-shadow: 0 0 32px rgba(0, 245, 140, 0.4);
}

.scroll-top__arrow {
  line-height: 1;
  transform: translateY(-1px);
}

.pin-toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translate(-50%, 16px);
  z-index: 210;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  background: var(--accent-orange);
  color: var(--bg-dark);
  font-size: 0.8438rem;
  font-weight: 600;
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  pointer-events: none;
  white-space: nowrap;
}

.pin-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.pin-toast__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bg-dark);
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition: background-color 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.btn:hover {
  text-decoration: none;
}

.btn--primary {
  background: var(--accent-green);
  color: var(--bg-dark);
}

.btn--primary:hover {
  box-shadow: 0 0 36px rgba(0, 245, 140, 0.3);
  transform: translateY(-1px);
}

.btn--ghost {
  border-color: rgba(196, 201, 209, 0.35);
  color: var(--text-white);
  background: transparent;
}

.btn--ghost:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
  background: rgba(0, 245, 140, 0.05);
}

.btn--orange {
  background: var(--accent-orange);
  color: var(--bg-dark);
}

.btn--orange:hover {
  box-shadow: 0 0 36px rgba(255, 107, 53, 0.3);
  transform: translateY(-1px);
}

.btn--sm {
  padding: 8px 18px;
  font-size: 0.8125rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.6;
  border: 1px solid var(--border-subtle);
  color: var(--text-gray);
  background: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
}

.badge--green {
  color: var(--accent-green);
  border-color: rgba(0, 245, 140, 0.35);
  background: rgba(0, 245, 140, 0.08);
}

.badge--orange {
  color: var(--accent-orange);
  border-color: rgba(255, 107, 53, 0.4);
  background: rgba(255, 107, 53, 0.1);
}

.badge--red {
  color: var(--accent-red);
  border-color: rgba(255, 59, 48, 0.4);
  background: rgba(255, 59, 48, 0.08);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat__value {
  font-family: var(--font-data);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--accent-green);
  letter-spacing: -0.02em;
}

.stat--orange .stat__value {
  color: var(--accent-orange);
}

.stat__label {
  font-size: 0.8125rem;
  color: var(--text-gray);
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

.section {
  position: relative;
  padding: 72px 0;
}

.section__head {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 36px;
}

.section__num {
  font-family: var(--font-data);
  font-size: clamp(3.25rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: rgba(0, 245, 140, 0.4);
  flex-shrink: 0;
  -webkit-user-select: none;
  user-select: none;
}

@supports (-webkit-text-stroke: 1px rgba(0, 245, 140, 0.5)) {
  .section__num {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(0, 245, 140, 0.55);
  }
}

.section__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.15;
  color: var(--text-white);
  margin: 4px 0 0;
}

.section__desc {
  margin-top: 8px;
  color: var(--text-gray);
  font-size: 0.9375rem;
  max-width: 60ch;
}

.section__body {
  position: relative;
  z-index: 1;
}

.section__action {
  margin-left: auto;
  align-self: center;
  flex-shrink: 0;
}

.page-hero {
  position: relative;
  padding: 72px 0 32px;
}

.page-hero__kicker {
  font-family: var(--font-data);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  color: var(--accent-green);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.page-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1.1;
  color: var(--text-white);
  margin-bottom: 16px;
  max-width: 20ch;
}

.page-hero__desc {
  font-size: 1.0625rem;
  color: var(--text-gray);
  max-width: var(--max-line);
}

.split-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
  padding: 88px 0 64px;
}

.split-hero__content {
  position: relative;
  z-index: 1;
}

.split-hero__media {
  position: relative;
  min-height: 420px;
}

.visual-stage {
  position: relative;
  height: 100%;
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background:
    radial-gradient(ellipse 60% 45% at 75% 20%, rgba(0, 245, 140, 0.15), transparent 65%),
    radial-gradient(ellipse 50% 40% at 20% 85%, rgba(255, 107, 53, 0.12), transparent 60%),
    linear-gradient(145deg, rgba(7, 17, 31, 0.7), rgba(15, 36, 64, 0.35));
}

.visual-stage::before {
  content: '';
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(rgba(196, 201, 209, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 201, 209, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  transform: skewY(-8deg);
  pointer-events: none;
}

.visual-stage::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-green), transparent 50%, var(--accent-orange));
  opacity: 0.6;
}

.card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(196, 201, 209, 0.13);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  transition: border-color 0.25s, box-shadow 0.25s, background-color 0.25s;
}

.card:hover {
  border-color: rgba(0, 245, 140, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.card--slash {
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 26px 100%, 0 calc(100% - 26px));
  border-radius: 0;
}

.card--slash:hover {
  background-color: #0C2034;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
}

.card--light {
  background: var(--bg-light);
  color: #2B3440;
  border-color: transparent;
}

.card--light:hover {
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.card--light .card__title {
  color: var(--bg-dark);
}

.card--light .card__text {
  color: #3A4450;
}

.card--padded {
  padding: 40px;
}

.card__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--text-white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.card__text {
  color: var(--text-gray);
  font-size: 0.875rem;
  line-height: 1.7;
}

.card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  font-size: 0.8438rem;
  font-weight: 600;
  color: var(--accent-green);
  text-decoration: none;
  transition: gap 0.2s;
}

.card__link:hover {
  gap: 8px;
  text-decoration: none;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.data-table th {
  font-family: var(--font-data);
  font-size: 0.7188rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(196, 201, 209, 0.7);
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-subtle);
  white-space: nowrap;
}

.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(196, 201, 209, 0.07);
  color: var(--text-gray);
}

.data-table tbody tr {
  transition: background-color 0.2s;
}

.data-table tbody tr:hover {
  background: rgba(0, 245, 140, 0.04);
}

.data-table td:first-child {
  font-family: var(--font-data);
  color: var(--accent-green);
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-scroll::-webkit-scrollbar {
  height: 4px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  padding: 20px 0;
  font-size: 0.8125rem;
  color: var(--text-gray);
  list-style: none;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
}

.breadcrumbs li + li::before {
  content: '/';
  margin-right: 8px;
  color: rgba(196, 201, 209, 0.5);
}

.breadcrumbs a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: var(--accent-green);
}

.breadcrumbs [aria-current="page"] {
  color: var(--text-white);
}

.img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--bg-dark);
  border: 1px solid var(--border-subtle);
}

.img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(0, 245, 140, 0.06) 0%, transparent 40%, rgba(255, 107, 53, 0.06) 100%);
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-wrap--tall {
  aspect-ratio: 4 / 5;
}

.img-wrap--wide {
  aspect-ratio: 21 / 9;
}

.prose {
  max-width: 760px;
  font-size: 1.0625rem;
  color: var(--text-gray);
}

.prose p {
  margin-bottom: 1.5em;
}

.prose h2,
.prose h3,
.prose h4 {
  margin-top: 2em;
  margin-bottom: 0.6em;
  color: var(--text-white);
}

.prose a {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(0, 245, 140, 0.5);
}

.prose ul,
.prose ol {
  margin: 0 0 1.5em;
  padding-left: 1.2em;
  list-style: disc;
}

.prose ol {
  list-style: decimal;
}

.prose li {
  margin-bottom: 0.4em;
}

.prose blockquote {
  margin: 0 0 1.5em;
  padding: 8px 20px;
  border-left: 3px solid var(--accent-green);
  color: var(--text-white);
  background: rgba(0, 245, 140, 0.04);
}

.prose code {
  font-family: var(--font-data);
  font-size: 0.875em;
  color: var(--accent-green);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-green);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (max-width: 1100px) and (min-width: 861px) {
  .site-header__inner {
    gap: 8px;
    padding-left: 16px;
  }

  .site-nav__list a {
    padding: 8px 10px;
    font-size: 0.8125rem;
  }

  .site-nav__list a::after {
    left: 10px;
    right: 10px;
  }

  .pin-btn {
    padding: 8px 12px;
    font-size: 0.7813rem;
  }

  .site-header__word {
    font-size: 0.9375rem;
  }
}

@media (max-width: 960px) {
  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .split-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    padding: 48px 0 32px;
  }

  .split-hero__media {
    min-height: 280px;
    order: 2;
  }

  .visual-stage {
    min-height: 280px;
  }
}

@media (max-width: 860px) {
  .site-header {
    top: 12px;
    margin-top: 12px;
    padding-inline: 12px;
  }

  .site-header__inner {
    border-radius: 22px;
    padding: 8px 8px 8px 16px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    flex: none;
    flex-direction: column;
    background: rgba(7, 17, 31, 0.98);
    border: 1px solid var(--border-subtle);
    border-radius: 22px;
    padding: 10px;
    box-shadow: var(--shadow-float);
  }

  .site-nav[data-open] {
    display: flex;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    width: 100%;
  }

  .site-nav__list a {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
  }

  .site-nav__list a::after {
    left: 16px;
    right: auto;
    bottom: 6px;
    width: 24px;
  }

  .site-nav__list a:hover,
  .site-nav__list a[aria-current="page"] {
    background: rgba(0, 245, 140, 0.1);
  }
}

@media (max-width: 768px) {
  .grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding: 48px 0 24px;
  }
}

@media (max-width: 560px) {
  .container {
    padding-inline: 16px;
  }

  .site-footer {
    margin-top: 80px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 48px;
  }

  .scroll-top {
    right: 16px;
    bottom: 20px;
    width: 40px;
    height: 40px;
  }

  .pin-toast {
    bottom: 20px;
    width: calc(100% - 40px);
    justify-content: center;
    white-space: normal;
    text-align: center;
    padding: 12px 16px;
  }

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

  .section {
    padding: 48px 0;
  }

  .section__head {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
  }

  .section__action {
    margin-left: 0;
    align-self: flex-start;
  }

  .card--padded {
    padding: 28px;
  }
}

@media (max-width: 440px) {
  .site-header__sub {
    display: none;
  }

  .pin-btn__text {
    display: none;
  }

  .pin-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .nav-toggle__text {
    display: none;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .pin-btn.is-pinned .pin-btn__icon {
    animation: none;
  }
}
