@font-face {
  font-family: "Hongfan Noto Sans SC";
  src: url("assets/fonts/noto-sans-sc-subset.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink-950: #020610;
  --ink-900: #040b19;
  --ink-850: #071226;
  --ink-800: #0a1931;
  --panel: rgba(11, 31, 59, 0.68);
  --panel-strong: rgba(10, 27, 52, 0.9);
  --line: rgba(122, 207, 255, 0.15);
  --line-strong: rgba(105, 226, 255, 0.34);
  --cyan: #6fe8ff;
  --cyan-strong: #3dd9f5;
  --blue: #4c8df5;
  --violet: #8d83ff;
  --white: #f4f9ff;
  --muted: #8fa8c2;
  --muted-soft: #69819c;
  --container: 1240px;
  --header-height: 82px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--ink-950);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 15%, rgba(26, 72, 140, 0.12), transparent 31%),
    var(--ink-950);
  font-family: "Hongfan Noto Sans SC", "Segoe UI", "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

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

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

::selection {
  color: #00101e;
  background: var(--cyan);
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 16px;
  padding: 10px 14px;
  border-radius: 7px;
  color: var(--ink-950);
  background: var(--cyan);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
  border-color: rgba(121, 209, 255, 0.1);
  background: rgba(2, 8, 20, 0.74);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
}

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

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name strong {
  font-size: 14px;
  letter-spacing: 0.08em;
}

.brand-name small {
  margin-top: 5px;
  color: #7f9bb6;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-link {
  position: relative;
  padding: 28px 0;
  color: rgba(220, 237, 250, 0.62);
  font-size: 13px;
  transition: color 0.25s ease;
}

.nav-link::after {
  position: absolute;
  bottom: 19px;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s var(--ease-out);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(8, 24, 47, 0.65);
}

.mobile-menu-toggle span {
  position: absolute;
  left: 12px;
  width: 17px;
  height: 1px;
  background: var(--cyan);
  transition: transform 0.25s ease, top 0.25s ease;
}

.mobile-menu-toggle span:first-child { top: 16px; }
.mobile-menu-toggle span:last-child { top: 23px; }
.mobile-menu-toggle[aria-expanded="true"] span:first-child { top: 20px; transform: rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] span:last-child { top: 20px; transform: rotate(-45deg); }

.hero {
  position: relative;
  min-height: 980px;
  overflow: hidden;
  border-bottom: 1px solid rgba(100, 186, 242, 0.1);
  background:
    radial-gradient(circle at 76% 35%, rgba(31, 82, 159, 0.5) 0, rgba(9, 27, 58, 0.76) 25%, transparent 47%),
    linear-gradient(145deg, #061127 0%, #030919 48%, #020610 100%);
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(2, 6, 16, 0.92), rgba(2, 8, 21, 0.35) 52%, transparent 77%);
  pointer-events: none;
}

.starfield {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.96;
}

