
:root {
  --bg: #07111f;
  --bg-2: #0d1b33;
  --card: rgba(255, 255, 255, 0.075);
  --card-border: rgba(255, 255, 255, 0.14);
  --text: #eef6ff;
  --muted: #a9bad4;
  --blue: #35c8ff;
  --violet: #7c5cff;
  --pink: #ff4fad;
  --green: #44d7a8;
  --warning: #ffd166;
  --shadow: 0 24px 80px rgba(0,0,0,.35);
  --radius: 24px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 5%, rgba(53, 200, 255, .24), transparent 32rem),
    radial-gradient(circle at 80% 0%, rgba(255, 79, 173, .22), transparent 28rem),
    linear-gradient(180deg, #06101e 0%, #081426 48%, #060b14 100%);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(6, 16, 30, .72);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -.02em; }
.logo-mark {
  width: 42px; height: 42px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--violet) 55%, var(--pink));
  box-shadow: 0 12px 28px rgba(124, 92, 255, .35);
  position: relative;
}
.logo-mark::before {
  content: "";
  width: 22px; height: 22px;
  border: 2px solid white;
  border-radius: 6px;
  box-shadow: inset 0 5px 0 rgba(255,255,255,.26);
}
.logo-mark::after {
  content: "";
  position: absolute;
  width: 16px; height: 2px;
  background: white;
  top: 16px;
  border-radius: 99px;
}
.nav-links { display: flex; align-items: center; gap: 22px; color: var(--muted); font-size: 14px; }
.nav-links a:hover { color: white; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.mobile-toggle { display: none; background: none; border: 0; color: white; font-size: 26px; }

.btn {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  transition: transform .2s ease, background .2s ease, border .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--violet) 50%, var(--pink));
  border-color: transparent;
  color: white;
  box-shadow: 0 14px 32px rgba(124, 92, 255, .30);
}
.btn-secondary { background: rgba(255,255,255,.07); color: white; }
.btn-ghost { color: var(--muted); }

.hero { padding: 96px 0 72px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.eyebrow {
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: #cfe4ff;
  background: rgba(255,255,255,.06);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 20px;
}
h1 { font-size: clamp(44px, 7vw, 82px); line-height: .96; margin: 0 0 22px; letter-spacing: -.065em; }
.gradient-text { background: linear-gradient(135deg, #fff, #bdefff 36%, #d7ceff 70%, #ffc0df); -webkit-background-clip: text; color: transparent; }
.lead { font-size: clamp(18px, 2.1vw, 22px); line-height: 1.65; color: var(--muted); margin: 0 0 30px; max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.trust-row { display: flex; gap: 18px; flex-wrap: wrap; color: var(--muted); font-size: 14px; }
.trust-row span::before { content: "✓"; color: var(--green); margin-right: 8px; font-weight: 900; }

.product-card {
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.045));
  border: 1px solid var(--card-border);
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 18px;
  position: relative;
}
.window-bar { display: flex; gap: 8px; padding: 6px 8px 14px; }
.dot { width: 11px; height: 11px; border-radius: 50%; background: #ff5f57; }
.dot:nth-child(2) { background: #ffbd2e; }
.dot:nth-child(3) { background: #28c840; }
.calendar-ui { background: rgba(4, 12, 24, .76); border-radius: 24px; padding: 22px; border: 1px solid rgba(255,255,255,.09); }
.cal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.cal-title { font-weight: 800; }
.pill { padding: 6px 10px; border-radius: 999px; background: rgba(68,215,168,.14); color: #8dffd8; font-size: 12px; font-weight: 800; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; }
.day { min-height: 62px; border-radius: 14px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.08); padding: 8px; font-size: 12px; color: var(--muted); }
.event { margin-top: 8px; height: 8px; border-radius: 99px; background: linear-gradient(90deg, var(--blue), var(--violet)); }
.event.pink { background: linear-gradient(90deg, var(--violet), var(--pink)); }
.event.green { background: linear-gradient(90deg, var(--green), var(--blue)); }
.side-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 16px; }
.metric { background: rgba(255,255,255,.065); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 14px; }
.metric strong { display: block; font-size: 22px; }
.metric span { color: var(--muted); font-size: 12px; }

.section { padding: 78px 0; }
.section-header { text-align: center; max-width: 760px; margin: 0 auto 42px; }
.section-header h2 { font-size: clamp(34px, 4vw, 54px); margin: 0 0 14px; letter-spacing: -.045em; }
.section-header p { color: var(--muted); font-size: 18px; line-height: 1.7; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 26px;
  min-height: 220px;
}
.card-icon { width: 48px; height: 48px; border-radius: 15px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(53,200,255,.28), rgba(255,79,173,.20)); font-size: 22px; margin-bottom: 18px; }
.card h3 { margin: 0 0 10px; font-size: 20px; }
.card p { margin: 0; color: var(--muted); line-height: 1.65; }

.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: center; }
.panel { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 28px; padding: 30px; }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.check-list li { color: var(--muted); line-height: 1.6; }
.check-list li::before { content: "✓"; color: var(--green); font-weight: 900; margin-right: 10px; }
.integration-card { display: grid; gap: 14px; }
.integration-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px; background: rgba(255,255,255,.06); border-radius: 18px; border: 1px solid rgba(255,255,255,.08); }
.badge { color: #d6e7ff; background: rgba(53,200,255,.12); border: 1px solid rgba(53,200,255,.22); padding: 6px 10px; border-radius: 999px; font-size: 12px; font-weight: 800; }

.cta { text-align: center; background: linear-gradient(135deg, rgba(53,200,255,.14), rgba(124,92,255,.13), rgba(255,79,173,.12)); border: 1px solid rgba(255,255,255,.14); border-radius: 32px; padding: 52px 26px; box-shadow: var(--shadow); }
.cta h2 { font-size: clamp(32px, 4vw, 54px); margin: 0 0 14px; letter-spacing: -.045em; }
.cta p { color: var(--muted); margin: 0 auto 28px; max-width: 690px; line-height: 1.7; }

.site-footer { border-top: 1px solid rgba(255,255,255,.1); padding: 34px 0; color: var(--muted); }
.footer-grid { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a:hover { color: white; }

.legal-page { padding: 66px 0; }
.legal-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 28px; padding: clamp(24px, 4vw, 44px); max-width: 900px; margin: 0 auto; }
.legal-card h1 { font-size: clamp(34px, 5vw, 58px); line-height: 1.05; }
.legal-card h2 { margin-top: 34px; }
.legal-card p, .legal-card li { color: var(--muted); line-height: 1.8; }
.legal-card code { background: rgba(255,255,255,.08); padding: 2px 6px; border-radius: 6px; }

@media (max-width: 900px) {
  .hero-grid, .split { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav.open .nav-links { display: flex; position: absolute; top: 76px; left: 20px; right: 20px; flex-direction: column; align-items: flex-start; background: #0a1729; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; padding: 18px; }
  .nav-cta .btn-ghost { display: none; }
  .side-metrics { grid-template-columns: 1fr; }
}
