:root {
  --bg-page: #f3f8fb;
  --bg-surface: #ffffff;
  --bg-surface-alt: #eef5f9;
  --bg-dark: #071723;
  --bg-dark-2: #0b2434;
  --bg-dark-3: #0d1d2d;
  --text-strong: #102030;
  --text-body: #4c6073;
  --text-soft: #7f94a7;
  --text-inverse: #ecf7ff;
  --text-inverse-soft: #a4bacd;
  --line: rgba(16, 32, 48, 0.1);
  --line-strong: rgba(16, 32, 48, 0.16);
  --line-dark: rgba(172, 208, 232, 0.16);
  --accent: #53d8ff;
  --accent-strong: #11c4ff;
  --accent-teal: #2dd4bf;
  --accent-soft: rgba(83, 216, 255, 0.14);
  --shadow-lg: 0 30px 80px rgba(7, 23, 35, 0.16);
  --shadow-md: 0 16px 44px rgba(7, 23, 35, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 40px));
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-strong);
  background: var(--bg-page);
  line-height: 1.6;
}

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

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

button {
  font: inherit;
}

svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -3rem;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--bg-surface);
  color: var(--text-strong);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(7, 23, 35, 0.82);
  border-bottom: 1px solid rgba(172, 208, 232, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5.25rem;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.35rem;
  height: 3.35rem;
  padding: 0.45rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(226, 237, 246, 0.94));
  border: 1px solid rgba(214, 231, 241, 0.92);
  box-shadow:
    0 12px 26px rgba(7, 23, 35, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(7, 23, 35, 0.18));
}

.brand-copy,
.footer-copy {
  display: grid;
  gap: 0.1rem;
}

.brand-name,
.brand-tag,
.site-nav a,
.eyebrow,
.section-kicker,
.process-number,
.metric-card span,
.metric-card small,
.panel-head span,
.status-pill {
  letter-spacing: 0.02em;
}

.brand-name {
  color: var(--text-inverse);
  font-weight: 700;
  font-size: 1.08rem;
}

.brand-tag {
  color: var(--text-inverse-soft);
  font-size: 0.78rem;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  color: var(--text-inverse-soft);
  font-size: 0.94rem;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text-inverse);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(172, 208, 232, 0.16);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-inverse);
  align-items: center;
  justify-content: center;
  gap: 0.22rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-nav,
.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(172, 208, 232, 0.16);
  color: var(--text-inverse);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #a9f1ff);
  color: #072132;
  box-shadow: 0 18px 34px rgba(17, 196, 255, 0.18);
}

.hero {
  position: relative;
  overflow: clip;
  padding: 5rem 0 8rem;
  color: var(--text-inverse);
  background:
    radial-gradient(circle at top left, rgba(83, 216, 255, 0.14), transparent 24%),
    radial-gradient(circle at top right, rgba(45, 212, 191, 0.1), transparent 18%),
    linear-gradient(140deg, #06131d, #082030 52%, #0c2637 100%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(158, 202, 228, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(158, 202, 228, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.5));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  max-width: 39rem;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.2rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--accent);
}

.eyebrow-dot {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: var(--accent-teal);
  box-shadow: 0 0 14px rgba(45, 212, 191, 0.45);
}

.hero h1,
.section-header h2,
.why-copy h2,
.cta-copy h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero-lead,
.section-header p,
.why-copy p,
.cta-copy p,
.trust-card p,
.service-card p,
.benefit-card p,
.process-card p,
.footer-meta {
  color: var(--text-body);
}

.hero-lead {
  max-width: 37rem;
  margin: 1.5rem 0 0;
  color: var(--text-inverse-soft);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-dashboard {
  width: 100%;
  max-width: 34rem;
  justify-self: end;
}

.dashboard-shell {
  position: relative;
  overflow: hidden;
  padding: 1.35rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(172, 208, 232, 0.14);
  background:
    linear-gradient(180deg, rgba(10, 31, 46, 0.98), rgba(6, 20, 31, 0.96));
  box-shadow:
    0 28px 72px rgba(3, 11, 18, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.dashboard-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(83, 216, 255, 0.12), transparent 22%),
    radial-gradient(circle at 10% 90%, rgba(45, 212, 191, 0.08), transparent 18%);
  pointer-events: none;
}

.dashboard-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(169, 212, 235, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169, 212, 235, 0.04) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.45;
  pointer-events: none;
}

.dashboard-top,
.panel-head,
.progress-meta,
.footer-inner {
  display: flex;
  align-items: center;
}

.dashboard-top,
.panel-head {
  justify-content: space-between;
}

.dashboard-top {
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.dashboard-kicker {
  margin: 0;
  color: var(--text-inverse-soft);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.dashboard-title {
  margin: 0.25rem 0 0;
  color: var(--text-inverse);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(172, 208, 232, 0.14);
  color: var(--text-inverse);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.status-dot,
.signal-bullet {
  display: inline-block;
  border-radius: 50%;
}

.status-dot {
  width: 0.55rem;
  height: 0.55rem;
  background: var(--accent-teal);
  box-shadow: 0 0 12px rgba(45, 212, 191, 0.48);
}

.metric-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.metric-card,
.dashboard-panel {
  border-radius: var(--radius-md);
  border: 1px solid rgba(172, 208, 232, 0.12);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(4px);
}

.metric-card {
  padding: 0.95rem;
}

.metric-card span,
.metric-card small {
  display: block;
}

.metric-card span {
  color: var(--text-inverse-soft);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  margin: 0.35rem 0 0.12rem;
  color: var(--text-inverse);
  font-size: 1.6rem;
  line-height: 1;
}

.metric-card small {
  color: var(--text-inverse-soft);
  font-size: 0.76rem;
}

.dashboard-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 0.85rem;
  margin-top: 0.85rem;
}

.dashboard-panel {
  padding: 1rem;
}

.panel-head {
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.panel-head h3 {
  margin: 0;
  color: var(--text-inverse);
  font-size: 1rem;
}

.panel-head span {
  color: var(--text-inverse-soft);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.progress-list {
  display: grid;
  gap: 0.9rem;
}

.progress-meta strong {
  color: var(--text-inverse);
  font-size: 0.88rem;
}

.progress-meta span {
  color: var(--text-inverse);
  font-weight: 600;
}

.progress-meta {
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.38rem;
}

.progress-track {
  height: 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress-fill {
  display: block;
  width: var(--fill);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-teal));
}

.signal-list {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.signal-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--text-inverse);
}

.signal-bullet {
  flex: 0 0 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.45rem;
  background: linear-gradient(180deg, var(--accent), var(--accent-teal));
}

.trust-section {
  position: relative;
  z-index: 2;
  margin-top: -3.75rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.trust-card,
.service-card,
.benefit-card,
.process-card,
.industry-pill,
.cta-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg-surface);
  box-shadow: var(--shadow-md);
}

.trust-card {
  padding: 1.45rem;
}

.trust-card h2,
.service-card h3,
.benefit-card h3,
.process-card h3,
.section-header h2,
.why-copy h2,
.cta-copy h2,
.industry-pill {
  letter-spacing: -0.03em;
}

.trust-card h2,
.service-card h3,
.benefit-card h3,
.process-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
}

.trust-card p,
.service-card p,
.benefit-card p,
.process-card p {
  margin: 0;
}

.section {
  padding: 5.5rem 0;
}

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

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

.section-header {
  max-width: 46rem;
  margin-bottom: 2.1rem;
}

.section-kicker {
  color: var(--accent-strong);
}

.section-header h2,
.why-copy h2,
.cta-copy h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
}

