:root {
  --bg: #020617;
  --bg-elevated: #020617;
  --bg-card: #020617;
  --bg-soft: #020617;
  --accent: #22c55e;
  --accent-soft: rgba(34, 197, 94, 0.1);
  --accent-strong: #16a34a;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --text-soft: #6b7280;
  --border-subtle: rgba(148, 163, 184, 0.25);
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.85);
  --radius-lg: 18px;
  --radius-xl: 28px;
  --max-width: 1120px;
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont,
    'Segoe UI', sans-serif;
}

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

body {
  font-family: var(--font-sans);
  background: radial-gradient(circle at top, #0f172a 0, #020617 55%, #000 100%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.shell {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 1.5rem 3rem;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0 2rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.98),
    rgba(15, 23, 42, 0.82)
  );
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(20px);
  position: sticky;
  top: 0.75rem;
  z-index: 20;
}

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

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 40%;
  background:
    conic-gradient(from 160deg, #22c55e, #4ade80, #22c55e, #16a34a);
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.9),
    0 0 25px rgba(34, 197, 94, 0.3);
}

.brand-mark-inner {
  width: 100%;
  height: 100%;
  border-radius: 40%;
  background: radial-gradient(circle at 30% 0, #22c55e 0, #020617 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #bbf7d0;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e5e7eb;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: var(--text-soft);
}

nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

nav a {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.18s ease-out;
  cursor: pointer;
}

nav a:hover {
  border-color: rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.95);
  color: #f9fafb;
}

.nav-pill {
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.5);
  background: linear-gradient(
    120deg,
    rgba(34, 197, 94, 0.12),
    rgba(15, 23, 42, 0.12)
  );
  color: #bbf7d0;
  font-weight: 500;
}

main {
  flex: 1;
  margin-top: 1rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3.25rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.2rem 0.7rem 0.2rem 0.25rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: radial-gradient(circle at 0 0, #22c55e33 0, #020617 65%);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.hero-badge-dot {
  width: 21px;
  height: 21px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-badge-dot-inner {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
}

.hero-title {
  font-size: clamp(2.35rem, 3vw + 1rem, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.hero-title span {
  background: linear-gradient(120deg, #bbf7d0, #22c55e);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-lede {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 36rem;
  margin-bottom: 1.4rem;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--text-soft);
  border-left: 2px solid rgba(148, 163, 184, 0.6);
  padding-left: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero-note strong {
  color: #e5e7eb;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease-out;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #052e16;
  box-shadow: 0 18px 40px rgba(34, 197, 94, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 50px rgba(34, 197, 94, 0.6);
  filter: brightness(1.02);
}

.btn-ghost {
  border-color: rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.7);
  color: var(--text-main);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.95);
  border-color: rgba(148, 163, 184, 0.9);
}

.btn-icon {
  margin-left: 0.45rem;
  font-size: 1.1rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-meta-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

/* Hero card */

.hero-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.55);
  background:
    radial-gradient(circle at 0 0, #22c55e1a 0, #020617 52%),
    radial-gradient(circle at 100% 100%, #0ea5e91c 0, #020617 55%);
  padding: 1.5rem 1.4rem 1.6rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-soft);
  margin-bottom: 0.55rem;
}

.hero-card-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: #f9fafb;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.metric-pill {
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-size: 0.75rem;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.metric-pill span:first-child {
  color: var(--text-muted);
}

.metric-pill span:last-child {
  font-weight: 600;
  color: #bbf7d0;
}

.hero-kv {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-top: 0.45rem;
}

.hero-card-body {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-bottom: 0.9rem;
}

.hero-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.75rem;
  color: var(--text-muted);
  gap: 1rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.85);
}

.soon-pill {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.7);
  background: rgba(34, 197, 94, 0.08);
  color: #bbf7d0;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}

.soon-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.7);
}

/* Sections */

section {
  margin-bottom: 3rem;
}

section h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

section p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.section-lede {
  max-width: 40rem;
  margin-bottom: 1.4rem;
}

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

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

.card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: rgba(15, 23, 42, 0.95);
  padding: 1.25rem 1.3rem;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.7);
}

.card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
}

.card p {
  font-size: 0.86rem;
  color: var(--text-soft);
}

.pill-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-soft);
  margin-bottom: 0.7rem;
}

.list {
  margin-top: 0.7rem;
  padding-left: 1rem;
}

.list li {
  font-size: 0.86rem;
  color: var(--text-soft);
  margin-bottom: 0.3rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.75rem;
  align-items: flex-start;
}

.highlight {
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(148, 163, 184, 0.6);
  background: radial-gradient(circle at 0 0, #22c55e0f 0, #020617 60%);
  padding: 1rem 1.1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.highlight strong {
  color: #e5e7eb;
  font-weight: 600;
}

.callout {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(34, 197, 94, 0.6);
  background: radial-gradient(circle at 0 0, #22c55e1a 0, #022c22 55%);
  padding: 1.75rem 1.6rem;
  box-shadow: 0 18px 42px rgba(21, 128, 61, 0.55);
}

.callout h2 {
  margin-bottom: 0.45rem;
}

.callout p {
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.callout-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  font-size: 0.85rem;
  color: #dcfce7;
}

.contact-note {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-top: 0.4rem;
}

footer {
  border-top: 1px solid rgba(31, 41, 55, 0.85);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--text-soft);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
}

footer a {
  color: var(--text-muted);
}

footer a:hover {
  color: #e5e7eb;
}

/* Responsive */

@media (max-width: 900px) {
  header {
    border-radius: 20px;
    padding-inline: 1rem;
  }

  nav {
    display: none;
  }

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

  .hero-card {
    order: -1;
  }
}

@media (max-width: 768px) {
  .shell {
    padding-inline: 1rem;
  }

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

  .hero {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 480px) {
  header {
    margin-top: 0.75rem;
  }

  .hero-title {
    font-size: 2.1rem;
  }

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

  .hero-card-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
