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

:root {
  --blue:#1e6fbf;
  --blue-mid:#2a84d8;
  --blue-light:#4fa3e8;
  --navy:#0b1829;
  --white:#ffffff;
  --off:#f2f6fc;
  --muted:#7a91ab;
  --border:rgba(30,111,191,0.15);
}

html { scroll-behavior:smooth; }

body {
  font-family:'Barlow',sans-serif;
  background:var(--white);
  color:var(--navy);
  overflow-x:hidden;
  cursor:none;
}

#cur {
  position:fixed;
  width:10px;
  height:10px;
  background:var(--blue);
  border-radius:50%;
  pointer-events:none;
  z-index:9999;
  transform:translate(-50%,-50%);
  transition:width .25s,height .25s;
}

#cur2 {
  position:fixed;
  width:34px;
  height:34px;
  border:1.5px solid rgba(30,111,191,.45);
  border-radius:50%;
  pointer-events:none;
  z-index:9998;
  transform:translate(-50%,-50%);
  transition:width .3s,height .3s;
}

body.hovering #cur { width:18px; height:18px; }
body.hovering #cur2 { width:54px; height:54px; }

nav {
  position:fixed;
  top:0; left:0; right:0;
  z-index:200;
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 60px;
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border);
  gap:20px;
}

.nav-logo img {
  height:44px;
  display:block;
}

.nav-links {
  display:flex;
  gap:28px;
  list-style:none;
  align-items:center;
  flex-wrap:wrap;
  justify-content:center;
}

.nav-links a {
  font-size:.78rem;
  font-weight:500;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted);
  text-decoration:none;
  transition:color .2s;
}

.nav-links a:hover { color:var(--blue); }

.nav-cta {
  background:var(--blue);
  color:var(--white);
  padding:9px 24px;
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  border:none;
  border-radius:2px;
  cursor:none;
  transition:background .2s, transform .2s;
  box-shadow:0 4px 16px rgba(30,111,191,.35);
  text-decoration:none;
  display:inline-block;
  white-space:nowrap;
}

.nav-cta:hover {
  background:var(--navy);
  transform:translateY(-1px);
}

.hero {
  min-height:100vh;
  background:var(--navy);
  display:grid;
  grid-template-columns:55% 45%;
  position:relative;
  overflow:hidden;
  padding-top:90px;
}

.hero::after {
  content:'';
  position:absolute;
  top:0; right:0; bottom:0;
  width:50%;
  background:linear-gradient(135deg, rgba(30,111,191,.18) 0%, rgba(30,111,191,.04) 100%);
  clip-path:polygon(12% 0,100% 0,100% 100%,0% 100%);
  pointer-events:none;
}

.particles {
  position:absolute;
  inset:0;
  overflow:hidden;
  pointer-events:none;
}

.p {
  position:absolute;
  border-radius:50%;
  background:var(--blue-light);
  opacity:0;
  animation:floatUp 8s ease-in infinite;
}

@keyframes floatUp {
  0% { opacity:0; transform:translateY(0) scale(1); }
  10% { opacity:.18; }
  90% { opacity:.06; }
  100% { opacity:0; transform:translateY(-100vh) scale(.4); }
}

.hero-left {
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:60px 64px 80px 80px;
  position:relative;
  z-index:2;
}

.hero-eyebrow {
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--blue-light);
  margin-bottom:28px;
  opacity:0;
  animation:slideIn .7s ease .1s forwards;
}

.hero-eyebrow span {
  display:inline-block;
  width:32px;
  height:1.5px;
  background:var(--blue-light);
}

.hero-h1 {
  font-family:'Barlow Condensed',sans-serif;
  font-weight:900;
  font-size:clamp(4rem,8vw,8.5rem);
  line-height:.9;
  letter-spacing:-.01em;
  color:var(--white);
  opacity:0;
  animation:slideIn .7s ease .25s forwards;
}

.hero-h1 em {
  font-style:normal;
  color:transparent;
  -webkit-text-stroke:2px var(--blue-mid);
}

.hero-tagline {
  margin-top:32px;
  font-size:1.05rem;
  font-weight:300;
  line-height:1.8;
  color:rgba(255,255,255,.55);
  max-width:420px;
  opacity:0;
  animation:slideIn .7s ease .4s forwards;
}

.hero-tagline strong {
  color:rgba(255,255,255,.85);
  font-weight:500;
}

