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

:root {
  --bg: #0c0f14;
  --bg-soft: #141925;
  --card: #171c27;
  --ink: #eef2f7;
  --muted: #9aa4b2;
  --accent: #27f3c2;
  --accent-2: #7ee1ff;
  --stroke: rgba(255, 255, 255, 0.08);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

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

body {
  font-family: 'Space Grotesk', sans-serif;
  background: radial-gradient(circle at top, #101623 0%, #0c0f14 55%);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}

.wrap {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: -3;
}

.bg-orb {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  z-index: -2;
}

.orb-a {
  background: rgba(39, 243, 194, 0.4);
  top: -140px;
  right: -120px;
  animation: drift 18s ease-in-out infinite;
}

.orb-b {
  background: rgba(126, 225, 255, 0.35);
  bottom: -180px;
  left: -120px;
  animation: drift 22s ease-in-out infinite reverse;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -30px); }
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stroke);
  z-index: 20;
  background: rgba(12, 15, 20, 0.8);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 44px;
  height: 44px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  display: flex;
  gap: 12px;
}

button {
  font-family: inherit;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.2);
}

.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #0b0f14;
  border: none;
}

.secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--stroke);
}

.ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid transparent;
}

.hero {
  padding: 90px 0 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin-bottom: 18px;
  line-height: 1.1;
}

.subhead {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-metrics {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.metric {
  font-size: 1.5rem;
  font-weight: 600;
  display: block;
}

.label {
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  color: var(--muted);
}

.tag {
  border: 1px solid var(--stroke);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.terminal {
  background: #0b0f14;
  border-radius: 12px;
  padding: 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  border: 1px solid var(--stroke);
}

.terminal .line {
  padding: 6px 0;
}

.dim {
  color: var(--muted);
  display: inline-block;
  width: 70px;
}

.chip-row {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.chip {
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.8rem;
  color: var(--muted);
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-family: 'Fraunces', serif;
  margin-bottom: 12px;
}

.section-title p {
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.product-card li::before {
  content: "- ";
}

.product-card.highlight {
  border-color: rgba(39, 243, 194, 0.5);
  background: linear-gradient(160deg, rgba(39, 243, 194, 0.15), rgba(23, 28, 39, 0.9));
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.step {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 24px;
}

.step-num {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 28px;
  text-align: left;
}

.price-card.featured {
  border-color: rgba(126, 225, 255, 0.6);
  background: linear-gradient(160deg, rgba(126, 225, 255, 0.18), rgba(23, 28, 39, 0.9));
}

.price {
  font-size: 2rem;
  margin: 18px 0;
}

.price span {
  font-size: 0.95rem;
  color: var(--muted);
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.pricing-note {
  margin-top: 20px;
  text-align: center;
  color: var(--muted);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.security-item {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 22px;
}

.cta {
  padding-bottom: 120px;
}

.cta-card {
  background: linear-gradient(120deg, rgba(39, 243, 194, 0.2), rgba(126, 225, 255, 0.2));
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
}

.site-footer {
  border-top: 1px solid var(--stroke);
  padding: 40px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.site-footer a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  margin-top: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

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

  .nav {
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 60px;
  }
}