.hero-grid {
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image:
    linear-gradient(rgba(104, 199, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(104, 199, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 58%);
}

.galaxy-band {
  position: absolute;
  z-index: 1;
  top: -24%;
  right: -9%;
  width: 83%;
  height: 57%;
  border-radius: 50%;
  opacity: 0.75;
  background:
    radial-gradient(ellipse, rgba(180, 207, 255, 0.2), rgba(106, 117, 222, 0.11) 36%, rgba(61, 160, 218, 0.06) 48%, transparent 70%);
  filter: blur(8px);
  transform: rotate(17deg);
  animation: galaxyDrift 18s ease-in-out infinite alternate;
  will-change: transform;
}

.galaxy-band::before {
  position: absolute;
  inset: 45% 8%;
  content: "";
  border-top: 1px solid rgba(196, 229, 255, 0.22);
  box-shadow: 0 0 28px rgba(118, 181, 255, 0.3);
}

.cosmic-clouds {
  position: absolute;
  z-index: 2;
  right: -9%;
  bottom: -14%;
  left: -9%;
  height: 35%;
  opacity: 0.6;
  background:
    radial-gradient(ellipse at 8% 43%, rgba(35, 77, 134, 0.78), transparent 35%),
    radial-gradient(ellipse at 31% 28%, rgba(29, 64, 118, 0.85), transparent 35%),
    radial-gradient(ellipse at 56% 45%, rgba(25, 61, 113, 0.85), transparent 39%),
    radial-gradient(ellipse at 78% 29%, rgba(43, 79, 139, 0.84), transparent 36%),
    radial-gradient(ellipse at 97% 46%, rgba(26, 57, 107, 0.9), transparent 34%);
  filter: blur(18px);
  animation: cloudBreath 10s ease-in-out infinite alternate;
  will-change: transform, opacity;
}

.hero-inner {
  position: relative;
  z-index: 10;
  display: flex;
  min-height: 980px;
  flex-direction: column;
  padding-top: 192px;
  padding-bottom: 54px;
}

.hero-content {
  width: min(690px, 57%);
}

.eyebrow,
.section-kicker,
.card-label {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  animation: signalPulse 2.1s ease-in-out infinite;
}

.hero h1 {
  margin-bottom: 22px;
  font-size: clamp(58px, 6.6vw, 92px);
  font-weight: 690;
  line-height: 1.12;
  letter-spacing: -0.07em;
  text-shadow: 0 8px 46px rgba(0, 0, 0, 0.42);
}

.hero h1 em {
  color: transparent;
  background: linear-gradient(95deg, #fff 0%, #92ecff 42%, #8fafff 100%);
  background-clip: text;
  font-style: normal;
  -webkit-background-clip: text;
}

.hero-subtitle {
  margin-bottom: 16px;
  color: rgba(237, 247, 255, 0.84);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.hero-description {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(184, 207, 229, 0.64);
  font-size: 14px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease, border-color 0.25s ease;
}

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

.button-primary {
  color: #021426;
  background: linear-gradient(115deg, #6ee8ff, #478ef8);
  box-shadow: 0 0 32px rgba(70, 208, 249, 0.24);
}

.button-primary:hover {
  box-shadow: 0 0 42px rgba(70, 208, 249, 0.4);
}

.hero-code {
  color: rgba(151, 180, 207, 0.44);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.hero-scene {
  position: absolute;
  z-index: 4;
  top: 155px;
  right: max(-30px, calc((100vw - var(--container)) / 2 - 110px));
  width: 520px;
  height: 520px;
  will-change: transform;
}

.digital-planet {
  position: absolute;
  z-index: 3;
  top: 76px;
  left: 76px;
  width: 368px;
  height: 368px;
  overflow: hidden;
  border: 1px solid rgba(101, 230, 255, 0.65);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 27%, rgba(88, 230, 255, 0.32), rgba(30, 102, 194, 0.33) 30%, rgba(11, 35, 80, 0.86) 65%, #020817 76%),
    repeating-radial-gradient(circle, transparent 0 20px, rgba(95, 217, 255, 0.1) 21px 22px);
  box-shadow:
    inset 30px -34px 72px rgba(0, 0, 0, 0.82),
    0 0 60px rgba(46, 192, 255, 0.24),
    0 0 140px rgba(42, 96, 200, 0.14);
  animation: planetFloat 7s ease-in-out infinite;
}

.digital-planet::before {
  position: absolute;
  inset: -8%;
  content: "";
  border-radius: 50%;
  background:
    repeating-linear-gradient(0deg, transparent 0 14px, rgba(103, 219, 255, 0.08) 15px 16px),
    repeating-linear-gradient(90deg, transparent 0 23px, rgba(103, 219, 255, 0.06) 24px 25px);
  mask-image: radial-gradient(circle, #000, transparent 73%);
  animation: planetScan 16s linear infinite;
}

.digital-planet::after {
  position: absolute;
  top: 15%;
  right: 8%;
  width: 14%;
  height: 70%;
  content: "";
  border-radius: 50%;
  background: rgba(104, 224, 255, 0.23);
  filter: blur(16px);
}

.planet-grid {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  opacity: 0.35;
  background:
    radial-gradient(circle at 47% 56%, transparent 0 18%, rgba(104, 225, 255, 0.2) 18.4% 18.9%, transparent 19.4%),
    radial-gradient(circle at 57% 39%, transparent 0 29%, rgba(113, 159, 255, 0.15) 29.3% 29.8%, transparent 30.2%);
}

.orbit {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(123, 128, 255, 0.45);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(24deg);
  box-shadow: 0 0 18px rgba(83, 118, 255, 0.13);
}

.orbit::before,
.orbit::after {
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: #dafaff;
  box-shadow: 0 0 8px #fff, 0 0 20px var(--cyan);
}

.orbit::before { left: -3px; }
.orbit::after { right: -3px; }
.orbit-outer { width: 530px; height: 260px; animation: orbitSpin 17s linear infinite; }
.orbit-middle { width: 454px; height: 344px; border-color: rgba(80, 212, 255, 0.32); animation: orbitSpinReverse 23s linear infinite; }

.planet-node {
  position: absolute;
  z-index: 4;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ddfbff;
  box-shadow: 0 0 8px #fff, 0 0 18px var(--cyan), 0 0 34px var(--cyan);
  animation: nodeBlink 2.7s ease-in-out infinite alternate;
}

.node-one { top: 28%; left: 21%; }
.node-two { top: 63%; right: 20%; animation-delay: -0.9s; }
.node-three { right: 32%; bottom: 18%; animation-delay: -1.8s; }

.scene-label,
.scene-coordinate {
  position: absolute;
  z-index: 6;
  color: rgba(170, 226, 255, 0.64);
  font-size: 8px;
  letter-spacing: 0.14em;
}

.scene-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.scene-label i {
  width: 20px;
  height: 1px;
  background: rgba(114, 224, 255, 0.6);
}

.scene-label-top { top: 87px; right: 9px; }
.scene-label-bottom { bottom: 84px; left: 0; }
.scene-coordinate { right: -14px; bottom: 32px; line-height: 1.8; text-align: right; }

.hero-services {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px;
  margin-top: auto;
}

.hero-service-card {
  position: relative;
  min-height: 106px;
  padding: 20px 18px;
  overflow: hidden;
  border: 1px solid rgba(104, 210, 255, 0.15);
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(17, 51, 87, 0.74), rgba(5, 17, 38, 0.65));
  backdrop-filter: blur(13px);
  transition: transform 0.3s var(--ease-out), border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-service-card::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 17px var(--cyan);
  opacity: 0.72;
}

.hero-service-card::after {
  position: absolute;
  top: -80%;
  left: -40%;
  width: 35%;
  height: 240%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(164, 232, 255, 0.07), transparent);
  transform: rotate(22deg);
  transition: left 0.55s ease;
}

.hero-service-card:hover {
  border-color: rgba(104, 224, 255, 0.38);
  box-shadow: 0 16px 34px rgba(0, 7, 23, 0.36), inset 0 0 28px rgba(57, 181, 231, 0.04);
  transform: translateY(-7px);
}

.hero-service-card:hover::after { left: 120%; }

.card-index,
.card-number {
  position: absolute;
  top: 16px;
  right: 17px;
  color: rgba(111, 232, 255, 0.62);
  font-family: Consolas, monospace;
  font-size: 9px;
}

.hero-service-card h2 {
  max-width: 86%;
  margin: 16px 0 7px;
  font-size: 15px;
  font-weight: 600;
}

.hero-service-card p {
  margin: 0;
  color: rgba(176, 205, 229, 0.52);
  font-size: 11px;
}

.hero-compliance {
  max-width: 1120px;
  margin: 20px auto 0;
  color: rgba(151, 178, 204, 0.4);
  font-size: 10px;
  line-height: 1.7;
  text-align: center;
}

.scroll-cue {
  position: absolute;
  z-index: 12;
  right: 28px;
  bottom: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(154, 187, 213, 0.42);
  font-size: 8px;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  position: relative;
  width: 1px;
  height: 38px;
  overflow: hidden;
  background: rgba(125, 214, 255, 0.15);
}

.scroll-cue i::after {
  position: absolute;
  top: -100%;
  left: 0;
  width: 1px;
  height: 70%;
  content: "";
  background: var(--cyan);
  animation: scrollLine 2s ease-in-out infinite;
}

.section {
  position: relative;
  padding: 150px 0;
  overflow: hidden;
}

.section-heading {
  position: relative;
  z-index: 3;
  margin-bottom: 70px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 620;
  line-height: 1.22;
  letter-spacing: -0.055em;
}

.section-kicker {
  margin-bottom: 20px;
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 80px;
}

.section-heading-row > p {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.95;
}

.about-section {
  background:
    radial-gradient(circle at 88% 35%, rgba(42, 81, 151, 0.16), transparent 31%),
    linear-gradient(180deg, #050c1b, #061020 60%, #040a16);
}

.about-section::before {
  position: absolute;
  top: 0;
  left: 8%;
  width: 1px;
  height: 100%;
  content: "";
  background: linear-gradient(transparent, rgba(103, 209, 255, 0.12), transparent);
}

.section-orbit {
  position: absolute;
  top: 110px;
  right: -250px;
  width: 690px;
  height: 690px;
  border: 1px solid rgba(103, 198, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 58px rgba(67, 135, 219, 0.018), 0 0 0 118px rgba(67, 135, 219, 0.012);
}

.about-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 90px;
}

.about-copy {
  color: #b8c9d9;
  font-size: 17px;
  line-height: 2.1;
}

.about-copy p + p {
  margin-top: 30px;
}

.glass-panel {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(18, 49, 86, 0.67), rgba(7, 21, 43, 0.58));
  backdrop-filter: blur(12px);
}

.attitude-panel {
  position: relative;
  min-height: 310px;
  padding: 35px;
  overflow: hidden;
}

.attitude-panel::before {
  position: absolute;
  top: -35px;
  right: -35px;
  width: 150px;
  height: 150px;
  content: "";
  border: 1px solid rgba(98, 218, 255, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(98, 218, 255, 0.025), 0 0 0 40px rgba(98, 218, 255, 0.015);
}

.panel-label {
  color: var(--cyan);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.attitude-panel blockquote {
  margin: 45px 0 35px;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 550;
  line-height: 1.65;
  letter-spacing: -0.03em;
}

.signal-line {
  display: flex;
  align-items: center;
}

.signal-line span {
  width: 75%;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), rgba(111, 232, 255, 0.03));
}

.signal-line i {
  width: 6px;
  height: 6px;
  margin-left: -2px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
}

.positioning-section {
  background:
    radial-gradient(circle at 22% 35%, rgba(26, 77, 145, 0.12), transparent 27%),
    #030814;
}

.positioning-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.positioning-card {
  position: relative;
  min-height: 355px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid rgba(104, 194, 255, 0.13);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(10, 31, 61, 0.84), rgba(5, 16, 35, 0.83));
  transition: transform 0.35s var(--ease-out), border-color 0.35s ease, box-shadow 0.35s ease;
}

.positioning-card:hover {
  border-color: rgba(102, 223, 255, 0.32);
  box-shadow: 0 24px 54px rgba(0, 4, 15, 0.35), inset 0 0 40px rgba(60, 181, 226, 0.035);
  transform: translateY(-7px);
}

.positioning-card::after {
  position: absolute;
  right: -18%;
  bottom: -40%;
  width: 280px;
  height: 280px;
  content: "";
  border: 1px solid rgba(92, 211, 255, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 36px rgba(70, 129, 232, 0.018), 0 0 0 78px rgba(70, 129, 232, 0.011);
}

.value-card {
  grid-column: 1 / -1;
  min-height: 320px;
}

.positioning-card .card-label {
  margin: 110px 0 18px;
}

.positioning-card h3 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 560;
  line-height: 1.45;
  letter-spacing: -0.04em;
}

.positioning-icon {
  position: absolute;
  top: 46px;
  left: 38px;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(106, 228, 255, 0.35);
  border-radius: 50%;
  animation: iconFloat 5s ease-in-out infinite;
}

.positioning-icon i:first-child {
  position: absolute;
  inset: 10px -15px;
  border: 1px solid rgba(116, 112, 255, 0.44);
  border-radius: 50%;
  transform: rotate(22deg);
}

.positioning-icon i:last-child {
  position: absolute;
  top: 29px;
  left: 29px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.vision-icon {
  border-radius: 15% 85% 50% 50%;
  transform: rotate(45deg);
}

.vision-icon i {
  transform: rotate(-45deg) !important;
}

.value-path {
  position: absolute;
  top: 75px;
  left: 38px;
  display: flex;
  width: calc(100% - 76px);
  align-items: center;
  justify-content: space-between;
}

.value-path::before {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--violet), rgba(111, 232, 255, 0.2));
}

.value-path span {
  position: relative;
  z-index: 1;
  width: 9px;
  height: 9px;
  border: 2px solid #07172c;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.data-stream {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(transparent, rgba(100, 207, 255, 0.12), transparent);
}

.data-stream-left { left: 4.5%; }

.services-section {
  background:
    radial-gradient(circle at 88% 62%, rgba(40, 78, 145, 0.13), transparent 26%),
    linear-gradient(180deg, #050c1b, #061020 54%, #040a17);
}

.services-list {
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--line);
}

.service-row {
  position: relative;
  display: grid;
  min-height: 160px;
  grid-template-columns: 120px minmax(260px, 1fr) minmax(300px, 0.85fr) 48px;
  align-items: center;
  gap: 35px;
  border-bottom: 1px solid var(--line);
  transition: padding 0.35s var(--ease-out), background 0.35s ease;
}

.service-row::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background: linear-gradient(90deg, rgba(40, 161, 220, 0.09), rgba(50, 91, 170, 0.02), transparent);
  transition: opacity 0.35s ease;
}

.service-row:hover {
  padding-inline: 24px;
}

.service-row:hover::before { opacity: 1; }

.service-index,
.service-name,
.service-description,
.service-arrow {
  position: relative;
  z-index: 1;
}

.service-index {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--cyan);
  font: 10px Consolas, monospace;
}

.service-index i {
  width: 45px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.service-name p {
  margin-bottom: 8px;
  color: var(--muted-soft);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.service-name h3 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 31px);
  font-weight: 560;
  letter-spacing: -0.03em;
}

.service-description {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.service-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cyan);
  transition: transform 0.3s ease, background 0.3s ease;
}

