:root {
  --bg-primary: #030712;
  --bg-secondary: radial-gradient(circle at top, #0f172a 0%, #020617 55%, #00010a 100%);
  --surface: rgba(15, 23, 42, 0.68);
  --surface-strong: rgba(15, 23, 42, 0.88);
  --surface-glass: rgba(15, 23, 42, 0.55);
  --text-primary: #f8fafc;
  --text-muted: #94a3b8;
  --accent: #38bdf8;
  --accent-soft: rgba(56, 189, 248, 0.18);
  --accent-secondary: #c084fc;
  --border: rgba(148, 163, 184, 0.16);
  --shadow-soft: 0 25px 80px rgba(10, 8, 35, 0.45);
  --container-width: min(1160px, calc(100% - 3.25rem));
  --header-height: 84px;
  --transition-base: 0.35s ease;
  --gradient: linear-gradient(135deg, rgba(56, 189, 248, 0.4), rgba(192, 132, 252, 0.4));
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  color: var(--text-primary);
  background: var(--bg-secondary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

main {
  margin-top: var(--header-height);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: var(--container-width);
  margin: 0 auto;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.28rem;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header span {
  color: var(--accent);
}

.section-header p {
  color: var(--text-muted);
  max-width: 650px;
  margin: 1rem auto 0;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 40;
  display: flex;
  align-items: center;
  background: rgba(3, 7, 18, 0.65);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
  transition: background 0.4s ease, border 0.4s ease;
}

.site-header.is-scrolled {
  background: rgba(3, 7, 18, 0.88);
  border-bottom-color: rgba(148, 163, 184, 0.2);
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.35);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 600;
  color: #e2e8f0;
  letter-spacing: 0.08rem;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.brand img {
  width: 88px;
  filter: drop-shadow(0 8px 18px rgba(56, 189, 248, 0.35));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.site-nav a {
  position: relative;
  padding-bottom: 0.25rem;
  color: var(--text-muted);
  transition: color 0.25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text-primary);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.4rem;
  cursor: pointer;
}

.nav-toggle .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 8rem 0 6rem;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 19, 48, 0.8), rgba(8, 11, 23, 0.92));
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/1650791853576_edited.jpg") center/cover no-repeat;
  opacity: 0.35;
  z-index: -3;
}

.hero-content {
  max-width: 620px;
}

.hero h1 {
  font-size: clamp(2.75rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-family: "Playfair Display", "Times New Roman", serif;
}

.hero .lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.12rem;
  border-radius: 9999px;
  padding: 0.95rem 2.4rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  border: 1px solid transparent;
}

.button.primary {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  box-shadow: 0 20px 45px rgba(14, 165, 233, 0.35);
  color: #041122;
}

.button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 55px rgba(14, 165, 233, 0.45);
}

.button.ghost {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.35);
  color: var(--text-primary);
  backdrop-filter: blur(6px);
}

.button.ghost:hover {
  border-color: var(--accent);
  background: rgba(56, 189, 248, 0.08);
  transform: translateY(-3px);
}

.button.link {
  padding-inline: 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 0;
}

.button.link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-tags span {
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 999px;
  padding: 0.4rem 1.2rem;
  font-size: 0.75rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(2, 6, 23, 0.35);
}

/* Shared layouts */
section {
  padding: 6.5rem 0;
  position: relative;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: 3.5rem;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
}

.copy h2 {
  font-size: clamp(2.1rem, 3.2vw, 2.9rem);
  line-height: 1.1;
  font-family: "Playfair Display", serif;
}

.copy h2 span {
  color: var(--accent);
}

.copy p {
  color: var(--text-muted);
  font-size: 1rem;
}

.pillars {
  margin-top: 2.75rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.pillar {
  background: rgba(8, 11, 23, 0.75);
  border: 1px solid rgba(56, 189, 248, 0.12);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 25px 60px rgba(2, 6, 23, 0.45);
  transition: transform var(--transition-base), border var(--transition-base);
}

.pillar h3 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.pillar p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.35);
}

.insight-card {
  position: relative;
}

.insight-card__inner {
  background: linear-gradient(145deg, rgba(8, 47, 73, 0.65), rgba(17, 24, 39, 0.95));
  border-radius: 32px;
  padding: 2.75rem;
  border: 1px solid rgba(56, 189, 248, 0.25);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
}

