:root {
  --bg: #05070b;
  --panel: rgba(255,255,255,.055);
  --line: rgba(255,255,255,.13);
  --text: #f5f7fb;
  --muted: #8f97a6;
  --cyan: #69f7ff;
  --violet: #9275ff;
  --lime: #baff69;
  --shadow: rgba(8, 208, 255, .24);
  --safe-x: max(24px, env(safe-area-inset-left));
  --safe-r: max(24px, env(safe-area-inset-right));
}

* { box-sizing: border-box; }
html { min-width: 320px; background: var(--bg); }
body {
  margin: 0;
  min-height: 100svh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 72% 35%, rgba(105,247,255,.065), transparent 26%),
    radial-gradient(circle at 34% 70%, rgba(146,117,255,.07), transparent 30%),
    linear-gradient(135deg, #040609 0%, #080c12 46%, #05070b 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; }
button, input { font: inherit; }
::selection { background: rgba(105,247,255,.2); color: #fff; }

#network {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .72;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .05;
  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='.6'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.spotlight {
  position: fixed;
  width: 520px;
  height: 520px;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(105,247,255,.1), rgba(146,117,255,.035) 35%, transparent 70%);
  filter: blur(12px);
  transition: left .18s ease-out, top .18s ease-out;
}

.topbar {
  position: relative;
  z-index: 10;
  min-height: 88px;
  padding: 0 var(--safe-r) 0 var(--safe-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(5,7,11,.4);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: .28em;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(105,247,255,.35);
  border-radius: 50%;
  box-shadow: inset 0 0 22px rgba(105,247,255,.06), 0 0 22px rgba(105,247,255,.08);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark i {
  content: "";
  position: absolute;
  width: 2px;
  height: 13px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--cyan), var(--violet));
}

.brand-mark::before { transform: translateX(-6px) rotate(18deg); }
.brand-mark::after { transform: translateX(6px) rotate(-18deg); }
.brand-mark i:nth-child(1) { height: 18px; }
.brand-mark i:nth-child(2) { width: 14px; height: 1px; transform: translateY(8px); opacity: .7; }
.brand-mark i:nth-child(3) { width: 14px; height: 1px; transform: translateY(-8px); opacity: .7; }

.topbar-meta {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.signal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.signal i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 16px var(--lime);
  animation: signalPulse 1.8s ease-in-out infinite;
}

.hero {
  position: relative;
  z-index: 2;
  width: min(100%, 1600px);
  min-height: calc(100svh - 176px);
  margin: 0 auto;
  padding: clamp(62px, 9vh, 110px) var(--safe-r) 52px var(--safe-x);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  align-items: center;
  gap: clamp(38px, 7vw, 110px);
}

.hero-copy {
  max-width: 850px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  color: #aeb5c0;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow i {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.title {
  margin: 0;
  font-size: clamp(56px, 7.2vw, 132px);
  line-height: .86;
  letter-spacing: -.07em;
  font-weight: 630;
}

.title .line {
  display: block;
  white-space: nowrap;
}

.title em,
.title strong {
  font-style: normal;
  font-weight: inherit;
  background: linear-gradient(110deg, #fff 0%, var(--cyan) 48%, #d9cfff 90%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: typeGlow 7s ease-in-out infinite;
}

.title strong {
  background-image: linear-gradient(110deg, #fff, var(--violet) 50%, var(--cyan));
}

.intro {
  max-width: 650px;
  margin: 34px 0 0;
  color: #a9b0bc;
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.7;
  letter-spacing: -.015em;
}

.launch-row {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.launch-pill {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(105,247,255,.2);
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.03));
  border-radius: 999px;
  box-shadow: inset 0 1px rgba(255,255,255,.06), 0 15px 40px rgba(0,0,0,.18);
  backdrop-filter: blur(12px);
}

.launch-pill span {
  color: #fff;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.launch-pill b {
  position: relative;
  padding-left: 15px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 560;
}

.launch-pill b::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.wedding-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  color: #b8c0cc;
  text-decoration: none;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .08em;
  border: 1px solid rgba(255,255,255,.09);
  transition: color .25s ease, border-color .25s ease, transform .25s ease;
}

.wedding-link:hover {
  color: #fff;
  border-color: rgba(255,255,255,.2);
  transform: translateY(-2px);
}

.orbital {
  position: relative;
  width: min(42vw, 580px);
  aspect-ratio: 1;
  justify-self: end;
  border-radius: 50%;
}

.orbital::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(105,247,255,.14), rgba(146,117,255,.06) 38%, rgba(3,6,10,.2) 67%, transparent 70%);
  filter: blur(3px);
}

.orbital-ring {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
}

