:root {
  --blue-900: #062347;
  --blue-800: #0a2e5f;
  --blue-700: #0d4aa6;
  --blue-600: #0e5fe2;
  --blue-500: #1e74ff;
  --blue-200: #d6e6ff;
  --sky: #edf4ff;
  --ink: #0f1d32;
  --muted: #4d5f7a;
  --accent: #f7b500;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(8, 32, 76, 0.18);
}

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

body {
  font-family: "Work Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #f4f8ff 0%, #ffffff 50%);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

button {
  border: none;
  cursor: pointer;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.container {
  width: min(1140px, 90vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(12, 60, 150, 0.08);
}

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

.brand img {
  height: 36px;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-weight: 500;
  font-size: 15px;
  color: var(--muted);
}

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

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

.primary {
  background: var(--blue-600);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 15px;
  box-shadow: 0 16px 30px rgba(17, 90, 230, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(17, 90, 230, 0.35);
}

.ghost {
  background: transparent;
  color: var(--blue-700);
  border: 1px solid rgba(13, 74, 166, 0.24);
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 15px;
}

.ghost:hover {
  background: rgba(13, 74, 166, 0.08);
}

.hero {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 55% -10% -10% -10%;
  background: radial-gradient(circle at top, rgba(13, 95, 226, 0.2), transparent 55%),
    linear-gradient(120deg, rgba(13, 95, 226, 0.16), rgba(255, 255, 255, 0));
  border-radius: 60% 60% 0 0;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2.6rem, 3vw + 1.6rem, 4rem);
  line-height: 1.05;
  margin: 18px 0;
}

.hero-copy .accent {
  color: var(--blue-600);
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 520px;
}

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

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--sky);
  color: var(--blue-700);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pill.small {
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
  padding: 4px 10px;
}

.trust-row {
  display: grid;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 600;
  color: var(--blue-800);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.dashboard {
  position: relative;
  display: grid;
  gap: 24px;
  width: min(420px, 100%);
}

.dashboard-card {
  background: var(--white);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.dashboard-card.elevated {
  transform: translate(30px, 20px);
}

.card-header {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: var(--blue-800);
  margin-bottom: 16px;
}

.status {
  background: rgba(46, 192, 131, 0.15);
  color: #1a7d57;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.status.warn {
  background: rgba(247, 181, 0, 0.2);
  color: #b36d00;
}

.metric h3 {
  font-size: 2rem;
  margin: 4px 0;
}

.metric .trend {
  color: #1a7d57;
  font-weight: 600;
  font-size: 13px;
}

.bar-list {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

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

.line {
  background: rgba(13, 74, 166, 0.1);
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
}

.line i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-600), #4fd1ff);
}

.task-list {
  list-style: none;
  display: grid;
  gap: 12px;
  font-size: 14px;
}

.task-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--sky);
  padding: 10px 12px;
  border-radius: 12px;
}

.badge {
  background: var(--blue-600);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.badge.ghost {
  background: rgba(13, 74, 166, 0.15);
  color: var(--blue-700);
}

.link {
  font-weight: 600;
  color: var(--blue-600);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.solution,
.focus,
.regulations,
.testimonials {
  background: linear-gradient(180deg, #0b5ad3 0%, #0b4bb2 100%);
  color: var(--white);
  padding: 90px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head h2 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 2vw + 1.4rem, 2.7rem);
  margin-bottom: 14px;
}

.section-head p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 680px;
  margin: 0 auto;
}

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

.info-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 24px;
  border-radius: 20px;
  display: grid;
  gap: 14px;
  backdrop-filter: blur(6px);
}

.info-card .icon {
  font-size: 26px;
}

.info-card p {
  color: rgba(255, 255, 255, 0.8);
}

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

.focus-copy h2,
.reg-copy h2,
.testimonials h2 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 2vw + 1.2rem, 2.8rem);
  margin-bottom: 12px;
}

.focus-copy p,
.reg-copy p {
  color: rgba(255, 255, 255, 0.8);
}

.focus-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.focus-badges span {
  background: rgba(255, 255, 255, 0.16);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
}

.focus-panel {
  background: rgba(9, 29, 71, 0.5);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.focus-panel ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.focus-panel li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--accent);
}

.focus-panel li {
  display: flex;
  align-items: center;
}

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

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

