:root{
  /* Logo-inspired palette */
  --blue: #024EF9;
  --navy: #041A60;
  --green: #75AC4E;

  --bg: #070A12;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.09);
  --stroke: rgba(255,255,255,.14);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);

  --shadow: 0 24px 80px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 24px;

  --container: 1120px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 800px at 70% -10%, rgba(2,78,249,.18), transparent 60%),
    radial-gradient(1000px 700px at 10% 10%, rgba(116,170,78,.14), transparent 55%),
    radial-gradient(900px 700px at 70% 70%, rgba(2,78,249,.10), transparent 60%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

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

.section{
  padding: 86px 0;
  position: relative;
}
.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.section-head h2{
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
  margin:0;
}
.section-head p{
  margin:0;
  max-width: 60ch;
  color: var(--muted);
  line-height: 1.6;
}

/* Background Orbs */
.bg-orbs{ position: fixed; inset: 0; pointer-events: none; z-index: -2; }
.orb{
  position:absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .35;
  mix-blend-mode: screen;
  animation: float 10s ease-in-out infinite;
}
.orb-a{ background: rgba(2,78,249,.55); left:-180px; top: 10%; animation-duration: 12s; }
.orb-b{ background: rgba(116,170,78,.55); right:-220px; top: 25%; animation-duration: 14s; }
.orb-c{ background: rgba(2,78,249,.35); right: 10%; bottom:-220px; animation-duration: 16s; }

@keyframes float{
  0%,100%{ transform: translate3d(0,0,0) scale(1); }
  50%{ transform: translate3d(0,-18px,0) scale(1.04); }
}

/* Sparks canvas */
#sparks{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: .30;
  pointer-events: none;
}

/* Navbar */
.nav-wrap{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(8,10,18,.78), rgba(8,10,18,.42));
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 18px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
}

/* Navbar logo (top-left) */
.brand .brand-logo{
  height: 128px; /* 2x */
  width: auto;
  max-height: none;
  border-radius: 0;
  filter: none;
  display:block;
  object-fit: contain;
}

/* Theme logo swapping (default = dark) */
.logo-light{ display:none; }
html[data-theme="light"] .logo-dark{ display:none; }
html[data-theme="light"] .logo-light{ display:block; }

@media (max-width: 760px){
  .brand .brand-logo{ height: 96px; }
}
.brand img:not(.brand-logo){
  width: 28px; height: 28px;
  border-radius: 12px;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.35));
}
.brand-text{ display:flex; flex-direction: column; line-height: 1.05; }
.brand-name{ font-weight: 800; letter-spacing: -0.02em; }
.brand-sub{ font-size: 12px; color: var(--muted); }

.nav-links{
  display:flex;
  align-items:center;
  gap: 18px;
}
.nav-links a{
  color: rgba(255,255,255,.82);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 12px;
  transition: background .2s ease, color .2s ease;
}
.nav-links a:hover{
  background: rgba(255,255,255,.06);
  color: #fff;
}

.nav-toggle{
  display:none;
  width:44px; height:44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  cursor: pointer;
  position: relative;
}
.nav-toggle span{
  position:absolute;
  left:50%;
  top:50%;
  width:24px;
  height:2.5px;
  background: rgba(255,255,255,.86);
  border-radius: 999px;
  transform-origin: center;
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1),
              opacity 260ms cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-toggle span:nth-child(1){ transform: translate3d(-50%, -8px, 0); }
.nav-toggle span:nth-child(2){ transform: translate3d(-50%,  0px, 0); }
.nav-toggle span:nth-child(3){ transform: translate3d(-50%,  8px, 0); }

.nav-toggle.is-open span:nth-child(1){ transform: translate3d(-50%, 0px, 0) rotate(-45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity: 0; }
.nav-toggle.is-open span:nth-child(3){ transform: translate3d(-50%, 0px, 0) rotate(45deg); }


/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  min-height: 44px;
  line-height: 1;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(135deg, rgba(2,78,249,.95), rgba(116,170,78,.75));
  color: #071020;
  font-weight: 800;
  box-shadow: 0 16px 50px rgba(2,78,249,.20);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 22px 60px rgba(2,78,249,.26);
}
.btn:active{ transform: translateY(0); }

