:root {
  color-scheme: light;
  --ink: #171a1f;
  --muted: #66707c;
  --line: #d7dce2;
  --paper: #f3f4f3;
  --white: #ffffff;
  --graphite: #15181d;
  --quartz: #e7e9e8;
  --quartz-dark: #8c949b;
  --signal: #ff6a00;
  --signal-soft: #fff0e6;
  --shadow: 0 24px 70px rgba(23, 26, 31, 0.14);
  --earth-opacity: 0.22;
  --surface-opacity: 0.42;
  --surface-y: 0px;
  --surface-scale: 1.08;
  --mars-opacity: 0;
  --travel: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background:
    linear-gradient(90deg, rgba(21, 24, 29, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(21, 24, 29, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
}

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

.cosmic-backdrop {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(231, 233, 232, 0.42), transparent 22%),
    radial-gradient(circle at 82% 76%, rgba(255, 106, 0, 0.28), transparent 24%),
    #15181d;
}

.cosmic-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.44;
}

.cosmic-stars {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.8) 0 1px, transparent 2px),
    radial-gradient(circle at 38% 12%, rgba(255, 255, 255, 0.52) 0 1px, transparent 2px),
    radial-gradient(circle at 74% 20%, rgba(255, 255, 255, 0.66) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 46%, rgba(255, 255, 255, 0.48) 0 1px, transparent 2px),
    radial-gradient(circle at 24% 82%, rgba(255, 255, 255, 0.54) 0 1px, transparent 2px),
    radial-gradient(circle at 66% 72%, rgba(255, 255, 255, 0.7) 0 1px, transparent 2px);
  opacity: 0.5;
}

.network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: var(--network-opacity, 0.58);
  filter: saturate(1.02);
  mix-blend-mode: screen;
  transition: opacity 260ms ease, filter 260ms ease;
}

.network-active .network-canvas {
  --network-opacity: 0.86;
  filter: saturate(1.18) drop-shadow(0 0 18px rgba(255, 106, 0, 0.18));
}

.cosmic-earth,
.cosmic-mars {
  position: absolute;
  width: min(52vw, 680px);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.08);
  mix-blend-mode: screen;
  pointer-events: none;
}

.cosmic-surface {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 122vw;
  height: 122vh;
  object-fit: cover;
  opacity: var(--surface-opacity);
  filter: grayscale(0.02) saturate(1) contrast(1.24) brightness(1.08);
  mix-blend-mode: soft-light;
  pointer-events: none;
  transform:
    translate3d(-50%, calc(-50% + var(--surface-y)), 0)
    rotate(-8deg)
    scale(var(--surface-scale));
  transform-origin: center;
  mask-image:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.32) 58%, transparent 86%);
}

.cosmic-earth {
  left: calc(-18vw - (var(--travel) * 12vw));
  top: calc(4vh + (var(--travel) * 10vh));
  opacity: var(--earth-opacity);
  box-shadow: 0 0 90px rgba(231, 233, 232, 0.18);
}

.cosmic-mars {
  right: calc(-24vw + (var(--travel) * 10vw));
  bottom: calc(-18vh + (var(--travel) * 5vh));
  opacity: var(--mars-opacity);
  box-shadow: 0 0 110px rgba(255, 106, 0, 0.2);
}

.cosmic-route {
  position: absolute;
  left: 14vw;
  right: 16vw;
  top: 42vh;
  height: 1px;
  opacity: calc(0.12 + var(--travel) * 0.32);
  background: linear-gradient(90deg, transparent, rgba(231, 233, 232, 0.6), var(--signal), transparent);
  transform: rotate(-14deg);
  transform-origin: center;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #f7f7f4;
  background: rgba(21, 24, 29, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 900;
}

.brand-mark {
  display: block;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 0 18px rgba(255, 106, 0, 0.18);
}

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

.brand-link > span:last-child {
  white-space: nowrap;
}

.site-header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  color: #d8dddf;
  font-size: 14px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(135deg, #15181d 0%, #20242a 52%, #2c2f32 100%);
  background-color: rgba(21, 24, 29, 0.92);
}

.hero-media {
  position: absolute;
  top: 45%;
  right: clamp(18px, 5vw, 88px);
  width: min(670px, 48vw);
  height: auto;
  object-fit: contain;
  opacity: 0.22;
  transform: translateY(-48%);
  filter: saturate(1.04) contrast(1.05);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 30%, rgba(255, 106, 0, 0.2), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(231, 233, 232, 0.2), transparent 34%),
    linear-gradient(90deg, rgba(21, 24, 29, 0.99), rgba(21, 24, 29, 0.9) 52%, rgba(21, 24, 29, 0.58)),
    linear-gradient(0deg, rgba(21, 24, 29, 0.94), transparent 50%);
}

