:root {
  --bg: #ffffff;
  --bg2: #f3f8ff;
  --bg3: #ffffff;
  --surface: #0a2342;
  --border: rgba(10, 35, 66, 0.14);
  --border-light: rgba(10, 35, 66, 0.28);
  --text: #0a0f18;
  --text-muted: #1e293b;
  --text-dim: #334155;
  --accent: #0a2342;
  --accent2: #0f172a;
  --accent3: #38bdf8;
  --accent-dim: rgba(56, 189, 248, 0.14);
  --accent2-dim: rgba(10, 35, 66, 0.12);
  --font-display: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

site-nav,
page-header,
site-footer {
  display: block;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 78px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-decoration: none;
}

.brand-wordmark {
  width: 150px;
  height: auto;
  display: block;
  transform: translateY(1px);
}

.brand-tail {
  margin-left: -80px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  transform: translateY(5px);
  opacity: 0.95;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 16px;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-cta {
  background: var(--accent);
  color: #ffffff !important;
  font-weight: 700;
  padding: 9px 22px !important;
  border-radius: 8px;
  margin-left: 8px;
}

.hero {
  color: #ffffff;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 48px 96px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: linear-gradient(rgba(17, 24, 39, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.06) 1px, transparent 1px);
  background-size: 46px 46px;
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.22) 0%, transparent 72%);
  top: -100px;
  right: -100px;
}

.hero-tag {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(56, 189, 248, 0.35);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  width: fit-content;
  text-transform: uppercase;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 118px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  max-width: 1000px;
  margin-bottom: 24px;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  max-width: 720px;
  margin-bottom: 18px;
}

h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-sub {
  font-size: 22px;
  color: #ffffff !important;
  max-width: 760px;
  margin-bottom: 40px;
}

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

.btn-primary,
.btn-secondary {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
}

.btn-secondary {
  border: 1px solid var(--border-light);
  color: var(--text);
  background: transparent;
}

.trusted,
section,
.cta-banner,
footer {
  padding-left: 56px;
  padding-right: 56px;
}

.trusted {
  padding-top: 28px;
  padding-bottom: 28px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}

.trusted-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 22px;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--text-dim);
  font-family: var(--font-display);
}

section {
  padding-top: 108px;
  padding-bottom: 108px;
}

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

.section-tag {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 660px;
  margin-bottom: 44px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

.card {
  background: var(--bg3);
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: 20px;
}

.card p {
  color: var(--text-muted);
}

.team-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 14px;
  border: 1px solid var(--border);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.metric {
  background: var(--bg3);
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.metric-num {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--accent3);
}

.metric-label {
  color: var(--text-muted);
}

.cta-banner {
  text-align: center;
  padding-top: 110px;
  padding-bottom: 110px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.hero-media {
  margin-top: 38px;
  max-width: 760px;
  border-radius: 18px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.12);
  animation: floatMedia 6s ease-in-out infinite;
}

.hero-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.hero-media-bar {
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  border-top: 1px solid var(--border);
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.2), rgba(10, 35, 66, 0.16));
}

.hero-media-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--text);
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.visual-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.visual-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.visual-card p {
  padding: 10px 12px;
  color: var(--text-muted);
  font-size: 14px;
}

.blend-showcase {
  padding-top: 0;
}

.blend-card {
  position: relative;
  min-height: 340px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.blend-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(10, 35, 66, 0.8) 10%, rgba(56, 189, 248, 0.32) 100%);
}

.blend-content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  max-width: 560px;
  padding: 42px;
}

.blend-content h3 {
  font-size: 30px;
  margin-bottom: 10px;
}

.blend-content p {
  color: #e2e8f0;
}

@keyframes floatMedia {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

.cta-banner p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 26px;
}

footer {
  padding-top: 64px;
  padding-bottom: 36px;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}

.footer-brand p,
.footer-col a,
.footer-copy {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-socials a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-socials a:hover {
  color: var(--accent);
}

.page-hero {
  padding: 170px 56px 92px;
  background: linear-gradient(160deg, #0a2342 0%, #123c69 100%);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}

.page-hero .section-tag {
  color: #ffffff;
  opacity: 0.9;
}

.page-hero h1 {
  opacity: 0.95;
  color: #ffffff !important;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
  max-width: 900px;
  margin-bottom: 8px;
}

.page-hero .hero-sub {
  color: #ffffff !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.28);
  opacity: 0.95;
  max-width: 820px;
  margin-bottom: 0;
}

.ecosystem-strip {
  white-space: nowrap;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}

.ecosystem-track {
  display: inline-block;
  padding: 16px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  animation: scrollTrack 25s linear infinite;
}

@keyframes scrollTrack {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

@media (max-width: 900px) {
  nav,
  .hero,
  .trusted,
  section,
  .cta-banner,
  footer,
  .page-hero {
    padding-left: 24px;
    padding-right: 24px;
  }
  .nav-links {
    display: none;
  }
  .footer-top,
  .split {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
