@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700;9..144,800&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  color-scheme: dark;
  --bg: #06131a;
  --bg-deep: #041016;
  --bg-soft: rgba(10, 27, 35, 0.78);
  --surface: rgba(11, 30, 38, 0.78);
  --surface-strong: rgba(14, 36, 46, 0.92);
  --text: #f4fbfd;
  --muted: #a8c0ca;
  --line: rgba(177, 218, 228, 0.16);
  --accent: #74f2c0;
  --accent-strong: #30c7ff;
  --accent-warm: #f0c674;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  font-family: 'Manrope', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(48, 199, 255, 0.2), transparent 35%),
    radial-gradient(circle at 85% 15%, rgba(116, 242, 192, 0.16), transparent 25%),
    linear-gradient(180deg, var(--bg), var(--bg-deep));
  color: var(--text);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 100%);
  opacity: 0.45;
}

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

#root {
  min-height: 100vh;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.ambient {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(12px);
  opacity: 0.6;
}

.ambient-one {
  top: -10rem;
  right: -10rem;
  width: 34rem;
  height: 34rem;
  background: radial-gradient(circle, rgba(116, 242, 192, 0.18), transparent 65%);
}

.ambient-two {
  bottom: 4rem;
  left: -12rem;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(48, 199, 255, 0.16), transparent 65%);
}

.layout {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.25rem 0 4rem;
}

.topbar {
  position: sticky;
  top: 1rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 19, 26, 0.58);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #041018;
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.brand-copy p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy span {
  display: block;
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.nav a {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 1.5rem;
  align-items: stretch;
  padding: 5rem 0 3rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: 'Fraunces', serif;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 7vw, 6.7rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.lead {
  max-width: 58ch;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #041018;
  box-shadow: 0 18px 40px rgba(48, 199, 255, 0.18);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.meta-pill {
  padding: 0.5rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-panel,
.note-panel,
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(12, 29, 37, 0.9), rgba(9, 23, 30, 0.92));
  box-shadow: var(--shadow);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  backdrop-filter: blur(18px);
}

.hero-panel::after {
  content: '';
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(116, 242, 192, 0.28), transparent 65%);
  pointer-events: none;
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.panel-top span:first-child {
  font-weight: 700;
}

.panel-status {
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: rgba(116, 242, 192, 0.12);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.stat {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 7rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.04);
}

.stat strong {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.stat-wide {
  grid-column: span 2;
  display: grid;
  gap: 0.9rem;
  align-content: start;
  background: linear-gradient(
    135deg,
    rgba(116, 242, 192, 0.12),
    rgba(48, 199, 255, 0.08)
  );
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.82rem;
}

.section {
  padding: 1.2rem 0 0;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-heading p {
  max-width: 50ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.card {
  min-height: 100%;
  padding: 1.25rem;
}

.card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.35rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.card .number {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card .number::before {
  content: '';
  display: block;
  width: 1.4rem;
  height: 1px;
  background: var(--accent);
}

.timeline {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1rem;
}

.note-panel {
  padding: 1.3rem;
}

.note-list {
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.note-list li {
  display: flex;
  gap: 0.75rem;
  color: var(--muted);
  line-height: 1.6;
}

.note-list li::before {
  content: '•';
  color: var(--accent);
}

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

.reveal {
  animation: rise 0.8s ease both;
}

.hero-copy.reveal {
  animation-delay: 0.04s;
}

.hero-panel.reveal {
  animation-delay: 0.1s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .topbar {
    position: static;
    border-radius: 24px;
  }

  .nav {
    display: none;
  }

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

  h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .layout {
    width: min(100% - 1rem, 1180px);
  }

  .hero {
    padding-top: 3rem;
  }

  .panel-grid {
    grid-template-columns: 1fr;
  }

  .stat-wide {
    grid-column: span 1;
  }

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

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