.reg-list span {
  background: rgba(255, 255, 255, 0.16);
  padding: 12px 16px;
  border-radius: 14px;
  text-align: center;
  font-weight: 600;
}

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

.quote-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 18px;
}

.author strong {
  display: block;
}

.author span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.workflow {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--blue-600);
  font-weight: 600;
}

.workflow-copy h2 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 2vw + 1.2rem, 2.8rem);
  margin: 12px 0;
}

.workflow-copy ul {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.workflow-copy li::before {
  content: "●";
  color: var(--blue-600);
  margin-right: 10px;
}

.workflow-copy li {
  display: flex;
  align-items: flex-start;
}

.device {
  position: relative;
}

.device-screen {
  background: var(--white);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.device-screen header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-weight: 600;
}

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

.device-grid > div {
  background: var(--sky);
  padding: 16px;
  border-radius: 16px;
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.device-grid h4 {
  font-size: 14px;
}

.spark {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #16b4ff, #1e74ff);
}

.dots {
  height: 6px;
  border-radius: 999px;
  background: repeating-linear-gradient(
    90deg,
    rgba(13, 95, 226, 0.7) 0,
    rgba(13, 95, 226, 0.7) 8px,
    rgba(13, 95, 226, 0.2) 8px,
    rgba(13, 95, 226, 0.2) 16px
  );
}

.device-shadow {
  position: absolute;
  inset: auto 10% -20px 10%;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(8, 32, 76, 0.3), transparent 70%);
  filter: blur(12px);
}

.difference {
  padding: 90px 0;
  background: var(--white);
}

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

.difference-copy h2 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 2vw + 1.2rem, 2.8rem);
  margin-bottom: 12px;
}

.checklist {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.checklist h4 {
  color: var(--blue-700);
  margin-bottom: 4px;
}

.difference-table {
  background: var(--sky);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(13, 74, 166, 0.1);
}

.difference-table h3 {
  margin-bottom: 18px;
  color: var(--blue-800);
}

.table {
  display: grid;
  gap: 12px;
}

.row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
  align-items: center;
  font-size: 14px;
}

.row.header {
  font-weight: 600;
  color: var(--blue-800);
}

.check {
  color: #1a7d57;
  font-weight: 700;
}

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

.news {
  background: linear-gradient(180deg, #0b5ad3 0%, #0b4bb2 100%);
  padding: 90px 0;
  color: var(--white);
}

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

.news-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 14px;
}

.tag {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  align-self: start;
}

.events {
  padding: 90px 0;
  background: radial-gradient(circle at top, #f3f7ff 0%, #ffffff 60%);
}

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

.event-card {
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 18px 40px rgba(13, 74, 166, 0.12);
  display: grid;
  gap: 12px;
}

.cta {
  padding: 80px 0 110px;
  background: var(--white);
}

.cta-card {
  background: linear-gradient(120deg, #0b4bb2 0%, #0e5fe2 100%);
  color: var(--white);
  border-radius: 26px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: var(--shadow);
}

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

.site-footer {
  background: var(--blue-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-logo {
  height: 32px;
  margin-bottom: 12px;
}

.site-footer h4 {
  color: var(--white);
  margin-bottom: 12px;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
}

.social {
  display: flex;
  gap: 10px;
}

.social span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .dashboard-card.elevated {
    transform: translate(0, 0);
  }

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

@media (max-width: 720px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding: 60px 0 80px;
  }

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

  .row {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
  }

  .primary {
    transition: none;
  }
}

.maintenance-body {
  background: radial-gradient(circle at top, #f4f8ff 0%, #ffffff 55%);
}

.maintenance {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
}

.maintenance-card {
  width: min(720px, 92vw);
  background: var(--white);
  border-radius: 28px;
  padding: 48px;
  box-shadow: var(--shadow);
  text-align: center;
  display: grid;
  gap: 18px;
}

.maintenance-logo {
  height: 42px;
  margin: 0 auto;
}

.maintenance-card h1 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 2vw + 1.4rem, 2.8rem);
}

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

.maintenance-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  background: var(--sky);
  padding: 18px;
  border-radius: 20px;
}

.maintenance-meta h4 {
  font-size: 14px;
  color: var(--blue-700);
  margin-bottom: 4px;
}

.maintenance-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .maintenance-card {
    padding: 32px 24px;
  }
}
