:root {
  --bg: #031c28;
  --bg-alt: #0a2e40;
  --card: rgba(6, 33, 47, 0.85);
  --accent: #1fb6e7;
  --accent-dark: #0d89b2;
  --accent-light: rgba(31, 182, 231, 0.18);
  --highlight: #f8d24a;
  --text: #f2f6fa;
  --text-muted: rgba(242, 246, 250, 0.78);
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 60px rgba(3, 13, 19, 0.45);
  --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(120% 120% at 60% 0%, rgba(31, 182, 231, 0.28), transparent 55%), linear-gradient(180deg, #031c28 0%, #020d14 100%);
  color: var(--text);
  font-family: var(--font-family);
  line-height: 1.6;
}

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

a:hover {
  color: var(--highlight);
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 0 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: linear-gradient(90deg, rgba(3, 24, 36, 0.92), rgba(9, 46, 64, 0.75));
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
}

.brand img {
  height: 44px;
  width: auto;
}

.brand span {
  line-height: 1;
  letter-spacing: 0.14em;
  color: var(--highlight);
  transition: color 0.2s ease;
}

.brand:hover span {
  color: var(--text);
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.hero {
  padding: 120px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 5vw, 3.7rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.hero-copy .lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: var(--highlight);
  margin-bottom: 14px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: white;
  box-shadow: var(--shadow);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 30px 70px rgba(13, 137, 178, 0.45);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--text);
  background: transparent;
}

.btn.ghost:hover {
  border-color: var(--highlight);
  color: var(--highlight);
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero-card {
  padding: 28px;
  border-radius: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.hero-card .badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(248, 210, 74, 0.16);
  color: var(--highlight);
  border: 1px solid rgba(248, 210, 74, 0.35);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 18px;
}

.hero-steps li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 14px;
}

.hero-steps li:last-child {
  border-bottom: none;
}


.hero-card .title {
  display: block;
  font-weight: 600;
}

.hero-card .meta {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.section {
  padding: 100px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section h2 {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.section-lead {
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 640px;
}

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

.product-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  display: grid;
  gap: 10px;
  color: var(--text-muted);
}

.product-card {
  padding: 26px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.product-card h3 {
  margin-top: 0;
}

.product-card ul {
  padding-left: 18px;
  color: var(--text-muted);
}

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

.feature {
  padding: 26px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  display: grid;
  gap: 14px;
}

.feature h3 {
  font-size: 1.35rem;
  margin: 0;
}

.feature ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
}

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

.integration-card {
  padding: 22px;
  border-radius: 16px;
  border: 1px solid rgba(31, 182, 231, 0.14);
  background: rgba(8, 36, 51, 0.68);
  min-height: 150px;
}

.integration-card .label {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-light);
  border: 1px solid rgba(31, 182, 231, 0.3);
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}

.approach {
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.approach-card {
  padding: 28px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.approach-card blockquote {
  margin: 0 0 18px;
  font-size: 1.1rem;
  color: var(--text);
}

.approach-card cite {
  color: var(--text-muted);
  font-style: normal;
  font-size: 0.9rem;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: start;
}

.support-card {
  padding: 28px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.support-card p {
  color: var(--text-muted);
}

.cta {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(120deg, rgba(31, 182, 231, 0.22), rgba(8, 40, 57, 0.94));
  border-top: 1px solid rgba(31, 182, 231, 0.18);
}

.cta h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.cta p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.site-footer {
  padding: 60px 0 40px;
  background: #020f18;
  border-top: 1px solid rgba(31, 182, 231, 0.12);
}

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

.footer-grid h4 {
  margin: 0 0 12px;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
  display: grid;
  gap: 8px;
}

.footer-note {
  margin-top: 36px;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

@media (max-width: 720px) {
  .nav {
    gap: 16px;
    font-size: 0.85rem;
  }

  .hero {
    padding: 88px 0 72px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .site-header .container {
    flex-direction: column;
    gap: 12px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    height: 38px;
  }
}

body.legal {
  background: var(--bg);
}

.legal-content {
  padding: 120px 0 100px;
}

.legal-content h1 {
  font-size: clamp(2.1rem, 5vw, 3rem);
  margin-bottom: 12px;
}

.effective-date {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.legal-content h2 {
  margin-top: 42px;
  font-size: 1.35rem;
}

.legal-content p,
.legal-content ul {
  color: var(--text-muted);
}

.legal-content ul {
  margin: 12px 0;
  padding-left: 20px;
}

.legal-note {
  margin-top: 48px;
  padding: 18px 22px;
  border-radius: 14px;
  background: rgba(31, 182, 231, 0.16);
  color: var(--text);
  border: 1px solid rgba(31, 182, 231, 0.35);
}

.case-study {
  display: grid;
  gap: 12px;
  color: var(--text-muted);
}

.case-study p {
  margin: 0;
}

.case-study p strong {
  color: var(--text);
}

.case-note {
  font-size: 0.9rem;
}

.hero-steps .title {
  color: var(--text);
}