.mission-grid {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 70%, transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, calc(100% - 36px));
  padding: 152px 0 88px;
  margin-left: clamp(18px, 7vw, 96px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 56px;
  line-height: 1.02;
}

h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: 38px;
  line-height: 1.08;
}

.integrity-section h2 {
  max-width: 720px;
}

h1,
h2,
h3 {
  color: var(--signal);
}

.hero h1 {
  color: var(--signal);
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.hero-content p:not(.eyebrow) {
  max-width: 650px;
  color: #f0f2f2;
  font-size: 19px;
  line-height: 1.6;
}

.hero-content::before {
  content: "";
  display: none;
}

.hero-brand {
  position: relative;
  display: block;
  margin-bottom: 26px;
  width: min(520px, 72vw);
  max-width: 100%;
  isolation: isolate;
}

.brand-orb-canvas {
  position: absolute;
  left: -30%;
  top: 50%;
  z-index: 0;
  width: min(470px, 74vw);
  height: min(470px, 74vw);
  opacity: 0.58;
  filter: saturate(1.08) drop-shadow(0 0 18px rgba(255, 106, 0, 0.12));
  mix-blend-mode: screen;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity 260ms ease, filter 260ms ease;
}

.hero-brand img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  opacity: 0.92;
  filter: saturate(1.04) contrast(1.02) drop-shadow(0 18px 42px rgba(0, 0, 0, 0.28));
  mix-blend-mode: screen;
}

.hero-brand:hover .brand-orb-canvas,
.network-active .brand-orb-canvas {
  opacity: 0.94;
  filter: saturate(1.2) drop-shadow(0 0 28px rgba(255, 106, 0, 0.2));
}

.hero-actions,
.founder-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.mission-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.mission-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 106, 0, 0.34);
  border-radius: 6px;
  color: #f5f5f1;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.06);
}

.mission-panel {
  position: absolute;
  right: clamp(18px, 5vw, 86px);
  bottom: 74px;
  z-index: 3;
  width: min(330px, 32vw);
  padding: 18px;
  border: 1px solid rgba(255, 106, 0, 0.34);
  border-radius: 8px;
  color: #f7f7f4;
  background: rgba(21, 24, 29, 0.76);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.mission-panel > span {
  color: var(--signal);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.mission-panel > strong {
  display: block;
  margin: 8px 0 14px;
  font-size: 38px;
  line-height: 1;
}

.mission-panel dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.mission-panel div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mission-panel dt,
.mission-panel dd {
  margin: 0;
  font-size: 12px;
}

.mission-panel dt {
  color: #aeb4b8;
  font-weight: 850;
}

.mission-panel dd {
  color: #ffffff;
  font-weight: 900;
  text-align: right;
}

.hex-field {
  position: absolute;
  right: clamp(20px, 6vw, 118px);
  top: 118px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 54px);
  grid-auto-rows: 47px;
  gap: 8px 10px;
  opacity: 0.74;
}

.hex-field span {
  width: 54px;
  height: 62px;
  border: 1px solid rgba(255, 106, 0, 0.48);
  background: rgba(255, 255, 255, 0.035);
  clip-path: polygon(25% 4%, 75% 4%, 100% 50%, 75% 96%, 25% 96%, 0 50%);
  box-shadow: inset 0 0 18px rgba(255, 106, 0, 0.08);
  animation: hex-drift 8s ease-in-out infinite;
}

.hex-field span:nth-child(2n) {
  transform: translateY(28px);
  border-color: rgba(231, 233, 232, 0.36);
  animation-delay: -2.4s;
}

.hex-field span:nth-child(4),
.hex-field span:nth-child(7) {
  background: rgba(255, 106, 0, 0.16);
}

.magnetic-field {
  position: absolute;
  right: clamp(40px, 10vw, 180px);
  top: 24%;
  z-index: 1;
  width: min(520px, 42vw);
  aspect-ratio: 1.25;
  pointer-events: none;
  opacity: 0.45;
}

.magnetic-field span {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 106, 0, 0.24);
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-18deg);
  animation: magnetic-breathe 9s ease-in-out infinite;
}

