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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #292c32;
  color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(1120px, 100% - 3rem);
  margin: 0 auto;
}

section {
  padding: 4rem 0;
}

@media (max-width: 600px) {
  section {
    padding: 3rem 0;
  }
}

/* Header & navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(to bottom, #292c32, rgba(41, 44, 50, 0.95));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #00adee;
}

.logo-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.9rem;
}

.site-nav a {
  position: relative;
  padding-bottom: 0.1rem;
  color: rgba(255, 255, 255, 0.86);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: #00adee;
  transition: width 0.2s ease-out;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.02);
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease, translate 0.2s ease;
}

.nav-toggle span + span {
  margin-top: 2px;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(2px, 4px);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(2px, -4px);
}

@media (max-width: 800px) {
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .site-nav {
    position: fixed;
    inset: 60px 1.5rem auto 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #1f2227;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
    transform-origin: top right;
    transform: scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.16s ease-out, transform 0.16s ease-out;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }
}

/* Hero */
.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #00adee;
}

.hero-title {
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hero-subtitle {
  margin: 0 0 1.8rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 32rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
}

.hero-badge-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #00adee;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid transparent;
  background: none;
  color: inherit;
  cursor: pointer;
  transition: background 0.15s ease-out, color 0.15s ease-out, border-color 0.15s ease-out, transform 0.1s ease-out;
}

.btn-primary {
  background: #00adee;
  border-color: #00adee;
  color: #0b0c10;
  font-weight: 600;
}

.btn-primary:hover {
  background: #67b7e7;
  border-color: #67b7e7;
  transform: translateY(-1px);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  font-size: 0.8rem;
}

.hero-meta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-meta-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}

.hero-media {
  position: relative;
}

.hero-image-frame {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #22252b;
  overflow: hidden;
  min-height: 260px;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.image-placeholder {
  border-radius: 24px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  background: radial-gradient(circle at top left, rgba(78, 168, 222, 0.28), transparent 55%),
    radial-gradient(circle at bottom right, rgba(144, 202, 249, 0.14), #22252b 60%);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.image-placeholder-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.6);
}

.image-placeholder-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.image-placeholder-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.image-placeholder-ribbon {
  position: absolute;
  inset: auto 1.5rem -0.9rem auto;
  padding: 0.35rem 0.9rem;
  background: #101117;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
}

.image-placeholder-ribbon-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #00adee;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media {
    order: -1;
  }
}

/* Section helpers */
.section-heading {
  font-size: 1.6rem;
  margin: 0 0 0.4rem;
}

.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.7);
}

.section-intro {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.8);
  max-width: 40rem;
}

/* Light section variant */
.section-light {
  background: #f4f5f9;
  color: #111827;
}

.section-light .section-kicker {
  color: #6b7280;
}

.section-light .section-intro,
.section-light .contact-tagline,
.section-light .contact-note {
  color: #4b5563;
}

.section-light .about-pill,
.section-light .chip,
.section-light .pill-row-item {
  border-color: rgba(55, 65, 81, 0.25);
  background: rgba(255, 255, 255, 0.8);
  color: #111827;
}

.section-light .about-highlight,
.section-light .panel,
.section-light .contact-card,
.section-light .why-card,
.section-light .company-card {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  color: #111827;
}

.section-light .contact-label,
.section-light .why-label,
.section-light .company-tag,
.section-light .panel-pill {
  color: #6b7280;
}

