:root {
  --brand-navy: #082750;
  --brand-cyan: #00b7dc;
  --brand-green: #80d060;
  --ink-900: #0e1d33;
  --ink-700: #34445f;
  --ink-500: #60708a;
  --surface-0: #f4f8fd;
  --surface-1: #ffffff;
  --surface-2: #edf4fc;
  --border: #d6e4f6;
  --focus: #0095ca;
  --shadow-soft: 0 14px 30px rgba(8, 39, 80, 0.1);
  --shadow-strong: 0 18px 48px rgba(8, 39, 80, 0.17);
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --container: 1160px;
  --header-h: 86px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-900);
  background:
    radial-gradient(1200px 600px at 12% -10%, rgba(128, 208, 96, 0.2), transparent 62%),
    radial-gradient(900px 520px at 92% -6%, rgba(0, 183, 220, 0.18), transparent 58%),
    var(--surface-0);
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  line-height: 1.55;
}

h1,
h2,
h3 {
  margin: 0 0 12px;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 3.6vw, 3.4rem);
}

h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

h3 {
  font-size: clamp(1.15rem, 1.65vw, 1.45rem);
}

p {
  margin: 0 0 12px;
}

a {
  color: inherit;
}

.container {
  width: min(var(--container), calc(100% - 42px));
  margin: 0 auto;
}

.section {
  padding: 86px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(237, 244, 252, 0.76), rgba(237, 244, 252, 0.42));
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--brand-cyan);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.77rem;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.skip-link {
  position: absolute;
  top: -46px;
  left: 12px;
  z-index: 60;
  border-radius: 10px;
  background: var(--brand-navy);
  color: #fff;
  padding: 10px 12px;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  top: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: var(--header-h);
  border-bottom: 1px solid rgba(214, 228, 246, 0.8);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand img {
  width: 175px;
  height: auto;
  display: block;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 7px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--ink-700);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.site-nav a:hover {
  color: var(--brand-navy);
  background: rgba(8, 39, 80, 0.06);
}

.site-nav a.active {
  color: var(--brand-navy);
  background: rgba(0, 183, 220, 0.14);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface-1);
  margin-left: auto;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 6px auto;
  background: var(--brand-navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.btn {
  --btn-bg: var(--brand-navy);
  --btn-color: #fff;
  --btn-border: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--btn-border);
  border-radius: var(--radius-pill);
  background: var(--btn-bg);
  color: var(--btn-color);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  min-height: 47px;
  padding: 0 20px;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  filter: saturate(1.08);
}

.btn:focus-visible,
.site-nav a:focus-visible,
.menu-toggle:focus-visible,
.social-link:focus-visible,
.footer-inner a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.btn-primary {
  --btn-bg: linear-gradient(112deg, var(--brand-cyan), #16cce6 58%, var(--brand-green));
  --btn-color: #05253e;
}

.btn-ghost {
  --btn-bg: transparent;
  --btn-color: var(--brand-navy);
  --btn-border: rgba(8, 39, 80, 0.22);
}

.header-cta {
  margin-left: 8px;
}

.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 30px);
  padding-bottom: 70px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(620px 290px at 8% 8%, rgba(128, 208, 96, 0.22), transparent 58%),
    radial-gradient(600px 300px at 86% 16%, rgba(0, 183, 220, 0.28), transparent 62%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.hero-copy .lead {
  max-width: 64ch;
  font-size: 1.06rem;
  color: var(--ink-700);
}

.hero-actions {
  margin: 24px 0 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges li {
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink-700);
  padding: 9px 13px;
  font-weight: 700;
  font-size: 0.9rem;
}

.hero-panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 255, 0.9));
  box-shadow: var(--shadow-soft);
  padding: 26px;
}

.hero-panel ul {
  margin: 14px 0 0;
  padding: 0 0 0 18px;
  color: var(--ink-700);
}

.hero-panel li {
  margin-bottom: 11px;
}

.split {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 22px;
  align-items: start;
}