.magnetic-field span:nth-child(2) {
  inset: 2%;
  border-color: rgba(231, 233, 232, 0.18);
  border-top-color: transparent;
  animation-delay: -3s;
}

.magnetic-field span:nth-child(3) {
  inset: 24%;
  border-color: rgba(255, 106, 0, 0.32);
  border-bottom-color: transparent;
  animation-delay: -5.5s;
}

.primary-action,
.secondary-action,
.founder-links a,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  font-family: inherit;
  cursor: pointer;
}

.primary-action {
  color: #ffffff;
  background: var(--signal);
}

.secondary-action,
.founder-links a {
  color: #f7f7f4;
  border: 1px solid rgba(255, 106, 0, 0.34);
  background: rgba(255, 255, 255, 0.07);
}

section {
  padding: 84px clamp(18px, 6vw, 86px);
}

.intro-band,
.platform-section,
.billing-section,
.integrity-section,
.contact-section,
.legal-section {
  position: relative;
}

.intro-band::before,
.platform-section::before,
.billing-section::before,
.integrity-section::before,
.contact-section::before,
.legal-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(18px, 6vw, 86px);
  right: clamp(18px, 6vw, 86px);
  height: 3px;
  background: linear-gradient(90deg, var(--signal), transparent 62%);
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 30px;
}

.intro-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(243, 244, 243, 0.16)),
    rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(4px) saturate(1.02);
}

.billing-section {
  color: #f7f7f4;
  background:
    radial-gradient(circle at 78% 38%, rgba(255, 106, 0, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(21, 24, 29, 0.62), rgba(21, 24, 29, 0.5)),
    rgba(21, 24, 29, 0.2);
  backdrop-filter: blur(4px) saturate(1.05);
}

.contact-section {
  color: #f7f7f4;
  background:
    radial-gradient(circle at 16% 20%, rgba(29, 124, 255, 0.14), transparent 30%),
    radial-gradient(circle at 84% 16%, rgba(255, 106, 0, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(21, 24, 29, 0.72), rgba(21, 24, 29, 0.56)),
    rgba(21, 24, 29, 0.22);
  backdrop-filter: blur(5px) saturate(1.06);
}

.contact-section .section-heading p:not(.eyebrow),
.legal-section .section-heading p:not(.eyebrow) {
  color: #d8dddf;
}

.legal-section {
  color: #f7f7f4;
  background:
    linear-gradient(180deg, rgba(21, 24, 29, 0.78), rgba(21, 24, 29, 0.66)),
    rgba(21, 24, 29, 0.26);
  backdrop-filter: blur(6px) saturate(1.04);
}

.billing-section .section-heading p:not(.eyebrow) {
  color: #d8dddf;
}

.principle-grid,
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.principle-grid article,
.platform-grid article,
.integrity-list article,
.cv-panel {
  border: 1px solid rgba(215, 220, 226, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.2)),
    rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 42px rgba(21, 24, 29, 0.12);
  backdrop-filter: blur(10px) saturate(1.04);
}

.principle-grid article,
.platform-grid article,
.integrity-list article {
  border-top: 3px solid var(--signal);
}

.principle-grid article,
.platform-grid article,
.integrity-list article {
  padding: 24px;
}

.principle-grid article,
.integrity-list article {
  position: relative;
  overflow: hidden;
}

.principle-grid article i,
.integrity-list article i {
  position: absolute;
  right: -18px;
  top: -20px;
  width: 92px;
  height: 106px;
  border: 1px solid rgba(255, 106, 0, 0.26);
  clip-path: polygon(25% 4%, 75% 4%, 100% 50%, 75% 96%, 25% 96%, 0 50%);
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.08), transparent 62%),
    rgba(231, 233, 232, 0.28);
}

