@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;1,6..96,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --ink: #f2f0e9;
  --muted: #9fa7a2;
  --line: rgba(235, 238, 231, 0.15);
  --accent: #bdd8c8;
  --night: #0b100f;
  --night-soft: #111816;
  --serif: "Bodoni Moda", "Times New Roman", serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 72% 45%, rgba(80, 123, 104, 0.12), transparent 27rem),
    linear-gradient(145deg, var(--night-soft), var(--night) 56%);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
}

a { color: inherit; }

.ambient {
  position: fixed;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.11;
}

.ambient--one { top: -13rem; left: 12%; background: #8fae9f; }
.ambient--two { right: -14rem; bottom: -11rem; background: #5c7f74; }

.site-header {
  width: min(100% - 7vw, 1480px);
  margin: 0 auto;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  text-decoration: none;
  font-size: 0.79rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.brand__mark {
  width: 8px;
  height: 8px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(189, 216, 200, 0.65);
}

.hero {
  width: min(100% - 7vw, 1480px);
  min-height: calc(100vh - 214px);
  min-height: calc(100svh - 214px);
  margin: 0 auto;
  padding: clamp(2.4rem, 5vh, 5rem) 0 clamp(2.2rem, 4vh, 4rem);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 5rem);
}

.hero__copy { position: relative; z-index: 2; }

.eyebrow {
  margin: 0 0 1.6rem;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 15ch;
  font-family: var(--serif);
  font-size: clamp(3.7rem, 5.6vw, 6.3rem);
  font-weight: 400;
  line-height: 0.91;
  letter-spacing: -0.025em;
}

h1 em {
  color: var(--accent);
  font-weight: 400;
}

.intro {
  width: min(100%, 39rem);
  margin: clamp(1.8rem, 3vw, 2.8rem) 0 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.2vw, 1.12rem);
  line-height: 1.72;
}

.capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: clamp(2.2rem, 4vw, 3.6rem);
}

.capabilities span {
  padding: 0.68rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: #c6cbc8;
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: border-color 240ms ease, color 240ms ease, transform 240ms ease;
}

.capabilities span:hover {
  color: var(--ink);
  border-color: rgba(189, 216, 200, 0.4);
  transform: translateY(-2px);
}

.hero__visual {
  position: relative;
  width: min(100%, 800px);
  aspect-ratio: 1;
  justify-self: end;
  display: grid;
  place-items: center;
}

.technical-axis {
  position: absolute;
  z-index: 0;
  top: -9%;
  left: 50%;
  width: 2px;
  height: 118%;
  pointer-events: none;
  transform: translateX(-50%) rotate(42deg);
  transform-origin: center;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(189, 216, 200, 0.14) 4%,
    rgba(189, 216, 200, 0.4) 8%,
    rgba(189, 216, 200, 0.56) 12%,
    rgba(189, 216, 200, 0.56) 21%,
    transparent 21.2%,
    transparent 78.8%,
    rgba(189, 216, 200, 0.56) 79%,
    rgba(189, 216, 200, 0.56) 88%,
    rgba(189, 216, 200, 0.4) 92%,
    rgba(189, 216, 200, 0.14) 96%,
    transparent 100%
  );
  filter: drop-shadow(0 0 7px rgba(189, 216, 200, 0.28));
}

.video-shell {
  position: relative;
  z-index: 2;
  width: 68%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  background: #141b19;
  box-shadow:
    0 38px 90px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(225, 233, 228, 0.13),
    0 0 70px rgba(126, 166, 146, 0.08);
}

.video-shell video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-shade {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 70px rgba(2, 6, 5, 0.28);
  background: linear-gradient(135deg, rgba(197, 220, 207, 0.04), transparent 55%);
}

.orbit {
  --dot-size: 5px;
  --dot-glow: rgba(189, 216, 200, 0.82);
  --orbit-speed: 34s;
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(211, 224, 216, 0.11);
  border-radius: 50%;
}

.orbit__runner {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: orbit-runner var(--orbit-speed) linear infinite;
}

.orbit__dot {
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--dot-size);
  height: var(--dot-size);
  border-radius: 50%;
  background: var(--accent);
  box-shadow:
    0 0 calc(var(--dot-size) * 1.5) var(--dot-glow),
    0 0 calc(var(--dot-size) * 3.5) var(--dot-glow);
  transform: translate(-50%, -50%);
}

.orbit--outer {
  --dot-size: 17px;
  --dot-glow: rgba(189, 216, 200, 0.92);
  --orbit-speed: 29s;
  inset: 0;
}
.orbit--outer .orbit__runner { animation-delay: -9s; }

.orbit--middle {
  --dot-size: 9px;
  --dot-glow: rgba(189, 216, 200, 0.76);
  --orbit-speed: 41s;
  inset: 5.333%;
  border-style: dashed;
  border-color: rgba(211, 224, 216, 0.15);
}
.orbit--middle .orbit__runner {
  animation-delay: -27s;
  animation-direction: reverse;
}

.orbit--inner {
  --dot-size: 5px;
  --dot-glow: rgba(189, 216, 200, 0.58);
  --orbit-speed: 53s;
  inset: 10.666%;
}
.orbit--inner .orbit__runner { animation-delay: -38s; }

