*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f2e8dd;
  --bg-elevated: rgba(255, 255, 255, 0.8);
  --text-main: #14161c;
  --text-soft: #4c4f5c;
  --accent: #151722;
  --accent-soft: rgba(21, 23, 34, 0.08);
  --pill-bg: rgba(21, 23, 34, 0.06);
  --border-subtle: rgba(21, 23, 34, 0.08);
  --radius-lg: 24px;
  --radius-md: 999px;
  --shadow-soft: 0 18px 45px rgba(15, 12, 5, 0.20);
  --shadow-card: 0 18px 40px rgba(15, 12, 5, 0.16);
  --transition-fast: 180ms ease-out;
  --transition-med: 260ms ease-out;
}

html, body {
  height: 100%;
}

body {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #f9f1ea 0%, #efe1d1 40%, #e5d2bf 75%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

.page-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(32px);
  opacity: 0.7;
  mix-blend-mode: multiply;
  animation: float 16s infinite alternate ease-in-out;
}

.orb--one {
  width: 360px;
  height: 360px;
  top: -80px;
  right: -40px;
  background: radial-gradient(circle at 30% 30%, #ffe6b8, #f0b6b0 60%, #bf8ad7 100%);
}

.orb--two {
  width: 260px;
  height: 260px;
  bottom: -60px;
  left: -40px;
  background: radial-gradient(circle at 20% 20%, #f0b6b0, #e4a5ff 60%, #7fb6ff 100%);
  animation-delay: 2s;
}

.orb--three {
  width: 220px;
  height: 220px;
  bottom: 120px;
  right: 15%;
  background: radial-gradient(circle at 10% 0%, #fff0c2, #f8b7b2 50%, #b4a5ff 100%);
  animation-delay: 4s;
}

@keyframes float {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(20px, -30px, 0); }
}

.page {
  min-height: 100vh;
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 20px 40px;
  position: relative;
  z-index: 1;
}

/* Nav */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 44px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  height: 40px;
  width: auto;
  display: block;
}

.pill {
  border-radius: 999px;
  padding: 6px 14px;
  background: var(--pill-bg);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #12b981;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
}

.nav-link {
  color: var(--text-soft);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast), background-color var(--transition-fast), transform var(--transition-fast);
}

.nav-link:hover,
.nav-link:focus-visible {
  border-color: var(--border-subtle);
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  margin-bottom: 52px;
}

.hero-left h1 {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 10px;
}

.hero-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 520px;
  margin-bottom: 22px;
}

.highlight {
  font-weight: 600;
  color: var(--accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background-color var(--transition-med), color var(--transition-med), box-shadow var(--transition-med), transform var(--transition-med), border-color var(--transition-med);
}

.btn span {
  transform: translateY(0.5px);
}

.btn--primary {
  background: #151722;
  color: #fdf7f0;
  box-shadow: var(--shadow-soft);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(11, 10, 19, 0.45);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.5);
  color: var(--accent);
  border-color: var(--border-subtle);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.small-note {
  font-size: 13px;
  color: var(--text-soft);
}

.small-note a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(20, 22, 28, 0.18);
}

.small-note a:hover {
  border-bottom-color: transparent;
}

/* Right side cards */

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.glass {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.75));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(22px);
}

.status-card {
  padding: 18px 18px 16px;
}

.status-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.status-label {
  font-size: 13px;
  color: var(--text-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-pill {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  font-size: 12px;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dot--pulse {
  animation: pulse 1.4s infinite ease-out;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

.status-body p {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 8px;
}

.status-body ul {
  padding-left: 18px;
  font-size: 13px;
  color: var(--text-soft);
  display: grid;
  gap: 4px;
}

.status-footer {
  margin-top: 14px;
}

.progress {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(20, 22, 28, 0.08);
  overflow: hidden;
  margin-bottom: 6px;
}

.progress-bar {
  width: 68%;
  height: 100%;
  background: linear-gradient(90deg, #151722, #6b4bff, #f09f7b);
  border-radius: inherit;
  position: relative;
  overflow: hidden;
}

.progress-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.9), transparent 40%, transparent 60%, rgba(255, 255, 255, 0.7));
  mix-blend-mode: screen;
  animation: shimmer 1.6s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.eta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-soft);
}

.eta span {
  font-weight: 600;
  color: var(--accent);
}

.side-card {
  padding: 14px 16px 14px;
}

.side-title {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 4px;
}

.side-text {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 8px;
}

.side-link {
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.side-link:hover {
  text-decoration: underline;
}

/* Grid section */

.grid-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 44px;
}

.grid-item {
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 30px rgba(15, 12, 5, 0.12);
}

.grid-item h2 {
  font-family: "Space Grotesk", system-ui;
  font-size: 17px;
  margin-bottom: 8px;
}

.grid-item p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-soft);
}

.grid-caption {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(76, 79, 92, 0.9);
}

/* Logos section */

.logos-section {
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(21, 23, 34, 0.92);
  color: #f8f2ea;
  box-shadow: 0 22px 55px rgba(9, 5, 2, 0.7);
  margin-bottom: 46px;
}

.logos-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248, 242, 234, 0.7);
  margin-bottom: 10px;
}

.logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.logo-chip {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(248, 242, 234, 0.06);
  border: 1px solid rgba(248, 242, 234, 0.26);
  font-size: 12px;
}

.logos-note {
  font-size: 12px;
  color: rgba(248, 242, 234, 0.82);
}

/* Footer */

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(20, 22, 28, 0.1);
  font-size: 12px;
  color: var(--text-soft);
}

.footer-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-right {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-link {
  color: var(--text-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.footer-link:hover,
.footer-link:focus-visible {
  border-bottom-color: rgba(20, 22, 28, 0.26);
}

/* Animations on scroll */

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 340ms ease-out, transform 340ms ease-out;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .nav-right {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-right {
    order: 2;
  }

  .hero-left {
    order: 1;
  }

  .grid-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .page {
    padding-inline: 18px;
  }
}

@media (max-width: 600px) {
  .page {
    padding-top: 22px;
    padding-inline: 16px;
  }

  .nav {
    margin-bottom: 28px;
  }

  .logo {
    height: 34px;
  }

  .hero {
    margin-bottom: 34px;
  }

  .hero-text {
    font-size: 14px;
  }

  .status-card,
  .side-card,
  .grid-item,
  .logos-section {
    box-shadow: 0 10px 26px rgba(15, 12, 5, 0.16);
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
  }

  .logos-section {
    margin-bottom: 30px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
