:root {
  --ink: #f9f3e7;
  --muted: #c8bcd0;
  --space: #10091c;
  --space-2: #1b0c2d;
  --mars: #ef694a;
  --gold: #ffc766;
  --violet: #8c69e8;
  --line: rgba(255, 255, 255, 0.14);
  --max: 1180px;
  --radius: 28px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  background: var(--space);
  color: var(--ink);
  font-family: Tahoma, "Segoe UI", Arial, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}
img,
svg {
  max-width: 100%;
}
main > *,
.hero > *,
.about-grid > *,
.featured-project > *,
.vision > * {
  min-width: 0;
}
button,
a {
  font: inherit;
}
a {
  color: inherit;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  inset-inline-start: 8px;
  padding: 10px 16px;
  background: #fff;
  color: #111;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
.space {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(
      circle at 80% 15%,
      rgba(140, 105, 232, 0.17),
      transparent 28%
    ),
    radial-gradient(
      circle at 10% 70%,
      rgba(239, 105, 74, 0.1),
      transparent 28%
    ),
    linear-gradient(160deg, #10091c, #140a23 50%, #0b0816);
}
.space span {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: white;
  box-shadow:
    12vw 12vh #fff,
    30vw 23vh #9287ac,
    76vw 8vh #fff,
    90vw 42vh #fff,
    66vw 75vh #80738d,
    20vw 88vh #fff,
    48vw 52vh #fff;
}
.space span:nth-child(2) {
  transform: translate(8vw, 30vh);
  opacity: 0.45;
}
.space span:nth-child(3) {
  transform: translate(35vw, 8vh);
  opacity: 0.25;
}
.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  inset-inline: 0;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px max(5vw, 24px);
  transition: 0.3s;
}
.site-header.scrolled {
  background: rgba(16, 9, 28, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding-block: 10px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-inline-end: auto;
}
.brand svg {
  width: 43px;
  fill: none;
  stroke: var(--mars);
  stroke-width: 3;
  stroke-linecap: round;
}
.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand b {
  font: 700 20px/1 Arial;
}
.brand small {
  font: 600 8px/1 Arial;
  letter-spacing: 4px;
  color: var(--gold);
  margin-top: 5px;
}
.site-header nav {
  display: flex;
  gap: 22px;
}
.site-header nav a {
  font-size: 14px;
  text-decoration: none;
  color: var(--muted);
  transition: 0.2s;
}
.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: #fff;
}
.header-actions {
  display: flex;
  gap: 8px;
}
.icon-button,
.lang-toggle,
.menu-toggle {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
}
.icon-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.icon-button[aria-pressed="true"] {
  color: #8c8298;
  text-decoration: line-through;
}
.lang-toggle {
  height: 40px;
  border-radius: 22px;
  padding: 4px 9px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
}
.lang-toggle i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--mars);
  position: relative;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 4px;
}
.section {
  width: min(var(--max), 90vw);
  margin: auto;
  padding: 120px 0;
}
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 4vw;
  padding-top: 140px;
}
.eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin: 0 0 14px;
}
.hero h1 {
  font-size: clamp(48px, 6vw, 86px);
  line-height: 1.08;
  margin: 0 0 28px;
  letter-spacing: -2px;
}
.hero h1 span,
.hero h1 em {
  display: block;
}
.hero h1 em {
  font-style: normal;
  color: var(--mars);
}
.lead {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  max-width: 630px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin: 32px 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 10px 23px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s;
}
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(239, 105, 74, 0.2);
}
.primary {
  background: var(--mars);
  color: #1d0c0b;
}
.ghost {
  border: 1px solid var(--line);
}
.trust-list {
  display: flex;
  gap: 25px;
  list-style: none;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
}
.trust-list li:before {
  content: "✦";
  color: var(--gold);
  margin-inline-end: 7px;
}
.hero-art {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}
.planet {
  width: min(29vw, 340px);
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
  background: radial-gradient(
    circle at 33% 28%,
    #ffb270 0 6%,
    #ec6b4b 26%,
    #a93243 67%,
    #40142f
  );
  box-shadow:
    inset -28px -24px 50px rgba(20, 4, 26, 0.55),
    0 0 80px rgba(239, 105, 74, 0.25);
}
.crater {
  position: absolute;
  border-radius: 50%;
  background: rgba(83, 24, 50, 0.25);
  box-shadow: inset 3px 5px 5px rgba(60, 10, 30, 0.3);
}
.c1 {
  width: 20%;
  height: 12%;
  top: 22%;
  left: 14%;
  transform: rotate(-15deg);
}
.c2 {
  width: 11%;
  height: 8%;
  top: 56%;
  right: 18%;
}
.c3 {
  width: 28%;
  height: 15%;
  bottom: 14%;
  left: 20%;
}
.orbit {
  position: absolute;
  border: 1px solid rgba(255, 199, 102, 0.3);
  border-radius: 50%;
  width: 92%;
  height: 48%;
  transform: rotate(-18deg);
}
.orbit-two {
  width: 70%;
  height: 100%;
  transform: rotate(48deg);
  border-color: rgba(140, 105, 232, 0.3);
}
.orbit i {
  position: absolute;
  width: 13px;
  height: 13px;
  background: var(--gold);
  border-radius: 50%;
  top: 15%;
  left: 10%;
  box-shadow: 0 0 20px var(--gold);
}
.orbit-two i {
  background: #9e80ef;
  top: 75%;
  left: 90%;
}
.story-card {
  position: absolute;
  background: rgba(30, 15, 47, 0.86);
  border: 1px solid var(--line);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 12px 17px;
  display: flex;
  gap: 9px;
}
.story-card span {
  color: var(--gold);
}
.card-one {
  top: 16%;
  right: 5%;
}
.card-two {
  bottom: 15%;
  left: 2%;
}
.section-heading {
  max-width: 690px;
  margin-bottom: 50px;
}
.section-heading h2,
.vision h2,
.contact h2 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.2;
  margin: 0 0 15px;
}
.section-heading > p:last-child {
  color: var(--muted);
}
.about {
  border-top: 1px solid var(--line);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 7vw;
}
.large-copy {
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.8;
  margin: 0;
}
.principles article {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 23px 60px 23px 0;
}
.principles article > span {
  position: absolute;
  right: 0;
  color: var(--mars);
  font: 700 13px Arial;
}
.principles h3 {
  margin: 0;
  font-size: 20px;
}
.principles p {
  margin: 4px 0;
  color: var(--muted);
}
html[dir="ltr"] .principles article {
  padding: 23px 0 23px 60px;
}
html[dir="ltr"] .principles article > span {
  right: auto;
  left: 0;
}
.projects {
  width: 100%;
  padding-inline: max(5vw, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.025);
}
.featured-project {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  min-height: 470px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #25113a;
  border: 1px solid var(--line);
}
.train-scene {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 65% 30%,
      rgba(255, 199, 102, 0.2),
      transparent 20%
    ),
    linear-gradient(#39205c, #be514e 70%, #562336);
}
.track {
  position: absolute;
  bottom: 20%;
  left: -10%;
  width: 120%;
  height: 8px;
  background: #29122c;
  transform: rotate(-3deg);
  box-shadow: 0 13px 0 #29122c;
}
.train {
  position: absolute;
  display: flex;
  align-items: flex-end;
  gap: 7px;
  bottom: 25%;
  left: 15%;
  filter: drop-shadow(0 17px 10px rgba(0, 0, 0, 0.3));
}
.engine,
.wagon {
  display: grid;
  place-items: center;
  color: #45162d;
  font-size: 30px;
  background: var(--gold);
  width: 130px;
  height: 95px;
  border-radius: 35px 15px 12px 12px;
  border-bottom: 10px solid #5b2134;
}
.engine {
  width: 145px;
  height: 130px;
  border-radius: 70px 20px 12px 12px;
  background: var(--mars);
}
.wagon:after,
.engine:after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background: #25102c;
  border: 7px solid #d85348;
  border-radius: 50%;
  transform: translate(35px, 55px);
}
.station {
  position: absolute;
  width: 3px;
  height: 160px;
  background: rgba(255, 255, 255, 0.25);
  top: 15%;
  left: 12%;
}
.station:after {
  content: "✦";
  position: absolute;
  top: -20px;
  left: -10px;
  color: var(--gold);
}
.s2 {
  left: 85%;
  top: 8%;
  height: 100px;
}
.project-copy {
  padding: 55px;
  align-self: center;
}
.status {
  display: inline-block;
  color: var(--gold);
  background: rgba(255, 199, 102, 0.1);
  border: 1px solid rgba(255, 199, 102, 0.3);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 12px;
}
.project-copy h3 {
  font-size: 43px;
  margin: 20px 0 10px;
}
.project-copy p {
  color: var(--muted);
}
.text-link {
  display: inline-block;
  color: var(--gold);
  margin-top: 15px;
  text-decoration: none;
  font-weight: 700;
}
.text-link:hover b {
  display: inline-block;
  transform: translateX(-5px);
}
.future-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 45px auto 0;
  color: var(--muted);
}
.future-note > span {
  font-size: 35px;
  color: var(--violet);
}
.future-note p {
  display: flex;
  flex-direction: column;
}
.future-note b {
  color: var(--ink);
}
.centered {
  text-align: center;
  margin-inline: auto;
}
.values {
  padding-bottom: 150px;
}
.stations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 16px;
}
.stations:before {
  content: "";
  position: absolute;
  top: 52px;
  left: 10%;
  right: 10%;
  border-top: 2px dashed rgba(255, 199, 102, 0.25);
}
.stations article {
  position: relative;
  text-align: center;
  background: #1c102c;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px 18px;
  transition: 0.25s;
}
.stations article:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 199, 102, 0.5);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}
.station-icon {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--mars);
  font-size: 24px;
  box-shadow: 0 0 0 8px #1c102c;
}
.stations small {
  color: var(--gold);
}
.stations h3 {
  font-size: 23px;
  margin: 5px;
}
.stations p {
  color: var(--muted);
  font-size: 14px;
}
.vision {
  width: 100%;
  padding-inline: max(5vw, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 8vw;
  align-items: center;
  background: linear-gradient(120deg, rgba(140, 105, 232, 0.11), transparent);
}
.vision-orb {
  display: grid;
  place-items: center;
  width: min(340px, 65vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow:
    inset 0 0 70px rgba(140, 105, 232, 0.2),
    0 0 0 30px rgba(140, 105, 232, 0.03),
    0 0 0 60px rgba(140, 105, 232, 0.02);
}
.vision-orb span {
  font-size: 90px;
  color: var(--gold);
  filter: drop-shadow(0 0 25px var(--gold));
}
.vision-copy > p {
  color: var(--muted);
  font-size: 19px;
}
.vision-copy .eyebrow {
  color: var(--gold);
  font-size: 13px;
}
.vision blockquote {
  margin: 30px 0 0;
  padding-inline-start: 20px;
  border-inline-start: 3px solid var(--mars);
  font-size: 20px;
}
.contact {
  padding-bottom: 80px;
}
.contact-box {
  border-radius: var(--radius);
  background: var(--mars);
  color: #260e1b;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.contact-box h2 {
  max-width: 650px;
}
.contact-box p {
  max-width: 650px;
}
.contact-box .eyebrow {
  color: #481526;
}
.contact-status {
  max-width: 340px;
  margin: 0;
  padding: 14px 20px;
  border: 1px solid rgba(38, 14, 27, 0.25);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 700;
}
.light {
  background: #fff;
  color: #291126;
  white-space: nowrap;
}
footer {
  width: min(var(--max), 90vw);
  margin: auto;
  padding: 35px 0 50px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
}
.footer-brand {
  margin: 0;
}
.footer-brand svg {
  width: 36px;
}
footer > p {
  margin: 0;
}
.footer-links {
  display: flex;
  gap: 18px;
}
.footer-links a {
  color: var(--muted);
  font-size: 13px;
  text-underline-offset: 4px;
}
.copyright {
  margin-inline-start: auto;
  font-size: 12px;
}
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}
@media (max-width: 900px) {
  .site-header nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 4vw;
    right: 4vw;
    flex-direction: column;
    padding: 25px;
    background: #211132;
    border: 1px solid var(--line);
    border-radius: 18px;
  }
  .site-header nav.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
    order: 2;
  }
  .header-actions {
    order: 3;
  }
  .brand {
    order: 1;
  }
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 150px;
  }
  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-art {
    min-height: 410px;
  }
  .planet {
    width: 270px;
  }
  .about-grid,
  .featured-project,
  .vision {
    grid-template-columns: 1fr;
  }
  .train-scene {
    min-height: 360px;
  }
  .vision-orb {
    margin: auto;
  }
  .stations {
    grid-template-columns: 1fr 1fr;
  }
  .stations:before {
    display: none;
  }
  .contact-box {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .site-header {
    gap: 8px;
    padding-inline: 18px;
  }
  .header-actions {
    gap: 4px;
  }
  .brand b {
    font-size: 16px;
  }
  .brand small {
    letter-spacing: 2px;
  }
  .brand svg {
    width: 35px;
  }
  .icon-button {
    width: 36px;
    height: 36px;
  }
  .section {
    width: 88vw;
    padding: 85px 0;
  }
  .hero {
    padding-top: 130px;
  }
  .hero h1 {
    font-size: 45px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .button {
    width: 100%;
  }
  .trust-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 15px;
  }
  .hero-art {
    min-height: 330px;
  }
  .planet {
    width: 210px;
  }
  .story-card {
    font-size: 12px;
  }
  .about-grid {
    gap: 45px;
  }
  .stations {
    grid-template-columns: 1fr;
  }
  .projects,
  .vision {
    width: 100%;
    padding-inline: 6vw;
  }
  .featured-project {
    min-height: 0;
  }
  .train-scene {
    min-height: 280px;
  }
  .train {
    transform: scale(0.7);
    transform-origin: left bottom;
  }
  .project-copy {
    padding: 30px;
  }
  .project-copy h3 {
    font-size: 34px;
  }
  .contact-box {
    padding: 35px 25px;
  }
  .contact h2 {
    font-size: 34px;
  }
  footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .copyright {
    margin: 0;
  }
}

@media (max-width: 380px) {
  .site-header .brand > span {
    display: none;
  }
  .site-header .brand svg {
    width: 38px;
  }
  .lang-toggle {
    padding-inline: 7px;
  }
}

.legal-page {
  width: min(800px, 88vw);
  min-height: calc(100vh - 180px);
  padding-top: 150px;
}
.legal-page h1 {
  margin: 0 0 20px;
  font-size: clamp(40px, 7vw, 68px);
  line-height: 1.2;
}
.legal-page .legal-intro {
  color: var(--muted);
  font-size: 18px;
}
.legal-page article {
  margin-top: 45px;
}
.legal-page section {
  padding: 25px 0;
  border-top: 1px solid var(--line);
}
.legal-page h2 {
  margin: 0 0 8px;
  font-size: 24px;
}
.legal-page p,
.legal-page li {
  color: var(--muted);
}
.legal-page a {
  color: var(--gold);
}
.not-found-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
}
.not-found-page h1 {
  margin: 0.2em;
  font-size: clamp(45px, 8vw, 90px);
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
