:root {
  --bg: #f7fbff;
  --panel: #ffffff;
  --ink: #132238;
  --muted: #5d6b82;
  --line: rgba(31, 91, 153, 0.16);
  --soft: #eef7ff;
  --accent: #0891b2;
  --accent-dark: #0f766e;
  --mint: #10b981;
  --coral: #06b6d4;
  --amber: #22d3ee;
  --violet: #0f172a;
  --nav: rgba(255, 255, 255, 0.84);
  --shadow: 0 24px 70px rgba(43, 93, 165, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(16, 185, 129, 0.16), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(6, 182, 212, 0.18), transparent 26%),
    radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.1), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(252, 253, 254, 0.88)),
    var(--bg);
  background-attachment: fixed;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(247, 251, 255, 0.72);
  backdrop-filter: blur(18px);
}

.nav-shell,
.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 11px 16px 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 247, 255, 0.76)),
    var(--nav);
  box-shadow: 0 18px 50px rgba(43, 93, 165, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 156px;
  height: 46px;
  object-fit: contain;
  object-position: left center;
  filter: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.nav > a,
.dropbtn {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 13px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #34465f;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav > a:hover,
.dropbtn:hover,
.dropdown.is-open .dropbtn {
  color: var(--accent-dark);
  background: rgba(37, 99, 235, 0.1);
}

.dropbtn::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.dropdown {
  position: relative;
}

.dropdown.is-open .dropbtn::after {
  transform: rotate(225deg) translate(-2px, -1px);
}

.dropdown-content {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: 285px;
  padding: 8px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(0, 184, 148, 0.16), transparent 44%),
    radial-gradient(circle at bottom right, rgba(255, 107, 107, 0.14), transparent 42%),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 70px rgba(43, 93, 165, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content,
.dropdown.is-open .dropdown-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-content a {
  display: block;
  padding: 12px;
  border-radius: 12px;
  color: #34465f;
  font-size: 14px;
  font-weight: 700;
}

.dropdown-content a:hover,
.dropdown-content a:focus {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--mint));
  outline: none;
}

.nav-login {
  margin-left: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: #020617;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: #0891b2;
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.34);
}

.btn-small {
  min-height: 40px;
  padding: 0 18px;
  font-size: 14px;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  border-color: rgba(37, 99, 235, 0.18);
  box-shadow: 0 12px 24px rgba(43, 93, 165, 0.08);
}

.btn-dark {
  background: #132238;
  border-color: #132238;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 96px;
  background:
    radial-gradient(circle at 18% 18%, rgba(16, 185, 129, 0.18), transparent 34%),
    radial-gradient(circle at 72% 24%, rgba(6, 182, 212, 0.2), transparent 30%),
    radial-gradient(circle at 50% 88%, rgba(59, 130, 246, 0.08), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #fcfdfe 54%, #ecfeff 100%);
}

.hero-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 58px;
  align-items: center;
}

.hero-copy h1,
.section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy h1,
.hero-lead {
  color: var(--ink);
}

.section h2 {
  font-size: clamp(32px, 4.5vw, 56px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-lead,
.section p {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-lead {
  color: #4b5f7c;
}

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

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.stats div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 30px rgba(43, 93, 165, 0.1);
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  font-size: 24px;
  color: var(--accent-dark);
}

.stats span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-media,
.image-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.hero-media img,
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media {
  aspect-ratio: 4 / 5;
}

.section {
  padding: 90px 0;
}

main.container {
  margin-top: 54px;
  margin-bottom: 72px;
  padding: 54px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(0, 184, 148, 0.12), transparent 34%),
    radial-gradient(circle at bottom left, rgba(255, 107, 107, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

main.container > h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 6vw, 70px);
  line-height: 1;
  letter-spacing: 0;
}

main.container > p,
.team p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.team,
.contact-form {
  margin-top: 34px;
}

.team h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.contact-form {
  display: grid;
  gap: 18px;
  max-width: 680px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font: inherit;
  padding: 14px 16px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.section-white {
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 184, 148, 0.1), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(247, 183, 49, 0.14), transparent 30%),
    #ffffff;
}

.section-soft {
  background:
    radial-gradient(circle at 12% 12%, rgba(124, 58, 237, 0.12), transparent 28%),
    linear-gradient(135deg, #eef7ff, #f0fdf8 48%, #fff7ed);
}

.split {
  grid-template-columns: minmax(330px, 0.9fr) minmax(0, 1fr);
}

.split-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.9fr);
}

.image-card {
  aspect-ratio: 1 / 1;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.feature-list div {
  position: relative;
  padding-left: 28px;
}

.feature-list span {
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--coral));
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.14);
}

.feature-list strong {
  font-size: 17px;
}

.feature-list p {
  margin-top: 4px;
  font-size: 15px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

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

.card {
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.96));
  box-shadow: 0 18px 45px rgba(43, 93, 165, 0.12);
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card h3 {
  margin: 22px 22px 0;
  font-size: 22px;
}

.card p {
  margin: 10px 22px 24px;
  font-size: 15px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill-row span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: #34465f;
  font-size: 14px;
  font-weight: 800;
}

.cta {
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.32), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(247, 183, 49, 0.34), transparent 24%),
    linear-gradient(135deg, #0f172a, #0891b2 58%, #10b981);
}

.cta-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.cta .eyebrow,
.cta h2 {
  color: #fff;
}

.cta h2 {
  max-width: 760px;
}

.site-footer {
  padding: 64px 0 28px;
  background:
    radial-gradient(circle at 15% 0%, rgba(0, 184, 148, 0.18), transparent 30%),
    #132238;
  color: #dbeafe;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
}

.footer-brand img {
  width: 160px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(1.9);
}

.footer-brand p {
  max-width: 340px;
}

.site-footer h3 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin: 10px 0;
  color: #dbeafe;
  font-size: 14px;
}

.site-footer a:hover {
  color: #8ff5df;
}

.copyright {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(219, 234, 254, 0.18);
  color: #b8c7de;
  font-size: 14px;
}

@media (max-width: 1280px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(37, 99, 235, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 28px 70px rgba(43, 93, 165, 0.2);
  }

  .site-header.open .nav {
    display: grid;
    gap: 4px;
  }

  .nav > a,
  .dropbtn {
    justify-content: space-between;
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
  }

  .dropdown-content {
    position: static;
    display: none;
    width: 100%;
    margin: 2px 0 8px;
    padding: 4px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    background: rgba(238, 247, 255, 0.86);
  }

  .dropdown:hover .dropdown-content,
  .dropdown:focus-within .dropdown-content {
    transform: none;
  }

  .dropdown.is-open .dropdown-content {
    display: block;
  }

  .nav-login {
    margin-left: 0;
  }
}

@media (max-width: 860px) {
  .hero {
    padding: 56px 0 72px;
  }

  .hero-grid,
  .split,
  .split-reverse {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-copy h1,
  .section h2 {
    line-height: 1.05;
  }

  .hero-media {
    aspect-ratio: 16 / 12;
  }

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

  .section {
    padding: 64px 0;
  }

  main.container {
    margin-top: 32px;
    padding: 30px 22px;
  }
}

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

  .nav-shell {
    min-height: 64px;
    border-radius: 18px;
  }

  .brand img {
    width: 132px;
  }

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

  .hero-actions .btn {
    width: 100%;
  }
}