.insight-card h4 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.insight-card p {
  color: #e2e8f0;
  margin-bottom: 2rem;
}

.insight-card__metrics {
  display: flex;
  gap: 2.5rem;
}

.metric-value {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
}

.metric-label {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

/* Services */
.services {
  background: rgba(2, 6, 23, 0.65);
  backdrop-filter: blur(12px);
  border-block: 1px solid rgba(148, 163, 184, 0.1);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: rgba(8, 11, 23, 0.78);
  border-radius: 28px;
  padding: 2.5rem;
  border: 1px solid rgba(56, 189, 248, 0.15);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), border var(--transition-base);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto auto -60px -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.55), transparent 70%);
  transition: transform var(--transition-base), opacity var(--transition-base);
  opacity: 0;
}

.service-card:hover::before {
  transform: translate(40px, -40px);
  opacity: 1;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.service-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.service-card li {
  font-size: 0.95rem;
  color: #e2e8f0;
  position: relative;
  padding-left: 1.5rem;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
}

.service-card:hover {
  transform: translateY(-12px);
  border-color: rgba(56, 189, 248, 0.35);
}

/* Trusted */
.trusted {
  position: relative;
  overflow: hidden;
}

.trusted::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.08), transparent 55%);
  z-index: -1;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.stat-card {
  padding: 2.5rem 2.25rem;
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(2, 6, 23, 0.65);
  box-shadow: 0 15px 45px rgba(2, 6, 23, 0.45);
  text-align: left;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18rem;
  color: var(--text-muted);
}

.stat-value {
  display: block;
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  font-weight: 700;
  margin: 1rem 0;
  color: #f1f5f9;
}

.stat-card p {
  color: var(--text-muted);
  margin: 0;
}

/* Global */
.global {
  background: rgba(2, 6, 23, 0.82);
  border-top: 1px solid rgba(56, 189, 248, 0.12);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.global .visual {
  position: relative;
  background: transparent;
  padding: 0;
}

.global .visual picture {
  position: relative;
  display: block;
  padding: 18px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.4), rgba(192, 132, 252, 0.35)) border-box,
    rgba(8, 11, 23, 0.82);
  box-shadow: 0 28px 65px rgba(4, 10, 31, 0.6), inset 0 0 0 1px rgba(148, 163, 184, 0.18);
  overflow: hidden;
}

.global .visual img {
  display: block;
  width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(56, 189, 248, 0.3);
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.55);
  transition: transform 0.45s ease;
  transform-origin: center;
}

.global .visual picture:hover img {
  transform: scale(1.08);
}

@media (min-width: 1025px) {
  .global .visual picture:hover img {
    transform: scale(1.18);
  }
}

.global .copy {
  padding-inline: 1rem;
}

.global-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* Awards */
.awards {
  text-align: center;
}

.award-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2.5rem;
  align-items: center;
  justify-items: center;
}

.award-grid img {
  max-height: 253px;
  padding: 1.6rem;
  border-radius: 28px;
  border: 2px solid rgba(56, 189, 248, 0.3);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.85));
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.14), 0 18px 45px rgba(8, 47, 73, 0.5);
  filter: drop-shadow(0 18px 40px rgba(8, 47, 73, 0.55));
  opacity: 0.94;
  transition: transform 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
}

.award-grid img:hover {
  transform: translateY(-8px) scale(1.03);
  opacity: 1;
  border-color: rgba(192, 132, 252, 0.45);
}

/* Experience */
.experience {
  background: rgba(3, 7, 18, 0.65);
}

.experiences {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.experiences article {
  padding: 2.4rem;
  border-radius: 26px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(8, 11, 23, 0.78);
  box-shadow: 0 18px 35px rgba(2, 6, 23, 0.45);
  transition: transform var(--transition-base), border var(--transition-base);
}

.experiences article h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
}

.experiences article p {
  color: var(--text-muted);
}

.experiences article:hover {
  transform: translateY(-10px);
  border-color: rgba(56, 189, 248, 0.36);
}

/* Testimonials */
.testimonials {
  background: rgba(2, 6, 23, 0.7);
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: rgba(8, 11, 23, 0.8);
  border-radius: 28px;
  border: 1px solid rgba(56, 189, 248, 0.15);
  padding: 2.2rem;
  box-shadow: 0 20px 45px rgba(2, 6, 23, 0.5);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform var(--transition-base), border var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: rgba(56, 189, 248, 0.35);
}