.service-row:hover .service-arrow {
  color: var(--ink-950);
  background: var(--cyan);
  transform: rotate(45deg);
}

.principles-section {
  min-height: 1000px;
  background:
    radial-gradient(circle at 8% 74%, rgba(34, 82, 156, 0.17), transparent 26%),
    #030814;
}

.principle-planet {
  position: absolute;
  right: -300px;
  bottom: -300px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(95, 218, 255, 0.16);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(53, 135, 210, 0.25), rgba(9, 30, 64, 0.72) 42%, #020713 71%);
  box-shadow: inset 60px -50px 100px #000, 0 0 100px rgba(48, 113, 222, 0.1);
}

.principle-planet i {
  position: absolute;
  inset: 100px -120px;
  border: 1px solid rgba(124, 107, 255, 0.23);
  border-radius: 50%;
  transform: rotate(22deg);
}

.principle-planet i:nth-child(2) { inset: 150px -160px; transform: rotate(-18deg); }
.principle-planet i:nth-child(3) { inset: 210px -180px; transform: rotate(35deg); }

.principles-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.principle-card {
  position: relative;
  min-height: 300px;
  grid-column: span 2;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: linear-gradient(145deg, rgba(11, 32, 61, 0.82), rgba(5, 16, 34, 0.76));
  transition: transform 0.35s var(--ease-out), border-color 0.35s ease;
}

