:root {
  --bg: #06111d;
  --panel: rgba(10, 25, 42, 0.88);
  --text: #eef6ff;
  --muted: #a9bdd4;
  --line: rgba(128, 181, 255, 0.18);
  --blue: #1d9bf0;
  --green: #3ed16c;
  --amber: #ffc94a;
  --red: #ff5a5f;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(29, 155, 240, 0.18), transparent 24rem),
    radial-gradient(circle at top left, rgba(62, 209, 108, 0.14), transparent 20rem),
    linear-gradient(180deg, #04101a 0%, #081521 36%, #08131d 100%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(4, 13, 23, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.brand-word {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-weight: 800;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.brand-cric {
  color: #f4f7fb;
}

.brand-node {
  background: linear-gradient(90deg, #1d9bf0 0%, #19c8d8 34%, #52d86b 68%, #ffd84d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.tracker-word {
  display: inline-block;
  color: #ff5a5f;
  font-family: "Brush Script MT", "Segoe Script", "Lucida Handwriting", cursive;
  font-weight: 700;
  font-size: 1.08em;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-shadow: 0 0.08em 0 rgba(0, 0, 0, 0.32);
  white-space: nowrap;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.nav-links a:hover,
.footer-links a:hover {
  color: #ffffff;
}

.hero { padding: 4.75rem 0 2.5rem; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
}

.eyebrow { color: var(--green); margin-bottom: 1rem; }

.hero h1,
.section h2,
.cta-card h2 {
  margin: 0;
  line-height: 1.02;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  letter-spacing: -0.04em;
}

.hero .lede,
.section-copy,
.cta-card p,
.status-card p,
.feature-card p,
.desktop-list div,
.tracker-note {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.05rem;
}

.hero .lede { margin: 1.3rem 0 0; max-width: 42rem; }

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

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

.hero-actions.centered { justify-content: center; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.hero-actions .button,
.launch-actions .button,
.status-actions .button {
  min-width: 220px;
}

.button .brand-word {
  margin: 0 0.28rem;
}

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

.button-primary {
  position: relative;
  overflow: hidden;
  color: #f7fbff;
  border: 1px solid rgba(125, 209, 255, 0.28);
  background: linear-gradient(135deg, #1185d8 0%, #19c8d8 52%, #ffc94a 100%);
  box-shadow: 0 16px 34px rgba(17, 133, 216, 0.28);
}

.button-primary::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.14), transparent 48%);
  pointer-events: none;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.button-coming-soon,
.button-status {
  color: #f7fbff;
  border: 1px solid rgba(29, 155, 240, 0.28);
  background: linear-gradient(180deg, rgba(20, 46, 76, 0.96), rgba(9, 23, 39, 0.96));
  box-shadow: 0 12px 26px rgba(7, 18, 30, 0.28);
}

.button-coming-soon::before,
.button-status::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber), var(--green));
  box-shadow: 0 0 0 0.22rem rgba(255, 201, 74, 0.09);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1.2rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 1rem;
  color: #d8e6f4;
  line-height: 1.5;
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber), var(--green));
}

.hero-visual img {
  width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.status-strip { padding: 1.75rem 0 1.2rem; }

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

.status-card,
.feature-card,
.desktop-card,
.cta-card,
.tracker-note {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.status-card {
  padding: 1.35rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(13, 31, 50, 0.95), rgba(8, 20, 34, 0.92));
}

.status-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 0.75rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-card.live .status-tag { background: rgba(62, 209, 108, 0.14); color: #90ffb0; }
.status-card.soon .status-tag { background: rgba(255, 201, 74, 0.14); color: #ffe18e; }
.status-card.beta .status-tag { background: rgba(29, 155, 240, 0.16); color: #8ecfff; }
.status-card.dev .status-tag { background: rgba(255, 90, 95, 0.12); color: #ff9da1; }

.status-card h2 { margin-top: 1rem; font-size: 1.35rem; line-height: 1.14; }
.status-card p { margin: 0.8rem 0 0; font-size: 0.98rem; }

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

.section { padding: 4.5rem 0; }

.section-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.section-label { color: var(--amber); margin-bottom: 0.8rem; }

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

.feature-card {
  border-radius: 22px;
  padding: 1.3rem;
  background: rgba(10, 24, 39, 0.84);
}

.feature-card h3 { margin: 0 0 0.7rem; font-size: 1.08rem; }
.feature-card p { margin: 0; font-size: 0.96rem; }

.tracker-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: center;
}

.tracker-brand { display: flex; justify-content: center; }
.tracker-brand img { width: min(100%, 260px); border-radius: 32px; box-shadow: var(--shadow); }
.tracker-label { color: var(--blue); }

.tracker-note {
  margin-top: 1.2rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(10, 24, 39, 0.82);
  font-size: 0.98rem;
}

.desktop-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 1.6rem;
  padding: 1.6rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(15, 34, 56, 0.92), rgba(8, 19, 31, 0.92));
}

.desktop-list { display: grid; gap: 0.9rem; align-content: start; }

.desktop-list div {
  border-radius: 18px;
  padding: 1rem 1.05rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.98rem;
}

.cta-card {
  text-align: center;
  padding: 2.2rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(15, 34, 56, 0.96), rgba(8, 20, 34, 0.94));
}

.cta-card h2 { font-size: clamp(2rem, 4vw, 3rem); }
.cta-card p { margin: 1rem auto 0; max-width: 42rem; }

.site-footer { padding: 1.8rem 0 2.4rem; }

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer p,
.footer-links {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; }

@media (max-width: 980px) {
  .hero-grid,
  .section-grid,
  .tracker-grid,
  .desktop-card { grid-template-columns: 1fr; }
  .status-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-list { grid-template-columns: 1fr; }
  .tracker-brand { justify-content: flex-start; }
}

@media (max-width: 700px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0.9rem 0;
  }

  .hero { padding-top: 3.2rem; }
  .hero-points,
  .status-grid { grid-template-columns: 1fr; }
  .footer-row { flex-direction: column; align-items: flex-start; }
}