.btn-sm{ padding: 10px 16px; font-size: 14px;
  min-height: 44px;
  border-radius: 999px;
}

/* Prevent nav link styling from altering CTA button */
.nav-links a.btn{
  padding: 10px 16px;
  border-radius: 999px;
  min-height: 44px;
  line-height: 1;
  background: linear-gradient(135deg, rgba(2,78,249,.95), rgba(116,170,78,.75));
  color: #071020;
  border: 1px solid rgba(255,255,255,.12);
}
.btn-ghost{
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: none;
}
.btn-ghost:hover{ background: rgba(255,255,255,.07); }

.link{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-weight: 700;
  color: rgba(255,255,255,.86);
  margin-top: 14px;
}
.link:hover{ color: #fff; }

/* Hero */
.hero{
  position: relative;
  padding: 74px 0 54px;
  overflow:hidden;
}
.hero-grid{
  position:absolute; inset: -200px;
  background:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: .12;
  transform: rotate(6deg);
  mask-image: radial-gradient(closest-side, rgba(0,0,0,1), rgba(0,0,0,0));
  pointer-events:none;
}
.hero-content{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 36px;
  align-items:center;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.82);
  font-weight: 700;
  font-size: 13px;
  margin: 0 0 14px;
}
.kicker .dot{
  width: 8px; height: 8px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(2,78,249,.14);
}