.principle-grid article b,
.integrity-list article b {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 2px;
  overflow: hidden;
}

.principle-grid article b::before,
.integrity-list article b::before {
  content: "";
  display: block;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--signal), transparent);
  animation: signal-scan 5.6s ease-in-out infinite;
}

.principle-grid span,
.integrity-list span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--signal);
  font-weight: 950;
}

.principle-grid p,
.platform-grid p,
.integrity-list p,
.founder-copy p,
.cv-panel dd,
.cv-note {
  color: var(--muted);
  line-height: 1.65;
}

.founder-section,
.method-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(21, 24, 29, 0.94) 0%, rgba(41, 47, 53, 0.88) 56%, rgba(243, 244, 243, 0.54) 56%, rgba(243, 244, 243, 0.42) 100%);
  backdrop-filter: blur(12px);
}

.founder-copy {
  color: #ffffff;
}

.founder-copy h2 {
  color: var(--signal);
}

.founder-copy .lead {
  color: #f1f2f1;
  font-size: 19px;
}

.founder-copy p {
  max-width: 760px;
  color: #d8dddf;
}

.cv-panel {
  padding: 28px;
  border-color: rgba(255, 106, 0, 0.32);
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 106, 0, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(21, 24, 29, 0.88), rgba(21, 24, 29, 0.64)),
    rgba(21, 24, 29, 0.86);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cv-panel h3 {
  margin-bottom: 10px;
  color: var(--signal);
  font-size: 24px;
}

.cv-summary {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: #f7f7f4;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.58;
}

.cv-panel dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.cv-panel dl div {
  padding: 14px 14px 13px;
  border: 1px solid rgba(215, 220, 226, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.03);
}

.cv-panel dt {
  margin-bottom: 5px;
  color: var(--signal);
  font-weight: 950;
  letter-spacing: 0.02em;
}

.cv-panel dd {
  margin: 0;
  color: #d8dddf;
}

.cv-note {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #f7f7f4;
  font-size: 13px;
}

.platform-section {
  overflow: hidden;
  color: #f7f7f4;
  background:
    radial-gradient(circle at 78% 10%, rgba(255, 106, 0, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(21, 24, 29, 0.24), rgba(21, 24, 29, 0.16)),
    rgba(21, 24, 29, 0.04);
  backdrop-filter: blur(2px) saturate(1.06);
}

.ecosystem-orb {
  position: absolute;
  right: clamp(20px, 7vw, 100px);
  top: 50%;
  z-index: 0;
  width: min(420px, 36vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 106, 0, 0.16);
  border-radius: 50%;
  opacity: 0.78;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 106, 0, 0.16), transparent 10%),
    radial-gradient(circle at 50% 50%, rgba(29, 124, 255, 0.08), transparent 42%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 64%);
  box-shadow:
    inset 0 0 60px rgba(255, 106, 0, 0.08),
    0 0 90px rgba(255, 106, 0, 0.06);
  transform: translateY(-50%);
  pointer-events: none;
}

.ecosystem-orb::before,
.ecosystem-orb::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 106, 0, 0.16);
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-18deg);
  animation: magnetic-breathe 9s ease-in-out infinite;
}

.ecosystem-orb::after {
  inset: 26%;
  border-color: rgba(247, 247, 244, 0.12);
  border-top-color: transparent;
  transform: rotate(18deg);
  animation-delay: -4s;
}

.ecosystem-orb span {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 18px rgba(255, 106, 0, 0.72);
  animation: node-orbit 12s linear infinite;
}

.ecosystem-orb span:nth-child(1) {
  left: 50%;
  top: 2%;
}

.ecosystem-orb span:nth-child(2) {
  right: 6%;
  top: 58%;
  animation-delay: -4s;
}

.ecosystem-orb span:nth-child(3) {
  left: 15%;
  bottom: 14%;
  animation-delay: -8s;
}