.principle-card:nth-child(4),
.principle-card:nth-child(5) {
  grid-column: span 3;
}

.principle-card:hover {
  border-color: rgba(102, 225, 255, 0.32);
  transform: translateY(-7px);
}

.principle-card::after {
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 170px;
  height: 170px;
  content: "";
  border: 1px solid rgba(108, 214, 255, 0.08);
  border-radius: 50%;
}

.principle-card > span {
  color: var(--cyan);
  font: 10px Consolas, monospace;
}

.principle-card > p {
  margin: 60px 0 10px;
  color: var(--muted-soft);
  font-size: 9px;
  letter-spacing: 0.15em;
}

.principle-card h3 {
  margin-bottom: 18px;
  font-size: 25px;
  font-weight: 580;
}

.principle-card blockquote {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.principle-card-featured {
  background: linear-gradient(145deg, rgba(15, 55, 88, 0.92), rgba(8, 24, 50, 0.84));
  box-shadow: inset 2px 0 0 rgba(91, 226, 255, 0.62);
}

.founder-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 13%, rgba(71, 108, 211, 0.2), transparent 24%),
    radial-gradient(circle at 12% 42%, rgba(34, 165, 202, 0.1), transparent 25%),
    linear-gradient(180deg, #050c1a 0%, #071123 42%, #030916 100%);
}

.founder-section::before,
.founder-section::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.founder-section::before {
  top: 220px;
  right: -280px;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(107, 218, 255, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 78px rgba(107, 218, 255, 0.018), 0 0 0 170px rgba(107, 218, 255, 0.012);
}

.founder-section::after {
  bottom: 8%;
  left: -12%;
  width: 58%;
  height: 420px;
  opacity: 0.24;
  background: radial-gradient(ellipse, rgba(71, 114, 224, 0.34), transparent 68%);
  filter: blur(70px);
  transform: rotate(-18deg);
}

.founder-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(103, 199, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 199, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 8%, #000 88%, transparent);
}

.founder-container {
  position: relative;
  z-index: 1;
}

.founder-heading {
  max-width: 900px;
  margin-bottom: 72px;
}

.founder-profile {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(360px, 0.8fr) minmax(480px, 1.2fr);
  gap: clamp(48px, 7vw, 100px);
}

.founder-portrait-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(111, 232, 255, 0.28);
  border-radius: 4px 4px 34px 4px;
  background: #0b1525;
  box-shadow: 0 32px 90px rgba(0, 3, 12, 0.48), 0 0 60px rgba(42, 148, 208, 0.08);
}

.founder-portrait-card::before {
  position: absolute;
  z-index: 3;
  inset: 12px;
  content: "";
  border: 1px solid rgba(184, 237, 255, 0.16);
  border-radius: 1px 1px 23px 1px;
  pointer-events: none;
}

.founder-portrait-card picture {
  display: block;
  aspect-ratio: 4 / 4.7;
}

.founder-portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.86) contrast(1.04);
}