.section-light .contact-card a {
  color: #0f172a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section-light .contact-card a:hover,
.section-light .contact-card a:focus-visible {
  color: #0b4a6f;
}

/* About / legacy */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 2fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.about-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.about-pill {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

.about-highlight {
  background: #1f2227;
  border-radius: 18px;
  padding: 1.3rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.about-highlight-title {
  font-weight: 600;
  margin-bottom: 0.4rem;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Companies */
.companies {
  background: radial-gradient(circle at top, rgba(78, 168, 222, 0.18), transparent 55%), #24272e;
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 2rem;
}

.company-card {
  background: rgba(17, 18, 25, 0.9);
  border-radius: 18px;
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.company-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(78, 168, 222, 0.18);
  border: 1px solid rgba(78, 168, 222, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.company-title {
  font-weight: 600;
}

.company-tag {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.company-body {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 900px) {
  .companies-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .companies-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Global reach & partners */
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 2fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.reach-map-card {
  margin-top: 2.2rem;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.reach-map-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.1rem 1.2rem 0.8rem;
}

.reach-map-title {
  font-weight: 600;
  color: #0f172a;
}

.reach-map-subtitle {
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: #4b5563;
  max-width: 46rem;
}

.reach-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
  padding-top: 0.1rem;
  font-size: 0.75rem;
  color: #475569;
  white-space: nowrap;
}

.reach-map-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.7);
}

.reach-map-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.reach-map-dot.hub {
  background: #00adee;
}

.reach-map-dot.client {
  background: #0f172a;
}

.reach-map-dot.partner {
  background: #22c55e;
}

.reach-map-svg {
  width: 100%;
  height: auto;
  display: block;
  background: radial-gradient(circle at 20% 10%, rgba(0, 173, 238, 0.12), transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.12), transparent 35%),
    linear-gradient(180deg, rgba(241, 245, 249, 0.75), rgba(255, 255, 255, 0.92));
}

.reach-map-chart {
  width: 100%;
  height: 420px;
  display: block;
}

.reach-map-chart a {
  color: inherit;
}

.reach-map-svg text {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.reach-map-land {
  fill: rgba(15, 23, 42, 0.08);
  stroke: rgba(15, 23, 42, 0.08);
  stroke-width: 1;
}

.reach-map-route {
  fill: none;
  stroke: rgba(0, 173, 238, 0.8);
  stroke-width: 2.2;
  stroke-linecap: round;
}

.reach-map-route.partner {
  stroke: rgba(34, 197, 94, 0.75);
  stroke-dasharray: 6 6;
}

.reach-map-pin {
  stroke: rgba(255, 255, 255, 0.8);
  stroke-width: 2;
}

.reach-map-label {
  font-size: 13px;
  fill: rgba(15, 23, 42, 0.9);
}

.reach-map-label-sub {
  font-size: 11px;
  fill: rgba(71, 85, 105, 0.92);
}

@media (max-width: 720px) {
  .reach-map-head {
    flex-direction: column;
  }

  .reach-map-legend {
    justify-content: flex-start;
    white-space: normal;
  }

  .reach-map-chart {
    height: 360px;
  }
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.1rem;
}

.chip {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.02);
}

.panel {
  background: #171920;
  border-radius: 18px;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.7rem;
}

.panel-title {
  font-weight: 600;
}

.panel-pill {
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.bullet-list {
  padding-left: 1rem;
  margin: 0.4rem 0 0;
}

.bullet-list li + li {
  margin-top: 0.35rem;
}

@media (max-width: 900px) {
  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Inline section image card */
.section-image-card {
  margin-top: 2rem;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.18);
  background: #111827;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.32);
}

.section-image-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 900px) {
  .section-image-card {
    margin-top: 1.6rem;
  }
}

/* Why partner */
.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.pill-row-item {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 2rem;
}

.why-card {
  background: #171920;
  border-radius: 18px;
  padding: 1.4rem 1.3rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.why-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.6);
}

.why-title {
  font-weight: 600;
}

@media (max-width: 900px) {
  .why-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .why-layout .section-image-card {
    margin-top: 1.5rem;
  }

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

@media (max-width: 640px) {
  .why-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Contact */
.contact {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 2fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-card {
  background: #171920;
  border-radius: 18px;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

.contact-row {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: flex-start;
}

.contact-row + .contact-row {
  margin-top: 1rem;
}

.icon-soft {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(78, 168, 222, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.contact-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.6);
}

.contact-main {
  font-weight: 500;
}

.contact-note {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
}

.contact-tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.4rem 0 1.6rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-icons {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

.section-break-parallax{
  padding: 0;
  height: 320px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-break-parallax img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}

@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-break-parallax{
    height: 220px;
  }
}