.hero h1{
  margin: 0 0 14px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.grad{
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead{
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 62ch;
}
.hero-cta{ display:flex; flex-wrap: wrap; gap: 12px; }

.trust-row{
  margin-top: 18px;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-pill{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 13px;
  color: rgba(255,255,255,.82);
  display:flex; align-items:center; gap: 10px;
}
.trust-icon{ filter: drop-shadow(0 10px 20px rgba(0,0,0,.25)); }

.hero-card{
  position: relative;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-card-top{
  padding: 16px;
  display:flex;
  align-items:center;
  justify-content: space-between;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(116,170,78,.10);
  border: 1px solid rgba(116,170,78,.25);
  font-weight: 700;
  color: rgba(255,255,255,.86);
  font-size: 13px;
}
.pulse{
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(116,170,78,.55);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(116,170,78,.55); }
  70%{ box-shadow: 0 0 0 14px rgba(116,170,78,0); }
  100%{ box-shadow: 0 0 0 0 rgba(116,170,78,0); }
}

.mini-grid{
  width: 76px; height: 40px;
  border-radius: 14px;
  background:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: .55;
}

.hero-card-body{ padding: 0 18px 18px; }
.hero-card-body h3{ margin: 6px 0 8px; font-size: 18px; letter-spacing: -.02em; }
.hero-card-body p{ margin:0; color: var(--muted); line-height: 1.65; }

.statline{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.stat{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  padding: 12px 12px;
}
.stat-num{
  font-weight: 900;
  letter-spacing: -.02em;
  font-size: 18px;
}
.stat-label{
  font-size: 12px;
  color: rgba(255,255,255,.72);
  margin-top: 4px;
}

.hero-card-bottom{
  display:flex;
  gap: 12px;
  padding: 14px 18px 18px;
}
.trace{
  height: 8px;
  flex: 1;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(2,78,249,.65), rgba(116,170,78,.35), rgba(2,78,249,.10));
  opacity: .7;
  transform-origin: left center;
  animation: trace 2.8s ease-in-out infinite;
}
.trace:nth-child(2){ animation-delay: .25s; }
.trace:nth-child(3){ animation-delay: .5s; }
@keyframes trace{
  0%,100%{ transform: scaleX(.25); opacity: .35; }
  50%{ transform: scaleX(1); opacity: .85; }
}

.scroll-hint{ display:none; /* removed */ 
  margin-top: 26px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  opacity: .75;
}
.mouse{
  width: 18px; height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  position: relative;
}
.mouse::after{
  content:"";
  position:absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.70);
  left: 50%; top: 7px;
  transform: translateX(-50%);
  animation: wheel 1.4s ease-in-out infinite;
}
@keyframes wheel{
  0%{ transform: translate(-50%, 0); opacity: .6; }
  60%{ transform: translate(-50%, 10px); opacity: 1; }
  100%{ transform: translate(-50%, 10px); opacity: 0; }
}
.scroll-text{ font-size: 12px; color: rgba(255,255,255,.7); }

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.card{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  padding: 18px;
  box-shadow: 0 20px 70px rgba(0,0,0,.35);
  position: relative;
  overflow:hidden;
}
.card::before{
  content:"";
  position:absolute; inset: -2px;
  background: radial-gradient(500px 200px at 20% 0%, rgba(2,78,249,.18), transparent 55%),
              radial-gradient(500px 220px at 80% 40%, rgba(116,170,78,.14), transparent 60%);
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events:none;
}
.card:hover::before{ opacity: 1; }
.card-icon{
  width: 44px; height: 44px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  margin-bottom: 12px;
  font-size: 20px;
}
.card h3{ margin: 0 0 8px; letter-spacing: -.02em; }
.card p{ margin: 0 0 12px; color: var(--muted); line-height: 1.65; }

.bullets{ margin: 0; padding-left: 18px; color: rgba(255,255,255,.78); }
.bullets li{ margin: 8px 0; }

/* CTA band */
.cta-band{
  margin-top: 18px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(135deg, rgba(2,78,249,.20), rgba(116,170,78,.10));
  padding: 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}
.cta-band h3{ margin:0 0 4px; letter-spacing: -.02em; }
.cta-band p{ margin:0; color: rgba(255,255,255,.78); }

/* Industries */
.industry-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.industry{
  padding: 18px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}
.industry-top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.chip{
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  font-size: 12px;
  color: rgba(255,255,255,.78);
}
.industry p{ margin:0; color: var(--muted); line-height: 1.65; }

.stats{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.statbox{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding: 14px;
}
.big{
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -.02em;
}
.label{ color: rgba(255,255,255,.75); font-size: 13px; margin-top: 4px; }

/* Steps */
.steps{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.step{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding: 18px;
}
.step-num{
  font-weight: 900;
  color: rgba(255,255,255,.75);
  letter-spacing: .08em;
  font-size: 12px;
}
.step h3{ margin: 10px 0 8px; }
.step p{ margin:0; color: var(--muted); line-height: 1.65; }

.quote{
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
}
.quote p{
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: -.02em;
}
.quote span{ color: rgba(255,255,255,.72); }

/* Split */
.split{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items:start;
}
.checklist{ margin-top: 14px; display:grid; gap: 10px; }
.check{
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.82);
}

/* Profile card */
.profile-card{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding: 18px;
}
.profile-top{
  display:flex;
  align-items:center;
  gap: 12px;
}
.avatar{
  width: 44px; height: 44px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(2,78,249,.9), rgba(116,170,78,.6));
  color: #071020;
  font-weight: 900;
}
.name{ font-weight: 900; letter-spacing: -.02em; }
.role{ font-size: 13px; color: rgba(255,255,255,.72); margin-top: 2px; }
.profile-body{ margin-top: 14px; }
.info-row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.info-row .label{ margin:0; }
.divider{ height: 1px; background: rgba(255,255,255,.08); margin: 12px 0; }
.small{ color: rgba(255,255,255,.72); line-height: 1.6; margin: 0; }

/* Contact */
.contact-grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 14px;
}
.form, .contact-card{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding: 18px;
}
.form label{ display:block; }
.form span{
  display:block;
  font-size: 13px;
  color: rgba(255,255,255,.78);
  margin: 10px 0 8px;
  font-weight: 700;
}
.form input, .form textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color: rgba(255,255,255,.92);
  padding: 12px 12px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form input:focus, .form textarea:focus{
  border-color: rgba(2,78,249,.55);
  box-shadow: 0 0 0 4px rgba(2,78,249,.14);
}
.row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-actions{
  margin-top: 14px;
  display:flex;
  align-items:center;
  gap: 12px;
}
.form-note{ color: rgba(255,255,255,.72); font-size: 13px; }

.contact-card h3{ margin: 0 0 8px; }
.contact-lines{ display:grid; gap: 10px; margin-top: 14px; }
.contact-line{
  display:flex;
  gap: 12px;
  align-items:center;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
}
.contact-line strong{ display:block; }
.contact-line em{ display:block; font-style: normal; color: rgba(255,255,255,.72); font-size: 12px; margin-top: 2px; }
.c-ico{
  width: 42px; height: 42px;
  display:grid; place-items:center;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
}

.mini-cta{
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(400px 160px at 30% 0%, rgba(2,78,249,.14), transparent 60%),
    radial-gradient(420px 180px at 80% 70%, rgba(116,170,78,.12), transparent 60%),
    rgba(255,255,255,.03);
}
.sparkline{
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(2,78,249,.70), rgba(116,170,78,.55), rgba(2,78,249,.20));
  opacity: .75;
  margin-bottom: 10px;
}