.hero-btns {
  margin-top:48px;
  display:flex;
  gap:16px;
  align-items:center;
  flex-wrap:wrap;
  opacity:0;
  animation:slideIn .7s ease .55s forwards;
}

.btn-solid {
  background:var(--blue);
  color:var(--white);
  padding:15px 40px;
  border:none;
  border-radius:2px;
  font-family:'Barlow',sans-serif;
  font-size:.85rem;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  cursor:none;
  transition:background .2s, transform .2s, box-shadow .2s;
  box-shadow:0 8px 28px rgba(30,111,191,.45);
  text-decoration:none;
  display:inline-block;
}

.btn-solid:hover {
  background:var(--blue-mid);
  transform:translateY(-2px);
  box-shadow:0 12px 36px rgba(30,111,191,.55);
}

.btn-outline {
  color:rgba(255,255,255,.65);
  border:1px solid rgba(255,255,255,.2);
  padding:14px 32px;
  border-radius:2px;
  font-family:'Barlow',sans-serif;
  font-size:.85rem;
  font-weight:500;
  letter-spacing:.08em;
  text-transform:uppercase;
  cursor:none;
  transition:border-color .2s, color .2s;
  text-decoration:none;
  display:inline-block;
}

.btn-outline:hover {
  border-color:var(--blue-light);
  color:var(--white);
}

.hero-right {
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  z-index:2;
  padding:60px 40px;
}

.logo-glow {
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}

.logo-glow::before {
  content:'';
  position:absolute;
  width:340px;
  height:340px;
  background:radial-gradient(circle, rgba(30,111,191,.35) 0%, transparent 70%);
  border-radius:50%;
  animation:breathe 3s ease-in-out infinite;
}

@keyframes breathe {
  0%,100% { transform:scale(1); opacity:.7; }
  50% { transform:scale(1.12); opacity:1; }
}

.hero-img {
  width:320px;
  max-width:85%;
  position:relative;
  z-index:1;
  filter:drop-shadow(0 20px 60px rgba(30,111,191,.45));
  opacity:0;
  animation:fadeScale .9s ease .7s forwards;
  background:transparent;
  padding:0;
  border-radius:0;
}

@keyframes fadeScale {
  from { opacity:0; transform:scale(.92); }
  to { opacity:1; transform:scale(1); }
}

.scroll-hint {
  position:absolute;
  bottom:36px;
  left:80px;
  display:flex;
  align-items:center;
  gap:12px;
  font-size:.7rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:rgba(255,255,255,.3);
  opacity:0;
  animation:fadeIn .8s ease 1.2s forwards;
}

.scroll-line {
  width:48px;
  height:1px;
  background:rgba(255,255,255,.2);
  position:relative;
  overflow:hidden;
}

.scroll-line::after {
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:var(--blue-light);
  animation:scanLine 2s ease-in-out infinite;
}

@keyframes scanLine {
  0% { left:-100%; }
  100% { left:100%; }
}