.platform-section:hover .ecosystem-orb,
.network-active .ecosystem-orb {
  opacity: 0.96;
  filter: drop-shadow(0 0 28px rgba(255, 106, 0, 0.16));
}

.platform-section:hover .ecosystem-orb::before,
.platform-section:hover .ecosystem-orb::after,
.network-active .ecosystem-orb::before,
.network-active .ecosystem-orb::after {
  border-color: rgba(255, 106, 0, 0.28);
  border-left-color: transparent;
  border-right-color: transparent;
}

.platform-section:hover .ecosystem-orb span,
.network-active .ecosystem-orb span {
  box-shadow: 0 0 24px rgba(255, 106, 0, 0.88), 0 0 46px rgba(29, 124, 255, 0.24);
  animation-duration: 8s;
}

.platform-section .section-heading p:not(.eyebrow),
.platform-section .platform-grid p {
  color: #d8dddf;
}

.platform-section .section-heading,
.platform-section .platform-grid {
  position: relative;
  z-index: 1;
}

.platform-grid {
  position: relative;
}

.platform-grid::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  z-index: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 106, 0, 0.42), transparent);
  opacity: 0.58;
}

.platform-section .platform-grid article {
  position: relative;
  z-index: 1;
  border-color: rgba(255, 106, 0, 0.22);
  background:
    linear-gradient(135deg, rgba(21, 24, 29, 0.42), rgba(21, 24, 29, 0.24)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(7px) saturate(1.1);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease, background 220ms ease;
}

.platform-section .platform-grid article::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 42px;
  height: 48px;
  border: 1px solid rgba(255, 106, 0, 0.22);
  clip-path: polygon(25% 4%, 75% 4%, 100% 50%, 75% 96%, 25% 96%, 0 50%);
  opacity: 0.64;
  transition: opacity 220ms ease, background 220ms ease, border-color 220ms ease;
}

.platform-section .platform-grid article:hover {
  border-color: rgba(255, 106, 0, 0.52);
  background:
    linear-gradient(135deg, rgba(21, 24, 29, 0.56), rgba(21, 24, 29, 0.32)),
    rgba(255, 106, 0, 0.06);
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.28),
    0 0 34px rgba(255, 106, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.platform-section .platform-grid article:hover::after {
  border-color: rgba(255, 106, 0, 0.54);
  background: rgba(255, 106, 0, 0.08);
  opacity: 1;
}

.platform-section .section-heading {
  width: fit-content;
  max-width: 100%;
  padding: 18px 22px;
  border-left: 3px solid var(--signal);
  background: linear-gradient(90deg, rgba(21, 24, 29, 0.46), rgba(21, 24, 29, 0.08));
  backdrop-filter: blur(6px);
}

.integrity-section {
  color: #f7f7f4;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 106, 0, 0.18), transparent 28%),
    radial-gradient(circle at 14% 72%, rgba(29, 124, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(21, 24, 29, 0.58), rgba(21, 24, 29, 0.44)),
    rgba(21, 24, 29, 0.18);
  backdrop-filter: blur(4px) saturate(1.05);
}

.integrity-section .section-heading p:not(.eyebrow) {
  color: #d8dddf;
}

.integrity-section .integrity-list article {
  border-color: rgba(255, 106, 0, 0.26);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.07)),
    rgba(21, 24, 29, 0.38);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.integrity-section .integrity-list article i {
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.12), transparent 62%),
    rgba(255, 255, 255, 0.06);
}

.integrity-section .integrity-list span {
  margin-bottom: 12px;
}

.integrity-section .integrity-list h3 {
  color: #f7f7f4;
}

.integrity-section .integrity-list p {
  color: #d8dddf;
}

.journey-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: end;
  min-height: 72vh;
  color: #f7f7f4;
  background:
    linear-gradient(90deg, rgba(21, 24, 29, 0.96), rgba(21, 24, 29, 0.72)),
    transparent;
}

.journey-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 106, 0, 0.16) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(90deg, #000, transparent 88%);
}

.journey-copy,
.journey-telemetry {
  position: relative;
  z-index: 1;
}