.portrait-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 9, 20, 0.03) 48%, rgba(2, 8, 19, 0.92) 100%),
    linear-gradient(90deg, rgba(14, 72, 100, 0.16), transparent 32%);
  pointer-events: none;
}

.portrait-scan {
  position: absolute;
  z-index: 2;
  top: -12%;
  right: 0;
  left: 0;
  height: 70px;
  opacity: 0;
  background: linear-gradient(180deg, transparent, rgba(111, 232, 255, 0.14), rgba(111, 232, 255, 0.42), transparent);
  mix-blend-mode: screen;
  pointer-events: none;
}

.founder-portrait-card.is-visible .portrait-scan {
  animation: portraitScan 5.8s 0.8s ease-in-out infinite;
}

.portrait-corner {
  position: absolute;
  z-index: 4;
  width: 34px;
  height: 34px;
  pointer-events: none;
}

.portrait-corner-top {
  top: 22px;
  left: 22px;
  border-top: 1px solid var(--cyan);
  border-left: 1px solid var(--cyan);
}

.portrait-corner-bottom {
  right: 22px;
  bottom: 90px;
  border-right: 1px solid var(--cyan);
  border-bottom: 1px solid var(--cyan);
}

.founder-portrait-card figcaption {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 24px;
  left: 28px;
  display: grid;
  align-items: end;
  grid-template-columns: 1fr auto;
  gap: 4px 18px;
}

.founder-portrait-card figcaption span,
.founder-portrait-card figcaption small,
.dossier-status,
.dossier-code,
.panel-label,
.method-number,
.work-card > span,
.founder-brand-band span {
  color: var(--muted-soft);
  font-size: 9px;
  letter-spacing: 0.17em;
}

.founder-portrait-card figcaption strong {
  color: #fff;
  font-size: 17px;
  font-weight: 520;
  letter-spacing: 0.12em;
}

.founder-portrait-card figcaption small {
  grid-column: 2;
  grid-row: 1 / 3;
  writing-mode: vertical-rl;
}

.founder-dossier {
  position: relative;
  padding: 22px 0 22px clamp(0px, 2vw, 28px);
}

.founder-dossier::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  content: "";
  background: linear-gradient(transparent, rgba(111, 232, 255, 0.56), transparent);
}

.dossier-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
  color: var(--cyan);
}

.dossier-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
  animation: statusPulse 2.4s ease-in-out infinite;
}

