:root {
  --bg: #080514;
  --panel: #120a22;
  --ink: #fff7ff;
  --muted: #c8bad8;
  --soft: #f2c690;
  --violet: #9a4cff;
  --deep-violet: #35146a;
  --cyan: #00dec8;
  --blue: #2a77ff;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(0, 222, 200, 0.2), transparent 20rem),
    radial-gradient(circle at 86% 18%, rgba(154, 76, 255, 0.24), transparent 24rem),
    linear-gradient(180deg, #05030b 0%, #110820 46%, #070414 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  background: rgba(8, 5, 20, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.logo,
.nav,
.button-row {
  display: flex;
  align-items: center;
}

.logo {
  gap: 0.65rem;
  font-weight: 900;
}

.logo-icon {
  display: grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  color: #080514;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  border-radius: 8px;
  box-shadow: 0 0 22px rgba(0, 222, 200, 0.28);
}

.nav {
  gap: 1rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--ink);
}

.banner-stage {
  position: relative;
  width: min(100%, 1640px);
  margin: 1rem auto 0;
  padding: 0 1rem;
}

.banner-stage img {
  width: 100%;
  aspect-ratio: 3 / 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 90px var(--shadow);
}

.banner-caption {
  position: absolute;
  left: 2rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(10, 4, 20, 0.72);
  backdrop-filter: blur(12px);
}

.banner-caption p,
.banner-caption strong {
  margin: 0;
}

.banner-caption p {
  color: var(--muted);
}

.banner-caption strong {
  color: var(--cyan);
}

.intro-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(16rem, 0.8fr) minmax(0, 1fr);
  gap: 2rem;
  width: min(100% - 2rem, 1220px);
  margin: 4rem auto 0;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(154, 76, 255, 0.14), transparent 40%),
    rgba(14, 7, 27, 0.82);
}

.orbital-name {
  position: absolute;
  right: 1rem;
  top: 0.7rem;
  z-index: 0;
  color: rgba(255, 255, 255, 0.045);
  font-size: 6rem;
  font-weight: 950;
  line-height: 0.82;
  text-align: right;
}

.orbital-name span {
  display: block;
}

.character-frame,
.intro-copy {
  position: relative;
  z-index: 1;
}

.character-frame {
  align-self: stretch;
  margin: 0;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(0, 222, 200, 0.18), transparent),
    #090414;
}

.character-frame img {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  object-fit: cover;
  object-position: center 20%;
}

.intro-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0.5rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1rem;
  max-width: 10ch;
  font-size: 5rem;
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: 2.65rem;
  line-height: 1;
  letter-spacing: 0;
}

.lead {
  max-width: 42rem;
  color: #eee3ff;
  font-size: 1.12rem;
  line-height: 1.65;
}

.button-row {
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.button,
.copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.75rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.button:hover,
.copy-button:hover {
  border-color: rgba(0, 222, 200, 0.55);
  transform: translateY(-1px);
}

.button.primary {
  color: #090414;
  background: linear-gradient(135deg, var(--cyan), var(--violet), var(--soft));
}

.ticker-wave {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100% - 2rem, 1220px);
  margin: 2rem auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
}

.ticker-wave span {
  min-height: 4.5rem;
  padding: 1.25rem;
  color: var(--muted);
  background: rgba(5, 3, 11, 0.75);
  border-right: 1px solid var(--line);
  font-weight: 900;
  text-transform: uppercase;
}

.ticker-wave span:nth-child(2) {
  color: var(--cyan);
}

.vibe-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  width: min(100% - 2rem, 1220px);
  margin: 5rem auto;
}

.vibe-copy {
  align-self: center;
}

.vibe-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.standards-list {
  display: grid;
  gap: 0.8rem;
}

.standards-list div {
  display: grid;
  grid-template-columns: 3rem minmax(8rem, 0.42fr) 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 6rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(154, 76, 255, 0.12), rgba(0, 222, 200, 0.05));
}

.standards-list span {
  color: var(--cyan);
  font-weight: 950;
}

.standards-list strong {
  color: var(--ink);
  text-transform: uppercase;
}

.standards-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.copy-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, 1220px);
  margin: 0 auto 4rem;
  padding: 1.35rem;
  border: 1px solid rgba(0, 222, 200, 0.28);
  background:
    linear-gradient(90deg, rgba(0, 222, 200, 0.12), rgba(154, 76, 255, 0.1)),
    rgba(8, 5, 20, 0.88);
}

.copy-strip h2 {
  margin: 0;
  font-size: 2rem;
}

.copy-strip .eyebrow {
  margin-bottom: 0.35rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 920px) {
  .intro-shell,
  .vibe-section {
    grid-template-columns: 1fr;
  }

  .orbital-name {
    font-size: 4.2rem;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .ticker-wave {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .banner-stage {
    padding: 0;
  }

  .banner-stage img {
    aspect-ratio: 16 / 9;
  }

  .banner-caption {
    position: static;
    justify-content: space-between;
    margin: 0;
    border-radius: 0;
  }

  .intro-shell {
    width: min(100% - 1rem, 1220px);
    padding: 1rem;
  }

  .character-frame img {
    min-height: 20rem;
  }

  h1 {
    font-size: 3rem;
  }

  .lead {
    font-size: 1rem;
  }

  .ticker-wave {
    grid-template-columns: 1fr;
  }

  .standards-list div {
    grid-template-columns: 1fr;
  }

  .copy-strip,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