.journey-copy h2 {
  max-width: 880px;
}

.journey-copy p:not(.eyebrow) {
  max-width: 720px;
  color: #d8dddf;
  font-size: 18px;
  line-height: 1.7;
}

.journey-telemetry {
  display: grid;
  gap: 10px;
}

.journey-telemetry article {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 106, 0, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.journey-telemetry article:hover {
  border-color: rgba(255, 106, 0, 0.58);
  background: rgba(255, 106, 0, 0.08);
  transform: translateX(-4px);
}

.journey-telemetry span {
  color: #aeb4b8;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.journey-telemetry strong {
  color: #ffffff;
  text-align: right;
}

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

.platform-grid article {
  min-height: 190px;
}

.creators-section {
  color: #f7f7f4;
  background: #15181d;
}

.creators-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.creators-intro h2 {
  color: var(--signal);
}

.creators-intro p:not(.eyebrow) {
  margin-bottom: 0;
  color: #d8dddf;
  line-height: 1.65;
}

.creator-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: stretch;
}

.showcase-panel,
.project-board article {
  border: 1px solid rgba(216, 225, 238, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.18);
}

.showcase-panel {
  display: grid;
  gap: 24px;
  padding: 24px;
}

.showcase-frame {
  overflow: hidden;
  min-height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(135deg, rgba(231, 233, 232, 0.78), rgba(21, 24, 29, 0.95) 52%, rgba(255, 106, 0, 0.86));
  background-size: 28px 28px, 28px 28px, auto;
}

.browser-bar {
  display: flex;
  gap: 7px;
  padding: 12px;
  background: rgba(21, 24, 29, 0.72);
}

.browser-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e8eef8;
}

.mock-hero {
  display: grid;
  gap: 10px;
  padding: 34px 22px 26px;
}

.mock-hero strong {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(255, 106, 0, 0.78);
  border-radius: 8px;
  color: var(--signal);
  font-size: 20px;
  font-weight: 950;
}

.mock-hero span {
  max-width: 300px;
  color: #ffffff;
  font-size: 28px;
  font-weight: 950;
  line-height: 1.05;
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0 22px 22px;
}

.mock-grid span {
  min-height: 76px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  animation: panel-pulse 7s ease-in-out infinite;
}

.mock-grid span:nth-child(2) {
  animation-delay: -2s;
}

.mock-grid span:nth-child(3) {
  animation-delay: -4s;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  background: var(--signal);
}

.showcase-panel h3,
.project-board h3 {
  color: var(--signal);
}

.showcase-panel p,
.project-board p {
  color: #d8dddf;
  line-height: 1.65;
}

.showcase-panel p {
  margin-bottom: 0;
}

.project-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.project-board article {
  min-height: 205px;
  padding: 22px;
}

.project-board span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.service-panel {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(21, 24, 29, 0.48), rgba(21, 24, 29, 0.28)),
    rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px) saturate(1.08);
}

