:root {
  --ink: #f7fbff;
  --muted: #aeb9ff;
  --space: #030412;
  --panel: rgba(5, 10, 31, 0.76);
  --edge: rgba(127, 231, 255, 0.26);
  --cyan: #19f6ff;
  --blue: #1e5cff;
  --violet: #7a2cff;
  --purple: #b95cff;
  --white: #f8ffff;
  --radius: 8px;
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 12%, rgba(122, 44, 255, 0.35), transparent 32rem),
    radial-gradient(circle at 88% 18%, rgba(25, 246, 255, 0.14), transparent 30rem),
    linear-gradient(150deg, #02030c 0%, #06051a 48%, #02020b 100%);
  overflow-x: hidden;
}

body::after {
  position: fixed;
  inset: -20vh auto auto -12vw;
  z-index: -2;
  width: 78vw;
  height: 130vh;
  content: "";
  background: linear-gradient(115deg, transparent, rgba(25, 246, 255, 0.16), rgba(122, 44, 255, 0.22), transparent);
  filter: blur(18px);
  opacity: 0.78;
  transform: rotate(-28deg);
}

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

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

button {
  font: inherit;
}

.starfield {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.78) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(25, 246, 255, 0.58) 0 1px, transparent 1.3px);
  background-position:
    0 0,
    41px 63px;
  background-size:
    132px 132px,
    205px 205px;
  opacity: 0.28;
}

.header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1190px, calc(100% - 32px));
  padding: 10px;
  border: 1px solid var(--edge);
  border-radius: var(--radius);
  background: rgba(3, 4, 18, 0.68);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand,
.socials,
.actions,
.dock-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 0;
}

.brand-icon {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0 18%, var(--cyan) 20% 52%, rgba(122, 44, 255, 0.95) 54% 100%);
  box-shadow: 0 0 34px rgba(25, 246, 255, 0.45);
}

.brand-icon::before {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 7px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--violet), var(--cyan));
  transform: rotate(-42deg);
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand small {
  color: var(--muted);
}

.socials {
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.socials a,
.actions a,
.dock-links a,
.copy-ticket {
  min-height: 42px;
  border: 1px solid rgba(137, 234, 255, 0.28);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(7, 16, 42, 0.72);
  font-weight: 850;
  letter-spacing: 0;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
}

.socials a:hover,
.actions a:hover,
.dock-links a:hover,
.copy-ticket:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.66);
  background: rgba(20, 42, 88, 0.78);
  box-shadow: 0 0 34px rgba(25, 246, 255, 0.24);
}

main {
  width: min(1190px, calc(100% - 32px));
  margin: 0 auto;
}

.impact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: clamp(18px, 3vw, 40px);
  align-items: center;
  min-height: 100vh;
  padding: 116px 0 58px;
}

.impact-visual {
  position: relative;
  min-height: auto;
  aspect-ratio: 2172 / 724;
  border: 1px solid var(--edge);
  border-radius: var(--radius);
  background: #020412;
  overflow: hidden;
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.44), 0 0 90px rgba(25, 246, 255, 0.18);
}

.impact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.impact-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 4, 18, 0.08), transparent 52%, rgba(3, 4, 18, 0.22)),
    repeating-linear-gradient(110deg, transparent 0 18px, rgba(255, 255, 255, 0.05) 18px 19px);
  pointer-events: none;
}

.impact-copy {
  min-width: 0;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(137, 234, 255, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(140deg, rgba(25, 246, 255, 0.12), transparent 32%),
    linear-gradient(310deg, rgba(122, 44, 255, 0.24), transparent 38%),
    rgba(4, 8, 26, 0.8);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 100%;
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 4vw, 3.65rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.ticker {
  display: inline-flex;
  margin: 0 0 22px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  color: #03121c;
  background: linear-gradient(105deg, var(--white), var(--cyan), var(--purple));
  font-weight: 950;
  box-shadow: 0 0 34px rgba(25, 246, 255, 0.3);
}

.summary {
  margin-bottom: 26px;
  color: #d8e7ff;
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  line-height: 1.7;
}

.actions {
  gap: 10px;
  flex-wrap: wrap;
}

.actions a,
.dock-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
}

.actions .primary {
  color: #02111d;
  background: linear-gradient(120deg, #fff, var(--cyan), var(--violet));
  border-color: rgba(255, 255, 255, 0.66);
}

.trajectory-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
  padding: clamp(42px, 8vw, 92px) 0;
}

.meteor-card {
  position: relative;
  margin: 0;
  padding: 10px;
  border: 1px solid var(--edge);
  border-radius: var(--radius);
  background: rgba(8, 15, 42, 0.72);
  box-shadow: 0 0 70px rgba(122, 44, 255, 0.22);
}

.meteor-card::before {
  position: absolute;
  inset: 18% -18% auto 18%;
  z-index: -1;
  height: 55%;
  content: "";
  border-radius: 50%;
  background: linear-gradient(90deg, transparent, rgba(25, 246, 255, 0.34), rgba(122, 44, 255, 0.28));
  filter: blur(30px);
  transform: rotate(-32deg);
}

.meteor-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  object-fit: cover;
}

.trajectory-copy h2,
.dock h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5.7vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.trajectory-copy p:not(.eyebrow) {
  max-width: 64ch;
  margin-bottom: 24px;
  color: #d5defa;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.78;
}

.copy-ticket {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
  cursor: pointer;
}

.copy-ticket span {
  color: var(--muted);
}

.readouts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.readouts article {
  min-height: 218px;
  padding: 24px;
  border: 1px solid var(--edge);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(13, 29, 72, 0.76), rgba(5, 9, 28, 0.86)),
    var(--panel);
}

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

.readouts h3 {
  margin: 24px 0 10px;
  font-size: 1.55rem;
}

.readouts p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.dock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: clamp(44px, 7vw, 82px) 0 38px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(137, 234, 255, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(100deg, rgba(25, 246, 255, 0.15), rgba(122, 44, 255, 0.18), transparent),
    repeating-linear-gradient(115deg, transparent 0 18px, rgba(255, 255, 255, 0.04) 18px 19px),
    rgba(4, 8, 26, 0.82);
}

.dock h2 {
  max-width: 11ch;
  margin-bottom: 0;
}

.dock-links {
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.dock-links a {
  min-width: 116px;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  width: min(1190px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 36px;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 940px) {
  .impact-hero,
  .trajectory-panel,
  .readouts {
    grid-template-columns: 1fr;
  }

  .impact-copy {
    order: -1;
  }

  .dock {
    align-items: flex-start;
    flex-direction: column;
  }

  .dock-links {
    justify-content: flex-start;
  }
}

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

  .socials {
    justify-content: stretch;
  }

  .socials a {
    flex: 1;
  }

  .impact-hero {
    padding-top: 156px;
  }

  h1 {
    font-size: clamp(2.3rem, 11vw, 3.4rem);
  }

  .actions a,
  .dock-links a,
  .copy-ticket {
    width: 100%;
  }
}