.ring-a {
  border-style: dashed;
  animation: spin 22s linear infinite;
}
.ring-b {
  inset: 20%;
  border-color: rgba(105,247,255,.3);
  box-shadow: 0 0 38px rgba(105,247,255,.05);
  animation: spinReverse 16s linear infinite;
}
.ring-c {
  inset: 31%;
  border-color: rgba(146,117,255,.28);
  border-style: dotted;
  animation: spin 12s linear infinite;
}

.orbital-core {
  position: absolute;
  z-index: 3;
  inset: 39%;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,.16), transparent 35%),
    linear-gradient(145deg, rgba(105,247,255,.12), rgba(146,117,255,.08));
  box-shadow:
    inset 0 0 30px rgba(105,247,255,.07),
    0 0 70px rgba(105,247,255,.12);
  backdrop-filter: blur(12px);
}

.orbital-core span {
  font-size: clamp(31px, 4vw, 58px);
  font-weight: 780;
  letter-spacing: -.06em;
}

.orbital-core small {
  margin-top: 3px;
  color: var(--cyan);
  font-size: 8px;
  letter-spacing: .28em;
}

.orbit-dot {
  position: absolute;
  z-index: 4;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

.dot-a {
  left: 50%;
  top: 7%;
  animation: dotPulse 2s ease-in-out infinite;
}
.dot-b {
  right: 12%;
  bottom: 25%;
  background: var(--violet);
  box-shadow: 0 0 18px var(--violet);
  animation: dotPulse 2.4s ease-in-out infinite .3s;
}
.dot-c {
  left: 18%;
  bottom: 18%;
  width: 6px;
  height: 6px;
  background: var(--lime);
  box-shadow: 0 0 18px var(--lime);
  animation: dotPulse 1.8s ease-in-out infinite .6s;
}

.orbital-label {
  position: absolute;
  color: #7e8795;
  font-size: 8px;
  letter-spacing: .2em;
}
.label-a { top: 17%; right: 7%; }
.label-b { bottom: 13%; right: 14%; }
.label-c { top: 50%; left: 0; transform: rotate(-90deg); }

.footer {
  position: relative;
  z-index: 10;
  min-height: 88px;
  padding: 0 var(--safe-r) 0 var(--safe-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border-top: 1px solid var(--line);
  background: rgba(5,7,11,.46);
  backdrop-filter: blur(14px);
}

.progress {
  width: min(520px, 55vw);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  color: #818a98;
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.progress-track {
  height: 2px;
  overflow: hidden;
  background: rgba(255,255,255,.09);
}

.progress-track i {
  display: block;
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, var(--violet), var(--cyan), var(--lime));
  box-shadow: 0 0 16px var(--cyan);
  animation: progressBreathe 3.4s ease-in-out infinite;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #727b88;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.clock { color: #b8c0cb; }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal .85s cubic-bezier(.22,1,.36,1) forwards;
}
.eyebrow.reveal { animation-delay: .2s; }
.title .line:nth-child(1) { animation-delay: .34s; }
.title .line:nth-child(2) { animation-delay: .48s; }
.intro.reveal { animation-delay: .64s; }
.launch-row.reveal { animation-delay: .78s; }

@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes signalPulse {
  0%,100% { opacity: .35; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.25); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinReverse { to { transform: rotate(-360deg); } }
@keyframes dotPulse {
  0%,100% { opacity: .35; transform: scale(.75); }
  50% { opacity: 1; transform: scale(1.35); }
}
@keyframes typeGlow {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes progressBreathe {
  0%,100% { opacity: .55; filter: saturate(.8); }
  50% { opacity: 1; filter: saturate(1.3); }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 72px;
  }
  .hero-copy { max-width: 760px; }
  .orbital {
    width: min(86vw, 500px);
    justify-self: center;
    margin-top: 12px;
  }
  .footer { margin-top: 24px; }
}

@media (max-width: 640px) {
  .topbar { min-height: 74px; }
  .topbar-meta .edition { display: none; }
  .signal { font-size: 8px; }
  .brand { font-size: 12px; }
  .brand-mark { width: 30px; height: 30px; }

  .hero {
    padding-top: 52px;
    padding-bottom: 28px;
  }

  .eyebrow {
    margin-bottom: 24px;
    font-size: 8px;
    gap: 10px;
  }
  .eyebrow i { width: 28px; }

  .title {
    font-size: clamp(50px, 16vw, 76px);
    line-height: .9;
  }
  .title .line { white-space: normal; }

  .intro {
    margin-top: 25px;
    font-size: 16px;
  }

  .launch-row {
    align-items: stretch;
    flex-direction: column;
  }
  .launch-pill, .wedding-link {
    width: 100%;
    justify-content: center;
  }

  .orbital {
    width: min(88vw, 390px);
    margin-top: 24px;
  }

  .footer {
    min-height: 96px;
    padding-top: 16px;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
  }
  .progress { width: 100%; }
  .footer-right { justify-content: space-between; }
}

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