.service-panel span,
.service-grid span {
  display: block;
  color: var(--signal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-panel h3 {
  margin: 0;
  color: #f7f7f4;
  font-size: 25px;
  line-height: 1.12;
}

.service-panel p,
.service-grid p {
  margin: 0;
  color: #d8dddf;
  line-height: 1.65;
}

.service-panel blockquote {
  margin: 8px 0 0;
  padding: 18px 18px 18px 20px;
  border-left: 3px solid var(--signal);
  color: #ffffff;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.16;
  background: rgba(255, 106, 0, 0.08);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-grid article {
  min-height: 154px;
  padding: 22px;
  border-color: rgba(255, 106, 0, 0.28);
  background:
    linear-gradient(135deg, rgba(21, 24, 29, 0.54), rgba(21, 24, 29, 0.32)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.service-grid span {
  margin-bottom: 12px;
}

.integrity-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 560px) minmax(260px, 0.8fr);
  gap: 22px;
  align-items: stretch;
}

.contact-form,
.contact-note,
.legal-grid article {
  border: 1px solid rgba(215, 220, 226, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(21, 24, 29, 0.58), rgba(21, 24, 29, 0.34)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(9px) saturate(1.08);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #d8dddf;
  font-size: 13px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(215, 220, 226, 0.34);
  border-radius: 8px;
  color: #f7f7f4;
  font: inherit;
  font-weight: 750;
  background: rgba(255, 255, 255, 0.08);
}

.contact-form textarea {
  min-height: 128px;
  padding-top: 12px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--signal);
  outline: 3px solid rgba(255, 106, 0, 0.16);
}

.privacy-check {
  grid-template-columns: 18px 1fr;
  align-items: start;
  font-size: 12px;
  line-height: 1.5;
}

.privacy-check input {
  min-height: auto;
  margin-top: 3px;
  accent-color: var(--signal);
}

.contact-note {
  padding: 26px;
}

.contact-note span {
  color: var(--signal);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-note p {
  margin: 16px 0 20px;
  color: #f7f7f4;
  font-size: 21px;
  font-weight: 850;
  line-height: 1.34;
}

.contact-note ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  color: #d8dddf;
  line-height: 1.55;
}

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

.legal-grid article {
  padding: 20px;
}

.legal-grid h3 {
  color: var(--signal);
  font-size: 16px;
}

.legal-grid p {
  color: #d8dddf;
  font-size: 13px;
  line-height: 1.58;
}

.legal-grid a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 28px clamp(18px, 6vw, 86px);
  color: #f7f7f4;
  background: #15181d;
}

.site-footer span {
  font-weight: 950;
}

.site-footer small {
  display: block;
  color: #aeb4b8;
  font-weight: 700;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  font-weight: 850;
}

@media (max-width: 960px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .site-header nav {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .principle-grid,
  .platform-grid,
  .integrity-list,
  .service-layout,
  .contact-layout,
  .legal-grid,
  .journey-section,
  .creators-intro,
  .creator-layout,
  .founder-section,
  .method-section {
    grid-template-columns: 1fr;
  }

  .founder-section,
  .method-section {
    background: #15181d;
  }

  .service-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .project-board {
    grid-template-columns: 1fr;
  }

  .cosmic-earth,
  .cosmic-mars {
    width: 78vw;
  }

  .cosmic-surface {
    width: 150vw;
    height: 118vh;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 860px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding-bottom: 52px;
  }

  .hero-brand {
    width: min(420px, 86vw);
  }

  .hero-media {
    top: 120px;
    right: 16px;
    width: 76vw;
    opacity: 0.16;
    transform: none;
  }

  .mission-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 32px);
    margin: -36px auto 42px;
  }

  .hex-field {
    right: 10px;
    top: 84px;
    grid-template-columns: repeat(3, 38px);
    grid-auto-rows: 33px;
    gap: 6px;
    opacity: 0.42;
  }

  .hex-field span {
    width: 38px;
    height: 44px;
  }

  .magnetic-field {
    right: -20px;
    top: 170px;
    width: 82vw;
    opacity: 0.22;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 27px;
  }

  .hero-content p:not(.eyebrow),
  .founder-copy .lead {
    font-size: 17px;
  }

  section {
    padding: 60px 16px;
  }

  .site-footer {
    flex-direction: column;
  }

  .mock-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes hex-drift {
  0%,
  100% {
    opacity: 0.68;
    translate: 0 0;
  }

  50% {
    opacity: 1;
    translate: 0 -5px;
  }
}

@keyframes magnetic-breathe {
  0%,
  100% {
    opacity: 0.3;
    transform: rotate(-18deg) scale(0.98);
  }

  50% {
    opacity: 0.68;
    transform: rotate(-14deg) scale(1.03);
  }
}

@keyframes signal-scan {
  0% {
    transform: translateX(-120%);
  }

  52%,
  100% {
    transform: translateX(260%);
  }
}

@keyframes panel-pulse {
  0%,
  100% {
    background: rgba(255, 255, 255, 0.16);
  }

  50% {
    background: rgba(255, 106, 0, 0.22);
  }
}

@keyframes node-orbit {
  0% {
    transform: rotate(0deg) translateX(18px) rotate(0deg);
  }

  100% {
    transform: rotate(360deg) translateX(18px) rotate(-360deg);
  }
}

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