:root {
  --navy: #0a0f1e;
  --deep: #0d1528;
  --accent: #00c8ff;
  --accent2: #0066cc;
  --white: #ffffff;
  --gray: #8a9ab5;
  --card-bg: rgba(255,255,255,0.04);
  --border: rgba(0,200,255,0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ── NAV ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  background: rgba(10,15,30,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.site-logo {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
  text-decoration: none;
}
.site-logo span { color: var(--accent); }

.nav-menu {
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-menu a {
  text-decoration: none;
  color: var(--gray);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}
.nav-menu a:hover { color: var(--accent); }

.nav-cta a {
  background: var(--accent) !important;
  color: var(--navy) !important;
  padding: 10px 22px !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
}
.nav-cta a:hover { opacity: .85; }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 40px 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://framerusercontent.com/images/A3ppUKXHZIcF7zTyGZ9vRF8fzlY.jpg?width=3000');
  background-size: cover;
  background-position: center;
  filter: brightness(.28);
}

.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,255,.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
}

.hero-badge {
  display: inline-block;
  background: rgba(0,200,255,.12);
  border: 1px solid rgba(0,200,255,.3);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 7vw, 82px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2.5px;
  margin-bottom: 24px;
}
.hero h1 span { color: var(--accent); }

.hero-desc {
  font-size: 18px;
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.75;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--navy);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 38px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: .3px;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 0 40px rgba(0,200,255,.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(0,200,255,.5);
}

/* ── SECTIONS ── */
.section { padding: 100px 60px; }
.section--dark { background: var(--deep); }

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.section-desc {
  color: var(--gray);
  font-size: 17px;
  line-height: 1.8;
  max-width: 680px;
  font-weight: 300;
}

.container { max-width: 1200px; margin: 0 auto; }

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
  margin-top: 60px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, border-color .3s;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(0,200,255,.4); }
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 52px; height: 52px;
  background: rgba(0,200,255,.1);
  border: 1px solid rgba(0,200,255,.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 22px;
}

.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -.3px;
}

.feature-card p { color: var(--gray); font-size: 15px; line-height: 1.7; font-weight: 300; }

/* ── STATS ── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 70px;
}

.stat-item { background: var(--navy); padding: 40px; text-align: center; }

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 50px;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--accent);
  display: block;
}
.stat-label { color: var(--gray); font-size: 14px; font-weight: 300; margin-top: 6px; }

/* ── SOLUTIONS ── */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 28px;
  margin-top: 60px;
}

.solution-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 380px;
  cursor: pointer;
  transition: transform .35s;
}
.solution-card:hover { transform: scale(1.02); }

.solution-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.solution-card:hover img { transform: scale(1.05); }

.solution-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,15,30,.95) 0%, rgba(10,15,30,.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
}

.solution-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.solution-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

.solution-card p { color: var(--gray); font-size: 14px; line-height: 1.6; margin-bottom: 18px; font-weight: 300; }

.solution-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: gap .2s;
}
.solution-link:hover { gap: 12px; }

/* ── TESTIMONIAL ── */
.testimonial-block {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 70px 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.testimonial-block::before {
  content: '"';
  position: absolute;
  top: -20px; left: 40px;
  font-family: 'Syne', sans-serif;
  font-size: 200px;
  color: rgba(0,200,255,.06);
  line-height: 1;
}

.testimonial-block blockquote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(17px, 2.5vw, 26px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -.5px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.testimonial-source { color: var(--gray); font-size: 14px; }
.testimonial-source strong { color: var(--accent); font-weight: 600; }

/* ── PARTNERS ── */
.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.partner-join {
  background: linear-gradient(135deg, rgba(0,200,255,.08), rgba(0,102,204,.08));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px;
}

.partner-join h3 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.partner-join p { color: var(--gray); font-size: 15px; line-height: 1.7; margin-bottom: 28px; font-weight: 300; }

/* ── CONTACT ── */
.contact-card {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 48px;
  flex-wrap: wrap;
}

.contact-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  flex-shrink: 0;
}

.contact-name {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.3px;
  margin-bottom: 4px;
}

.contact-role {
  color: var(--gray);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.contact-links { display: flex; flex-direction: column; gap: 10px; }

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
  font-size: 15px;
  transition: color .2s;
}
.contact-link:hover { color: var(--accent); }

.contact-link-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(0,200,255,.1);
  border: 1px solid rgba(0,200,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* ── CTA ── */
.cta-section {
  text-align: center;
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,200,255,.08) 0%, transparent 70%);
}

.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }

.cta-image {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 48px;
  opacity: .55;
}

.cta-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 16px;
  line-height: 1.1;
}

.cta-section p { color: var(--gray); font-size: 17px; margin-bottom: 42px; font-weight: 300; }

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 60px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p {
  color: var(--gray);
  font-size: 14px;
  margin-top: 12px;
  line-height: 1.7;
  font-weight: 300;
  max-width: 240px;
}

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  text-decoration: none;
  color: var(--gray);
  font-size: 14px;
  font-weight: 300;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { color: var(--gray); font-size: 13px; font-weight: 300; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .site-header { padding: 16px 24px; }
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--deep); border-bottom: 1px solid var(--border); padding: 20px 24px; gap: 16px; }
  .nav-menu.open { display: flex; }
  .menu-toggle { display: block; }
  .section { padding: 70px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-bar { grid-template-columns: 1fr; }
  .testimonial-block { padding: 40px 28px; }
  .site-footer { grid-template-columns: 1fr 1fr; padding: 40px 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; padding: 20px 24px; }
  .cta-section { padding: 80px 24px; }
  .contact-card { padding: 28px 24px; }
}