.founder-role {
  margin-bottom: 8px;
  color: #b7c9da;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.founder-dossier h3 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(54px, 6vw, 82px);
  font-weight: 620;
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.founder-lead {
  max-width: 670px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.founder-identities {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.founder-identities li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 4px;
  color: #dce9f5;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.founder-identities li span {
  color: var(--cyan);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.dossier-code {
  margin-top: 24px;
}

.founder-panel {
  position: relative;
  margin-top: 96px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(13, 36, 66, 0.78), rgba(5, 16, 34, 0.86));
  box-shadow: 0 26px 70px rgba(0, 2, 10, 0.24);
}

.founder-story {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 180px;
  gap: 48px;
  padding: 56px;
}

.story-index {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 14px;
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: 0.15em;
}

.story-index i {
  position: relative;
  width: 1px;
  min-height: 190px;
  flex: 1;
  background: linear-gradient(var(--cyan), rgba(111, 232, 255, 0.08));
}

.story-index i::before,
.story-index i::after {
  position: absolute;
  left: -3px;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.story-index i::before { top: 0; }
.story-index i::after { bottom: 0; opacity: 0.35; }

.panel-label {
  margin-bottom: 16px;
  color: var(--cyan);
}

.story-content h3,
.ip-heading h3,
.works-heading h3,
.philosophy-heading h3 {
  margin: 0 0 28px;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 560;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.story-content > p:not(.panel-label),
.ip-copy p,
.works-note {
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.story-content > p:last-child,
.ip-copy p:last-child {
  margin-bottom: 0;
}

.story-signals {
  align-self: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.story-signals li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  color: #c3d5e6;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.story-signals span {
  color: var(--cyan);
  font-size: 8px;
}

.founder-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.method-card {
  position: relative;
  min-height: 430px;
  padding: 46px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(9, 29, 55, 0.9), rgba(5, 15, 32, 0.82));
  transition: border-color 0.35s ease, transform 0.35s var(--ease-out);
}

.method-card::after {
  position: absolute;
  right: -82px;
  bottom: -82px;
  width: 220px;
  height: 220px;
  content: "";
  border: 1px solid rgba(111, 232, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 32px rgba(111, 232, 255, 0.018), 0 0 0 70px rgba(111, 232, 255, 0.012);
}

.method-card-accent {
  background: linear-gradient(145deg, rgba(18, 44, 79, 0.92), rgba(11, 23, 51, 0.88));
}

.method-card:hover {
  border-color: rgba(111, 232, 255, 0.34);
  transform: translateY(-5px);
}

.method-number {
  position: absolute;
  top: 22px;
  right: 24px;
}

.method-card h3 {
  margin: 72px 0 24px;
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 560;
  letter-spacing: -0.035em;
}

.method-card > p:not(.panel-label) {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.method-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.method-tags span {
  padding: 6px 10px;
  color: #a8d7e7;
  border: 1px solid rgba(111, 232, 255, 0.16);
  border-radius: 999px;
  background: rgba(33, 116, 151, 0.08);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.founder-ip {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1.25fr 220px;
  gap: 46px;
  min-height: 420px;
  padding: 56px;
}

.founder-ip::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.24;
  background: linear-gradient(118deg, rgba(67, 117, 226, 0.2), transparent 38%);
}

.ip-heading,
.ip-copy,
.ip-data {
  position: relative;
  z-index: 1;
}

.ip-heading h3 {
  margin-bottom: 0;
}

.ip-orbit {
  position: absolute;
  top: -145px;
  left: -125px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(111, 232, 255, 0.13);
  border-radius: 50%;
  animation: orbitDrift 18s linear infinite;
}

.ip-orbit span {
  position: absolute;
  inset: 55px;
  border: 1px dashed rgba(111, 232, 255, 0.1);
  border-radius: 50%;
}

.ip-orbit i {
  position: absolute;
  top: 48%;
  right: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

.ip-data {
  padding-left: 34px;
  border-left: 1px solid var(--line-strong);
}

.ip-data strong {
  display: block;
  color: #fff;
  font-size: 58px;
  font-weight: 620;
  line-height: 1;
  letter-spacing: -0.06em;
}

.ip-data strong span {
  margin-left: 4px;
  color: var(--cyan);
  font-size: 15px;
  letter-spacing: 0;
}

.ip-data p {
  margin: 20px 0 0;
  color: var(--muted-soft);
  font-size: 11px;
  line-height: 1.8;
}

.ip-data b {
  color: #b7cede;
  font-weight: 500;
}

.founder-works {
  margin-top: 112px;
}

.works-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 50px;
  margin-bottom: 42px;
}

.works-heading h3 {
  margin-bottom: 0;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
}

.work-card {
  position: relative;
  min-height: 330px;
  padding: 36px;
  background: rgba(5, 17, 36, 0.94);
  transition: background 0.35s ease;
}

.work-card:hover {
  background: rgba(12, 36, 66, 0.95);
}

.work-card::after {
  position: absolute;
  right: 26px;
  bottom: 24px;
  width: 20px;
  height: 20px;
  content: "";
  border-right: 1px solid rgba(111, 232, 255, 0.24);
  border-bottom: 1px solid rgba(111, 232, 255, 0.24);
}

.work-card h4 {
  margin: 86px 0 24px;
  font-size: clamp(20px, 2.1vw, 27px);
  font-weight: 560;
  line-height: 1.45;
}

.work-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.works-note {
  max-width: 930px;
  margin: 28px 0 0;
  font-size: 13px;
}

.founder-philosophy {
  margin-top: 112px;
}

.philosophy-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px;
}

.philosophy-heading h3 {
  margin-bottom: 0;
  text-align: right;
}

.founder-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.founder-quote {
  position: relative;
  display: flex;
  min-height: 380px;
  flex-direction: column;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(14, 40, 73, 0.82), rgba(7, 20, 42, 0.78));
  transition: transform 0.35s var(--ease-out), border-color 0.35s ease;
}

.founder-quote:hover {
  border-color: rgba(110, 225, 255, 0.3);
  transform: translateY(-7px);
}

.founder-quote::before {
  position: absolute;
  top: -150px;
  right: -120px;
  width: 300px;
  height: 300px;
  content: "";
  border: 1px solid rgba(107, 216, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(78, 124, 224, 0.018), 0 0 0 74px rgba(78, 124, 224, 0.012);
}

.quote-symbol {
  height: 76px;
  color: rgba(104, 226, 255, 0.45);
  font-family: Georgia, serif;
  font-size: 76px;
  line-height: 1;
}

.founder-quote blockquote {
  position: relative;
  z-index: 1;
  margin: 32px 0 40px;
  font-size: clamp(18px, 1.75vw, 23px);
  line-height: 1.75;
  letter-spacing: -0.02em;
}

.founder-quote > span {
  margin-top: auto;
  color: var(--muted-soft);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.founder-brand-band {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1px 1fr;
  gap: 54px;
  margin-top: 72px;
  padding: 38px 46px;
  border: 1px solid rgba(111, 232, 255, 0.18);
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(30, 101, 147, 0.11), rgba(27, 53, 107, 0.18));
}

.founder-brand-band > i {
  width: 1px;
  height: 68px;
  background: linear-gradient(transparent, var(--line-strong), transparent);
}

.founder-brand-band div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.founder-brand-band strong {
  font-size: clamp(19px, 2.2vw, 28px);
  font-weight: 520;
}

.founder-compliance {
  max-width: 1000px;
  margin: 24px auto 0;
  color: #58718d;
  font-size: 10px;
  line-height: 1.8;
  text-align: center;
}

.closing-section {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 100%, rgba(35, 99, 177, 0.28), transparent 48%),
    #020610;
}

#closing-stars {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.72;
}

.closing-orbit {
  position: absolute;
  bottom: -720px;
  left: 50%;
  width: 1180px;
  height: 1180px;
  border: 1px solid rgba(104, 222, 255, 0.22);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 32%, rgba(41, 135, 210, 0.12), rgba(3, 12, 28, 0.92) 60%);
  box-shadow: 0 0 100px rgba(48, 135, 255, 0.14), inset 0 38px 65px rgba(82, 199, 255, 0.07);
  transform: translateX(-50%);
}

.closing-orbit::before,
.closing-orbit::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(115, 102, 255, 0.18);
  border-radius: 50%;
}

.closing-orbit::before { inset: 170px -260px; transform: rotate(8deg); }
.closing-orbit::after { inset: 250px -340px; transform: rotate(-10deg); }

.closing-inner {
  position: relative;
  z-index: 5;
  display: flex;
  min-height: 720px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.closing-inner h2 {
  margin: 12px 0 22px;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 620;
  line-height: 1.25;
  letter-spacing: -0.055em;
}

.closing-inner > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 17px;
}

.button-ghost {
  margin-top: 20px;
  border-color: rgba(103, 222, 255, 0.26);
  color: var(--cyan);
  background: rgba(9, 32, 58, 0.52);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 28px rgba(83, 213, 249, 0.17);
}

.site-footer {
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--line);
  background: #02050d;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 180px;
  gap: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

.footer-brand p,
.footer-slogan {
  margin: 0;
  color: var(--muted-soft);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.footer-slogan {
  line-height: 1.9;
  text-align: right;
}

.footer-legal {
  padding: 18px 0;
  border-top: 1px solid rgba(113, 190, 242, 0.08);
  color: #60758b;
  font-size: 10px;
  line-height: 1.8;
  text-align: center;
}

.footer-legal p {
  margin: 0;
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(113, 190, 242, 0.08);
  color: #4f647a;
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.footer-records {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-records a {
  transition: color 0.2s ease;
}

.footer-records a:hover {
  color: var(--cyan);
}

.record-divider {
  width: 1px;
  height: 11px;
  margin: 0 4px;
  background: rgba(118, 179, 220, 0.18);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .hero-content [data-reveal]:nth-child(2) { transition-delay: 0.08s; }
.js .hero-content [data-reveal]:nth-child(3) { transition-delay: 0.16s; }
.js .hero-content [data-reveal]:nth-child(4) { transition-delay: 0.24s; }
.js .hero-content [data-reveal]:nth-child(5) { transition-delay: 0.32s; }

@keyframes signalPulse {
  0%, 100% { opacity: 0.55; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.18); }
}

@keyframes galaxyDrift {
  from { transform: rotate(15deg) translate3d(-1.5%, -1%, 0); opacity: 0.57; }
  to { transform: rotate(18deg) translate3d(2%, 1.5%, 0); opacity: 0.82; }
}

@keyframes cloudBreath {
  from { opacity: 0.45; transform: translate3d(-1%, 2%, 0) scale(1); }
  to { opacity: 0.7; transform: translate3d(1%, -1%, 0) scale(1.04); }
}

@keyframes planetFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes planetScan {
  to { transform: rotate(360deg); }
}

@keyframes orbitSpin {
  to { transform: translate(-50%, -50%) rotate(384deg); }
}

@keyframes orbitSpinReverse {
  to { transform: translate(-50%, -50%) rotate(-336deg); }
}

@keyframes nodeBlink {
  from { opacity: 0.45; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1.2); }
}

@keyframes scrollLine {
  0% { top: -100%; }
  70%, 100% { top: 130%; }
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes portraitScan {
  0%, 10% { top: -14%; opacity: 0; }
  22% { opacity: 0.8; }
  68% { opacity: 0.28; }
  78%, 100% { top: 108%; opacity: 0; }
}

@keyframes statusPulse {
  0%, 100% { opacity: 0.48; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.15); }
}

@keyframes orbitDrift {
  to { transform: rotate(360deg); }
}

@media (max-width: 1180px) {
  .site-nav { gap: 24px; }
  .hero-scene { right: -130px; opacity: 0.86; }
  .hero-content { width: 62%; }
  .service-row { grid-template-columns: 85px minmax(220px, 0.9fr) minmax(280px, 1fr) 42px; gap: 24px; }
  .founder-profile { grid-template-columns: minmax(320px, 0.8fr) minmax(430px, 1.2fr); gap: 52px; }
  .founder-story { grid-template-columns: 90px minmax(0, 1fr) 150px; gap: 32px; padding: 46px; }
  .founder-ip { grid-template-columns: 0.9fr 1.2fr 190px; gap: 32px; padding: 48px; }
}

@media (max-width: 1024px) {
  :root { --header-height: 72px; }
  .container { width: min(calc(100% - 40px), var(--container)); }
  .mobile-menu-toggle { position: relative; z-index: 102; display: block; }
  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 90px 11vw;
    visibility: hidden;
    opacity: 0;
    background: rgba(2, 8, 20, 0.96);
    backdrop-filter: blur(24px);
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .site-nav.is-open { visibility: visible; opacity: 1; }
  .nav-link { width: 100%; padding: 15px 0; font-size: 27px; font-weight: 550; }
  .nav-link::after { bottom: 9px; }
  .hero { min-height: 1010px; }
  .hero-inner { min-height: 1010px; padding-top: 170px; }
  .hero-content { width: 68%; }
  .hero-scene { top: 180px; right: -185px; width: 500px; height: 500px; opacity: 0.78; }
  .digital-planet { width: 330px; height: 330px; }
  .orbit-outer { width: 480px; }
  .orbit-middle { width: 410px; }
  .hero-services { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 120px 0; }
  .section-heading-row { grid-template-columns: 1fr; gap: 35px; }
  .section-heading-row > p { max-width: 620px; }
  .about-layout { grid-template-columns: 1fr; gap: 42px; }
  .attitude-panel { max-width: 620px; }
  .service-row { grid-template-columns: 70px 1fr 44px; gap: 22px; padding: 35px 0; }
  .service-description { grid-column: 2 / 3; }
  .service-arrow { grid-column: 3; grid-row: 1 / 3; }
  .founder-profile { grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr); gap: 38px; }
  .founder-portrait-card picture { aspect-ratio: 4 / 5.25; }
  .founder-dossier { padding-left: 24px; }
  .founder-story { grid-template-columns: 72px minmax(0, 1fr); }
  .story-signals { display: grid; grid-column: 2; grid-template-columns: repeat(3, 1fr); width: 100%; }
  .story-signals li { padding-right: 14px; }
  .founder-methods { grid-template-columns: 1fr; }
  .method-card { min-height: 360px; }
  .founder-ip { grid-template-columns: 0.8fr 1.2fr; }
  .ip-data { grid-column: 2; }
  .works-grid { grid-template-columns: 1fr; }
  .work-card { min-height: 260px; }
  .work-card h4 { margin-top: 54px; }
  .founder-quotes { grid-template-columns: 1fr; }
  .founder-quote { min-height: 290px; }
  .principle-planet { opacity: 0.6; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .brand-name strong { font-size: 12px; }
  .brand-name small { font-size: 8px; }
  .hero { min-height: 1120px; }
  .hero::before { background: linear-gradient(90deg, rgba(2, 6, 16, 0.9), rgba(2, 8, 21, 0.5)); }
  .hero-inner { min-height: 1120px; padding-top: 142px; padding-bottom: 38px; }
  .hero-content { width: 100%; }
  .hero h1 { font-size: clamp(48px, 14.3vw, 66px); }
  .hero-description { max-width: 94%; font-size: 13px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .hero-scene { top: 385px; right: -205px; width: 430px; height: 430px; opacity: 0.64; }
  .digital-planet { top: 70px; left: 70px; width: 290px; height: 290px; }
  .orbit-outer { width: 430px; height: 220px; }
  .orbit-middle { width: 370px; height: 290px; }
  .scene-label { display: none; }
  .hero-services { gap: 8px; margin-top: 370px; }
  .hero-service-card { min-height: 120px; padding: 16px 13px; }
  .hero-service-card h2 { max-width: 100%; margin-top: 21px; font-size: 13px; }
  .hero-service-card p { font-size: 10px; }
  .hero-compliance { margin-top: 15px; font-size: 9px; text-align: left; }
  .scroll-cue { display: none; }
  .section { padding: 94px 0; }
  .section-heading { margin-bottom: 48px; }
  .section-heading h2 { font-size: clamp(34px, 10vw, 48px); }
  .section-kicker { font-size: 9px; }
  .about-copy { font-size: 15px; line-height: 2; }
  .attitude-panel { min-height: 280px; padding: 28px; }
  .positioning-grid { grid-template-columns: 1fr; }
  .value-card { grid-column: auto; }
  .positioning-card { min-height: 320px; padding: 28px; }
  .positioning-icon, .value-path { left: 28px; }
  .value-path { width: calc(100% - 56px); }
  .positioning-card h3 { font-size: 28px; }
  .service-row { grid-template-columns: 48px 1fr; gap: 15px; }
  .service-index i { display: none; }
  .service-description { grid-column: 2; }
  .service-arrow { display: none; }
  .service-row:hover { padding-inline: 0; }
  .principles-grid { grid-template-columns: 1fr; }
  .principle-card,
  .principle-card:nth-child(4),
  .principle-card:nth-child(5) { min-height: 260px; grid-column: auto; }
  .principle-card > p { margin-top: 44px; }
  .founder-heading { margin-bottom: 44px; }
  .founder-profile { grid-template-columns: 1fr; gap: 42px; }
  .founder-portrait-card { width: 100%; max-width: 460px; margin-inline: auto; }
  .founder-portrait-card picture { aspect-ratio: 1 / 1.08; }
  .founder-dossier { padding: 12px 0 0; }
  .founder-dossier::before { display: none; }
  .dossier-status { margin-bottom: 30px; }
  .founder-role { font-size: 12px; }
  .founder-dossier h3 { font-size: 54px; }
  .founder-lead { font-size: 14px; }
  .founder-identities li { align-items: flex-start; font-size: 13px; line-height: 1.6; }
  .founder-panel { margin-top: 66px; }
  .founder-story { display: block; padding: 30px 24px; }
  .story-index { align-items: center; flex-direction: row; margin-bottom: 34px; }
  .story-index i { width: auto; min-width: 80px; min-height: 1px; height: 1px; }
  .story-index i::before { top: -3px; left: 0; }
  .story-index i::after { right: 0; bottom: -3px; left: auto; }
  .story-content h3,
  .ip-heading h3,
  .works-heading h3,
  .philosophy-heading h3 { font-size: 28px; }
  .story-content > p:not(.panel-label),
  .ip-copy p { font-size: 14px; line-height: 1.9; }
  .story-signals { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 30px; }
  .method-card { min-height: auto; padding: 32px 24px; }
  .method-card h3 { margin-top: 68px; font-size: 28px; }
  .method-card > p:not(.panel-label) { font-size: 14px; line-height: 1.9; }
  .founder-ip { display: block; min-height: 0; padding: 34px 24px; }
  .ip-heading { margin-bottom: 28px; }
  .ip-copy { position: relative; z-index: 1; }
  .ip-data { margin-top: 34px; padding: 24px 0 0; border-top: 1px solid var(--line-strong); border-left: 0; }
  .ip-data strong { font-size: 48px; }
  .founder-works,
  .founder-philosophy { margin-top: 78px; }
  .works-heading { display: block; margin-bottom: 30px; }
  .works-heading .panel-label { margin-bottom: 18px; }
  .work-card { min-height: 270px; padding: 28px 24px; }
  .works-note { font-size: 12px; }
  .philosophy-heading { display: block; margin-bottom: 30px; }
  .philosophy-heading h3 { margin-top: 18px; text-align: left; }
  .founder-quote { min-height: 320px; padding: 28px; }
  .founder-brand-band { grid-template-columns: 1fr; gap: 24px; padding: 30px 24px; }
  .founder-brand-band > i { width: 100%; height: 1px; }
  .founder-brand-band strong { font-size: 20px; line-height: 1.55; }
  .founder-compliance { font-size: 9px; text-align: left; }
  .closing-section,
  .closing-inner { min-height: 650px; }
  .closing-inner h2 { font-size: 40px; }
  .footer-main { align-items: flex-start; flex-direction: column; justify-content: center; }
  .footer-slogan { text-align: left; }
  .footer-legal { padding: 18px 0; text-align: left; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 20px 0; }
  .footer-records { flex-wrap: wrap; row-gap: 7px; }
  .record-divider { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
  .hero-scene,
  .galaxy-band,
  .cosmic-clouds { transform: none !important; }
}