.section-header p,
.why-copy p,
.cta-copy p {
  margin: 1rem 0 0;
  font-size: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  padding: 1.45rem;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(17, 196, 255, 0.22);
  box-shadow: 0 22px 46px rgba(7, 23, 35, 0.12);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(83, 216, 255, 0.16), rgba(83, 216, 255, 0.04));
  color: #0b87b8;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.25rem;
  align-items: start;
}

.why-benefits,
.process-grid,
.industries-grid {
  display: grid;
  gap: 1rem;
}

.why-benefits {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.benefit-card {
  padding: 1.45rem;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-card {
  padding: 1.45rem;
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.6rem;
  min-height: 2.6rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #0c8ebf;
  font-size: 0.8rem;
  font-weight: 800;
}

.industries-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.industry-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.5rem;
  padding: 1rem;
  color: var(--text-strong);
  font-weight: 700;
  text-align: center;
}

.cta-section {
  background:
    linear-gradient(180deg, var(--bg-page), var(--bg-surface-alt));
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(83, 216, 255, 0.08), rgba(45, 212, 191, 0.06)),
    var(--bg-surface);
}

.site-footer {
  color: var(--text-inverse);
  background:
    linear-gradient(180deg, #081723, #060f18);
  border-top: 1px solid rgba(172, 208, 232, 0.12);
}

.footer-inner {
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0;
}

.footer-copy strong {
  color: var(--text-inverse);
  font-size: 1rem;
}

.footer-copy a,
.footer-meta {
  color: var(--text-inverse-soft);
}

.footer-copy a {
  font-size: 0.94rem;
}

.footer-meta {
  margin: 0;
  text-align: right;
}

@media (max-width: 1120px) {
  .hero-grid,
  .why-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .hero-dashboard {
    max-width: none;
    justify-self: stretch;
  }

  .trust-grid,
  .services-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industries-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .why-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 1rem 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-menu {
    display: none;
    grid-column: 1 / -1;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(172, 208, 232, 0.14);
    background: rgba(8, 24, 36, 0.98);
    box-shadow: 0 20px 38px rgba(3, 11, 18, 0.2);
  }

  .site-menu.is-open {
    display: grid;
  }

  .site-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }

  .btn-nav {
    width: 100%;
  }

  .dashboard-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    padding: 4rem 0 4.5rem;
  }

  .trust-section {
    margin-top: -2.2rem;
  }

  .trust-grid,
  .services-grid,
  .why-benefits,
  .process-grid,
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    display: grid;
    justify-items: start;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .brand-mark {
    width: 3rem;
    height: 3rem;
  }

  .hero-actions {
    display: grid;
  }

  .btn,
  .btn-secondary,
  .btn-primary {
    width: 100%;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-shell,
  .trust-card,
  .service-card,
  .benefit-card,
  .process-card,
  .industry-pill,
  .cta-card {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