.pillars,
.stats-panel,
.tech-panel {
  border: 1px solid var(--border);
  background: var(--surface-1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.pillars ul {
  margin: 10px 0 0;
  padding-left: 16px;
}

.pillars li {
  margin-bottom: 9px;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 4px 0 0;
  display: grid;
  gap: 10px;
}

.timeline li {
  position: relative;
  border: 1px solid var(--border);
  background: var(--surface-1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 16px 18px 16px 66px;
  font-weight: 700;
  color: var(--ink-900);
}

.timeline li span {
  position: absolute;
  left: 16px;
  top: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: 0.78rem;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-cyan));
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

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

.card p {
  color: var(--ink-700);
}

.check-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 30px;
  color: var(--ink-700);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #fff 0 26%, transparent 28%),
    linear-gradient(130deg, var(--brand-cyan), var(--brand-green));
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.45);
}

.stats-panel .stat-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px dashed var(--border);
  padding: 11px 0;
}

.stats-panel .stat-row:last-child {
  border-bottom: 0;
}

.stats-panel p {
  margin: 0;
  color: var(--ink-700);
}

.stats-panel strong {
  font-family: "Sora", "Trebuchet MS", sans-serif;
  color: var(--brand-navy);
}

.tech-panel {
  background:
    linear-gradient(115deg, rgba(8, 39, 80, 0.97), rgba(12, 57, 97, 0.95)),
    linear-gradient(140deg, rgba(0, 183, 220, 0.24), rgba(128, 208, 96, 0.16));
  color: #e8f4ff;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-strong);
}

.tech-panel .eyebrow {
  color: #8ce8ff;
}

.cta-band {
  padding-top: 70px;
  padding-bottom: 80px;
}

.cta-band-inner {
  text-align: center;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    radial-gradient(circle at 8% 12%, rgba(128, 208, 96, 0.34), transparent 35%),
    radial-gradient(circle at 95% 88%, rgba(0, 183, 220, 0.36), transparent 36%),
    linear-gradient(124deg, #062546, #083264);
  color: #eef7ff;
  padding: 36px 24px;
  box-shadow: var(--shadow-strong);
}

.cta-band-inner p {
  color: #deebf9;
  max-width: 68ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .btn {
  margin-top: 8px;
}

.social-links {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.16);
}

.icon {
  width: 18px;
  height: 18px;
  display: block;
  background-color: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.icon-facebook {
  mask-image: url("assets/img/facebook.svg");
  -webkit-mask-image: url("assets/img/facebook.svg");
}

.icon-instagram {
  mask-image: url("assets/img/instagram.svg");
  -webkit-mask-image: url("assets/img/instagram.svg");
}

.icon-youtube {
  mask-image: url("assets/img/youtube.svg");
  -webkit-mask-image: url("assets/img/youtube.svg");
}

.icon-linkedin {
  mask-image: url("assets/img/linkedin.svg");
  -webkit-mask-image: url("assets/img/linkedin.svg");
}

.site-footer {
  padding: 24px 0 28px;
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-brand img {
  width: 124px;
}

.footer-inner p {
  margin: 0;
  color: var(--ink-500);
  font-weight: 700;
}

.footer-inner a {
  color: var(--brand-navy);
  font-weight: 800;
  text-decoration: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.52s ease, transform 0.52s ease;
}

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

.interactive-card {
  position: relative;
  overflow: hidden;
}

.interactive-card::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0, 183, 220, 0.2), transparent 35%);
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.interactive-card:hover::after {
  opacity: 1;
}

.no-js [data-reveal] {
  opacity: 1;
  transform: none;
}

.no-js .menu-toggle {
  display: none;
}

.no-js .site-nav {
  display: flex !important;
}

@media (max-width: 1200px) {
  .cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  :root {
    --header-h: 74px;
  }

  .brand img {
    width: 145px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 21px;
    right: 21px;
    z-index: 45;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
    padding: 7px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .site-nav.open {
    display: flex;
  }

  .no-js .site-nav {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 0;
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .site-nav a {
    padding: 12px;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: calc(var(--header-h) + 22px);
  }

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

  .timeline li {
    padding-left: 56px;
  }

  .timeline li span {
    left: 12px;
  }

  .footer-inner {
    justify-content: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