.stats {
  background:var(--off);
  border-bottom:1px solid var(--border);
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.stat-cell {
  padding:48px 40px;
  border-right:1px solid var(--border);
  position:relative;
  overflow:hidden;
  transition:background .3s;
}

.stat-cell:last-child { border-right:none; }

.stat-cell:hover { background:var(--white); }

.stat-cell::before {
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  width:0;
  height:3px;
  background:var(--blue);
  transition:width .4s ease;
}

.stat-cell:hover::before { width:100%; }

.stat-num {
  font-family:'Barlow Condensed',sans-serif;
  font-weight:800;
  font-size:3.4rem;
  line-height:1;
  color:var(--navy);
  letter-spacing:-.02em;
}

.stat-num span { color:var(--blue); }

.stat-label {
  margin-top:8px;
  font-size:.72rem;
  font-weight:500;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:var(--muted);
}

.how {
  padding:120px 80px;
  background:var(--white);
}

.section-label {
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.25em;
  text-transform:uppercase;
  color:var(--blue);
  margin-bottom:14px;
}

.section-h2 {
  font-family:'Barlow Condensed',sans-serif;
  font-weight:800;
  font-size:clamp(2.8rem,5vw,5rem);
  line-height:.95;
  letter-spacing:-.01em;
  color:var(--navy);
}

.section-h2 em {
  font-style:normal;
  color:var(--blue);
}

.how-grid {
  margin-top:72px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2px;
  background:var(--border);
}

.how-card {
  background:var(--white);
  padding:52px 44px 44px;
  position:relative;
  overflow:hidden;
  transition:background .3s;
}

.how-card:hover { background:var(--off); }

.how-num {
  font-family:'Barlow Condensed',sans-serif;
  font-weight:900;
  font-size:7rem;
  line-height:1;
  color:rgba(30,111,191,.07);
  position:absolute;
  top:8px;
  right:20px;
  transition:color .3s;
  user-select:none;
}

.how-card:hover .how-num { color:rgba(30,111,191,.12); }

.how-icon-wrap {
  width:52px;
  height:52px;
  border-radius:4px;
  background:linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:28px;
  box-shadow:0 8px 24px rgba(30,111,191,.3);
}

.how-icon-wrap svg { width:24px; height:24px; color:white; }

.how-title {
  font-family:'Barlow Condensed',sans-serif;
  font-weight:700;
  font-size:1.65rem;
  letter-spacing:.02em;
  color:var(--navy);
  margin-bottom:14px;
}

.how-desc {
  font-size:.92rem;
  font-weight:300;
  color:var(--muted);
  line-height:1.75;
}

.how-bar {
  position:absolute;
  bottom:0;
  left:0;
  height:3px;
  width:0;
  background:var(--blue);
  transition:width .4s ease;
}

.how-card:hover .how-bar { width:100%; }

.about {
  background:var(--navy);
  padding:120px 80px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
  position:relative;
  overflow:hidden;
}

.about::before {
  content:'';
  position:absolute;
  top:-200px;
  right:-200px;
  width:600px;
  height:600px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(30,111,191,.15) 0%, transparent 70%);
  pointer-events:none;
}

.about-left { position:relative; z-index:1; }
.about .section-label { color:var(--blue-light); }
.about .section-h2 { color:var(--white); margin-bottom:28px; }

.about-text {
  font-size:.98rem;
  font-weight:300;
  line-height:1.85;
  color:rgba(255,255,255,.5);
  margin-bottom:18px;
}

.about-text strong {
  color:rgba(255,255,255,.85);
  font-weight:500;
}

.about-right { position:relative; z-index:1; }

.feat-list {
  display:flex;
  flex-direction:column;
  gap:3px;
}

.feat {
  display:flex;
  align-items:flex-start;
  gap:20px;
  padding:24px 28px;
  border:1px solid rgba(255,255,255,.06);
  transition:border-color .2s, background .2s;
  position:relative;
  overflow:hidden;
}

.feat:hover {
  background:rgba(30,111,191,.1);
  border-color:rgba(30,111,191,.4);
}

.feat-dot {
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--blue-mid);
  flex-shrink:0;
  margin-top:6px;
  box-shadow:0 0 8px rgba(42,132,216,.7);
}

.feat-body h4 {
  font-size:.9rem;
  font-weight:600;
  color:var(--white);
  margin-bottom:5px;
  letter-spacing:.03em;
}

.feat-body p {
  font-size:.82rem;
  font-weight:300;
  color:rgba(255,255,255,.4);
  line-height:1.65;
}

.slogan-break {
  background:var(--blue);
  padding:72px 80px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  overflow:hidden;
  position:relative;
}

.slogan-break::before {
  content:'';
  position:absolute;
  top:0; left:0; right:0; bottom:0;
  background:repeating-linear-gradient(
    -55deg,
    rgba(255,255,255,.03) 0px, rgba(255,255,255,.03) 1px,
    transparent 1px, transparent 40px
  );
}

.slogan-text {
  font-family:'Barlow Condensed',sans-serif;
  font-weight:900;
  font-size:clamp(2.4rem,4.5vw,4.2rem);
  line-height:1;
  letter-spacing:.01em;
  color:var(--white);
  position:relative;
  z-index:1;
}

.slogan-text em {
  font-style:normal;
  opacity:.55;
}

.slogan-cta {
  position:relative;
  z-index:1;
  flex-shrink:0;
}

.btn-white {
  background:var(--white);
  color:var(--blue);
  padding:16px 40px;
  border:none;
  border-radius:2px;
  font-family:'Barlow',sans-serif;
  font-size:.85rem;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  cursor:none;
  transition:background .2s, transform .2s;
  text-decoration:none;
  display:inline-block;
}

.btn-white:hover {
  background:var(--off);
  transform:translateY(-2px);
}

.cta-wrap {
  background:var(--off);
  padding:140px 80px;
  text-align:center;
  position:relative;
  overflow:hidden;
}