/* Footer logo */
.foot-logo{
  height: 64px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 760px){
  .foot-logo{ height: 52px; }
}
/* Footer */
.footer{
  padding: 26px 0 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.25);
}
.foot{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
}
.foot-left{
  display:flex;
  align-items:center;
  gap: 12px;
}
.foot-left img{
  width: 36px; height: 36px;
  border-radius: 12px;
}
.foot-title{ font-weight: 900; letter-spacing: -.02em; }
.foot-sub{ color: rgba(255,255,255,.7); font-size: 12px; margin-top: 2px; }
.foot-right{ display:flex; gap: 12px; }
.foot-right a{ color: rgba(255,255,255,.76); font-weight: 700; font-size: 13px; padding: 8px 10px; border-radius: 12px; }
.foot-right a:hover{ background: rgba(255,255,255,.06); color: #fff; }
.copy{
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.62);
  font-size: 12px;
}

/* Reveal on scroll */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.show{
  opacity: 1;
  transform: translateY(0);
}

/* Tilt helper (keeps text crisp) */
.tilt{
  transform-style: preserve-3d;
  will-change: transform;
}

/* Responsive */
@media (max-width: 980px){
  .hero-content{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .industry-grid{ grid-template-columns: 1fr; }
  .stats{ grid-template-columns: 1fr 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .section-head{ flex-direction: column; align-items: flex-start; }
}

@media (max-width: 760px){
  .nav-toggle{ display:block; }
  .nav-links{
    position: absolute;
    right: 20px;
    top: 66px;
    width: min(320px, calc(100% - 40px));
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(10,12,20,.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 30px 90px rgba(0,0,0,.45);
    display:none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .nav-links.open{ display:flex; }
  .nav-links a{ padding: 12px 12px; }
  .row{ grid-template-columns: 1fr; }
}

50%{ transform: translate3d(2%, 2%, 0) scale(1.05); }
}


/* ===== Fix pill fills (remove "unfilled" edge look) ===== */
.btn{
  border: 0 !important;
  background-clip: border-box;
}
.nav-links a.btn{ border: 0 !important; }
.btn-ghost{
  border: 1px solid rgba(255,255,255,.18);
}
.kicker, .trust-pill, .chip{
  border-color: rgba(255,255,255,.10);
}

/* ===== Theme toggle button ===== */
.theme-toggle{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.9);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: background .2s ease, transform .15s ease, border-color .2s ease;
}
.theme-toggle:hover{ background: rgba(255,255,255,.07); transform: translateY(-1px); }
.theme-toggle:active{ transform: translateY(0); }
.theme-ico{ font-size: 16px; line-height: 1; }

/* Place toggle nicely in mobile menu too */
@media (max-width: 760px){
  .theme-toggle{
    width: 100%;
    border-radius: 16px;
    height: 44px;
  }
}

/* ===== Light theme (toggle) ===== */
html[data-theme="light"]{
  --bg: #f6f7fb;
  --text: rgba(8,10,18,.92);
  --muted: rgba(8,10,18,.70);
  --panel: rgba(8,10,18,.04);
  --panel2: rgba(8,10,18,.06);
  --stroke: rgba(8,10,18,.12);
  --shadow: 0 18px 60px rgba(0,0,0,.14);
}

html[data-theme="light"] body{
  background:
    radial-gradient(1200px 800px at 70% -10%, rgba(2,78,249,.12), transparent 60%),
    radial-gradient(1000px 700px at 10% 10%, rgba(116,170,78,.10), transparent 55%),
    radial-gradient(900px 700px at 70% 70%, rgba(2,78,249,.08), transparent 60%),
    var(--bg);
  color: var(--text);
}

html[data-theme="light"] .nav-wrap{
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.64));
  border-bottom: 1px solid rgba(8,10,18,.08);
}
html[data-theme="light"] .nav-links a{
  color: rgba(8,10,18,.78);
}
html[data-theme="light"] .nav-links a:hover{
  background: rgba(8,10,18,.05);
  color: rgba(8,10,18,.92);
}
html[data-theme="light"] .btn-ghost{
  background: rgba(8,10,18,.04);
  color: rgba(8,10,18,.92);
  border: 1px solid rgba(8,10,18,.12);
}
html[data-theme="light"] .card,
html[data-theme="light"] .industry,
html[data-theme="light"] .statbox,
html[data-theme="light"] .step,
html[data-theme="light"] .form,
html[data-theme="light"] .contact-card,
html[data-theme="light"] .profile-card,
html[data-theme="light"] .cta-band,
html[data-theme="light"] .quote,
html[data-theme="light"] .check{
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(8,10,18,.08);
}
html[data-theme="light"] .footer{
  background: rgba(255,255,255,.74);
  border-top: 1px solid rgba(8,10,18,.08);
}
html[data-theme="light"] .copy{
  border-top: 1px solid rgba(8,10,18,.08);
  color: rgba(8,10,18,.60);
}

