:root {
  --bg: #0b1115;
  --text: #e2e8f0;
  --muted: #94a3b8;
  --accent: #67d5c7;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  min-height: 100%;
}
body {
  font-family: Inter, system-ui, sans-serif;
  background: linear-gradient(180deg, #081017, #0b1115);
  color: var(--text);
  line-height: 1.6;
}
.page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  filter: saturate(0.9) contrast(1.05);
  transform: scale(1.02);
}
.shade {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at top,
      rgba(103, 213, 199, 0.12),
      transparent 45%
    ),
    linear-gradient(180deg, rgba(8, 16, 23, 0.35), rgba(11, 17, 21, 0.92));
}
.container {
  position: relative;
  z-index: 1;
  max-width: 720px;
  width: 100%;
  margin-top: 150px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.95rem;
}

h1 {
  margin: 30px 0px;
  font-size: clamp(2.8rem, 8vw, 4.8rem);
  letter-spacing: -0.05em;
}
p {
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 58ch;
}
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 26px 0 28px;
}
.chip {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #dbe7ee;
  font-size: 0.95rem;
}
.actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}
.primary {
  background: linear-gradient(135deg, var(--accent), #99eadf);
  color: #061014;
}
.ghost {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}
.contact {
  margin-top: 24px;
  font-size: 0.98rem;
  color: var(--muted);
}
.contact a {
  color: #9ae7dd;
  text-decoration: none;
}
.credit {
  margin-top: 30px;
  font-size: 0.86rem;
  color: #6b7c8f;
}
.nav {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.brand {
  font-weight: 800;
  letter-spacing: 0.04em;
}
@media (max-width: 640px) {
  .nav {
    justify-content: center;
  }
  .brand {
    display: none;
  }
  .eyebrow {
    font-size: 0.88rem;
  }
}