.visual-note {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 7%;
  margin: 0;
  padding: 0.82rem 0;
  color: var(--muted);
  background: var(--night);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.visual-note span {
  display: inline-block;
  width: 34px;
  height: 1px;
  margin-right: 0.75rem;
  vertical-align: middle;
  background: var(--accent);
}

.site-footer {
  width: min(100% - 7vw, 1480px);
  margin: 0 auto;
  min-height: 120px;
  padding: 1.4rem 0 1.8rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  align-items: end;
  gap: 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-lead {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.25;
}

.company-data {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  font-size: 0.62rem;
  line-height: 1.55;
  letter-spacing: 0.055em;
}
.company-data strong { color: #ccd1ce; font-weight: 400; }

.copyright { margin: 0; font-size: 0.65rem; }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal 900ms cubic-bezier(.2,.72,.2,1) forwards;
}
.reveal--delay-1 { animation-delay: 100ms; }
.reveal--delay-2 { animation-delay: 210ms; }
.reveal--delay-3 { animation-delay: 330ms; }
.reveal--visual { animation-delay: 180ms; transform: scale(0.97); }

@keyframes reveal { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes orbit-runner { to { transform: rotate(360deg); } }

@media (min-width: 881px) and (max-width: 1100px) {
  .orbit--inner { --dot-size: 4px; }
  .orbit--middle { --dot-size: 7px; }
  .orbit--outer { --dot-size: 13px; }
  .visual-note {
    padding: 0.68rem 0;
    font-size: 0.7rem;
  }
  .visual-note span {
    width: 26px;
    margin-right: 0.6rem;
  }
}

@media (min-width: 881px) {
  html,
  body {
    height: 100%;
    min-height: 0;
    overflow: hidden;
  }

  body {
    display: grid;
    grid-template-rows: 68px minmax(0, 1fr) 96px;
  }

  .site-header { height: 68px; }
  main { min-height: 0; }

  .hero {
    height: 100%;
    min-height: 0;
    padding: clamp(0.85rem, 2.8vh, 1.65rem) 0;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
    gap: clamp(2rem, 4vw, 4rem);
  }

  h1 {
    max-width: 16ch;
    font-size: clamp(3.25rem, 5vw, 4.65rem);
    line-height: 0.93;
  }

  .eyebrow { margin-bottom: 1.1rem; }
  .intro { margin-top: clamp(1.35rem, 3vh, 2rem); }
  .capabilities { margin-top: clamp(1.45rem, 3.5vh, 2.3rem); }
  .hero__visual {
    right: clamp(0px, 1.5vw, 24px);
    width: min(100%, calc(100vh - 200px), 620px);
  }

  @supports (height: 100svh) {
    .hero__visual { width: min(100%, calc(100svh - 200px), 620px); }
  }

  .site-footer {
    height: 96px;
    min-height: 0;
    padding: 1rem 0 1.1rem;
  }

  .company-data { font-size: 0.66rem; }
}

@media (min-width: 881px) and (max-height: 500px) {
  .eyebrow { margin-bottom: 0.8rem; }
  .intro {
    margin-top: 1rem;
    line-height: 1.55;
  }
  .capabilities { margin-top: 1rem; }
  .capabilities span { padding: 0.55rem 0.8rem; }
}

@media (max-width: 880px) {
  .site-header { height: 76px; }
  .hero {
    min-height: auto;
    padding: 3rem 0 3.5rem;
    grid-template-columns: 1fr;
    gap: 3.6rem;
  }
  .hero__visual {
    width: min(88vw, 520px);
    grid-row: 1;
    justify-self: center;
  }
  .hero__copy { grid-row: 2; }
  .orbit--inner { --dot-size: 4px; }
  .orbit--middle { --dot-size: 7px; }
  .orbit--outer { --dot-size: 13px; }
  .visual-note {
    right: 2%;
    bottom: 8%;
    padding: 0.55rem 0;
    font-size: 0.61rem;
  }
  .visual-note span {
    width: 20px;
    margin-right: 0.5rem;
  }
  h1 { font-size: clamp(3.6rem, 13vw, 6rem); }
  .site-footer {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
  .company-data { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 520px) {
  .site-header, .hero, .site-footer { width: calc(100% - 2.4rem); }
  .site-header { height: 68px; }
  .hero { padding-top: 2.5rem; gap: 3rem; }
  .hero__visual { width: 95%; }
  .video-shell { width: 68%; }
  .visual-note {
    right: auto;
    left: 50%;
    bottom: 2%;
    width: max-content;
    max-width: calc(100vw - 2.4rem);
    transform: translateX(-50%);
    white-space: nowrap;
  }
  h1 { font-size: clamp(3.2rem, 15vw, 4.6rem); }
  .intro { font-size: 0.95rem; }
  .capabilities { gap: 0.4rem; }
  .capabilities span { padding: 0.62rem 0.78rem; font-size: 0.6rem; }
  .site-footer { padding: 1.5rem 0 2rem; gap: 1.5rem; }
  .footer-lead { font-size: 1rem; }
  .company-data { flex-direction: column; }
}

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