/* ===== Aurora: slightly interactive (subtle parallax) ===== */
.aurora{
  will-change: transform;
}

/* ===== Theme slider switch ===== */
.theme-switch{
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.switch-track{
  width: 52px;
  height: 28px;
  background: rgba(255,255,255,.25);
  border-radius: 999px;
  position: relative;
  display: block;
  transition: background .25s ease;
}

.switch-thumb{
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  transition: transform .28s cubic-bezier(.4,0,.2,1);
}

html[data-theme="light"] .switch-track{
  background: rgba(0,0,0,.15);
}

html[data-theme="light"] .switch-thumb{
  transform: translateX(24px);
}






/* ===== Interactive hero glow (ENZATECH-style, boosted + compatible) ===== */
.hero{ position: relative; overflow: hidden; }
.hero__bg{
  position:absolute;
  inset: 0;
  pointer-events:none;
  z-index: 0;
}
.hero-grid{ z-index: 0; }
.hero-content{ position: relative; z-index: 1; }

.glow{
  position:absolute;
  width: 720px;
  height: 720px;
  filter: blur(95px);
  opacity: 0.92;
  border-radius: 50%;
  /* Use transform for broad browser support */
  transform: translate3d(var(--gx, 0px), var(--gy, 0px), 0);
  will-change: transform;
  mix-blend-mode: screen;
  animation: floatGlow 9s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}
@keyframes floatGlow{
  0%{ transform: translate3d(var(--gx, 0px), var(--gy, 0px), 0) scale(1); }
  100%{ transform: translate3d(var(--gx, 0px), calc(var(--gy, 0px) - 22px), 0) scale(1.05); }
}
.glow--a{
  left: -260px; top: -320px;
  background: radial-gradient(circle at 30% 30%, rgba(2,78,249,.46), transparent 62%);
}
.glow--b{
  right: -320px; top: 20px;
  background: radial-gradient(circle at 30% 30%, rgba(117,172,78,.40), transparent 62%);
  animation-duration: 11s;
}

/* Light theme tuning */
html[data-theme="light"] .glow{
  opacity: .55;
  mix-blend-mode: multiply;
  filter: blur(90px);
}


/* ===== Light mode contrast fixes (ensure all text is readable) ===== */
html[data-theme="light"] .kicker,
html[data-theme="light"] .trust-pill,
html[data-theme="light"] .chip{
  color: rgba(8,10,18,.80);
  background: rgba(8,10,18,.03);
  border-color: rgba(8,10,18,.10);
}

html[data-theme="light"] .trust-pill{
  box-shadow: none;
}

html[data-theme="light"] .trust-pill .trust-icon{
  filter: none;
  opacity: .9;
}

html[data-theme="light"] .badge{
  color: rgba(8,10,18,.86);
  background: rgba(117,172,78,.18);
  border-color: rgba(117,172,78,.32);
}

html[data-theme="light"] .pulse{
  box-shadow: 0 0 0 0 rgba(117,172,78,.25);
}

html[data-theme="light"] .stat{
  background: rgba(8,10,18,.03);
  border-color: rgba(8,10,18,.08);
}
html[data-theme="light"] .stat-label,
html[data-theme="light"] .label,
html[data-theme="light"] .role,
html[data-theme="light"] .small,
html[data-theme="light"] .foot-sub,
html[data-theme="light"] .copy{
  color: rgba(8,10,18,.68);
}

html[data-theme="light"] .nav-toggle span{
  background: rgba(8,10,18,.78);
}

html[data-theme="light"] .mini-grid{
  opacity: .35;
}

html[data-theme="light"] .trace{
  opacity: .55;
}

html[data-theme="light"] .hero-grid{
  opacity: .08;
}

html[data-theme="light"] .contact-line em{
  color: rgba(8,10,18,.65);
}

html[data-theme="light"] .info-row{
  border-bottom: 1px solid rgba(8,10,18,.08);
}

html[data-theme="light"] .divider{
  background: rgba(8,10,18,.08);
}

html[data-theme="light"] .form input,
html[data-theme="light"] .form textarea{
  background: rgba(255,255,255,.85);
  color: rgba(8,10,18,.92);
  border-color: rgba(8,10,18,.12);
}
html[data-theme="light"] .form input::placeholder,
html[data-theme="light"] .form textarea::placeholder{
  color: rgba(8,10,18,.45);
}

html[data-theme="light"] .contact-line,
html[data-theme="light"] .check{
  background: rgba(255,255,255,.85);
  border-color: rgba(8,10,18,.10);
}

html[data-theme="light"] .c-ico{
  background: rgba(8,10,18,.04);
  border-color: rgba(8,10,18,.10);
}


/* ===== Light mode: force checklist text to dark ===== */
html[data-theme="light"] .check,
html[data-theme="light"] .check span,
html[data-theme="light"] .check p,
html[data-theme="light"] .check div{
  color: rgba(8,10,18,.90) !important;
}

html[data-theme="light"] .check::before{
  filter: none;
}

html[data-theme="light"] .check{
  background: rgba(255,255,255,.90);
  border-color: rgba(8,10,18,.12);
}


/* ===== Light mode: mobile menu readability ===== */
html[data-theme="light"] .nav-links{
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(8,10,18,.10);
  box-shadow: 0 30px 90px rgba(0,0,0,.18);
}

html[data-theme="light"] .nav-links a{
  color: rgba(8,10,18,.86);
}

html[data-theme="light"] .nav-links a:hover{
  background: rgba(8,10,18,.06);
  color: rgba(8,10,18,.96);
}

/* Keep the CTA button readable in the menu */
html[data-theme="light"] .nav-links a.btn{
  color: #071020;
}


/* ===== Solid white mobile menu (light mode) ===== */
@media (max-width: 760px){
  html[data-theme="light"] .nav-links{
    background: #fff !important;
    backdrop-filter: none !important;
  }
}


/* ===== Light mode header: consistent white bar ===== */
html[data-theme="light"] .nav-wrap{
  background: #ffffff !important;
  border-bottom: 1px solid rgba(8,10,18,.08);
}


/* ===== Light mode header: remove outlines/borders (clean bar) ===== */
html[data-theme="light"] .nav-wrap{
  border-bottom: 0 !important;
  box-shadow: none !important;
}

html[data-theme="light"] .nav-inner,
html[data-theme="light"] .nav{
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* If there's a pill container around the nav links, make it seamless */
html[data-theme="light"] .nav-links{
  border: 0 !important;
  box-shadow: none !important;
}

/* Reduce any active/hover background that looks like a border box */
html[data-theme="light"] .nav-links a{
  border: 0 !important;
}


/* ===== Pill/oval fill fix (ensure gradients reach edges) ===== */
.btn,
.nav-links a.btn,
.btn-sm{
  border: 0 !important;
  background-clip: padding-box !important;
  box-shadow: none;
}

.btn::before,
.btn::after{
  display:none !important;
}

/* If any button wrapper adds an inner inset border, neutralize */
.btn{
  outline: none;
}


/* Screen-reader only */
.sr-only{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  white-space:nowrap !important;
  border:0 !important;
}


/* ===== Light mode QC: Approach + Quote visibility ===== */
html[data-theme="light"] .section-alt{
  background: transparent;
}

html[data-theme="light"] .step,
html[data-theme="light"] .quote{
  background: rgba(255,255,255,.92) !important;
  border: 1px solid rgba(8,10,18,.10) !important;
  box-shadow: 0 18px 50px rgba(0,0,0,.10) !important;
}

html[data-theme="light"] .step .num,
html[data-theme="light"] .step h3,
html[data-theme="light"] .step p{
  color: rgba(8,10,18,.92) !important;
}

html[data-theme="light"] .step p{
  color: rgba(8,10,18,.72) !important;
}

html[data-theme="light"] .quote{
  color: rgba(8,10,18,.90) !important;
}

html[data-theme="light"] .quote cite,
html[data-theme="light"] .quote .byline,
html[data-theme="light"] .quote .who{
  color: rgba(8,10,18,.70) !important;
  opacity: 1 !important;
}

html[data-theme="light"] .quote::before{
  opacity: .18;
}

/* Keep any subtle glow off in light mode so text stays crisp */
html[data-theme="light"] .quote:after,
html[data-theme="light"] .quote::after{
  opacity: 0 !important;
}

/* Ensure section headings and muted text are readable */
html[data-theme="light"] .section-head p,
html[data-theme="light"] .muted,
html[data-theme="light"] .subtle{
  color: rgba(8,10,18,.70) !important;
}


/* Light mode: prevent inherited white text inside cards */
html[data-theme="light"] .step *,
html[data-theme="light"] .quote *{
  color: inherit;
}
html[data-theme="light"] .step a,
html[data-theme="light"] .quote a{
  color: rgba(2,78,249,.90);
}

/* ===== Navbar logo (dark/light swap + sizing) ===== */
/* Default (dark mode): show dark logo */
.brand .logo-light{ display: none; }

/* Light mode: swap to light logo */
html[data-theme="light"] .brand .logo-dark{ display: none; }
html[data-theme="light"] .brand .logo-light{ display: block; }

/* Size the navbar logo (adjust these values to taste) */
.brand .brand-logo{
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 760px){
  .brand .brand-logo{ height: 40px; }
}


/* Netlify reCAPTCHA spacing */
.recaptcha-wrap{
  margin-top: 14px;
}



/* ===== FIX: logo swap + 2x sizing (navbar + footer) ===== */

/* NAVBAR sizing (2x) */
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

/* set logo size */
.brand .brand-logo{
  height: 96px; /* 2x from 48px */
  width: auto;
  object-fit: contain;
  display: block;
}

/* Default (dark mode): hide the light logo */
.brand .logo-light{ display: none; }

/* Light mode: swap */
html[data-theme="light"] .brand .logo-dark{ display: none; }
html[data-theme="light"] .brand .logo-light{ display: block; }

/* Mobile adjustments */
@media (max-width: 760px){
  .brand .brand-logo{ height: 72px; }
}

/* FOOTER logo swap */
.footer .foot-logo{
  height: 56px;
  width: auto;
  object-fit: contain;
  display:block;
}
.footer .logo-light{ display:none; }
html[data-theme="light"] .footer .logo-dark{ display:none; }
html[data-theme="light"] .footer .logo-light{ display:block; }




/* ===== Light mode footer link/text colors ===== */
html[data-theme="light"] .foot-title{
  color: rgba(8,10,18,.92);
}
html[data-theme="light"] .foot-sub{
  color: rgba(8,10,18,.66);
}
html[data-theme="light"] .foot-right a{
  color: rgba(8,10,18,.78);
}
html[data-theme="light"] .foot-right a:hover{
  background: rgba(8,10,18,.06);
  color: rgba(8,10,18,.96);
}


/* === Netlify reCAPTCHA: consistent spacing & alignment === */
.form .recaptcha-wrap,
.form .recaptcha{
  margin-top: 14px; /* matches .form-actions rhythm */
  display: flex;
  justify-content: flex-start;
}
.form .recaptcha-wrap iframe,
.form .recaptcha iframe{
  max-width: 100%;
}

/* Optional: keep buttons aligned after captcha */
.form-actions{
  margin-top: 14px;
}