.testimonial-card img {
  width: 68px;
  height: 68px;
  border-radius: 999px;
  border: 2px solid rgba(56, 189, 248, 0.45);
  object-fit: cover;
}

.testimonial-card h3 {
  font-size: 1rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  color: #e2e8f0;
}

.testimonial-card p {
  color: var(--text-muted);
  font-style: italic;
  flex: 1;
}

/* Partners */
.partners {
  text-align: center;
}

.partners .section-header p {
  max-width: 560px;
}

.partner-marquee {
  margin: 3rem auto 0;
  position: relative;
  width: min(92vw, 1080px);
  padding: 2.5rem 0;
  overflow: hidden;
  border-radius: 48px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.92));
  box-shadow: inset 0 0 0 1px rgba(56, 189, 248, 0.18), 0 28px 65px rgba(2, 6, 23, 0.65);
  mask-image: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.82) 10%, rgba(0, 0, 0, 0.82) 90%, transparent);
}

.partner-marquee::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: conic-gradient(from 0deg, rgba(56, 189, 248, 0.25), rgba(192, 132, 252, 0.15), rgba(56, 189, 248, 0.25));
  opacity: 0.6;
  animation: marquee-frame 18s linear infinite;
  pointer-events: none;
}

.partner-track {
  display: flex;
  width: max-content;
  gap: 3.75rem;
  animation: partner-scroll 18s linear infinite;
  will-change: transform;
}

.partner-track:hover {
  animation-play-state: paused;
}

.partner-track__group {
  display: flex;
  align-items: center;
  gap: 3.75rem;
}

.partner-track img {
  flex: 0 0 auto;
  max-height: 210px;
  object-fit: contain;
  filter: grayscale(5%) contrast(110%);
  opacity: 0.92;
  border-radius: 24px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  background: rgba(8, 11, 23, 0.78);
  padding: clamp(16px, 1.5vw, 26px);
  box-shadow: 0 22px 45px rgba(2, 6, 23, 0.55);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.partner-track img:hover {
  opacity: 1;
  transform: translateY(-10px) scale(1.06);
}

@keyframes partner-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-frame {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Contact */
.contact {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.08), rgba(192, 132, 252, 0.08));
}

.contact-card {
  background: rgba(8, 11, 23, 0.82);
  border-radius: 32px;
  padding: 3rem;
  border: 1px solid rgba(56, 189, 248, 0.22);
  box-shadow: var(--shadow-soft);
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.contact-card h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 1.2rem;
  font-family: "Playfair Display", serif;
}

.contact-card p {
  color: var(--text-muted);
  max-width: 600px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  background: rgba(2, 6, 23, 0.9);
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  text-align: center;
}

.site-footer p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: rgba(148, 163, 184, 0.75);
}

.footer-links a:hover {
  color: var(--accent);
}

/* Legal */
.legal {
  background: rgba(2, 6, 23, 0.78);
  border-top: 1px solid rgba(56, 189, 248, 0.12);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.25rem;
}

.legal-grid article {
  background: rgba(8, 11, 23, 0.78);
  border-radius: 24px;
  padding: 2.25rem;
  border: 1px solid rgba(56, 189, 248, 0.16);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.45);
}

.legal-grid h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
}

.legal-grid p {
  color: var(--text-muted);
  margin: 0;
}

/* Animations */
[data-animate] {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

@media (max-width: 1024px) {
  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    background: rgba(3, 7, 18, 0.95);
    backdrop-filter: blur(14px);
    flex-direction: column;
    gap: 1.5rem;
    padding: 2.5rem 1.5rem;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    visibility: hidden;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  }

  .site-nav.is-open {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .split,
  .split.reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-marquee {
    width: 100%;
    padding: 1.75rem 0;
    border-radius: 32px;
  }

  .partner-track,
  .partner-track__group {
    gap: 2rem;
  }

  .partner-track img {
    max-height: 120px;
    padding: 14px;
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 0.95rem;
  }

  .hero {
    padding-block: 6rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .pillars {
    grid-template-columns: minmax(0, 1fr);
  }

  .insight-card__inner {
    padding: 2.2rem;
  }

  .insight-card__metrics {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-grid,
  .testimonial-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .partner-track {
    gap: 1.75rem;
  }

  .partner-track img {
    max-height: 120px;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

