:root {
  --bg: #0d1016;
  --panel: #121824;
  --card: rgba(255, 255, 255, 0.04);
  --stroke: rgba(255, 255, 255, 0.08);
  --text: #e8ecf4;
  --muted: #9badc4;
  --accent: #6df3c1;
  --accent-2: #ff7a8a;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 18px;
}

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

body {
  margin: 0;
  background: radial-gradient(circle at 20% 20%, rgba(109, 243, 193, 0.08), transparent 25%),
    radial-gradient(circle at 80% 0%, rgba(255, 122, 138, 0.08), transparent 25%),
    var(--bg);
  color: var(--text);
  font-family: "Work Sans", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 64px;
}

h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", "Work Sans", sans-serif;
  margin: 0;
  color: #f4f7fb;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px 18px;
  margin-bottom: 28px;
  background: rgba(13, 16, 22, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--stroke);
  border-radius: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0d1016;
  font-weight: 700;
  border-radius: 10px;
}

.brand-name {
  font-size: 15px;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  font-size: 14px;
}

.nav-links a {
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.primary,
.ghost,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 16px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.primary {
  background: linear-gradient(135deg, var(--accent), #9af8d7);
  color: #0c1320;
  box-shadow: 0 10px 30px rgba(109, 243, 193, 0.25);
}

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

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

.ghost:hover {
  border-color: #d5e1ff33;
}

.text-link {
  padding: 8px 0;
  color: var(--accent);
  background: none;
}

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

.hero-content h1 {
  font-size: clamp(32px, 5vw, 46px);
  margin: 14px 0 12px;
}

.lead {
  color: var(--muted);
  font-size: 17px;
  max-width: 620px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 22px 0 16px;
  flex-wrap: wrap;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.hero-highlights div {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.03);
}

.metric {
  display: block;
  font-weight: 700;
  font-size: 20px;
}

.caption {
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 380px;
}

.floating-card {
  background: linear-gradient(180deg, rgba(24, 32, 46, 0.9), rgba(18, 24, 36, 0.9));
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 14px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.main-card {
  position: relative;
  z-index: 2;
}

.secondary-card {
  position: absolute;
  bottom: -24px;
  right: -20px;
  width: min(320px, 90%);
  z-index: 1;
}

.card-header {
  display: flex;
  gap: 6px;
  padding: 4px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-flex;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.3);
}

.green {
  background: #6df3c1;
}

.amber {
  background: #ffcc6f;
}

.red {
  background: #ff7a8a;
}

.card-body {
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.badge {
  padding: 6px 10px;
  border-radius: 12px;
  background: rgba(109, 243, 193, 0.12);
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
}

.title {
  font-weight: 600;
  margin: 0;
}

.time {
  color: var(--muted);
  font-size: 13px;
}

.sync {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
}

.success {
  color: var(--accent);
  border-color: rgba(109, 243, 193, 0.3);
}

.muted {
  color: var(--muted);
}

.footer-note {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.spark {
  width: 8px;
  height: 24px;
  background: linear-gradient(180deg, var(--accent), transparent);
  border-radius: 6px;
  display: inline-block;
}

.secondary-card .label {
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 4px;
}

.secondary-card h3 {
  margin: 4px 0 6px;
}

.secondary-card p {
  color: var(--muted);
  font-size: 14px;
}

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

.chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--stroke);
  font-size: 13px;
}

.section {
  margin: 72px 0 32px;
}

.section-header {
  max-width: 760px;
  margin-bottom: 26px;
}

.eyebrow {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 6px;
}

.subtitle {
  color: var(--muted);
  margin-top: 8px;
}

.trust-bar {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 22px;
  align-items: start;
}

.trust-content p {
  color: var(--muted);
  max-width: 420px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.trust-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 16px;
}

.trust-card p {
  color: var(--muted);
  margin-top: 8px;
}

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

.step {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.03);
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #9af8d7);
  color: #0c1320;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}

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

.usecase-card {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: var(--panel);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.usecase-card p {
  margin-top: 8px;
  color: var(--muted);
}

.integrations .chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.price-card {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 18px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.price-card .label {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 6px;
}

.price-card h3 {
  font-size: 28px;
  margin: 0 0 4px;
}

.price-card .per {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  margin-left: 6px;
}

.price-card p {
  color: var(--muted);
  margin-bottom: 14px;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  color: var(--text);
}

.price-card ul li {
  padding: 6px 0;
  border-bottom: 1px solid var(--stroke);
  font-size: 14px;
}

.price-card ul li:last-child {
  border-bottom: none;
}

.ghost-btn {
  background: transparent;
  color: #fff;
  border-color: rgba(109, 243, 193, 0.4);
}

.highlight {
  border: 1px solid rgba(109, 243, 193, 0.4);
  box-shadow: 0 20px 50px rgba(109, 243, 193, 0.15);
}

.highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(109, 243, 193, 0.08), transparent 45%);
  pointer-events: none;
}

.proof .proof-card {
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.quote {
  margin-top: 18px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, 0.2);
}

.quote p {
  margin-bottom: 8px;
  font-size: 18px;
}

.author {
  color: var(--muted);
  font-size: 14px;
}

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

.faq-item {
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.faq-item p {
  margin-top: 8px;
  color: var(--muted);
}

.cta-final .cta-card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 22px;
  background: linear-gradient(135deg, rgba(109, 243, 193, 0.1), rgba(13, 16, 22, 0.8));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

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

.footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 18px 0 8px;
  border-top: 1px solid var(--stroke);
  margin-top: 40px;
  color: var(--muted);
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 14px;
}

.footnote {
  margin: 0;
}

.terms-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 15px;
  color: var(--muted);
}

.terms-content p {
  margin: 0;
}

.terms-content h2 {
  margin: 8px 0 4px;
  color: #f4f7fb;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

.terms-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 6px;
  font-size: 14px;
  color: var(--muted);
}

.terms-table th,
.terms-table td {
  border: 1px solid var(--stroke);
  padding: 10px;
  text-align: left;
}

.terms-table th {
  background: rgba(255, 255, 255, 0.06);
  color: #f4f7fb;
  font-weight: 700;
}

.terms-table tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 900px) {
  .nav {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .nav-actions {
    justify-content: flex-start;
  }

  .hero-visual {
    min-height: auto;
  }

  .secondary-card {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 14px;
  }

  .trust-bar {
    grid-template-columns: 1fr;
  }

  .cta-final .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
