:root {
  --ink: #f9f7ef;
  --muted: #c4bfd4;
  --deep: #050611;
  --panel: rgba(9, 12, 29, 0.78);
  --line: rgba(255, 237, 190, 0.22);
  --gold: #ffe8a4;
  --violet: #8d4dff;
  --blue: #2947d8;
  --cyan: #79ecff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 8%, rgba(255, 232, 164, 0.22), transparent 23rem),
    radial-gradient(circle at 12% 18%, rgba(141, 77, 255, 0.38), transparent 22rem),
    linear-gradient(145deg, #02030a 0%, #08112a 48%, #060611 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button {
  font: inherit;
}

.starfield {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.78;
}

.starfield::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    linear-gradient(118deg, transparent 0 34%, rgba(92, 74, 255, 0.16) 41%, transparent 48%),
    linear-gradient(118deg, transparent 0 52%, rgba(255, 232, 164, 0.12) 56%, transparent 61%);
  filter: blur(1px);
}

.starfield i {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 16px rgba(121, 236, 255, 0.9);
  animation: pulse var(--d) ease-in-out infinite alternate;
}

@keyframes pulse {
  from {
    opacity: 0.25;
    transform: scale(0.75);
  }
  to {
    opacity: 1;
    transform: scale(1.35);
  }
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  min-height: 78px;
  margin: 1rem auto 0;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(5, 7, 19, 0.72);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 42%, #fff8cf 0 20%, transparent 21%),
    conic-gradient(from 160deg, var(--gold), var(--violet), var(--blue), var(--gold));
  color: #080814;
  font-size: 0.76rem;
  font-weight: 950;
  box-shadow: 0 0 28px rgba(255, 232, 164, 0.38);
}

.brand strong,
.brand small {
  display: block;
  max-width: min(44vw, 360px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand strong {
  font-size: 0.96rem;
}

.brand small {
  margin-top: 0.18rem;
  color: var(--muted);
}

.socials,
.cta-row {
  display: flex;
  align-items: center;
  gap: 0.58rem;
  flex-wrap: wrap;
}

.socials a,
.cta,
[data-copy] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(255, 232, 164, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--ink);
  font-weight: 850;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.socials a {
  min-width: 56px;
  padding: 0 1rem;
}

.socials a:hover,
.cta:hover,
[data-copy]:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 232, 164, 0.75);
  background: rgba(255, 232, 164, 0.12);
}

main {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  padding: 2rem 0 0;
}

.banner-shell {
  position: relative;
  min-height: clamp(240px, 38vw, 440px);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: #070814;
  box-shadow: var(--shadow);
}

.banner-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 17, 0.72), transparent 32%, rgba(5, 6, 17, 0.18)),
    linear-gradient(0deg, rgba(5, 6, 17, 0.85), transparent 36%);
}

.banner-shell img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: center;
}

.banner-shell figcaption {
  position: absolute;
  left: clamp(1rem, 4vw, 3rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 1;
  color: rgba(249, 247, 239, 0.82);
  font-size: clamp(0.72rem, 1vw, 0.88rem);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: 1rem;
  align-items: stretch;
  margin-top: -3.25rem;
  padding: 0 clamp(0.8rem, 2vw, 1.5rem);
}

.signal-panel,
.specimen,
.orbit-strip article,
.brief {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.signal-panel {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: clamp(1.2rem, 4vw, 3rem);
  border-radius: 30px;
}

.signal-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 232, 164, 0.2), transparent 15rem),
    linear-gradient(112deg, rgba(121, 236, 255, 0.09), transparent 36%);
  pointer-events: none;
}

.signal-panel > * {
  position: relative;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.2rem, 8.1vw, 6.9rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ticker-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.68rem;
  margin-top: 1.35rem;
}

.ticker-row span:first-child {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--violet));
  color: #080814;
  font-weight: 950;
}

[data-copy] {
  cursor: pointer;
  padding: 0 1rem;
}

.lead {
  max-width: 58ch;
  margin: 1.35rem 0 0;
  color: #ece9f5;
  font-size: clamp(1rem, 1.65vw, 1.28rem);
  line-height: 1.6;
}

.cta-row {
  margin-top: 1.5rem;
}

.cta {
  min-width: 132px;
  padding: 0.78rem 1.05rem;
}

.cta.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold), #fff7d7 46%, var(--violet));
  color: #070814;
  box-shadow: 0 0 34px rgba(255, 232, 164, 0.3);
}

.specimen {
  position: relative;
  z-index: 2;
  align-self: end;
  overflow: hidden;
  padding: 0.75rem;
  border-radius: 30px;
}

.specimen-ring {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.06);
}

.specimen-ring img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 62% center;
}

.specimen p {
  margin: 0;
  padding: 1rem 0.35rem 0.35rem;
  color: var(--muted);
  line-height: 1.5;
}

.orbit-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1rem 0;
}

.orbit-strip article {
  min-height: 112px;
  padding: 1rem;
  border-radius: 24px;
}

.orbit-strip span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.orbit-strip strong {
  display: block;
  margin-top: 0.65rem;
  color: var(--gold);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  overflow-wrap: anywhere;
}

.brief {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: start;
  margin: 0 0 1rem;
  padding: clamp(1.2rem, 4vw, 2.4rem);
  border-radius: 30px;
}

.brief h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.brief > p {
  margin: 0;
  color: #e7e2ef;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.7;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.1rem 0 2rem;
  color: rgba(249, 247, 239, 0.72);
  font-weight: 800;
}

@media (max-width: 860px) {
  .topbar {
    align-items: flex-start;
    border-radius: 22px;
  }

  .socials {
    justify-content: flex-end;
  }

  .socials a {
    min-width: 48px;
    padding: 0 0.75rem;
  }

  .hero-grid,
  .brief {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    margin-top: -2rem;
    padding: 0 0.65rem;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }

  .specimen {
    align-self: stretch;
  }

  .specimen-ring {
    aspect-ratio: 16 / 10;
  }

  .orbit-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  main,
  .topbar,
  footer {
    width: min(100% - 1rem, 1180px);
  }

  .topbar,
  footer {
    flex-direction: column;
    align-items: stretch;
  }

  .brand strong,
  .brand small {
    max-width: calc(100vw - 7rem);
  }

  .socials,
  .cta-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .socials a,
  .cta {
    min-width: 0;
    width: 100%;
    padding-inline: 0.45rem;
  }

  .banner-shell {
    min-height: 260px;
    border-radius: 24px;
  }

  .banner-shell img {
    object-position: 58% center;
  }

  .signal-panel,
  .brief {
    border-radius: 24px;
  }

  h1 {
    font-size: clamp(2.45rem, 16vw, 3.85rem);
  }
}