.cta-bg-word {
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  font-family:'Barlow Condensed',sans-serif;
  font-weight:900;
  font-size:22vw;
  color:rgba(30,111,191,.04);
  white-space:nowrap;
  pointer-events:none;
  letter-spacing:.05em;
  user-select:none;
}

.cta-wrap .section-h2 {
  margin-bottom:18px;
  position:relative;
}

.cta-wrap p {
  font-size:1rem;
  color:var(--muted);
  font-weight:300;
  margin-bottom:44px;
  position:relative;
}

.email-row {
  display:inline-flex;
  gap:0;
  position:relative;
  box-shadow:0 8px 32px rgba(30,111,191,.2);
}

.email-row input {
  padding:16px 28px;
  border:1.5px solid var(--border);
  border-right:none;
  font-family:'Barlow',sans-serif;
  font-size:.95rem;
  color:var(--navy);
  background:var(--white);
  outline:none;
  width:320px;
  border-radius:2px 0 0 2px;
  transition:border-color .2s;
}

.email-row input:focus { border-color:var(--blue); }
.email-row input::placeholder { color:var(--muted); }

.email-row button {
  background:var(--blue);
  color:var(--white);
  padding:16px 32px;
  border:none;
  border-radius:0 2px 2px 0;
  font-family:'Barlow',sans-serif;
  font-size:.85rem;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  cursor:none;
  transition:background .2s;
  white-space:nowrap;
}

.email-row button:hover { background:var(--navy); }

footer {
  background:var(--navy);
  padding:40px 80px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-top:1px solid rgba(255,255,255,.06);
}

footer img {
  height:38px;
  opacity:.9;
  background:white;
  padding:5px;
}

.footer-right { text-align:right; }

.footer-right p {
  font-size:.75rem;
  color:rgba(255,255,255,.25);
  letter-spacing:.06em;
  margin-bottom:4px;
}

.footer-tagline {
  font-size:.68rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--blue-light);
  opacity:.7;
}

.reveal {
  opacity:0;
  transform:translateY(36px);
  transition:opacity .75s ease, transform .75s ease;
}

.reveal.up {
  opacity:1;
  transform:translateY(0);
}

@keyframes slideIn {
  from { opacity:0; transform:translateX(-28px); }
  to { opacity:1; transform:translateX(0); }
}

@keyframes fadeIn {
  from { opacity:0; }
  to { opacity:1; }
}

@media(max-width:960px) {
  body { cursor:auto; }
  #cur, #cur2 { display:none; }

  nav {
    padding:12px 16px;
    align-items:flex-start;
    flex-direction:column;
  }

  .nav-links {
    gap:12px;
    width:100%;
    justify-content:flex-start;
  }

  .nav-links a {
    font-size:.68rem;
    letter-spacing:.08em;
  }

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

  .hero-right {
    display:none;
  }

  .hero-left {
    padding:40px 24px 56px;
  }

  .hero-h1 {
    font-size:clamp(3rem,16vw,5.4rem);
  }

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

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

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

  .slogan-break {
    flex-direction:column;
    text-align:center;
  }

  .how, .about, .cta-wrap {
    padding:72px 24px;
  }

  footer {
    flex-direction:column;
    gap:16px;
    text-align:center;
    padding:32px 24px;
  }

  .footer-right { text-align:center; }

  .email-row {
    flex-direction:column;
    width:100%;
    max-width:360px;
    margin:0 auto;
  }

  .email-row input {
    border-right:1.5px solid var(--border);
    border-bottom:none;
    border-radius:2px 2px 0 0;
    width:100%;
    max-width:360px;
  }

  .email-row button {
    border-radius:0 0 2px 2px;
    width:100%;
  }
}

/* ===== NAV LOGO BIGGER ===== */
.nav-logo img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(30,111,191,.35));
}

/* ===== NAV HEIGHT FIX ===== */
nav {
  height: 90px;
}

/* ===== ALIGN FIX ===== */
.nav-logo {
  display: flex;
  align-items: center;
}

/* ===== MOBILE FIX ===== */
@media(max-width:960px) {
  nav {
    height: 72px;
  }

  .nav-logo img {
    height: 48px;
  }
}


/* FORCE NAV LOGO SIZE */
.nav-logo img {
  height: 80px !important;
  width: auto !important;
}

nav {
  height: 100px !important;
}

