:root{
  --navy:#061a2f;
  --navy-2:#0b2447;
  --blue:#2f80ed;
  --blue-2:#56a8ff;
  --teal:#17b7b1;
  --green:#39d98a;
  --red:#ff5a67;
  --white:#f7fbff;
  --muted:#aab8c7;
  --glass:rgba(255,255,255,.065);
  --glass-strong:rgba(255,255,255,.1);
  --border:rgba(255,255,255,.13);
  --shadow:0 20px 55px rgba(0,0,0,.24);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  overflow-x:hidden;
  color:var(--white);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:
    radial-gradient(circle at 12% 8%,rgba(47,128,237,.11),transparent 25%),
    radial-gradient(circle at 88% 14%,rgba(57,217,138,.045),transparent 22%),
    linear-gradient(180deg,#051627 0%,#071c33 52%,#09223d 100%);
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.014) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.014) 1px,transparent 1px);
  background-size:42px 42px;
}

a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
button,input,select,textarea{font:inherit}

.container{
  width:min(1040px,calc(100% - 32px));
  margin:auto;
}

.section{padding:54px 0}

.eyebrow{
  display:inline-flex;
  align-items:center;
  padding:7px 11px;
  border:1px solid rgba(86,168,255,.22);
  border-radius:999px;
  color:#9fc8ff;
  background:rgba(47,128,237,.11);
  font-size:.66rem;
  font-weight:800;
  letter-spacing:.13em;
  text-transform:uppercase;
}

h1,h2,h3,p{margin-top:0}

h1{
  max-width:620px;
  margin-bottom:18px;
  font-size:clamp(2.35rem,4.5vw,4rem);
  line-height:1;
  letter-spacing:-.055em;
}

h2{
  margin-bottom:14px;
  font-size:clamp(1.55rem,2.6vw,2.45rem);
  line-height:1.08;
  letter-spacing:-.04em;
}

h3{
  margin-bottom:9px;
  font-size:1rem;
  line-height:1.25;
}

.lead{
  max-width:620px;
  color:#c4d2df;
  font-size:clamp(.9rem,1.15vw,1.03rem);
  line-height:1.62;
}

.muted{
  color:var(--muted);
  font-size:.88rem;
  line-height:1.62;
}

.gradient-text{
  display:block;
  background:linear-gradient(90deg,#dfeeff,#78b5ff 58%,#53d5bd);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

/* Header */
.navbar{
  position:sticky;
  top:10px;
  z-index:100;
  width:min(1180px,calc(100% - 22px));
  margin:10px auto 0;
  border:1px solid rgba(255,255,255,.26);
  border-radius:24px;
  background:
    linear-gradient(135deg,rgba(220,228,238,.28),rgba(145,160,181,.13)),
    rgba(11,36,71,.7);
  box-shadow:0 18px 48px rgba(0,0,0,.23),inset 0 1px 0 rgba(255,255,255,.22);
  backdrop-filter:blur(24px) saturate(140%);
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  min-height:94px;
  padding:12px 22px;
}

.brand-lockup{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:320px;
}

.brand-shield{
  width:74px;
  height:74px;
  object-fit:contain;
  filter:drop-shadow(0 8px 16px rgba(0,0,0,.28));
}

.brand-copy{
  display:grid;
  line-height:1;
}

.brand-copy strong{
  font-size:1.55rem;
  letter-spacing:-.055em;
}

.brand-copy strong span{color:#062b61}
.brand-copy strong em{color:#11aaa8;font-style:normal}

.brand-copy small{
  margin-top:5px;
  color:#0c2f63;
  font-size:.63rem;
  font-weight:900;
  letter-spacing:.28em;
}

.brand-copy b{
  margin-top:7px;
  color:#008b8e;
  font-size:.52rem;
  letter-spacing:.01em;
}

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

.nav-links a{
  padding:9px 10px;
  border-radius:11px;
  color:#e3e9ef;
  font-size:.8rem;
}

.nav-links a:hover,
.nav-links a.active{
  background:rgba(255,255,255,.16);
  color:#fff;
}

.nav-cta{
  display:flex;
  align-items:center;
  gap:8px;
}

.menu-toggle{
  display:none;
  border:0;
  color:white;
  background:transparent;
  font-size:1.5rem;
  cursor:pointer;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 16px;
  border:1px solid transparent;
  border-radius:13px;
  font-size:.8rem;
  font-weight:800;
  cursor:pointer;
  transition:.2s ease;
}

.btn:hover{transform:translateY(-2px)}

.btn-primary{
  background:linear-gradient(135deg,var(--blue),#215eac);
  box-shadow:0 10px 26px rgba(47,128,237,.25);
}

.btn-secondary{
  border-color:var(--border);
  background:rgba(255,255,255,.06);
}

/* Hero */
.hero{
  position:relative;
  min-height:585px;
  padding:68px 0 38px;
  overflow:hidden;
}

.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:34px;
  align-items:center;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:22px 0 16px;
}

.hero-points{
  display:flex;
  flex-wrap:wrap;
  gap:15px;
  color:#aebdcc;
  font-size:.78rem;
}

.hero-points span::before{
  content:"✓";
  margin-right:6px;
  color:var(--green);
  font-weight:900;
}

.hero-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  max-width:540px;
  margin-top:22px;
}

.hero-stats div{
  padding:12px;
  border:1px solid rgba(255,255,255,.075);
  border-radius:15px;
  background:rgba(255,255,255,.035);
}

.hero-stats strong{
  display:block;
  margin-bottom:3px;
  font-size:1.05rem;
}

.hero-stats span{
  color:var(--muted);
  font-size:.68rem;
  line-height:1.35;
}

.hero-glow{
  position:absolute;
  border-radius:50%;
  filter:blur(100px);
}

.hero-glow-one{width:350px;height:350px;left:-160px;top:40px;background:rgba(47,128,237,.13)}
.hero-glow-two{width:390px;height:390px;right:-170px;top:70px;background:rgba(57,217,138,.06)}

.phone-stage{position:relative;min-height:455px}

.orb{position:absolute;border-radius:50%;filter:blur(3px)}
.orb.one{width:285px;height:285px;right:30px;top:75px;background:rgba(47,128,237,.16)}
.orb.two{width:180px;height:180px;left:20px;bottom:35px;background:rgba(57,217,138,.07)}

.real-phone{
  position:absolute;
  z-index:3;
  top:4px;
  right:58px;
  width:220px;
  animation:phoneFloat 6s ease-in-out infinite;
}

.real-phone-shell{
  position:relative;
  padding:9px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.17);
  border-radius:34px;
  background:#020b13;
  box-shadow:0 32px 75px rgba(0,0,0,.46);
  transform:rotate(4deg);
}

.real-phone-shell img{width:100%;border-radius:25px}

.real-phone-speaker{
  position:absolute;
  z-index:2;
  top:14px;
  left:50%;
  width:68px;
  height:14px;
  border-radius:999px;
  background:#03070a;
  transform:translateX(-50%);
}

.floating-card{
  position:absolute;
  z-index:5;
  width:188px;
  padding:13px 14px;
  border:1px solid var(--border);
  border-radius:16px;
  background:rgba(17,45,73,.76);
  box-shadow:var(--shadow);
  backdrop-filter:blur(16px);
}

.floating-card strong{font-size:.8rem}
.floating-card p{margin:4px 0 0;font-size:.67rem}
.floating-live{top:110px;left:2px}
.floating-trusted{left:4px;bottom:50px}

/* Shared sections */
.stakeholder-strip{
  padding:34px 0;
  border-top:1px solid rgba(255,255,255,.05);
  border-bottom:1px solid rgba(255,255,255,.05);
  background:rgba(255,255,255,.016);
}

.section-label{
  margin-bottom:18px;
  color:#8398aa;
  text-align:center;
  font-size:.66rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.stakeholder-row{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:22px;
  color:#c7d3dd;
  font-size:.82rem;
  font-weight:700;
}

.problem-grid,
.section-heading,
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  align-items:center;
}

.card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:24px;
}

.card{
  min-height:205px;
  display:flex;
  flex-direction:column;
  padding:19px;
  border:1px solid var(--border);
  border-radius:19px;
  background:var(--glass);
  box-shadow:0 14px 36px rgba(0,0,0,.13);
  transition:.22s ease;
}

.card:hover{
  transform:translateY(-4px);
  background:var(--glass-strong);
}

.icon{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  margin-bottom:14px;
  border:1px solid rgba(86,168,255,.18);
  border-radius:13px;
  background:rgba(47,128,237,.13);
  font-size:1rem;
}

.text-link{
  margin-top:auto;
  color:#8bc0ff;
  font-size:.75rem;
  font-weight:800;
}

.how-section,
.product-showcase{
  border-top:1px solid rgba(255,255,255,.045);
  border-bottom:1px solid rgba(255,255,255,.045);
  background:rgba(255,255,255,.012);
}

.map-panel{
  position:relative;
  min-height:360px;
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:25px;
  background:linear-gradient(145deg,#0c2c50,#071a2e);
  box-shadow:var(--shadow);
}

.map-grid{
  position:absolute;
  inset:-60px;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px);
  background-size:36px 36px;
  transform:rotate(-8deg);
}

.map-route{position:absolute;height:2px;background:rgba(86,168,255,.24)}
.route-one{width:380px;left:15px;top:140px;transform:rotate(20deg)}
.route-two{width:330px;left:50px;top:240px;transform:rotate(-15deg)}

.map-pin{
  position:absolute;
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:50% 50% 50% 10px;
  background:var(--red);
  font-size:.8rem;
  font-weight:900;
  transform:rotate(-45deg);
}

.pin-one{left:24%;top:24%}
.pin-two{right:20%;top:34%;color:#062617;background:var(--green)}
.pin-three{left:46%;bottom:27%;background:var(--blue)}

.map-summary{
  position:absolute;
  right:18px;
  bottom:18px;
  left:18px;
  padding:17px;
  border:1px solid rgba(255,255,255,.11);
  border-radius:18px;
  background:rgba(6,26,47,.78);
}

.status-pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 8px;
  border-radius:999px;
  color:#7cf0b1;
  background:rgba(57,217,138,.11);
  font-size:.61rem;
}

.status-pill::before{content:"";width:6px;height:6px;border-radius:50%;background:var(--green)}

.steps{display:grid;gap:10px;margin-top:20px}

.step{
  display:flex;
  gap:13px;
  padding:14px;
  border-radius:15px;
  background:rgba(255,255,255,.04);
}

.step-number{
  min-width:32px;
  height:32px;
  display:grid;
  place-items:center;
  border-radius:10px;
  background:var(--blue);
  font-size:.78rem;
  font-weight:900;
}

/* Compact product grid */
.showcase-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:15px;
  margin-top:28px;
}

.showcase-card{
  padding:17px;
  border:1px solid var(--border);
  border-radius:20px;
  background:rgba(255,255,255,.04);
}

.device-frame{
  width:150px;
  margin:0 auto 17px;
  padding:7px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:24px;
  background:#020b13;
  box-shadow:0 18px 48px rgba(0,0,0,.32);
}

.device-frame img{width:100%;border-radius:18px}

.showcase-label{
  color:#82bcff;
  font-size:.61rem;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.showcase-card h3{margin-top:8px}

.ecosystem-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:13px;
  margin-top:24px;
}

.ecosystem-card{
  position:relative;
  min-height:195px;
  padding:18px;
  border:1px solid var(--border);
  border-radius:18px;
  background:rgba(255,255,255,.04);
}

.ecosystem-number{
  position:absolute;
  top:15px;
  right:15px;
  color:#6f879d;
  font-size:.6rem;
  font-weight:900;
}

.pricing-stack{display:grid;gap:9px}

.pricing-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 16px;
  border:1px solid var(--border);
  border-radius:16px;
  background:rgba(255,255,255,.04);
}

.pricing-row strong,
.pricing-row span{display:block}

.pricing-row strong{font-size:.87rem}
.pricing-row span{margin-top:3px;color:var(--muted);font-size:.72rem}
.pricing-row b{font-size:.92rem}

.pricing-row.featured{
  border-color:rgba(86,168,255,.42);
  background:linear-gradient(135deg,rgba(47,128,237,.22),rgba(255,255,255,.045));
}

.social-card{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:26px;
  align-items:center;
  padding:28px;
  border:1px solid var(--border);
  border-radius:23px;
  background:rgba(255,255,255,.04);
}

.social-links{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:9px;
}

.social-links a{
  padding:12px 14px;
  border:1px solid var(--border);
  border-radius:13px;
  background:rgba(255,255,255,.045);
  font-size:.77rem;
  font-weight:800;
}

.cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:26px;
  padding:28px;
  border:1px solid var(--border);
  border-radius:24px;
  background:
    radial-gradient(circle at 82% 20%,rgba(57,217,138,.12),transparent 24%),
    linear-gradient(135deg,rgba(47,128,237,.22),rgba(255,255,255,.05));
}

.cta h2{margin-top:12px}
.cta-actions{display:flex;flex-wrap:wrap;gap:9px}

/* Footer */
footer{
  margin-top:38px;
  padding:40px 0 24px;
  border-top:1px solid rgba(255,255,255,.07);
}

.footer-grid{
  display:grid;
  grid-template-columns:1.4fr repeat(3,1fr);
  gap:28px;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap:11px;
}

.footer-brand img{width:50px;height:50px}
.footer-brand span{display:grid}
.footer-brand strong{font-size:1rem}
.footer-brand small{margin-top:4px;color:#8da4ba;font-size:.54rem;letter-spacing:.16em}
.footer-description{max-width:350px;margin-top:14px}
.footer-links{display:grid;gap:8px;color:#aebdcc;font-size:.8rem}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:18px;
  margin-top:32px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.07);
  color:#8195a8;
  font-size:.74rem;
}

.reveal{opacity:0;transform:translateY(18px);transition:.7s ease}
.reveal.visible{opacity:1;transform:none}

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

@media(max-width:1080px){
  .brand-lockup{min-width:auto}
  .brand-copy b{display:none}
  .brand-shield{width:62px;height:62px}
  .nav-links a{padding:8px}
  .nav-cta .btn{padding:10px 12px}
  .showcase-grid{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:900px){
  .navbar{top:7px;width:calc(100% - 14px)}
  .nav-inner{min-height:76px;padding:8px 14px}
  .brand-copy strong{font-size:1.25rem}
  .brand-shield{width:56px;height:56px}

  .nav-links{
    position:fixed;
    top:88px;
    right:14px;
    left:14px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding:12px;
    border:1px solid var(--border);
    border-radius:17px;
    background:rgba(4,19,33,.98);
  }

  .nav-links.open{display:flex}
  .menu-toggle{display:block}
  .nav-partner,.rollout-button{display:none}

  .hero-grid,.problem-grid,.section-heading,.split,.social-card{grid-template-columns:1fr}
  .hero{padding-top:52px}
  .phone-stage{min-height:440px}
  .real-phone{right:calc(50% - 110px)}
  .floating-live{left:8%}
  .floating-trusted{left:6%}
  .card-grid{grid-template-columns:repeat(2,1fr)}
  .ecosystem-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:600px){
  .container{width:min(100% - 22px,1040px)}
  .section{padding:46px 0}
  .navbar{border-radius:18px}
  .brand-copy small{font-size:.48rem}
  .brand-shield{width:50px;height:50px}
  h1{font-size:2.25rem}
  .hero-actions .btn{width:100%}
  .hero-points{display:grid;gap:7px}
  .hero-stats{grid-template-columns:1fr}
  .phone-stage{min-height:410px}
  .real-phone{width:200px;right:calc(50% - 100px)}
  .floating-card{width:168px}
  .card-grid,.showcase-grid,.ecosystem-grid,.footer-grid{grid-template-columns:1fr}
  .device-frame{width:140px}
  .social-links{grid-template-columns:1fr}
  .cta{display:block}
  .cta-actions{display:grid;margin-top:18px}
  .cta-actions .btn{width:100%}
  .footer-bottom{display:block}
}


/* ===== Final SafeBlock digital brand lockup ===== */

.navbar{
  min-height:112px;
}

.nav-inner{
  min-height:112px;
  padding:14px 26px;
}

.brand-lockup{
  gap:18px;
  min-width:300px;
}

.brand-shield{
  width:88px;
  height:88px;
  flex:none;
}

.brand-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
  line-height:.94;
}

.brand-copy strong{
  font-size:2rem;
  letter-spacing:-.06em;
  white-space:nowrap;
}

.brand-copy strong span{
  color:#f7fbff;
}

.brand-copy strong em{
  color:#20c4bd;
  font-style:normal;
}

.brand-copy small{
  margin-top:8px;
  color:#a9bdd3;
  font-size:.68rem;
  font-weight:900;
  letter-spacing:.32em;
}

.nav-links a{
  font-size:.82rem;
}

.nav-cta .btn{
  font-size:.8rem;
}

.footer-brand img{
  width:64px;
  height:64px;
}

.footer-brand strong{
  font-size:1.2rem;
}

.footer-brand small{
  margin-top:5px;
  font-size:.58rem;
  letter-spacing:.21em;
}

.footer-description{
  line-height:1.7;
}

@media(max-width:1080px){
  .brand-lockup{
    min-width:240px;
  }

  .brand-shield{
    width:76px;
    height:76px;
  }

  .brand-copy strong{
    font-size:1.72rem;
  }

  .brand-copy small{
    font-size:.6rem;
  }
}

@media(max-width:900px){
  .navbar,
  .nav-inner{
    min-height:88px;
  }

  .brand-lockup{
    min-width:auto;
  }

  .brand-shield{
    width:64px;
    height:64px;
  }

  .brand-copy strong{
    font-size:1.45rem;
  }

  .brand-copy small{
    margin-top:6px;
    font-size:.52rem;
  }
}

@media(max-width:600px){
  .navbar,
  .nav-inner{
    min-height:80px;
  }

  .brand-shield{
    width:56px;
    height:56px;
  }

  .brand-copy strong{
    font-size:1.25rem;
  }

  .brand-copy small{
    font-size:.46rem;
    letter-spacing:.22em;
  }
}


/* ===== Premium navy header and structured footer ===== */
.navbar{
  top:14px;
  width:min(1240px,calc(100% - 30px));
  margin:14px auto 0;
  min-height:118px;
  border:1px solid rgba(115,171,216,.42);
  border-radius:30px;
  background:
    radial-gradient(circle at 8% 50%,rgba(44,136,255,.18),transparent 24%),
    linear-gradient(135deg,rgba(4,26,50,.96),rgba(4,18,35,.94));
  box-shadow:
    0 22px 60px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.10),
    0 0 24px rgba(23,183,177,.05);
  backdrop-filter:blur(22px) saturate(130%);
}

.navbar::after{
  content:"";
  position:absolute;
  inset:auto 28px 0;
  height:1px;
  background:linear-gradient(90deg,transparent,#18c2be 34%,#338cff 66%,transparent);
  opacity:.42;
}

.nav-inner{
  min-height:118px;
  padding:15px 28px;
}

.brand-lockup{
  gap:18px;
  min-width:342px;
  padding-right:28px;
  border-right:1px solid rgba(255,255,255,.22);
}

.brand-shield{
  width:94px;
  height:94px;
  filter:
    drop-shadow(0 0 11px rgba(60,158,255,.75))
    drop-shadow(0 12px 20px rgba(0,0,0,.32));
}

.brand-copy strong{
  font-size:2.2rem;
  text-shadow:0 4px 18px rgba(0,0,0,.35);
}

.brand-copy strong span{color:#f8fbff}
.brand-copy strong em{color:#13b9b5}

.brand-copy small{
  margin-top:9px;
  color:#eef5fb;
  font-size:.69rem;
  letter-spacing:.34em;
}

.nav-links{gap:5px}
.nav-links a{
  padding:11px 15px;
  color:#f0f5fa;
  font-size:.82rem;
  font-weight:700;
}

.nav-links a:hover,
.nav-links a.active{
  border:1px solid rgba(39,212,208,.58);
  background:rgba(10,91,123,.24);
  box-shadow:0 0 20px rgba(22,195,191,.23),inset 0 0 14px rgba(32,158,255,.10);
}

.nav-cta{gap:12px}
.nav-cta .btn{
  min-height:51px;
  padding:12px 18px;
  border-radius:15px;
  font-size:.82rem;
}

.nav-partner{
  border-color:rgba(22,194,190,.65);
  background:rgba(4,32,54,.56);
}

.rollout-button{
  background:linear-gradient(135deg,#12c3bd,#1476ef);
  box-shadow:0 10px 30px rgba(11,158,213,.30);
}

.button-icon{
  margin-right:7px;
  color:#25d6d1;
  font-size:1rem;
}
.rollout-button .button-icon{color:white}

/* Footer */
.site-footer{
  position:relative;
  margin-top:52px;
  padding:0;
  border-top:1px solid rgba(31,191,220,.62);
  background:
    radial-gradient(circle at 12% 22%,rgba(31,114,238,.14),transparent 27%),
    linear-gradient(180deg,#061a30,#031225 78%);
}

.site-footer::before{
  content:"";
  position:absolute;
  top:-2px;
  left:0;
  right:0;
  height:2px;
  background:linear-gradient(90deg,#238aff,#18c7bd,#238aff);
  box-shadow:0 0 14px rgba(28,193,213,.46);
}

.footer-shell{padding:54px 0 26px}

.footer-main{
  display:grid;
  grid-template-columns:1.65fr repeat(4,1fr);
  gap:0;
  align-items:start;
}

.footer-identity{
  padding-right:38px;
}

.footer-brand-large{
  display:flex;
  align-items:center;
  gap:17px;
}

.footer-brand-large img{
  width:112px;
  height:112px;
  filter:drop-shadow(0 0 11px rgba(60,158,255,.65));
}

.footer-brand-large span{display:flex;flex-direction:column}
.footer-brand-large strong{
  font-size:2.25rem;
  line-height:.94;
  letter-spacing:-.065em;
}
.footer-brand-large strong b{color:#fff}
.footer-brand-large strong em{color:#13b9b5;font-style:normal}
.footer-brand-large small{
  margin-top:11px;
  color:#f2f6fa;
  font-size:.7rem;
  font-weight:900;
  letter-spacing:.34em;
}

.footer-tagline{
  margin:20px 0 16px;
  padding-bottom:16px;
  max-width:355px;
  border-bottom:1px solid rgba(255,255,255,.20);
  color:#18cbc5;
  font-size:.9rem;
}

.footer-socials{display:flex;gap:10px}
.footer-socials a{
  width:39px;
  height:39px;
  display:grid;
  place-items:center;
  border:1px solid rgba(19,188,190,.43);
  border-radius:50%;
  background:rgba(10,37,66,.76);
  color:#f6fbff;
  font-size:.84rem;
  font-weight:900;
  transition:.2s ease;
}
.footer-socials a:hover{
  transform:translateY(-2px);
  border-color:#1ed1cb;
  box-shadow:0 0 18px rgba(30,209,203,.24);
}

.footer-column{
  min-height:235px;
  padding:5px 25px 0;
  border-left:1px solid rgba(255,255,255,.16);
}

.footer-column-icon{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  margin-bottom:18px;
  border:1px solid rgba(18,195,195,.47);
  border-radius:50%;
  color:#15c7c1;
  font-size:1.35rem;
}

.footer-column h3{
  margin-bottom:17px;
  color:#f6f9fc;
  font-size:1rem;
  text-transform:none;
}

.footer-column .footer-links{
  gap:12px;
  font-size:.81rem;
}
.footer-column .footer-links a{color:#b7c4d1}
.footer-column .footer-links a:hover{color:#1ed1cb}

.premium-footer-bottom{
  margin-top:34px;
  padding:24px 0 0;
  border-top:1px solid rgba(255,255,255,.17);
}

.footer-promise{
  display:flex;
  align-items:center;
  gap:13px;
  color:#17c7c2;
}
.footer-promise i{
  width:31px;
  height:35px;
  display:grid;
  place-items:center;
  border:1px solid #17c7c2;
  border-radius:50% 50% 55% 55%;
  font-style:normal;
}

@media(max-width:1120px){
  .brand-lockup{min-width:275px;padding-right:18px}
  .brand-shield{width:78px;height:78px}
  .brand-copy strong{font-size:1.75rem}
  .brand-copy small{font-size:.58rem}
  .nav-links a{padding:10px 9px}
  .nav-cta .btn{padding:11px 13px}
  .footer-main{grid-template-columns:1.5fr repeat(2,1fr)}
  .footer-column:nth-child(4),.footer-column:nth-child(5){margin-top:30px}
}

@media(max-width:900px){
  .navbar{min-height:90px;border-radius:22px}
  .nav-inner{min-height:90px}
  .brand-lockup{border-right:0;padding-right:0}
  .brand-shield{width:66px;height:66px}
  .brand-copy strong{font-size:1.45rem}
  .brand-copy small{font-size:.48rem}
  .footer-main{grid-template-columns:repeat(2,1fr);gap:30px 0}
  .footer-identity{grid-column:1/-1;padding-right:0}
  .footer-column{border-left:0;border-top:1px solid rgba(255,255,255,.14);padding:24px 15px 0}
}

@media(max-width:600px){
  .navbar{top:7px;width:calc(100% - 14px)}
  .nav-inner{min-height:80px;padding:10px 13px}
  .brand-lockup{gap:10px}
  .brand-shield{width:56px;height:56px}
  .brand-copy strong{font-size:1.22rem}
  .brand-copy small{font-size:.42rem;letter-spacing:.23em}
  .footer-main{grid-template-columns:1fr}
  .footer-identity{grid-column:auto}
  .footer-brand-large img{width:86px;height:86px}
  .footer-brand-large strong{font-size:1.8rem}
  .footer-column{min-height:auto;padding-left:0}
  .premium-footer-bottom{display:grid;gap:15px}
}


/* ===== Digital Johannesburg skyline background ===== */
body::before{
  background:none !important;
  mask-image:none !important;
}

.hero{
  isolation:isolate;
  background:
    radial-gradient(circle at 24% 18%,rgba(37,124,224,.09),transparent 28%),
    linear-gradient(180deg,rgba(4,18,34,.18),rgba(5,23,41,.18));
}

.jhb-skyline{
  position:absolute;
  z-index:0;
  left:50%;
  bottom:-8px;
  width:min(1680px,118vw);
  height:430px;
  transform:translateX(-50%);
  background:url('../images/johannesburg-digital-skyline.svg') center bottom/100% auto no-repeat;
  opacity:.46;
  pointer-events:none;
  filter:drop-shadow(0 0 20px rgba(29,173,232,.11));
  animation:skylineGlow 9s ease-in-out infinite;
}

.hero-grid{z-index:2}
.hero::after{
  content:"";
  position:absolute;
  z-index:1;
  inset:auto 0 0;
  height:220px;
  background:linear-gradient(180deg,transparent,rgba(5,23,41,.82) 88%);
  pointer-events:none;
}

.stakeholder-strip{
  position:relative;
  z-index:3;
  background:linear-gradient(180deg,rgba(6,26,47,.72),rgba(6,26,47,.94));
  backdrop-filter:blur(8px);
}

@keyframes skylineGlow{
  0%,100%{opacity:.42;filter:drop-shadow(0 0 16px rgba(29,173,232,.09))}
  50%{opacity:.53;filter:drop-shadow(0 0 28px rgba(29,173,232,.16))}
}

@media(max-width:900px){
  .jhb-skyline{width:1550px;height:390px;opacity:.34;left:55%}
}

@media(max-width:600px){
  .jhb-skyline{width:1180px;height:330px;left:59%;opacity:.28}
}

@media(prefers-reduced-motion:reduce){
  .jhb-skyline{animation:none}
}


/* ===== MOCKUP-MATCHED HEADER / HERO / FIRST FOLD ===== */
body::before{display:none!important}
body{background:#031225!important}
.container{width:min(1120px,calc(100% - 34px))}

.navbar{position:relative!important;top:auto!important;width:min(1180px,calc(100% - 36px))!important;margin:22px auto 0!important;border:1px solid rgba(116,171,219,.42)!important;border-radius:24px!important;background:linear-gradient(135deg,rgba(5,25,47,.98),rgba(3,17,34,.96))!important;box-shadow:0 18px 50px rgba(0,0,0,.34),inset 0 0 32px rgba(16,116,208,.06)!important;overflow:hidden}
.nav-inner{width:100%;min-height:110px!important;padding:14px 28px!important;display:flex;align-items:center;gap:24px}
.brand-lockup{min-width:340px!important;gap:18px!important}
.brand-shield{width:92px!important;height:92px!important;filter:drop-shadow(0 0 10px rgba(50,172,255,.65)) drop-shadow(0 12px 20px rgba(0,0,0,.35))!important}
.brand-copy strong{font-size:2rem!important;line-height:.95}.brand-copy strong span{color:#fff!important}.brand-copy strong em{color:#17bdc4!important}.brand-copy small{display:flex!important;align-items:center;gap:9px;color:#f0f5fb!important;font-size:.62rem!important;letter-spacing:.29em!important;margin-top:9px!important}.brand-copy small i{width:22px;height:2px;background:#16b8c2;display:inline-block}
.nav-divider{width:1px;height:70px;background:rgba(163,193,222,.28);flex:none}
.nav-links{flex:1;justify-content:center;gap:9px!important}.nav-links a{font-size:.85rem!important;font-weight:700;padding:12px 14px!important;border:1px solid transparent}.nav-links a.active,.nav-links a:hover{background:rgba(3,30,57,.84)!important;border-color:#078da1!important;box-shadow:0 0 22px rgba(0,211,225,.18)!important}
.nav-cta{gap:12px!important}.nav-cta .btn{height:68px;min-width:112px;padding:12px 16px!important;border-radius:17px!important;font-size:.82rem!important;gap:10px;text-align:left;line-height:1.25}.nav-cta svg,.hero-actions svg,.hero-stats svg{width:21px;height:21px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}.nav-partner{border-color:#087d92!important;background:rgba(1,22,43,.78)!important}.rollout-button{background:linear-gradient(135deg,#11bfd0,#0a63e8)!important;box-shadow:0 0 28px rgba(11,154,240,.28)!important}

.hero{position:relative;min-height:510px!important;padding:54px 0 26px!important;overflow:hidden;background:radial-gradient(circle at 70% 45%,rgba(0,127,232,.12),transparent 30%),linear-gradient(180deg,#031225 0%,#041a33 100%)}
.hero::after{content:"";position:absolute;left:0;right:0;bottom:0;height:110px;background:linear-gradient(180deg,transparent,#031225);z-index:1}
.digital-skyline{position:absolute;z-index:0;left:0;right:0;bottom:0;width:100%;height:84%;object-fit:cover;object-position:center bottom;opacity:.92;filter:drop-shadow(0 -5px 20px rgba(0,149,255,.2));transform:none!important;animation:skylinePulse 10s ease-in-out infinite}
.sky-particles{position:absolute;inset:0;z-index:0;background-image:radial-gradient(circle,rgba(93,228,255,.9) 1px,transparent 1.5px),radial-gradient(circle,rgba(75,145,255,.6) 1px,transparent 1.5px);background-size:98px 86px,137px 119px;background-position:0 8px,43px 24px;opacity:.35;mask-image:linear-gradient(to bottom,transparent 4%,#000 30%,#000 82%,transparent 100%)}
.hero-network span{position:absolute;left:var(--x);top:var(--y);width:5px;height:5px;border-radius:50%;background:#2bdbff;box-shadow:0 0 10px #1acaff;z-index:1}.hero-network span::after{content:"";position:absolute;left:4px;top:2px;width:120px;height:1px;background:linear-gradient(90deg,rgba(43,219,255,.5),transparent);transform:rotate(12deg);transform-origin:left}
.hero-grid{position:relative;z-index:2;grid-template-columns:1.08fr .92fr!important;gap:44px!important;align-items:center}
.hero-copy{padding-left:35px}.hero-copy .eyebrow{color:#35e7e0!important;border-color:#0e8d9f!important;background:rgba(0,61,88,.45)!important;padding:8px 13px!important}.hero-copy h1{font-size:clamp(2.45rem,4vw,3.65rem)!important;line-height:1.02!important;text-transform:uppercase;letter-spacing:-.045em;max-width:640px!important;margin:18px 0 15px!important}.hero-copy .gradient-text{display:inline!important;background:linear-gradient(90deg,#13bbc4,#14c7bb)!important;-webkit-background-clip:text!important;background-clip:text!important;color:transparent!important}.hero-copy .lead{font-size:1rem!important;max-width:520px!important;color:#d0dae6!important;line-height:1.55!important}
.hero-actions{margin:22px 0 24px!important;gap:16px!important}.hero-main-btn{min-width:178px;height:48px;border-radius:14px!important;font-size:.86rem!important;gap:10px}.hero-actions .btn-primary{background:linear-gradient(135deg,#12b9c6,#0d71e8)!important;box-shadow:0 0 28px rgba(14,145,240,.26)!important}.hero-actions .btn-secondary{background:rgba(4,21,42,.76)!important;border-color:#2c6ead!important}
.hero-stats{display:grid!important;grid-template-columns:repeat(3,1fr)!important;gap:0!important;max-width:610px!important;margin-top:0!important;padding:0!important;border:1px solid rgba(82,141,198,.38);border-radius:18px;background:rgba(3,22,43,.78);backdrop-filter:blur(12px);overflow:hidden}.hero-stats div{position:relative;padding:18px 20px!important;border:0!important;border-radius:0!important;background:transparent!important;display:grid;grid-template-columns:30px auto;grid-template-rows:auto auto;column-gap:10px;align-items:center}.hero-stats div+div{border-left:1px solid rgba(101,146,188,.28)!important}.hero-stats svg{grid-row:1/3;width:25px;height:25px;color:#18c9d2}.hero-stats strong{font-size:1.35rem!important;margin:0!important}.hero-stats span{font-size:.7rem!important}
.phone-stage{min-height:435px!important}.phone-glow{position:absolute;width:300px;height:80px;right:42px;bottom:32px;background:radial-gradient(ellipse,rgba(0,181,255,.38),transparent 68%);filter:blur(10px)}.real-phone{top:0!important;right:55px!important;width:225px!important}.real-phone-shell{transform:rotate(7deg)!important;border-radius:35px!important;box-shadow:0 35px 85px rgba(0,0,0,.58),0 0 28px rgba(13,144,240,.18)!important}

.stakeholder-strip{position:relative;padding:25px 0 27px!important;background:#031225!important;border-top:1px solid rgba(40,119,186,.2)!important;border-bottom:1px solid rgba(40,119,186,.18)!important}.section-label{color:#26d7db!important;font-size:.66rem!important;letter-spacing:.24em!important;margin-bottom:22px!important}.stakeholder-row{display:grid!important;grid-template-columns:repeat(6,1fr)!important;gap:0!important}.stakeholder-row>div{text-align:center;padding:0 14px;border-right:1px solid rgba(88,135,178,.25)}.stakeholder-row>div:last-child{border-right:0}.audience-icon{display:block;color:#1fd6dc;font-size:1.7rem;line-height:1;margin-bottom:8px;text-shadow:0 0 12px rgba(31,214,220,.4)}.stakeholder-row b{font-size:.76rem;color:#f1f6fb}

.problem-section{padding:36px 0 45px!important;background:#031225!important}.problem-grid{grid-template-columns:1.02fr 1.15fr .55fr!important;gap:34px!important;align-items:center!important}.problem-title{padding-left:35px;border-right:1px solid rgba(78,124,165,.28);padding-right:26px}.problem-title h2{font-size:2rem!important;line-height:1.08!important;margin:15px 0 0!important}.problem-copy .lead{font-size:.98rem!important}.problem-emblem{position:relative;width:150px;height:150px;display:grid;place-items:center;justify-self:end}.problem-emblem img{width:70px;height:70px;opacity:.82;filter:hue-rotate(145deg) saturate(1.7) drop-shadow(0 0 12px rgba(0,191,255,.5))}.emblem-ring{position:absolute;inset:10px;border:1px dotted rgba(44,177,255,.42);border-radius:50%;animation:spin 24s linear infinite}.ring-two{inset:27px;border-style:solid;opacity:.5;animation-direction:reverse;animation-duration:16s}.problem-emblem::before,.problem-emblem::after{content:"";position:absolute;width:6px;height:6px;border-radius:50%;background:#22d3ff;box-shadow:0 0 10px #22d3ff}.problem-emblem::before{top:15px;right:32px}.problem-emblem::after{bottom:22px;left:25px}

@keyframes skylinePulse{0%,100%{opacity:.85;filter:drop-shadow(0 -5px 18px rgba(0,149,255,.18))}50%{opacity:1;filter:drop-shadow(0 -7px 26px rgba(0,190,255,.30))}}
@keyframes spin{to{transform:rotate(360deg)}}

@media(max-width:1050px){.brand-lockup{min-width:275px!important}.brand-shield{width:75px!important;height:75px!important}.brand-copy strong{font-size:1.7rem!important}.nav-inner{padding:12px 18px!important;gap:14px}.nav-links{gap:2px!important}.nav-links a{padding:10px 9px!important}.nav-cta .btn{min-width:96px}.hero-copy{padding-left:0}}
@media(max-width:900px){.navbar{margin:10px auto 0!important}.nav-divider{display:none}.nav-links{top:100px!important}.hero-grid{grid-template-columns:1fr!important}.hero-copy{text-align:left}.phone-stage{min-height:390px!important}.real-phone{right:calc(50% - 112px)!important}.digital-skyline{height:55%;opacity:.55}.hero{min-height:auto!important}.stakeholder-row{grid-template-columns:repeat(3,1fr)!important;row-gap:24px!important}.stakeholder-row>div:nth-child(3){border-right:0}.problem-grid{grid-template-columns:1fr!important}.problem-title{border-right:0;padding-left:0}.problem-emblem{justify-self:center}.brand-lockup{min-width:auto!important}}
@media(max-width:600px){.nav-inner{min-height:84px!important}.brand-shield{width:58px!important;height:58px!important}.brand-copy strong{font-size:1.35rem!important}.brand-copy small i{width:12px}.brand-copy small{font-size:.45rem!important}.hero-copy h1{font-size:2.12rem!important}.hero-copy{padding:0 4px}.hero-stats{grid-template-columns:1fr!important}.hero-stats div+div{border-left:0!important;border-top:1px solid rgba(101,146,188,.28)!important}.hero-actions{display:grid}.hero-main-btn{width:100%}.stakeholder-row{grid-template-columns:repeat(2,1fr)!important}.stakeholder-row>div{border-right:0}.problem-title h2{font-size:1.72rem!important}}


/* ===== Detailed Johannesburg digital skyline hero ===== */

body::before{
  display:none !important;
}

.hero{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  background:#041426;
}

.hero-city-background{
  position:absolute;
  inset:0;
  z-index:-3;
  background-image:url("../images/johannesburg-digital-skyline.png");
  background-repeat:no-repeat;
  background-position:center 53%;
  background-size:cover;
  filter:saturate(.96) brightness(.72) contrast(1.06);
  transform:scale(1.015);
}

.hero-city-overlay{
  position:absolute;
  inset:0;
  z-index:-2;
  pointer-events:none;
  background:
    linear-gradient(90deg,
      rgba(3,16,33,.92) 0%,
      rgba(3,16,33,.80) 34%,
      rgba(3,16,33,.48) 58%,
      rgba(3,16,33,.42) 76%,
      rgba(3,16,33,.76) 100%),
    linear-gradient(180deg,
      rgba(2,12,25,.42) 0%,
      rgba(4,19,38,.18) 45%,
      rgba(4,20,39,.62) 82%,
      #061a2f 100%);
}

.hero::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:170px;
  z-index:-1;
  pointer-events:none;
  background:linear-gradient(to bottom,transparent,#061a2f 92%);
}

.hero-glow,
.skyline-layer,
.digital-skyline,
.johannesburg-skyline{
  display:none !important;
}

.hero-grid{
  position:relative;
  z-index:2;
}

.hero-copy{
  text-shadow:0 2px 20px rgba(0,0,0,.28);
}

.hero-copy .lead{
  color:#d2dde8;
}

.hero-stats div,
.floating-card{
  background:rgba(7,31,57,.72);
  border-color:rgba(121,190,255,.16);
  backdrop-filter:blur(16px);
}

.stakeholder-strip{
  position:relative;
  z-index:3;
  margin-top:0;
  background:linear-gradient(180deg,#061a2f,rgba(6,26,47,.98));
}

/* Keep the real app clearly separated from the detailed background. */
.real-phone-shell{
  box-shadow:
    0 38px 90px rgba(0,0,0,.58),
    0 0 44px rgba(37,152,255,.20);
}

@media(max-width:980px){
  .hero-city-background{
    background-position:58% center;
  }

  .hero-city-overlay{
    background:
      linear-gradient(180deg,
        rgba(3,16,33,.70) 0%,
        rgba(3,16,33,.60) 48%,
        rgba(4,20,39,.76) 82%,
        #061a2f 100%);
  }
}

@media(max-width:600px){
  .hero-city-background{
    background-position:62% center;
    filter:saturate(.9) brightness(.58) contrast(1.06);
  }

  .hero-city-overlay{
    background:
      linear-gradient(180deg,
        rgba(3,16,33,.76) 0%,
        rgba(3,16,33,.66) 55%,
        rgba(4,20,39,.84) 84%,
        #061a2f 100%);
  }
}


/* ===== Skyline visibility + header containment refinement ===== */

.hero-city-background{
  background-position:center 50%;
  filter:saturate(1.12) brightness(.88) contrast(1.13);
  transform:scale(1.01);
}

.hero-city-overlay{
  background:
    linear-gradient(90deg,
      rgba(3,16,33,.88) 0%,
      rgba(3,16,33,.72) 31%,
      rgba(3,16,33,.34) 56%,
      rgba(3,16,33,.28) 77%,
      rgba(3,16,33,.55) 100%),
    linear-gradient(180deg,
      rgba(2,12,25,.20) 0%,
      rgba(4,19,38,.06) 42%,
      rgba(4,20,39,.42) 78%,
      #061a2f 100%);
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:
    radial-gradient(circle at 58% 44%,rgba(16,165,255,.15),transparent 29%),
    radial-gradient(circle at 77% 50%,rgba(18,207,210,.08),transparent 24%);
}

.navbar{
  width:min(1320px,calc(100% - 28px));
  overflow:hidden;
}

.nav-inner{
  width:100%;
  max-width:none;
  display:grid;
  grid-template-columns:minmax(265px,auto) minmax(470px,1fr) auto;
  column-gap:18px;
  padding-left:24px;
  padding-right:18px;
}

.brand-lockup{min-width:0}

.nav-links{
  justify-content:center;
  min-width:0;
}

.nav-links a,
.nav-cta .btn{
  white-space:nowrap;
}

.nav-cta{
  flex-shrink:0;
  min-width:0;
}

.rollout-button{
  min-width:128px;
  padding-left:16px;
  padding-right:16px;
  line-height:1.2;
}

@media(max-width:1240px){
  .nav-inner{
    grid-template-columns:minmax(235px,auto) minmax(420px,1fr) auto;
    column-gap:12px;
    padding-left:18px;
    padding-right:14px;
  }

  .brand-shield{
    width:72px;
    height:72px;
  }

  .brand-copy strong{font-size:1.65rem}
  .brand-copy small{font-size:.56rem}

  .nav-links a{
    padding-left:8px;
    padding-right:8px;
    font-size:.76rem;
  }

  .nav-cta .btn{
    padding-left:12px;
    padding-right:12px;
    font-size:.75rem;
  }

  .rollout-button{min-width:112px}
}

@media(max-width:1080px){
  .nav-inner{
    grid-template-columns:auto 1fr auto;
  }

  .nav-partner{display:none}

  .rollout-button{
    display:inline-flex;
    min-width:120px;
  }
}

@media(max-width:900px){
  .nav-inner{display:flex}
  .rollout-button{display:none}

  .hero-city-background{
    background-position:58% center;
    filter:saturate(1.03) brightness(.76) contrast(1.1);
  }
}

@media(max-width:600px){
  .hero-city-background{
    background-position:64% center;
    filter:saturate(.98) brightness(.66) contrast(1.08);
  }
}


/* =========================================================
   CLEAN HEADER REBUILD — FINAL LAYOUT CONTROL
   ========================================================= */

.navbar{
  position:sticky;
  top:14px;
  z-index:1000;
  width:min(1340px,calc(100% - 32px));
  margin:14px auto 0;
  min-height:0;
  border:1px solid rgba(104,190,255,.34);
  border-radius:30px;
  overflow:visible;
  background:
    linear-gradient(135deg,rgba(14,45,78,.78),rgba(4,22,42,.88)),
    rgba(4,20,39,.88);
  box-shadow:
    0 22px 60px rgba(0,0,0,.30),
    inset 0 1px 0 rgba(255,255,255,.12),
    0 0 0 1px rgba(0,188,255,.04);
  backdrop-filter:blur(24px) saturate(135%);
}

.nav-shell{
  width:100%;
  min-height:118px;
  display:grid;
  grid-template-columns:340px minmax(520px,1fr) 310px;
  align-items:center;
  gap:24px;
  padding:16px 24px;
}

.brand-lockup{
  min-width:0;
  display:flex;
  align-items:center;
  gap:16px;
  padding-right:26px;
  border-right:1px solid rgba(255,255,255,.16);
}

.brand-shield{
  width:96px;
  height:96px;
  flex:0 0 96px;
  object-fit:contain;
  filter:
    drop-shadow(0 8px 18px rgba(0,0,0,.34))
    drop-shadow(0 0 12px rgba(30,163,255,.16));
}

.brand-copy{
  min-width:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  line-height:.96;
}

.brand-copy strong{
  display:block;
  margin:0;
  white-space:nowrap;
  font-size:2rem;
  font-weight:900;
  letter-spacing:-.055em;
}

.brand-copy strong span{color:#f7fbff}
.brand-copy strong em{color:#1ec0bb;font-style:normal}

.brand-copy small{
  display:block;
  margin-top:9px;
  color:#edf4fa;
  font-size:.66rem;
  font-weight:900;
  letter-spacing:.30em;
  white-space:nowrap;
}

.nav-links{
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

.nav-links a{
  position:relative;
  padding:12px 14px;
  border-radius:13px;
  color:#ecf2f8;
  font-size:.82rem;
  font-weight:800;
  line-height:1;
  white-space:nowrap;
  transition:
    color .2s ease,
    background .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}

.nav-links a:hover,
.nav-links a.active{
  color:#fff;
  background:rgba(0,174,255,.08);
  box-shadow:
    inset 0 0 0 1px rgba(0,201,255,.72),
    0 0 20px rgba(0,168,255,.12);
  transform:translateY(-1px);
}

.nav-actions{
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:18px;
}

.nav-actions .btn{
  min-height:58px;
  padding:13px 18px;
  border-radius:16px;
  font-size:.79rem;
  font-weight:900;
  line-height:1.15;
  white-space:nowrap;
}

.nav-actions .button-icon{
  display:inline-grid;
  place-items:center;
  font-size:1rem;
  line-height:1;
}

.btn-outline{
  border:1px solid rgba(0,210,255,.60);
  color:#fff;
  background:rgba(2,24,46,.32);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.02);
}

.btn-outline:hover{
  background:rgba(0,184,255,.09);
  box-shadow:0 0 24px rgba(0,184,255,.14);
}

.rollout-button{
  min-width:152px;
  background:linear-gradient(135deg,#12bde1,#1479ea 82%);
  box-shadow:
    0 14px 30px rgba(13,118,232,.24),
    inset 0 1px 0 rgba(255,255,255,.22);
}

.rollout-button:hover{
  transform:translateY(-2px);
  box-shadow:
    0 18px 38px rgba(13,118,232,.34),
    0 0 28px rgba(20,193,224,.14);
}

.menu-toggle{
  display:none;
  border:0;
  color:#fff;
  background:transparent;
  font-size:1.6rem;
  cursor:pointer;
}

/* Keep the detailed skyline crisp but readable. */
.hero-city-background{
  filter:saturate(1.14) brightness(.93) contrast(1.14);
  background-position:center 49%;
}

.hero-city-overlay{
  background:
    linear-gradient(90deg,
      rgba(3,16,33,.90) 0%,
      rgba(3,16,33,.74) 31%,
      rgba(3,16,33,.32) 56%,
      rgba(3,16,33,.24) 77%,
      rgba(3,16,33,.50) 100%),
    linear-gradient(180deg,
      rgba(2,12,25,.16) 0%,
      rgba(4,19,38,.03) 42%,
      rgba(4,20,39,.38) 78%,
      #061a2f 100%);
}

/* Laptop scaling */
@media(max-width:1320px){
  .navbar{
    width:calc(100% - 24px);
  }

  .nav-shell{
    grid-template-columns:305px minmax(455px,1fr) 286px;
    gap:18px;
    padding:14px 18px;
  }

  .brand-shield{
    width:84px;
    height:84px;
    flex-basis:84px;
  }

  .brand-copy strong{
    font-size:1.78rem;
  }

  .brand-copy small{
    font-size:.60rem;
  }

  .nav-links{
    gap:5px;
  }

  .nav-links a{
    padding:11px 10px;
    font-size:.77rem;
  }

  .nav-actions .btn{
    padding:12px 14px;
    font-size:.74rem;
  }

  .rollout-button{
    min-width:132px;
  }
}

@media(max-width:1180px){
  .nav-shell{
    grid-template-columns:278px minmax(420px,1fr) 154px;
  }

  .nav-partner{
    display:none !important;
  }

  .brand-shield{
    width:78px;
    height:78px;
    flex-basis:78px;
  }

  .brand-copy strong{
    font-size:1.62rem;
  }

  .brand-copy small{
    font-size:.55rem;
  }

  .rollout-button{
    min-width:140px;
  }
}

@media(max-width:980px){
  .navbar{
    top:8px;
    width:calc(100% - 16px);
    margin-top:8px;
    border-radius:22px;
  }

  .nav-shell{
    min-height:84px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:10px 14px;
  }

  .brand-lockup{
    padding-right:0;
    border-right:0;
  }

  .brand-shield{
    width:62px;
    height:62px;
    flex-basis:62px;
  }

  .brand-copy strong{
    font-size:1.38rem;
  }

  .brand-copy small{
    margin-top:6px;
    font-size:.48rem;
  }

  .nav-links{
    position:fixed;
    top:102px;
    right:12px;
    left:12px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:4px;
    padding:12px;
    border:1px solid rgba(104,190,255,.30);
    border-radius:18px;
    background:rgba(3,18,35,.98);
    box-shadow:0 24px 60px rgba(0,0,0,.34);
  }

  .nav-links.open{
    display:flex;
  }

  .nav-links a{
    width:100%;
    padding:13px 14px;
    text-align:left;
  }

  .nav-actions{
    gap:8px;
  }

  .rollout-button{
    display:none !important;
  }

  .menu-toggle{
    display:block;
  }
}

@media(max-width:600px){
  .nav-shell{
    min-height:76px;
    padding:8px 12px;
  }

  .brand-lockup{
    gap:10px;
  }

  .brand-shield{
    width:54px;
    height:54px;
    flex-basis:54px;
  }

  .brand-copy strong{
    font-size:1.18rem;
  }

  .brand-copy small{
    font-size:.42rem;
    letter-spacing:.24em;
  }
}


/* =========================================================
   FINAL HERO POLISH
   ========================================================= */

/* Give the large statement slightly more breathing room. */
.hero-copy h1{
  line-height:1.055;
  margin-bottom:22px;
}

/* Increase the phone presence and move it toward the right edge. */
.real-phone{
  width:232px;
  right:34px;
  top:2px;
}

.real-phone-shell{
  box-shadow:
    0 42px 94px rgba(0,0,0,.62),
    0 0 52px rgba(28,158,255,.25);
}

/* Dedicated bloom behind the real application device. */
.phone-stage::before{
  content:"";
  position:absolute;
  z-index:1;
  width:330px;
  height:390px;
  right:-8px;
  top:30px;
  border-radius:50%;
  pointer-events:none;
  background:
    radial-gradient(circle,
      rgba(20,153,255,.20) 0%,
      rgba(10,112,212,.11) 34%,
      transparent 70%);
  filter:blur(10px);
}

/* Lift city detail without washing out the dark sky. */
.hero-city-background{
  filter:saturate(1.2) brightness(.98) contrast(1.16);
}

.hero-city-overlay{
  background:
    linear-gradient(90deg,
      rgba(3,16,33,.90) 0%,
      rgba(3,16,33,.72) 30%,
      rgba(3,16,33,.24) 55%,
      rgba(3,16,33,.17) 77%,
      rgba(3,16,33,.43) 100%),
    linear-gradient(180deg,
      rgba(2,12,25,.10) 0%,
      rgba(4,19,38,.01) 42%,
      rgba(4,20,39,.31) 77%,
      #061a2f 100%);
}

/* Light bloom targets the skyline rather than the full background. */
.hero::before{
  background:
    radial-gradient(circle at 57% 43%,
      rgba(23,169,255,.19),
      transparent 25%),
    radial-gradient(circle at 75% 48%,
      rgba(17,214,216,.11),
      transparent 20%);
}

/* Subtle independent particles. */
.hero-particles{
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  overflow:hidden;
}

.hero-particles span{
  position:absolute;
  width:3px;
  height:3px;
  border-radius:50%;
  background:#79d9ff;
  box-shadow:0 0 10px rgba(74,194,255,.85);
  opacity:.45;
  animation:particleDrift 12s ease-in-out infinite;
}

.hero-particles span:nth-child(1){left:8%;top:27%;animation-delay:-1s}
.hero-particles span:nth-child(2){left:19%;top:66%;animation-delay:-7s}
.hero-particles span:nth-child(3){left:36%;top:22%;animation-delay:-4s}
.hero-particles span:nth-child(4){left:49%;top:61%;animation-delay:-10s}
.hero-particles span:nth-child(5){left:63%;top:24%;animation-delay:-3s}
.hero-particles span:nth-child(6){left:73%;top:68%;animation-delay:-8s}
.hero-particles span:nth-child(7){left:86%;top:31%;animation-delay:-5s}
.hero-particles span:nth-child(8){left:94%;top:56%;animation-delay:-11s}

@keyframes particleDrift{
  0%,100%{
    transform:translate3d(0,0,0);
    opacity:.25;
  }
  50%{
    transform:translate3d(6px,-12px,0);
    opacity:.72;
  }
}

/* Clean cyan underline grows from the centre on hover. */
.nav-links a::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:6px;
  width:0;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg,#18d5d0,#37a8ff);
  box-shadow:0 0 10px rgba(24,213,208,.65);
  transform:translateX(-50%);
  transition:width .22s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after{
  width:42%;
}

/* Avoid doubling the active visual treatment. */
.nav-links a:hover,
.nav-links a.active{
  transform:translateY(-1px);
}

/* Larger desktop layouts can let the phone sit further outward. */
@media(min-width:1321px){
  .real-phone{
    width:238px;
    right:18px;
  }

  .phone-stage::before{
    right:-22px;
  }
}

@media(max-width:1180px){
  .real-phone{
    width:222px;
    right:20px;
  }
}

@media(max-width:980px){
  .real-phone{
    right:calc(50% - 111px);
  }

  .phone-stage::before{
    right:calc(50% - 165px);
  }

  .hero-city-background{
    filter:saturate(1.08) brightness(.84) contrast(1.12);
  }
}

@media(max-width:600px){
  .hero-copy h1{
    line-height:1.04;
  }

  .real-phone{
    width:204px;
    right:calc(50% - 102px);
  }

  .phone-stage::before{
    width:270px;
    height:330px;
    right:calc(50% - 135px);
  }

  .hero-particles span:nth-child(n+6){
    display:none;
  }
}

@media(prefers-reduced-motion:reduce){
  .hero-particles span{
    animation:none;
  }
}


/* =========================================================
   HEADER LOGO + DIVIDER REFINEMENT
   ========================================================= */

.nav-shell{
  grid-template-columns:390px minmax(500px,1fr) 310px;
  gap:22px;
}

/* Remove the full-height border and replace it with a controlled divider. */
.brand-lockup{
  position:relative;
  padding-right:34px;
  border-right:0 !important;
}

.brand-lockup::after{
  content:"";
  position:absolute;
  right:0;
  top:50%;
  width:1px;
  height:74px;
  background:linear-gradient(
    to bottom,
    transparent,
    rgba(255,255,255,.18) 20%,
    rgba(255,255,255,.18) 80%,
    transparent
  );
  transform:translateY(-50%);
}

/* Stronger digital logo presence. */
.brand-shield{
  width:112px;
  height:112px;
  flex-basis:112px;
  filter:
    drop-shadow(0 10px 22px rgba(0,0,0,.38))
    drop-shadow(0 0 17px rgba(28,163,255,.24));
}

.brand-copy strong{
  font-size:2.42rem;
  line-height:.92;
  letter-spacing:-.062em;
}

.brand-copy small{
  margin-top:10px;
  font-size:.78rem;
  letter-spacing:.34em;
}

/* Keep the navigation visually centred and away from the divider. */
.nav-links{
  padding-left:8px;
}

@media(max-width:1320px){
  .nav-shell{
    grid-template-columns:345px minmax(455px,1fr) 286px;
    gap:16px;
  }

  .brand-lockup{
    padding-right:26px;
  }

  .brand-shield{
    width:94px;
    height:94px;
    flex-basis:94px;
  }

  .brand-copy strong{
    font-size:2rem;
  }

  .brand-copy small{
    font-size:.64rem;
  }
}

@media(max-width:1180px){
  .nav-shell{
    grid-template-columns:315px minmax(420px,1fr) 154px;
  }

  .brand-shield{
    width:84px;
    height:84px;
    flex-basis:84px;
  }

  .brand-copy strong{
    font-size:1.75rem;
  }

  .brand-copy small{
    font-size:.56rem;
  }
}

@media(max-width:980px){
  .brand-lockup{
    padding-right:0;
  }

  .brand-lockup::after{
    display:none;
  }

  .brand-shield{
    width:64px;
    height:64px;
    flex-basis:64px;
  }

  .brand-copy strong{
    font-size:1.4rem;
  }

  .brand-copy small{
    font-size:.47rem;
  }
}


/* =========================================================
   SIMPLIFIED PREMIUM HEADER — FINAL
   ========================================================= */

.navbar{
  position:sticky;
  top:12px;
  z-index:1000;
  width:min(1340px,calc(100% - 28px));
  min-height:0;
  margin:12px auto 0;
  overflow:visible;
  border:1px solid rgba(78,174,235,.34);
  border-radius:28px;
  background:
    radial-gradient(circle at 12% 50%,rgba(27,118,207,.10),transparent 26%),
    linear-gradient(135deg,rgba(9,34,62,.94),rgba(3,19,37,.96));
  box-shadow:
    0 18px 50px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.09),
    0 0 22px rgba(0,159,255,.035);
  backdrop-filter:blur(22px) saturate(130%);
}

.nav-shell{
  width:100%;
  min-height:106px;
  display:grid;
  grid-template-columns:350px minmax(510px,1fr) 310px;
  align-items:center;
  gap:18px;
  padding:12px 22px;
}

/* Clean logo area — no line or divider. */
.brand-lockup{
  position:relative;
  min-width:0;
  display:flex;
  align-items:center;
  gap:15px;
  padding:0;
  border:0 !important;
}

.brand-lockup::after{
  display:none !important;
  content:none !important;
}

.brand-shield{
  width:94px;
  height:94px;
  flex:0 0 94px;
  object-fit:contain;
  filter:
    drop-shadow(0 9px 20px rgba(0,0,0,.34))
    drop-shadow(0 0 15px rgba(28,163,255,.22));
}

.brand-copy{
  min-width:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  line-height:.94;
}

.brand-copy strong{
  display:block;
  margin:0;
  white-space:nowrap;
  font-size:2.2rem;
  font-weight:900;
  letter-spacing:-.062em;
}

.brand-copy strong span{color:#f8fbff}
.brand-copy strong em{color:#18beb9;font-style:normal}

.brand-copy small{
  display:block;
  margin-top:9px;
  color:#f0f5fa;
  font-size:.70rem;
  font-weight:900;
  letter-spacing:.31em;
  white-space:nowrap;
}

/* Navigation: no box, only a clean active underline. */
.nav-links{
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  padding:0;
}

.nav-links a{
  position:relative;
  padding:13px 6px 15px;
  border:0;
  border-radius:0;
  color:#e8eef5;
  background:transparent !important;
  box-shadow:none !important;
  font-size:.84rem;
  font-weight:650;
  letter-spacing:.01em;
  line-height:1;
  white-space:nowrap;
  transform:none !important;
  transition:color .2s ease;
}

.nav-links a:hover,
.nav-links a.active{
  color:#fff;
}

.nav-links a::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:5px;
  width:0;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg,#17d2cc,#38a8ff);
  box-shadow:0 0 9px rgba(23,210,204,.55);
  transform:translateX(-50%);
  transition:width .22s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after{
  width:68%;
}

/* Balanced actions, same height, no crowding. */
.nav-actions{
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:16px;
}

.nav-actions .btn{
  min-height:54px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:13px 18px;
  border-radius:15px;
  font-size:.78rem;
  font-weight:850;
  line-height:1;
  white-space:nowrap;
}

.btn-outline{
  min-width:138px;
  border:1px solid rgba(0,206,245,.56);
  color:#fff;
  background:rgba(2,24,46,.20);
  box-shadow:none;
}

.btn-outline:hover{
  background:rgba(0,185,238,.08);
  box-shadow:0 0 22px rgba(0,184,255,.11);
}

.rollout-button{
  min-width:142px;
  background:linear-gradient(135deg,#18bddb,#1679eb 85%);
  box-shadow:
    0 12px 28px rgba(13,118,232,.24),
    inset 0 1px 0 rgba(255,255,255,.18);
}

.rollout-button:hover{
  transform:translateY(-2px);
  box-shadow:0 17px 34px rgba(13,118,232,.32);
}

.menu-toggle{
  display:none;
  border:0;
  color:#fff;
  background:transparent;
  font-size:1.55rem;
  cursor:pointer;
}

/* Laptop fit */
@media(max-width:1320px){
  .nav-shell{
    grid-template-columns:310px minmax(450px,1fr) 286px;
    gap:14px;
    padding:11px 18px;
  }

  .brand-shield{
    width:82px;
    height:82px;
    flex-basis:82px;
  }

  .brand-copy strong{font-size:1.9rem}
  .brand-copy small{font-size:.60rem}

  .nav-links{gap:9px}
  .nav-links a{font-size:.78rem}

  .nav-actions .btn{
    padding-left:14px;
    padding-right:14px;
    font-size:.73rem;
  }

  .btn-outline{min-width:124px}
  .rollout-button{min-width:128px}
}

@media(max-width:1160px){
  .nav-shell{
    grid-template-columns:285px minmax(420px,1fr) 136px;
  }

  .nav-partner{
    display:none !important;
  }

  .brand-shield{
    width:76px;
    height:76px;
    flex-basis:76px;
  }

  .brand-copy strong{font-size:1.7rem}
  .brand-copy small{font-size:.54rem}
}

@media(max-width:980px){
  .navbar{
    top:8px;
    width:calc(100% - 16px);
    margin-top:8px;
    border-radius:21px;
  }

  .nav-shell{
    min-height:82px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:9px 13px;
  }

  .brand-shield{
    width:61px;
    height:61px;
    flex-basis:61px;
  }

  .brand-copy strong{font-size:1.38rem}
  .brand-copy small{
    margin-top:6px;
    font-size:.46rem;
  }

  .nav-links{
    position:fixed;
    top:98px;
    right:12px;
    left:12px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:2px;
    padding:12px;
    border:1px solid rgba(78,174,235,.30);
    border-radius:17px;
    background:rgba(3,18,35,.98);
    box-shadow:0 24px 60px rgba(0,0,0,.34);
  }

  .nav-links.open{display:flex}

  .nav-links a{
    width:100%;
    padding:13px 14px;
    text-align:left;
  }

  .nav-links a::after{
    left:14px;
    bottom:7px;
    transform:none;
  }

  .nav-links a:hover::after,
  .nav-links a.active::after{
    width:34px;
  }

  .rollout-button{
    display:none !important;
  }

  .menu-toggle{
    display:block;
  }
}

@media(max-width:600px){
  .nav-shell{
    min-height:74px;
    padding:7px 11px;
  }

  .brand-lockup{gap:9px}

  .brand-shield{
    width:53px;
    height:53px;
    flex-basis:53px;
  }

  .brand-copy strong{font-size:1.16rem}
  .brand-copy small{
    font-size:.40rem;
    letter-spacing:.24em;
  }
}


/* =========================================================
   PROBLEM + SOLUTION BODY UPGRADE
   ========================================================= */

.stakeholder-strip{
  padding:26px 0 30px;
  border-top:1px solid rgba(255,255,255,.055);
  border-bottom:1px solid rgba(255,255,255,.065);
  background:
    linear-gradient(180deg,rgba(4,20,39,.98),rgba(5,25,46,.96));
}

.stakeholder-shell{
  position:relative;
}

.stakeholder-row{
  position:relative;
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:0;
  margin-top:18px;
}

.stakeholder-row::before{
  content:"";
  position:absolute;
  z-index:0;
  top:28px;
  left:8.3%;
  right:8.3%;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(28,199,215,.18) 12%,rgba(28,199,215,.18) 88%,transparent);
}

.stakeholder-row a{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  min-width:0;
  padding:4px 12px 8px;
  color:#e8eff6;
  text-align:center;
  transition:color .22s ease,transform .22s ease;
}

.stakeholder-row a:not(:last-child)::after{
  content:"";
  position:absolute;
  top:10px;
  right:0;
  width:1px;
  height:50px;
  background:linear-gradient(to bottom,transparent,rgba(255,255,255,.12),transparent);
}

.audience-icon{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  margin-bottom:8px;
  border:1px solid rgba(26,213,215,.18);
  border-radius:50%;
  color:#1bd1d0;
  background:rgba(0,174,203,.045);
  box-shadow:0 0 0 rgba(25,209,208,0);
  transition:background .22s ease,border-color .22s ease,box-shadow .22s ease,transform .22s ease;
}

.audience-icon svg{
  width:22px;
  height:22px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.stakeholder-row b{
  font-size:.76rem;
  font-weight:800;
  line-height:1.2;
}

.stakeholder-row a:hover{
  color:#51e4df;
  transform:translateY(-3px);
}

.stakeholder-row a:hover .audience-icon{
  border-color:rgba(42,225,220,.58);
  background:rgba(0,190,214,.10);
  box-shadow:0 0 24px rgba(20,202,213,.17);
  transform:scale(1.05);
}

/* Problem section becomes one controlled glass surface. */
.problem-section{
  padding:44px 0 34px;
  background:linear-gradient(180deg,#061a2f,#071c33);
}

.problem-panel{
  position:relative;
  display:grid;
  grid-template-columns:minmax(310px,.88fr) minmax(400px,1.25fr) 180px;
  align-items:center;
  gap:40px;
  overflow:hidden;
  padding:36px 40px;
  border:1px solid rgba(122,189,241,.15);
  border-radius:28px;
  background:
    radial-gradient(circle at 87% 50%,rgba(18,154,226,.08),transparent 24%),
    linear-gradient(135deg,rgba(255,255,255,.052),rgba(255,255,255,.022));
  box-shadow:
    0 26px 60px rgba(0,0,0,.16),
    inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter:blur(18px);
}

.problem-panel::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(110deg,rgba(255,255,255,.045),transparent 30%);
}

.problem-title,
.problem-copy,
.problem-emblem{
  position:relative;
  z-index:1;
}

.problem-title h2{
  max-width:470px;
  margin-top:14px;
  margin-bottom:0;
  font-size:clamp(2rem,3.2vw,3.25rem);
  line-height:1.04;
}

.problem-copy{
  max-width:560px;
}

.problem-copy .lead{
  margin-bottom:16px;
  font-size:1rem;
  line-height:1.65;
}

.problem-copy .muted{
  margin-bottom:0;
}

.problem-emblem{
  width:150px;
  height:150px;
  display:grid;
  place-items:center;
  justify-self:end;
}

.problem-emblem img{
  position:relative;
  z-index:3;
  width:78px;
  filter:drop-shadow(0 10px 25px rgba(0,0,0,.35)) drop-shadow(0 0 12px rgba(24,156,255,.15));
  transition:transform .35s ease,filter .35s ease;
}

.emblem-orbit{
  position:absolute;
  border:1px solid rgba(38,177,255,.20);
  border-radius:50%;
}

.orbit-a{
  width:140px;
  height:140px;
}

.orbit-b{
  width:103px;
  height:103px;
  border-style:dashed;
}

.emblem-dot{
  position:absolute;
  z-index:4;
  width:7px;
  height:7px;
  border-radius:50%;
  background:#36dcff;
  box-shadow:0 0 13px rgba(54,220,255,.85);
}

.dot-a{top:18px;right:21px}
.dot-b{bottom:25px;left:10px}

.problem-panel:hover .orbit-b{
  animation:orbitRotate 8s linear infinite;
}

.problem-panel:hover .problem-emblem img{
  transform:scale(1.06);
  filter:drop-shadow(0 10px 25px rgba(0,0,0,.35)) drop-shadow(0 0 22px rgba(24,156,255,.28));
}

@keyframes orbitRotate{
  to{transform:rotate(360deg)}
}

/* Pull the solution heading closer to the problem story. */
.feature-section{
  padding-top:32px;
}

.feature-section .section-heading{
  align-items:end;
  gap:34px;
  margin-bottom:0;
}

.feature-section .section-heading h2{
  max-width:620px;
}

/* Premium, compact feature tiles. */
.card-grid{
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:26px;
}

.card{
  position:relative;
  min-height:238px;
  overflow:hidden;
  padding:22px;
  border-radius:21px;
  border-color:rgba(126,190,242,.13);
  background:
    radial-gradient(circle at 90% 7%,rgba(21,171,220,.08),transparent 25%),
    linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.027));
  box-shadow:
    0 16px 38px rgba(0,0,0,.13),
    inset 0 1px 0 rgba(255,255,255,.055);
}

.card::after{
  content:"";
  position:absolute;
  right:-50px;
  bottom:-70px;
  width:150px;
  height:150px;
  border-radius:50%;
  background:rgba(18,180,221,.055);
  filter:blur(4px);
  transition:transform .3s ease,background .3s ease;
}

.card:hover{
  transform:translateY(-6px);
  border-color:rgba(51,204,229,.29);
  background:
    radial-gradient(circle at 90% 7%,rgba(21,171,220,.13),transparent 28%),
    linear-gradient(145deg,rgba(255,255,255,.075),rgba(255,255,255,.032));
  box-shadow:
    0 24px 50px rgba(0,0,0,.20),
    0 0 24px rgba(17,169,220,.06);
}

.card:hover::after{
  transform:scale(1.18);
  background:rgba(18,180,221,.085);
}

.card .icon{
  width:48px;
  height:48px;
  margin-bottom:17px;
  color:#29d5d2;
  border-color:rgba(42,211,210,.24);
  border-radius:15px;
  background:linear-gradient(145deg,rgba(16,196,208,.13),rgba(30,110,213,.09));
}

.card .icon svg{
  width:23px;
  height:23px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.card-kicker{
  display:block;
  margin-bottom:7px;
  color:#71a9d1;
  font-size:.61rem;
  font-weight:850;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.card h3{
  font-size:1.05rem;
}

.card .muted{
  position:relative;
  z-index:1;
  font-size:.82rem;
}

.text-link{
  position:relative;
  z-index:1;
  display:inline-flex;
  align-items:center;
  gap:7px;
  margin-top:auto;
  color:#8cc9f7;
  font-size:.73rem;
}

.text-link span{
  transition:transform .2s ease;
}

.card:hover .text-link span{
  transform:translateX(4px);
}

@media(max-width:980px){
  .stakeholder-row{
    grid-template-columns:repeat(3,1fr);
    row-gap:18px;
  }

  .stakeholder-row::before{
    display:none;
  }

  .stakeholder-row a:nth-child(3)::after,
  .stakeholder-row a:nth-child(6)::after{
    display:none;
  }

  .problem-panel{
    grid-template-columns:1fr 1.25fr;
    gap:30px;
    padding:32px;
  }

  .problem-emblem{
    position:absolute;
    right:26px;
    bottom:18px;
    width:105px;
    height:105px;
    opacity:.45;
  }

  .problem-emblem img{width:56px}
  .orbit-a{width:100px;height:100px}
  .orbit-b{width:72px;height:72px}
}

@media(max-width:700px){
  .stakeholder-row{
    grid-template-columns:repeat(2,1fr);
  }

  .stakeholder-row a:nth-child(2n)::after{
    display:none;
  }

  .problem-panel{
    grid-template-columns:1fr;
    gap:18px;
    padding:26px;
  }

  .problem-title h2{
    font-size:2rem;
  }

  .problem-emblem{
    display:none;
  }

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

@media(prefers-reduced-motion:reduce){
  .problem-panel:hover .orbit-b{
    animation:none;
  }
}


/* =========================================================
   PROBLEM PANEL REFINEMENT + REAL PRODUCT TILES
   ========================================================= */

/* Audience hover underline */
.stakeholder-row a::before{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  width:0;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg,#21d8d3,#39a9ff);
  box-shadow:0 0 10px rgba(33,216,211,.5);
  transform:translateX(-50%);
  transition:width .22s ease;
}

.stakeholder-row a:hover::before{
  width:44px;
}

/* Remove all visual separation lines inside the problem panel. */
.problem-title{
  border:0 !important;
}

.problem-title::after,
.problem-title::before{
  display:none !important;
  content:none !important;
}

.problem-panel{
  grid-template-columns:minmax(390px,1fr) minmax(430px,1.18fr) 170px;
  gap:46px;
  padding:42px 48px;
  box-shadow:
    0 30px 70px rgba(0,0,0,.20),
    inset 0 1px 0 rgba(255,255,255,.10),
    inset 0 -1px 0 rgba(255,255,255,.025);
}

.problem-title h2{
  max-width:540px;
  font-size:clamp(2.15rem,3.2vw,3.35rem);
  line-height:1.03;
}

.problem-copy{
  padding-top:18px;
}

.problem-copy .lead{
  max-width:520px;
}

/* Stronger but cleaner shield glow */
.problem-emblem{
  width:160px;
  height:160px;
}

.problem-emblem img{
  width:88px;
  animation:shieldPulse 4.2s ease-in-out infinite;
}

.orbit-a{
  width:150px;
  height:150px;
  border-color:rgba(36,188,255,.24);
}

.orbit-b{
  width:112px;
  height:112px;
  border-color:rgba(36,188,255,.17);
  animation:orbitRotate 22s linear infinite;
}

.emblem-dot{
  width:4px;
  height:4px;
  opacity:.55;
  box-shadow:0 0 8px rgba(54,220,255,.65);
}

@keyframes shieldPulse{
  0%,100%{
    filter:
      drop-shadow(0 10px 25px rgba(0,0,0,.35))
      drop-shadow(0 0 10px rgba(26,168,255,.25))
      drop-shadow(0 0 24px rgba(26,168,255,.10));
    transform:scale(1);
  }
  50%{
    filter:
      drop-shadow(0 10px 25px rgba(0,0,0,.35))
      drop-shadow(0 0 19px rgba(30,211,255,.58))
      drop-shadow(0 0 44px rgba(24,142,255,.25));
    transform:scale(1.035);
  }
}

/* Product-led solution tiles */
.product-tile-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  margin-top:30px;
}

.product-tile{
  position:relative;
  min-height:360px;
  display:grid;
  grid-template-columns:minmax(0,1fr) 185px;
  align-items:end;
  gap:20px;
  overflow:hidden;
  padding:26px 24px 0 26px;
  border:1px solid rgba(119,193,244,.14);
  border-radius:24px;
  background:
    radial-gradient(circle at 84% 12%,rgba(18,166,221,.12),transparent 28%),
    linear-gradient(145deg,rgba(255,255,255,.061),rgba(255,255,255,.024));
  box-shadow:
    0 20px 46px rgba(0,0,0,.16),
    inset 0 1px 0 rgba(255,255,255,.065);
  transition:transform .28s ease,border-color .28s ease,box-shadow .28s ease;
}

.product-tile::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(120deg,rgba(255,255,255,.04),transparent 32%);
}

.product-tile:hover{
  transform:translateY(-6px);
  border-color:rgba(51,205,230,.31);
  box-shadow:
    0 28px 62px rgba(0,0,0,.23),
    0 0 28px rgba(13,169,225,.07),
    inset 0 1px 0 rgba(255,255,255,.09);
}

.product-copy{
  position:relative;
  z-index:2;
  align-self:center;
  padding-bottom:26px;
}

.product-copy h3{
  max-width:300px;
  margin:8px 0 11px;
  font-size:1.28rem;
}

.product-copy .muted{
  max-width:330px;
  font-size:.82rem;
}

.product-status{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-bottom:14px;
  padding:6px 9px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:999px;
  font-size:.58rem;
  font-weight:900;
  letter-spacing:.10em;
  text-transform:uppercase;
}

.product-status::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  background:currentColor;
  box-shadow:0 0 8px currentColor;
}

.product-status.live{color:#46e8a1;background:rgba(39,210,131,.06)}
.product-status.premium{color:#ffd65c;background:rgba(255,199,39,.06)}
.product-status.connected{color:#62c6ff;background:rgba(44,163,255,.07)}
.product-status.business{color:#6dd8ff;background:rgba(50,185,245,.07)}
.product-status.roadmap{color:#b8a4ff;background:rgba(140,110,255,.07)}

.product-screen{
  position:relative;
  z-index:2;
  width:172px;
  align-self:end;
  justify-self:end;
  padding:7px 7px 0;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.15);
  border-bottom:0;
  border-radius:25px 25px 0 0;
  background:#020b13;
  box-shadow:
    0 18px 45px rgba(0,0,0,.38),
    0 0 24px rgba(24,153,255,.08);
  transform:translateY(12px) rotate(1deg);
  transition:transform .3s ease,box-shadow .3s ease;
}

.product-screen img{
  width:100%;
  border-radius:19px 19px 0 0;
}

.product-tile:hover .product-screen{
  transform:translateY(4px) rotate(0deg);
  box-shadow:
    0 24px 54px rgba(0,0,0,.44),
    0 0 30px rgba(24,153,255,.15);
}

.product-tile-cta{
  padding-bottom:24px;
  background:
    radial-gradient(circle at 78% 48%,rgba(22,188,218,.14),transparent 31%),
    linear-gradient(145deg,rgba(28,104,175,.15),rgba(255,255,255,.025));
}

.product-tile-cta .product-copy{
  padding-bottom:0;
}

.tile-network{
  position:relative;
  z-index:2;
  width:170px;
  height:170px;
  display:grid;
  place-items:center;
  align-self:center;
  justify-self:center;
  border:1px solid rgba(38,181,255,.18);
  border-radius:50%;
}

.tile-network::before,
.tile-network::after{
  content:"";
  position:absolute;
  border:1px dashed rgba(38,181,255,.15);
  border-radius:50%;
}

.tile-network::before{
  width:128px;
  height:128px;
  animation:orbitRotate 20s linear infinite;
}

.tile-network::after{
  width:88px;
  height:88px;
}

.tile-network img{
  width:70px;
  animation:shieldPulse 4.2s ease-in-out infinite;
}

.tile-network span{
  position:absolute;
  width:6px;
  height:6px;
  border-radius:50%;
  background:#35dfff;
  box-shadow:0 0 10px rgba(53,223,255,.8);
}

.tile-network span:nth-child(1){top:13px;left:82px}
.tile-network span:nth-child(2){right:18px;top:64px}
.tile-network span:nth-child(3){bottom:20px;left:46px}
.tile-network span:nth-child(4){left:12px;top:78px}

@media(max-width:1050px){
  .problem-panel{
    grid-template-columns:minmax(320px,.95fr) minmax(360px,1.15fr);
  }

  .problem-emblem{
    position:absolute;
    right:30px;
    bottom:20px;
    opacity:.38;
  }

  .product-tile{
    grid-template-columns:minmax(0,1fr) 155px;
  }

  .product-screen{
    width:148px;
  }
}

@media(max-width:760px){
  .problem-panel{
    grid-template-columns:1fr;
    gap:18px;
    padding:28px;
  }

  .problem-copy{
    padding-top:0;
  }

  .problem-emblem{
    display:none;
  }

  .product-tile-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:480px){
  .product-tile{
    min-height:330px;
    grid-template-columns:1fr 120px;
    padding:22px 18px 0 20px;
  }

  .product-screen{
    width:116px;
  }

  .product-copy h3{
    font-size:1.08rem;
  }

  .tile-network{
    width:120px;
    height:120px;
  }
}

@media(prefers-reduced-motion:reduce){
  .problem-emblem img,
  .orbit-b,
  .tile-network::before,
  .tile-network img{
    animation:none;
  }
}


/* =========================================================
   PROBLEM SHIELD POSITION FIX
   ========================================================= */

.problem-panel{
  grid-template-columns:minmax(390px,1fr) minmax(430px,1.16fr) 210px;
  column-gap:44px;
  padding-right:58px;
}

.problem-emblem{
  width:160px;
  height:160px;
  justify-self:center;
  align-self:center;
  margin-right:0;
}

.problem-emblem img{
  width:92px;
}

@media(max-width:1050px){
  .problem-panel{
    grid-template-columns:minmax(320px,.95fr) minmax(360px,1.15fr);
    padding-right:38px;
  }

  .problem-emblem{
    right:38px;
  }
}

@media(max-width:760px){
  .problem-panel{
    grid-template-columns:1fr;
    padding-right:28px;
  }
}


/* =========================================================
   DEFINITIVE SHIELD MOVE — MUST WIN OVER EARLIER RULES
   ========================================================= */

.problem-panel .problem-emblem{
  position:relative !important;
  right:auto !important;
  left:auto !important;
  justify-self:center !important;
  align-self:center !important;
  margin:0 !important;
  transform:translateX(-42px) !important;
}

@media(max-width:1050px){
  .problem-panel .problem-emblem{
    transform:translateX(-28px) !important;
  }
}

@media(max-width:760px){
  .problem-panel .problem-emblem{
    display:none !important;
  }
}


/* =========================================================
   ENHANCED SHIELD MONITORING ANIMATION
   ========================================================= */

.problem-panel .problem-emblem{
  overflow:visible !important;
}

/* Brighter visible orbit rings */
.problem-panel .emblem-orbit{
  border-width:1.5px !important;
  box-shadow:
    0 0 14px rgba(34,214,255,.18),
    inset 0 0 12px rgba(34,214,255,.06);
}

.problem-panel .orbit-a{
  width:154px !important;
  height:154px !important;
  border-color:rgba(36,214,255,.42) !important;
  animation:orbitRotate 26s linear infinite !important;
}

.problem-panel .orbit-b{
  width:116px !important;
  height:116px !important;
  border-color:rgba(88,178,255,.34) !important;
  border-style:dashed !important;
  animation:orbitRotateReverse 18s linear infinite !important;
}

/* Larger, more visible orbit dots */
.problem-panel .emblem-dot{
  width:7px !important;
  height:7px !important;
  opacity:.95 !important;
  background:#39e4ff !important;
  box-shadow:
    0 0 8px rgba(57,228,255,1),
    0 0 18px rgba(57,228,255,.72),
    0 0 28px rgba(37,159,255,.38) !important;
}

.problem-panel .dot-a{
  top:13px !important;
  right:18px !important;
  animation:dotPulse 2.8s ease-in-out infinite !important;
}

.problem-panel .dot-b{
  bottom:18px !important;
  left:7px !important;
  animation:dotPulse 2.8s ease-in-out infinite .9s !important;
}

/* Stronger, softer shield glow */
.problem-panel .problem-emblem img{
  width:94px !important;
  animation:shieldCorePulse 4.2s ease-in-out infinite !important;
}

@keyframes orbitRotateReverse{
  from{transform:rotate(360deg)}
  to{transform:rotate(0deg)}
}

@keyframes shieldCorePulse{
  0%,100%{
    transform:scale(1);
    filter:
      drop-shadow(0 10px 25px rgba(0,0,0,.36))
      drop-shadow(0 0 12px rgba(35,172,255,.38))
      drop-shadow(0 0 28px rgba(24,130,255,.18));
  }
  50%{
    transform:scale(1.045);
    filter:
      drop-shadow(0 10px 25px rgba(0,0,0,.36))
      drop-shadow(0 0 24px rgba(62,225,255,.78))
      drop-shadow(0 0 52px rgba(23,139,255,.34));
  }
}

@keyframes dotPulse{
  0%,100%{
    transform:scale(.9);
    opacity:.68;
  }
  50%{
    transform:scale(1.3);
    opacity:1;
  }
}

/* Keep motion elegant and accessible */
@media(prefers-reduced-motion:reduce){
  .problem-panel .orbit-a,
  .problem-panel .orbit-b,
  .problem-panel .emblem-dot,
  .problem-panel .problem-emblem img{
    animation:none !important;
  }
}

.ecosystem-network-grid,.intelligence-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:34px;align-items:center;margin-top:30px}.network-visual{position:relative;min-height:520px;overflow:hidden;border:1px solid rgba(89,181,240,.14);border-radius:28px;background:radial-gradient(circle at 50% 50%,rgba(22,169,226,.12),transparent 34%),linear-gradient(145deg,rgba(255,255,255,.05),rgba(255,255,255,.018));box-shadow:0 24px 60px rgba(0,0,0,.18),inset 0 1px 0 rgba(255,255,255,.055)}.network-lines{position:absolute;inset:0;width:100%;height:100%}.network-lines path{fill:none;stroke:rgba(54,198,234,.16);stroke-width:2;stroke-dasharray:7 9;transition:.25s}.network-lines path.active{stroke:rgba(63,226,255,.82);stroke-width:3;filter:drop-shadow(0 0 7px rgba(63,226,255,.65))}.network-core{position:absolute;left:50%;top:50%;width:156px;height:156px;display:grid;place-items:center;border-radius:50%;transform:translate(-50%,-50%)}.network-core img{position:relative;z-index:3;width:76px;animation:shieldCorePulse 4.2s ease-in-out infinite}.network-core strong{position:absolute;z-index:4;bottom:-10px;padding:7px 10px;border-radius:999px;color:#dfefff;background:rgba(4,24,45,.88);font-size:.66rem}.core-ring{position:absolute;border:1px solid rgba(45,205,250,.25);border-radius:50%}.ring-one{width:150px;height:150px;animation:orbitRotate 25s linear infinite}.ring-two{width:112px;height:112px;border-style:dashed;animation:orbitRotateReverse 17s linear infinite}.network-node{position:absolute;width:112px;height:58px;border:1px solid rgba(73,183,234,.18);border-radius:16px;color:#dceaf5;background:rgba(6,33,60,.88);box-shadow:0 12px 28px rgba(0,0,0,.18);font-weight:800;cursor:pointer;transition:.22s}.network-node:hover,.network-node.active{color:#5ce9e3;border-color:rgba(66,225,234,.52);box-shadow:0 0 24px rgba(32,202,226,.15);transform:translateY(-3px)}.node-families{left:50%;top:7%;transform:translateX(-50%)}.node-families:hover,.node-families.active{transform:translateX(-50%) translateY(-3px)}.node-communities{left:4%;top:27%}.node-security{right:4%;top:27%}.node-municipalities{left:5%;bottom:18%}.node-emergency{left:50%;bottom:4%;transform:translateX(-50%)}.node-emergency:hover,.node-emergency.active{transform:translateX(-50%) translateY(-3px)}.node-businesses{right:5%;bottom:18%}.network-details{min-height:390px;padding:34px;border:1px solid rgba(89,181,240,.14);border-radius:26px;background:linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.022));box-shadow:0 22px 52px rgba(0,0,0,.16),inset 0 1px 0 rgba(255,255,255,.06)}.network-detail-label{color:#53dcd8;font-size:.65rem;font-weight:900;letter-spacing:.14em;text-transform:uppercase}.network-details h3{margin:14px 0 10px;font-size:2rem}.network-details ul{display:grid;gap:12px;margin:24px 0 0;padding:0;list-style:none}.network-details li{padding:12px 14px;border:1px solid rgba(255,255,255,.07);border-radius:14px;color:#d9e7f2;background:rgba(255,255,255,.035)}.network-details li:before{content:'✓';margin-right:9px;color:#42e4b0;font-weight:900}.intelligence-section{background:radial-gradient(circle at 18% 52%,rgba(23,128,224,.10),transparent 28%),linear-gradient(180deg,#071c33,#061a2f)}.analytics-showcase{display:grid;place-items:center;min-height:520px;border:1px solid rgba(91,181,241,.14);border-radius:28px;background:linear-gradient(145deg,rgba(255,255,255,.05),rgba(255,255,255,.018))}.analytics-frame{width:min(310px,75%);padding:10px;border:1px solid rgba(255,255,255,.14);border-radius:30px;background:#020b13;box-shadow:0 30px 70px rgba(0,0,0,.38),0 0 32px rgba(24,153,255,.10)}.analytics-frame img{width:100%;border-radius:22px}.metrics-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}.metric-card{min-height:140px;display:flex;flex-direction:column;justify-content:flex-end;padding:22px;border:1px solid rgba(94,184,241,.14);border-radius:20px;background:linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.022))}.metric-card strong{font-size:2.25rem}.metric-card span{margin-top:7px;color:#9fb1c1;font-size:.82rem}.metric-wide{grid-column:1/-1}.intelligence-note{text-align:center}.industries-grid,.partner-opportunities-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-top:28px}.industry-card,.partner-opportunity{min-height:190px;padding:20px;border:1px solid rgba(92,183,240,.13);border-radius:20px;background:linear-gradient(145deg,rgba(255,255,255,.05),rgba(255,255,255,.02));transition:.24s}.industry-card:hover,.partner-opportunity:hover{transform:translateY(-5px);border-color:rgba(51,205,230,.3);box-shadow:0 22px 44px rgba(0,0,0,.18)}.industry-card span{color:#44d7d1;font-size:.62rem;font-weight:900}.industry-card p,.partner-opportunity p{color:#aab9c6;font-size:.8rem;line-height:1.6}.roadmap{position:relative;display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:38px}.roadmap:before{content:'';position:absolute;top:36px;left:12.5%;right:12.5%;height:2px;background:linear-gradient(90deg,#37d6d2,rgba(55,214,210,.32))}.roadmap-step{position:relative;min-height:310px;padding:60px 22px 22px;border:1px solid rgba(92,183,240,.13);border-radius:20px;background:linear-gradient(145deg,rgba(255,255,255,.05),rgba(255,255,255,.02))}.roadmap-index{position:absolute;right:18px;top:16px;color:#6f889d;font-size:.62rem;font-weight:900}.roadmap-dot{position:absolute;z-index:2;top:28px;left:50%;width:16px;height:16px;border:3px solid #071c33;border-radius:50%;background:#6b8194;transform:translateX(-50%)}.roadmap-step.completed .roadmap-dot{background:#39d98a;box-shadow:0 0 16px rgba(57,217,138,.65)}.roadmap-step.current .roadmap-dot{background:#39dfff;box-shadow:0 0 18px rgba(57,223,255,.78);animation:dotPulse 2.5s ease-in-out infinite}.roadmap-step ul{display:grid;gap:9px;margin:18px 0 0;padding:0;list-style:none}.roadmap-step li{color:#a9b8c5;font-size:.78rem}.roadmap-step li:before{content:'•';margin-right:8px;color:#41d5d0}.partner-opportunities-grid{grid-template-columns:repeat(3,1fr)}.partner-opportunity small{display:inline-block;margin-top:12px;color:#4cded8;font-size:.65rem}.final-cta-section{position:relative;overflow:hidden;min-height:560px;display:grid;align-items:center;isolation:isolate}.final-cta-bg{position:absolute;inset:0;z-index:-2;background:linear-gradient(180deg,rgba(4,16,31,.64),rgba(4,18,34,.84)),url('../images/johannesburg-digital-skyline.png') center/cover no-repeat;filter:saturate(1.05) brightness(.62)}.final-cta-content{max-width:800px;text-align:center}.final-cta-shield{width:92px;margin:0 auto 18px;animation:shieldCorePulse 4.2s ease-in-out infinite}.final-cta-content p{max-width:680px;margin:0 auto;color:#bccad6;line-height:1.7}.final-cta-actions{display:flex;justify-content:center;flex-wrap:wrap;gap:12px;margin-top:26px}.proudly-sa{display:block;margin-top:24px;color:#4fe1db;font-size:.82rem}@media(max-width:980px){.ecosystem-network-grid,.intelligence-grid{grid-template-columns:1fr}.industries-grid{grid-template-columns:repeat(2,1fr)}.roadmap{grid-template-columns:repeat(2,1fr)}.roadmap:before{display:none}.partner-opportunities-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:640px){.industries-grid,.partner-opportunities-grid,.roadmap{grid-template-columns:1fr}.metrics-grid{grid-template-columns:1fr}.metric-wide{grid-column:auto}.final-cta-actions{display:grid}.final-cta-actions .btn{width:100%}}


/* =========================================================
   GLOBAL COMMERCIAL POLISH PASS
   ========================================================= */

:root{
  --ease-premium:cubic-bezier(.22,.8,.25,1);
}

.btn,
.card,
.product-tile,
.industry-card,
.partner-opportunity,
.metric-card,
.roadmap-step,
.network-node{
  transition:
    transform .28s var(--ease-premium),
    box-shadow .28s var(--ease-premium),
    border-color .28s ease,
    background .28s ease,
    color .2s ease;
}

.btn:hover{
  transform:translateY(-3px);
}

.btn-primary:hover{
  box-shadow:
    0 18px 40px rgba(29,127,237,.34),
    0 0 26px rgba(20,201,227,.14);
}

.btn-outline:hover,
.btn-secondary:hover{
  border-color:rgba(67,220,234,.46);
  box-shadow:0 14px 30px rgba(0,0,0,.18),0 0 24px rgba(27,197,221,.10);
}

/* Header settles more elegantly while scrolling. */
.navbar{
  transition:
    top .25s var(--ease-premium),
    width .25s var(--ease-premium),
    background .25s ease,
    box-shadow .25s ease,
    backdrop-filter .25s ease;
}

.navbar.is-scrolled{
  top:6px;
  width:min(1320px,calc(100% - 20px));
  background:
    radial-gradient(circle at 12% 50%,rgba(27,118,207,.08),transparent 24%),
    linear-gradient(135deg,rgba(8,31,57,.97),rgba(3,18,35,.98));
  box-shadow:0 18px 44px rgba(0,0,0,.34),inset 0 1px 0 rgba(255,255,255,.07);
  backdrop-filter:blur(28px) saturate(145%);
}

/* Hero parallax and depth. */
.hero-city-background{
  will-change:transform;
  transition:transform .18s linear;
}

.real-phone,
.floating-card{
  will-change:transform;
}

.floating-live{
  animation:floatingCardA 6.5s ease-in-out infinite;
}

.floating-trusted{
  animation:floatingCardB 7.4s ease-in-out infinite;
}

@keyframes floatingCardA{
  0%,100%{transform:translate3d(0,0,0)}
  50%{transform:translate3d(0,-8px,0)}
}

@keyframes floatingCardB{
  0%,100%{transform:translate3d(0,0,0)}
  50%{transform:translate3d(6px,-5px,0)}
}

/* Product tile final polish. */
.product-tile:hover{
  transform:translateY(-8px);
}

.product-tile:hover .product-screen img,
.card:hover img{
  transform:scale(1.025);
}

.product-screen img,
.card img{
  transition:transform .35s var(--ease-premium);
}

.product-status.live::before{
  animation:statusPulse 2.2s ease-in-out infinite;
}

@keyframes statusPulse{
  0%,100%{transform:scale(.9);opacity:.6}
  50%{transform:scale(1.35);opacity:1}
}

/* Ecosystem data pulses. */
.network-lines path.active{
  stroke-dasharray:9 11;
  animation:networkDash 3.6s linear infinite;
}

@keyframes networkDash{
  to{stroke-dashoffset:-40}
}

.network-pulse-dot{
  fill:#4ce8ff;
  filter:drop-shadow(0 0 8px rgba(76,232,255,.95));
  opacity:0;
  pointer-events:none;
}

.pulse-one{
  animation:pulsePathA 5.4s ease-in-out infinite;
}

.pulse-two{
  animation:pulsePathB 6.2s ease-in-out infinite 1.4s;
}

@keyframes pulsePathA{
  0%{transform:translate(0,0);opacity:0}
  10%{opacity:1}
  48%{transform:translate(210px,-85px);opacity:1}
  55%,100%{transform:translate(210px,-85px);opacity:0}
}

@keyframes pulsePathB{
  0%{transform:translate(0,0);opacity:0}
  12%{opacity:1}
  52%{transform:translate(-205px,120px);opacity:1}
  60%,100%{transform:translate(-205px,120px);opacity:0}
}

.network-core{
  transition:filter .25s ease;
}

.network-visual:has(.network-node:hover) .network-core,
.network-visual:has(.network-node.active) .network-core{
  filter:drop-shadow(0 0 24px rgba(52,213,255,.22));
}

/* Dashboard motion and metric detail. */
.analytics-frame{
  animation:dashboardFloat 6.8s ease-in-out infinite;
}

@keyframes dashboardFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-9px)}
}

.metric-card{
  position:relative;
  overflow:hidden;
}

.metric-card::after{
  content:"";
  position:absolute;
  inset:auto -35% -70% auto;
  width:150px;
  height:150px;
  border-radius:50%;
  background:rgba(20,180,224,.07);
  filter:blur(4px);
  transition:transform .35s var(--ease-premium),background .35s ease;
}

.metric-card:hover{
  transform:translateY(-5px);
  border-color:rgba(62,204,232,.28);
  box-shadow:0 22px 44px rgba(0,0,0,.18),0 0 22px rgba(23,171,226,.06);
}

.metric-card:hover::after{
  transform:scale(1.25);
  background:rgba(20,180,224,.11);
}

.metric-card strong,
.metric-card span{
  position:relative;
  z-index:1;
}

/* Roadmap current phase breathing marker. */
.roadmap-step.current{
  border-color:rgba(57,223,255,.28);
  box-shadow:0 18px 42px rgba(0,0,0,.18),0 0 24px rgba(57,223,255,.05);
}

.roadmap-step:hover{
  transform:translateY(-6px);
  border-color:rgba(61,205,232,.28);
}

/* Final CTA refinement. */
.final-cta-bg{
  will-change:transform;
  animation:ctaBackdrop 18s ease-in-out infinite alternate;
}

@keyframes ctaBackdrop{
  from{transform:scale(1.02) translateX(-6px)}
  to{transform:scale(1.055) translateX(8px)}
}

.final-cta-content{
  position:relative;
}

.final-cta-content::before{
  content:"";
  position:absolute;
  inset:10% 12%;
  z-index:-1;
  border-radius:50%;
  background:rgba(22,164,225,.07);
  filter:blur(50px);
}

/* Better section rhythm without increasing page size. */
.ecosystem-network-section,
.intelligence-section,
.industries-section,
.roadmap-section,
.partner-opportunities-section{
  scroll-margin-top:120px;
}

@media(max-width:980px){
  .analytics-frame,
  .floating-live,
  .floating-trusted,
  .final-cta-bg{
    animation:none;
  }
}

@media(prefers-reduced-motion:reduce){
  *,
  *::before,
  *::after{
    scroll-behavior:auto !important;
  }

  .floating-live,
  .floating-trusted,
  .network-lines path.active,
  .network-pulse-dot,
  .analytics-frame,
  .product-status.live::before,
  .final-cta-bg{
    animation:none !important;
  }
}


/* =========================================================
   FEATURES PAGE
   ========================================================= */
.features-page{background:#061a2f}
.features-hero{position:relative;min-height:720px;display:grid;align-items:center;overflow:hidden;isolation:isolate;padding:84px 0 54px}
.features-city-bg{position:absolute;inset:0;z-index:-3;background:url("../images/johannesburg-digital-skyline.png") center/cover no-repeat;filter:saturate(1.1) brightness(.72) contrast(1.12)}
.features-city-overlay{position:absolute;inset:0;z-index:-2;background:linear-gradient(90deg,rgba(3,16,33,.94),rgba(3,16,33,.70) 42%,rgba(3,16,33,.35) 72%,rgba(3,16,33,.62)),linear-gradient(180deg,rgba(4,18,34,.28),rgba(6,26,47,.92))}
.features-hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:44px;align-items:center}
.features-hero-copy h1{font-size:clamp(2.8rem,5.5vw,5.2rem);line-height:.98;letter-spacing:-.06em;margin-bottom:22px}
.features-hero-points{display:flex;flex-wrap:wrap;gap:18px;margin-top:22px;color:#b9c8d4;font-size:.8rem}
.features-hero-points span::before{content:"✓";margin-right:7px;color:#49e1ae;font-weight:900}
.features-hero-device{position:relative;min-height:520px;display:grid;place-items:center}
.features-device-glow{position:absolute;width:360px;height:430px;border-radius:50%;background:radial-gradient(circle,rgba(21,155,255,.22),transparent 68%);filter:blur(14px)}
.features-phone{position:relative;z-index:2;width:255px;padding:10px;border:1px solid rgba(255,255,255,.16);border-radius:38px;background:#020b13;box-shadow:0 38px 90px rgba(0,0,0,.58),0 0 48px rgba(24,153,255,.20);transform:rotate(3deg);animation:phoneFloat 6s ease-in-out infinite}
.features-phone img{width:100%;border-radius:28px}
.feature-story{padding:72px 0;background:linear-gradient(180deg,#061a2f,#071c33)}
.feature-story.alternate{background:linear-gradient(180deg,#071c33,#05182b)}
.feature-story-grid{display:grid;grid-template-columns:1fr .85fr;gap:54px;align-items:center}
.feature-story.alternate .feature-story-copy{order:2}.feature-story.alternate .feature-device-panel{order:1}
.feature-number{display:block;margin-bottom:14px;color:#496b87;font-size:.68rem;font-weight:900;letter-spacing:.18em}
.feature-story-copy h2{max-width:620px;margin-top:14px}
.feature-checks{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px 18px;margin:24px 0 0;padding:0;list-style:none}
.feature-checks li{padding:11px 13px;border:1px solid rgba(255,255,255,.075);border-radius:13px;color:#d7e3ed;background:rgba(255,255,255,.035);font-size:.78rem}
.feature-checks li::before{content:"✓";margin-right:8px;color:#44e2ad;font-weight:900}
.feature-device-panel{min-height:470px;display:grid;place-items:center;border:1px solid rgba(93,182,241,.13);border-radius:28px;background:radial-gradient(circle at 50% 45%,rgba(21,158,229,.13),transparent 34%),linear-gradient(145deg,rgba(255,255,255,.052),rgba(255,255,255,.018));box-shadow:0 24px 60px rgba(0,0,0,.16)}
.feature-device{width:235px;padding:9px;border:1px solid rgba(255,255,255,.14);border-radius:34px;background:#020b13;box-shadow:0 28px 64px rgba(0,0,0,.42),0 0 28px rgba(24,153,255,.10);transition:.3s ease}
.feature-device:hover{transform:translateY(-8px) scale(1.015);box-shadow:0 36px 76px rgba(0,0,0,.48),0 0 38px rgba(24,153,255,.16)}
.feature-device img{width:100%;border-radius:25px}
.intelligence-feature-section{padding:82px 0;background:radial-gradient(circle at 22% 50%,rgba(25,127,219,.10),transparent 28%),linear-gradient(180deg,#05182b,#071c33)}
.intelligence-feature-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:50px;align-items:center}
.intelligence-feature-visual{min-height:520px;display:grid;place-items:center;border:1px solid rgba(93,182,241,.13);border-radius:28px;background:rgba(255,255,255,.025)}
.analytics-desktop-frame{width:300px;padding:10px;border:1px solid rgba(255,255,255,.14);border-radius:30px;background:#020b13;box-shadow:0 30px 70px rgba(0,0,0,.40),0 0 34px rgba(24,153,255,.10);animation:dashboardFloat 6.8s ease-in-out infinite}
.analytics-desktop-frame img{width:100%;border-radius:22px}
.intelligence-mini-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;margin-top:25px}
.intelligence-mini-grid div{padding:16px;border:1px solid rgba(255,255,255,.075);border-radius:15px;background:rgba(255,255,255,.035)}
.intelligence-mini-grid strong,.intelligence-mini-grid span{display:block}.intelligence-mini-grid strong{color:#edf7ff;font-size:.94rem}.intelligence-mini-grid span{margin-top:4px;color:#91a5b5;font-size:.72rem}
.feature-capabilities-section,.coming-soon-section{padding:76px 0;background:linear-gradient(180deg,#071c33,#061a2f)}
.coming-soon-section{background:linear-gradient(180deg,#061a2f,#051729)}
.capability-grid,.coming-soon-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:15px;margin-top:28px}
.capability-card,.coming-soon-card{min-height:190px;padding:21px;border:1px solid rgba(93,182,241,.13);border-radius:20px;background:linear-gradient(145deg,rgba(255,255,255,.05),rgba(255,255,255,.02));transition:.25s ease}
.capability-card:hover,.coming-soon-card:hover{transform:translateY(-5px);border-color:rgba(51,205,230,.30);box-shadow:0 22px 44px rgba(0,0,0,.18),0 0 22px rgba(13,169,225,.06)}
.capability-card span{color:#41d9d3;font-size:.62rem;font-weight:900}.capability-card h3{margin:18px 0 10px}.capability-card p,.coming-soon-card p{color:#aab9c6;font-size:.8rem;line-height:1.6}
.coming-soon-card b{display:block;margin-bottom:12px;color:#eef7ff;font-size:1rem}
.features-final-cta{position:relative;min-height:560px;display:grid;align-items:center;overflow:hidden;isolation:isolate}
.features-final-bg{position:absolute;inset:0;z-index:-2;background:linear-gradient(180deg,rgba(4,16,31,.60),rgba(4,18,34,.86)),url("../images/johannesburg-digital-skyline.png") center/cover no-repeat;filter:saturate(1.05) brightness(.62)}
.features-final-cta::after{content:"";position:absolute;inset:0;z-index:-1;background:radial-gradient(circle at 50% 45%,rgba(23,171,235,.16),transparent 34%)}
.features-final-content{max-width:800px;text-align:center}.features-final-content h2{margin:18px auto 14px;max-width:760px}.features-final-content p{max-width:680px;margin:0 auto;color:#bccad6;line-height:1.7}
@media(max-width:980px){.features-hero-grid,.feature-story-grid,.intelligence-feature-grid{grid-template-columns:1fr}.feature-story.alternate .feature-story-copy,.feature-story.alternate .feature-device-panel{order:initial}.features-hero-device{min-height:470px}.capability-grid,.coming-soon-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:640px){.features-hero{padding-top:56px}.features-hero-copy h1{font-size:2.55rem}.features-phone{width:220px}.feature-story{padding:58px 0}.feature-checks{grid-template-columns:1fr}.feature-device-panel,.intelligence-feature-visual{min-height:420px}.feature-device{width:210px}.capability-grid,.coming-soon-grid{grid-template-columns:1fr}.intelligence-mini-grid{grid-template-columns:1fr}}


/* =========================================================
   SOLUTIONS PAGE
   ========================================================= */
.solutions-hero{
  position:relative;
  min-height:680px;
  display:grid;
  align-items:center;
  overflow:hidden;
  isolation:isolate;
}
.solutions-hero-bg{
  position:absolute;inset:0;z-index:-3;
  background:url("../images/johannesburg-digital-skyline.png") center/cover no-repeat;
  filter:saturate(1.08) brightness(.68) contrast(1.12);
}
.solutions-hero-overlay{
  position:absolute;inset:0;z-index:-2;
  background:
    linear-gradient(90deg,rgba(3,16,33,.91),rgba(3,16,33,.70) 40%,rgba(3,16,33,.35) 70%,rgba(3,16,33,.64)),
    linear-gradient(180deg,rgba(3,15,29,.22),rgba(4,20,39,.54) 76%,#061a2f);
}
.solutions-hero-grid{
  display:grid;grid-template-columns:1.05fr .95fr;gap:48px;align-items:center;
  padding-top:92px;padding-bottom:70px;
}
.solutions-hero-copy h1{font-size:clamp(2.8rem,5.3vw,5rem)}
.solutions-core{
  position:relative;width:360px;height:360px;margin:auto;
  display:grid;place-items:center;border-radius:50%;
  background:radial-gradient(circle,rgba(21,170,224,.17),transparent 62%);
}
.solutions-core img{width:135px;z-index:3;animation:shieldCorePulse 4.2s ease-in-out infinite}
.solutions-core strong{
  position:absolute;bottom:42px;z-index:4;padding:9px 14px;border-radius:999px;
  background:rgba(4,24,45,.82);font-size:.72rem;color:#dceefe;
}
.solutions-core-ring{position:absolute;border:1px solid rgba(55,211,244,.28);border-radius:50%}
.ring-a{width:300px;height:300px;animation:orbitRotate 25s linear infinite}
.ring-b{width:225px;height:225px;border-style:dashed;animation:orbitRotateReverse 18s linear infinite}

.solutions-intro{padding-bottom:20px}
.solutions-grid-section{padding-top:28px}
.solutions-grid{
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;
}
.solution-audience-card{
  min-height:340px;padding:28px;border:1px solid rgba(91,184,241,.14);border-radius:24px;
  background:radial-gradient(circle at 90% 10%,rgba(25,176,222,.10),transparent 28%),linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.022));
  box-shadow:0 20px 48px rgba(0,0,0,.16),inset 0 1px 0 rgba(255,255,255,.06);
  transition:.25s ease;
}
.solution-audience-card:hover{transform:translateY(-6px);border-color:rgba(52,206,229,.30);box-shadow:0 28px 58px rgba(0,0,0,.22),0 0 28px rgba(13,169,225,.07)}
.solution-audience-card.featured-solution{border-color:rgba(255,207,82,.28);background:radial-gradient(circle at 90% 10%,rgba(255,204,75,.10),transparent 26%),linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.022))}
.solution-number{font-size:.62rem;font-weight:900;color:#45d9d4;letter-spacing:.12em}
.solution-audience-card h3{margin:18px 0 10px;font-size:1.35rem}
.solution-audience-card p{color:#aebdca;line-height:1.65}
.solution-audience-card ul{display:grid;gap:9px;margin:20px 0 24px;padding:0;list-style:none}
.solution-audience-card li{color:#d5e3ed;font-size:.82rem}
.solution-audience-card li::before{content:"✓";margin-right:8px;color:#42e4b0;font-weight:900}
.solution-audience-card a{color:#81c7f7;font-size:.78rem;font-weight:800}

.solution-journey-section{background:linear-gradient(180deg,#071c33,#061a2f)}
.solution-journey{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-top:30px}
.journey-step{min-height:220px;padding:24px;border:1px solid rgba(91,184,241,.13);border-radius:20px;background:rgba(255,255,255,.035)}
.journey-step span{display:inline-grid;place-items:center;width:40px;height:40px;border-radius:12px;background:rgba(31,177,216,.12);color:#48ddd7;font-size:.72rem;font-weight:900}
.journey-step h3{margin:18px 0 9px}
.journey-step p{color:#aab9c6;font-size:.82rem;line-height:1.6}

.solution-platform-showcase{background:radial-gradient(circle at 74% 40%,rgba(24,139,228,.10),transparent 27%),linear-gradient(180deg,#061a2f,#071c33)}
.solution-platform-grid{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:center}
.solution-benefits{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;margin-top:26px}
.solution-benefits div{padding:16px;border:1px solid rgba(255,255,255,.08);border-radius:16px;background:rgba(255,255,255,.035)}
.solution-benefits strong,.solution-benefits span{display:block}
.solution-benefits strong{color:#f5fbff}
.solution-benefits span{margin-top:5px;color:#9fb0bf;font-size:.72rem}
.solution-platform-visual{position:relative;min-height:520px}
.solution-phone{position:absolute;width:210px;padding:8px;border-radius:30px;background:#020b13;box-shadow:0 28px 70px rgba(0,0,0,.45)}
.solution-phone img{width:100%;border-radius:22px}
.solution-phone.front{z-index:3;left:50%;top:30px;transform:translateX(-50%)}
.solution-phone.rear{z-index:1;left:25px;top:105px;transform:rotate(-8deg);opacity:.82}
.solution-phone.side{z-index:2;right:22px;top:115px;transform:rotate(8deg);opacity:.87}

.solution-partner-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-top:28px}
.solution-partner{min-height:210px;padding:22px;border:1px solid rgba(91,184,241,.13);border-radius:20px;background:linear-gradient(145deg,rgba(255,255,255,.05),rgba(255,255,255,.02));transition:.23s ease}
.solution-partner:hover{transform:translateY(-5px);border-color:rgba(51,205,230,.29)}
.solution-partner p{color:#a9b9c7;font-size:.8rem;line-height:1.6}

.solutions-final-cta{position:relative;min-height:560px;display:grid;align-items:center;overflow:hidden;isolation:isolate}
.solutions-final-bg{position:absolute;inset:0;z-index:-2;background:linear-gradient(180deg,rgba(4,16,31,.60),rgba(4,18,34,.86)),url("../images/johannesburg-digital-skyline.png") center/cover no-repeat;filter:saturate(1.03) brightness(.62)}
.solutions-final-cta::after{content:"";position:absolute;inset:0;z-index:-1;background:radial-gradient(circle at 50% 45%,rgba(23,171,235,.16),transparent 35%)}
.solutions-final-content{max-width:820px;text-align:center}
.solutions-final-content h2{margin:18px auto 14px}
.solutions-final-content p{max-width:690px;margin:auto;color:#bccad6;line-height:1.7}

@media(max-width:980px){
  .solutions-hero-grid,.solution-platform-grid{grid-template-columns:1fr}
  .solutions-core{width:300px;height:300px}
  .solutions-grid{grid-template-columns:1fr}
  .solution-journey,.solution-partner-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:640px){
  .solutions-hero{min-height:auto}
  .solutions-hero-grid{padding-top:60px}
  .solutions-core{width:240px;height:240px}
  .ring-a{width:220px;height:220px}.ring-b{width:165px;height:165px}
  .solutions-core img{width:105px}
  .solution-journey,.solution-partner-grid{grid-template-columns:1fr}
  .solution-platform-visual{min-height:440px}
  .solution-phone{width:165px}
  .solution-phone.rear{left:0}.solution-phone.side{right:0}
}


/* =========================================================
   PRICING PAGE
   ========================================================= */
.pricing-hero{
  position:relative;min-height:460px;display:grid;align-items:center;overflow:hidden;isolation:isolate;
}
.pricing-hero-bg{
  position:absolute;inset:0;z-index:-2;
  background:
    linear-gradient(180deg,rgba(3,16,31,.40),rgba(4,18,35,.82)),
    url("../images/johannesburg-digital-skyline.png") center/cover no-repeat;
  filter:saturate(1.05) brightness(.65);
}
.pricing-hero-content{max-width:860px;text-align:center;padding-top:100px;padding-bottom:70px}
.pricing-hero-content h1{font-size:clamp(2.8rem,5vw,4.8rem)}
.pricing-hero-content .lead{max-width:700px;margin-left:auto;margin-right:auto}

.pricing-section{background:linear-gradient(180deg,#061a2f,#071c33)}
.pricing-grid{
  display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;align-items:stretch;
}
.pricing-card{
  position:relative;min-height:660px;display:flex;flex-direction:column;overflow:hidden;
  padding:28px 22px 22px;border:1px solid rgba(113,190,240,.16);border-radius:28px;
  background:
    radial-gradient(circle at 50% 0%,rgba(42,152,221,.10),transparent 28%),
    linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.025));
  box-shadow:0 24px 55px rgba(0,0,0,.20),inset 0 1px 0 rgba(255,255,255,.08);
  transition:.26s ease;
}
.pricing-card:hover{transform:translateY(-8px);border-color:rgba(65,205,233,.34);box-shadow:0 34px 68px rgba(0,0,0,.28),0 0 30px rgba(28,177,229,.09)}
.plan-icon{
  width:86px;height:86px;display:grid;place-items:center;margin:0 auto 18px;border-radius:50%;
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.10);
}
.plan-icon img{width:52px;height:52px}
.plan-label{text-align:center;color:#6fb2e2;font-size:.61rem;font-weight:900;letter-spacing:.14em;text-transform:uppercase}
.pricing-card h2{text-align:center;margin:10px 0 6px;font-size:1.3rem}
.plan-summary{text-align:center;color:#9eb0c0;font-size:.78rem;min-height:42px}
.plan-price{display:flex;justify-content:center;align-items:end;gap:6px;margin:18px 0 22px}
.plan-price strong{font-size:2rem;color:#f4fbff}
.plan-price span{padding-bottom:5px;color:#8ea2b6;font-size:.72rem}
.pricing-card ul{display:grid;gap:12px;margin:0 0 24px;padding:22px 0 0;border-top:1px solid rgba(255,255,255,.10);list-style:none}
.pricing-card li{position:relative;padding-left:28px;color:#cfdae5;font-size:.79rem;line-height:1.45}
.pricing-card li::before{
  content:"";position:absolute;left:0;top:1px;width:18px;height:18px;
  background:currentColor;mask:url("../icons/check.svg") center/contain no-repeat;
  -webkit-mask:url("../icons/check.svg") center/contain no-repeat;
}
.pricing-card li em{display:block;color:#7c92a6;font-size:.66rem;font-style:normal}
.plan-button{
  margin-top:auto;display:flex;justify-content:center;align-items:center;min-height:50px;
  padding:12px;border-radius:14px;font-size:.77rem;font-weight:900;transition:.22s ease;
}
.plan-free .plan-button{color:#d8e4ef;border:1px solid rgba(167,190,214,.25);background:rgba(255,255,255,.035)}
.plan-community{border-color:rgba(68,207,137,.22)}
.plan-community .plan-button{color:#fff;background:linear-gradient(135deg,#2cc875,#168f53)}
.plan-community li{color:#4bd690}
.plan-guardian{
  transform:translateY(-10px);border-color:rgba(255,202,64,.42);
  background:radial-gradient(circle at 50% 0%,rgba(255,194,38,.14),transparent 31%),linear-gradient(180deg,rgba(255,255,255,.085),rgba(255,255,255,.028));
  box-shadow:0 28px 70px rgba(0,0,0,.24),0 0 35px rgba(255,192,45,.08);
}
.plan-guardian:hover{transform:translateY(-16px)}
.plan-guardian .plan-button{color:#1b1400;background:linear-gradient(135deg,#ffe072,#d99c00)}
.plan-guardian li{color:#efbd25}
.plan-business{border-color:rgba(47,187,255,.26)}
.plan-business .plan-button{color:#fff;background:linear-gradient(135deg,#20c5e8,#176bd9)}
.plan-business li{color:#51c9ff}
.popular-badge,.enterprise-badge{
  position:absolute;top:16px;right:16px;padding:7px 10px;border-radius:999px;font-size:.56rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase;
}
.popular-badge{color:#211600;background:linear-gradient(135deg,#ffe27d,#e7a900)}
.enterprise-badge{color:#dff7ff;background:rgba(35,156,225,.18);border:1px solid rgba(70,199,255,.28)}

.pricing-compare-section{background:linear-gradient(180deg,#071c33,#061a2f)}
.compare-table-wrap{overflow:auto;margin-top:30px;border:1px solid rgba(91,184,241,.14);border-radius:22px}
.compare-table{width:100%;border-collapse:collapse;min-width:800px;background:rgba(255,255,255,.025)}
.compare-table th,.compare-table td{padding:18px 16px;border-bottom:1px solid rgba(255,255,255,.07);text-align:center;font-size:.8rem}
.compare-table th:first-child,.compare-table td:first-child{text-align:left}
.compare-table th{color:#f0f7fb;background:rgba(255,255,255,.035)}
.compare-table td{color:#b8c7d2}

.pricing-faq-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin-top:26px}
.pricing-faq{padding:22px;border:1px solid rgba(91,184,241,.13);border-radius:20px;background:rgba(255,255,255,.035)}
.pricing-faq p{color:#a9b9c6;font-size:.82rem;line-height:1.6}

@media(max-width:1100px){.pricing-grid{grid-template-columns:repeat(2,1fr)}.plan-guardian{transform:none}.plan-guardian:hover{transform:translateY(-8px)}}
@media(max-width:640px){.pricing-grid,.pricing-faq-grid{grid-template-columns:1fr}.pricing-card{min-height:auto}}


/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-hero{
  position:relative;min-height:680px;display:grid;align-items:center;overflow:hidden;isolation:isolate;
}
.about-hero-bg{
  position:absolute;inset:0;z-index:-3;
  background:url("../images/johannesburg-digital-skyline.png") center/cover no-repeat;
  filter:saturate(1.08) brightness(.66) contrast(1.12);
}
.about-hero-overlay{
  position:absolute;inset:0;z-index:-2;
  background:
    linear-gradient(90deg,rgba(3,16,33,.92),rgba(3,16,33,.72) 42%,rgba(3,16,33,.34) 74%,rgba(3,16,33,.62)),
    linear-gradient(180deg,rgba(3,15,29,.18),rgba(4,20,39,.54) 75%,#061a2f);
}
.about-hero-grid{
  display:grid;grid-template-columns:1.1fr .9fr;gap:50px;align-items:center;padding-top:95px;padding-bottom:70px;
}
.about-hero-copy h1{font-size:clamp(2.8rem,5.2vw,5rem)}
.about-hero-mark{
  position:relative;width:380px;height:380px;display:grid;place-items:center;margin:auto;border-radius:50%;
  background:radial-gradient(circle,rgba(23,163,224,.16),transparent 62%);
}
.about-hero-mark img{width:145px;z-index:3;animation:shieldCorePulse 4.2s ease-in-out infinite}
.about-hero-mark strong{
  position:absolute;bottom:45px;z-index:4;max-width:260px;text-align:center;color:#dceefe;font-size:.75rem;letter-spacing:.05em;
}
.about-mark-ring{position:absolute;border:1px solid rgba(52,208,244,.26);border-radius:50%}
.about-mark-ring.ring-one{width:320px;height:320px;animation:orbitRotate 26s linear infinite}
.about-mark-ring.ring-two{width:235px;height:235px;border-style:dashed;animation:orbitRotateReverse 18s linear infinite}

.about-story-section{background:linear-gradient(180deg,#061a2f,#071c33)}
.about-story-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:42px;align-items:center}
.about-story-copy p{max-width:680px}
.about-story-card{
  display:grid;grid-template-columns:repeat(2,1fr);gap:14px;padding:24px;border:1px solid rgba(91,184,241,.14);border-radius:26px;
  background:linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.022));
  box-shadow:0 24px 58px rgba(0,0,0,.18),inset 0 1px 0 rgba(255,255,255,.06);
}
.story-stat{min-height:140px;padding:18px;border:1px solid rgba(255,255,255,.07);border-radius:18px;background:rgba(255,255,255,.025)}
.story-stat strong,.story-stat span{display:block}
.story-stat strong{color:#f5fbff}
.story-stat span{margin-top:9px;color:#9fb0bf;font-size:.77rem;line-height:1.5}

.mission-vision-section{background:linear-gradient(180deg,#071c33,#061a2f)}
.mission-vision-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
.mission-card,.vision-card{
  position:relative;min-height:380px;padding:34px;border:1px solid rgba(91,184,241,.14);border-radius:26px;
  background:radial-gradient(circle at 90% 10%,rgba(25,176,222,.11),transparent 28%),linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.022));
  overflow:hidden;
}
.vision-card{background:radial-gradient(circle at 90% 10%,rgba(81,95,240,.11),transparent 28%),linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.022))}
.mv-number{position:absolute;right:24px;top:20px;color:#5e7891;font-size:.65rem;font-weight:900}
.mission-card h2,.vision-card h2{margin-top:18px;font-size:clamp(2rem,3.2vw,3rem)}
.mission-card p,.vision-card p{max-width:540px;color:#aab9c6;line-height:1.7}

.values-section{background:linear-gradient(180deg,#061a2f,#071c33)}
.values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:28px}
.value-card{
  min-height:220px;padding:22px;border:1px solid rgba(91,184,241,.13);border-radius:20px;
  background:linear-gradient(145deg,rgba(255,255,255,.05),rgba(255,255,255,.02));transition:.24s ease;
}
.value-card:hover{transform:translateY(-5px);border-color:rgba(51,205,230,.3);box-shadow:0 22px 44px rgba(0,0,0,.18)}
.value-card span{color:#46d9d4;font-size:.62rem;font-weight:900}
.value-card h3{margin:18px 0 10px}
.value-card p{color:#a9b9c6;font-size:.8rem;line-height:1.6}

.founder-section{background:radial-gradient(circle at 20% 50%,rgba(24,139,228,.10),transparent 28%),linear-gradient(180deg,#071c33,#061a2f)}
.founder-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:50px;align-items:center}
.founder-visual{display:grid;place-items:center;min-height:460px}
.founder-shield{position:relative;width:300px;height:300px;display:grid;place-items:center;border-radius:50%;background:radial-gradient(circle,rgba(24,171,226,.14),transparent 62%)}
.founder-shield img{width:130px;z-index:3;animation:shieldCorePulse 4.2s ease-in-out infinite}
.founder-ring{position:absolute;border:1px solid rgba(50,208,243,.25);border-radius:50%}
.founder-ring.one{width:280px;height:280px;animation:orbitRotate 25s linear infinite}
.founder-ring.two{width:205px;height:205px;border-style:dashed;animation:orbitRotateReverse 18s linear infinite}
.founder-copy blockquote{
  margin:26px 0 0;padding:20px 22px;border-left:3px solid #28d8d2;border-radius:0 16px 16px 0;
  background:rgba(255,255,255,.035);color:#dbe7f0;font-size:1rem;line-height:1.7;
}

.team-section{background:linear-gradient(180deg,#061a2f,#071c33)}
.team-departments-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:28px}
.team-department{
  min-height:210px;padding:22px;border:1px solid rgba(91,184,241,.13);border-radius:20px;
  background:linear-gradient(145deg,rgba(255,255,255,.05),rgba(255,255,255,.02));transition:.24s ease;
}
.team-department:hover{transform:translateY(-5px);border-color:rgba(51,205,230,.29)}
.team-department p{color:#a9b9c6;font-size:.8rem;line-height:1.6}

.company-progress-section{background:linear-gradient(180deg,#071c33,#061a2f)}
.progress-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-top:28px}
.progress-card{
  min-height:230px;padding:22px;border:1px solid rgba(91,184,241,.13);border-radius:20px;background:rgba(255,255,255,.035);
}
.progress-card span{display:inline-block;padding:6px 9px;border-radius:999px;color:#a8b7c5;background:rgba(255,255,255,.05);font-size:.58rem;font-weight:900;text-transform:uppercase;letter-spacing:.08em}
.progress-card.completed span{color:#45e59a;background:rgba(57,217,138,.08)}
.progress-card.current span{color:#4ee1ff;background:rgba(57,223,255,.09)}
.progress-card h3{margin:18px 0 10px}
.progress-card p{color:#a9b9c6;font-size:.8rem;line-height:1.6}

.about-commitment-section{background:linear-gradient(180deg,#061a2f,#071c33)}
.commitment-panel{
  display:grid;grid-template-columns:1.1fr .9fr;gap:38px;align-items:center;padding:36px 40px;
  border:1px solid rgba(91,184,241,.14);border-radius:26px;
  background:radial-gradient(circle at 88% 50%,rgba(21,167,224,.10),transparent 26%),linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.022));
}
.commitment-points{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
.commitment-points span{padding:14px;border:1px solid rgba(255,255,255,.07);border-radius:14px;color:#d5e3ed;background:rgba(255,255,255,.03);font-size:.78rem}
.commitment-points span::before{content:"✓";margin-right:8px;color:#42e4b0;font-weight:900}

@media(max-width:980px){
  .about-hero-grid,.about-story-grid,.founder-grid,.commitment-panel{grid-template-columns:1fr}
  .about-hero-mark{width:300px;height:300px}
  .mission-vision-grid{grid-template-columns:1fr}
  .values-grid,.team-departments-grid{grid-template-columns:repeat(2,1fr)}
  .progress-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:640px){
  .about-hero{min-height:auto}
  .about-hero-grid{padding-top:60px}
  .about-hero-mark{width:240px;height:240px}
  .about-mark-ring.ring-one{width:220px;height:220px}.about-mark-ring.ring-two{width:165px;height:165px}
  .about-hero-mark img{width:105px}
  .about-story-card,.values-grid,.team-departments-grid,.progress-grid,.commitment-points{grid-template-columns:1fr}
  .founder-visual{min-height:340px}
  .founder-shield{width:240px;height:240px}
}


/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-hero{
  position:relative;
  min-height:650px;
  display:grid;
  align-items:center;
  overflow:hidden;
  isolation:isolate;
}

.contact-hero-bg{
  position:absolute;
  inset:0;
  z-index:-3;
  background:url("../images/johannesburg-digital-skyline.png") center/cover no-repeat;
  filter:saturate(1.08) brightness(.64) contrast(1.12);
}

.contact-hero-overlay{
  position:absolute;
  inset:0;
  z-index:-2;
  background:
    linear-gradient(90deg,rgba(3,16,33,.93),rgba(3,16,33,.72) 43%,rgba(3,16,33,.38) 76%,rgba(3,16,33,.64)),
    linear-gradient(180deg,rgba(3,15,29,.16),rgba(4,20,39,.54) 75%,#061a2f);
}

.contact-hero-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:48px;
  align-items:center;
  padding-top:96px;
  padding-bottom:72px;
}

.contact-hero-copy h1{
  font-size:clamp(2.8rem,5.2vw,5rem);
}

.contact-hero-panel{
  min-height:280px;
  display:flex;
  align-items:center;
  gap:26px;
  padding:34px;
  border:1px solid rgba(89,190,246,.27);
  border-radius:28px;
  background:
    radial-gradient(circle at 20% 50%,rgba(31,168,242,.16),transparent 40%),
    linear-gradient(145deg,rgba(17,47,79,.74),rgba(5,24,45,.88));
  box-shadow:
    0 28px 70px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.09);
}

.contact-hero-panel img{
  width:145px;
  flex:0 0 145px;
  filter:
    drop-shadow(0 12px 24px rgba(0,0,0,.38))
    drop-shadow(0 0 18px rgba(0,197,255,.45));
}

.contact-hero-panel strong,
.contact-hero-panel span,
.contact-hero-panel p{
  display:block;
}

.contact-hero-panel strong{
  font-size:1.6rem;
}

.contact-hero-panel span{
  margin-top:7px;
  color:#9cb0c0;
  font-size:.78rem;
}

.contact-hero-panel p{
  margin:18px 0 0;
  color:#4fddd7;
  font-weight:700;
  line-height:1.5;
}

.contact-options-section{
  background:linear-gradient(180deg,#061a2f,#071c33);
}

.contact-options-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:28px;
}

.contact-option-card{
  min-height:250px;
  padding:22px;
  border:1px solid rgba(91,184,241,.13);
  border-radius:20px;
  background:linear-gradient(145deg,rgba(255,255,255,.05),rgba(255,255,255,.02));
  transition:.24s ease;
}

.contact-option-card:hover{
  transform:translateY(-5px);
  border-color:rgba(51,205,230,.30);
  box-shadow:0 22px 44px rgba(0,0,0,.18),0 0 22px rgba(13,169,225,.06);
}

.contact-option-number{
  color:#46d9d4;
  font-size:.62rem;
  font-weight:900;
}

.contact-option-card h3{
  margin:18px 0 10px;
}

.contact-option-card p{
  color:#a9b9c6;
  font-size:.8rem;
  line-height:1.6;
}

.contact-option-card a{
  display:inline-flex;
  margin-top:14px;
  color:#82c9f8;
  font-size:.77rem;
  font-weight:800;
}

.contact-main-section{
  background:
    radial-gradient(circle at 12% 45%,rgba(24,139,228,.09),transparent 27%),
    linear-gradient(180deg,#071c33,#061a2f);
}

.contact-main-grid{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:22px;
  align-items:start;
}

.contact-form-panel,
.contact-details-panel{
  padding:32px;
  border:1px solid rgba(91,184,241,.14);
  border-radius:26px;
  background:linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.022));
  box-shadow:0 24px 58px rgba(0,0,0,.18),inset 0 1px 0 rgba(255,255,255,.06);
}

.contact-form{
  display:grid;
  gap:16px;
  margin-top:26px;
}

.form-row{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.contact-form label{
  display:grid;
  gap:8px;
}

.contact-form label > span{
  color:#d9e5ee;
  font-size:.74rem;
  font-weight:700;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  border:1px solid rgba(130,188,230,.16);
  border-radius:14px;
  outline:none;
  color:#edf5fa;
  background:rgba(4,22,42,.72);
  font:inherit;
  font-size:.82rem;
  transition:border-color .2s ease,box-shadow .2s ease,background .2s ease;
}

.contact-form input,
.contact-form select{
  min-height:50px;
  padding:0 14px;
}

.contact-form textarea{
  resize:vertical;
  min-height:150px;
  padding:14px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  border-color:rgba(43,209,225,.62);
  background:rgba(5,30,55,.88);
  box-shadow:0 0 0 3px rgba(37,197,222,.08);
}

.contact-form option{
  color:#edf5fa;
  background:#071c33;
}

.consent-check{
  grid-template-columns:auto 1fr !important;
  align-items:start;
  gap:10px !important;
}

.consent-check input{
  width:18px;
  min-height:18px;
  margin-top:2px;
}

.consent-check span{
  color:#9fb0bf !important;
  font-weight:500 !important;
  line-height:1.5;
}

.contact-submit{
  width:max-content;
  min-width:170px;
  border:0;
  cursor:pointer;
}

.form-message{
  display:none;
  margin:0;
  padding:12px 14px;
  border:1px solid rgba(63,220,179,.20);
  border-radius:12px;
  color:#69e8b0;
  background:rgba(46,211,139,.06);
  font-size:.78rem;
}

.contact-details-panel{
  position:sticky;
  top:135px;
}

.contact-detail-list{
  display:grid;
  gap:12px;
  margin-top:24px;
}

.contact-detail-list article{
  padding:18px;
  border:1px solid rgba(255,255,255,.07);
  border-radius:16px;
  background:rgba(255,255,255,.028);
}

.contact-detail-list span,
.contact-detail-list strong{
  display:block;
}

.contact-detail-list span{
  color:#4dded8;
  font-size:.61rem;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.contact-detail-list strong{
  margin-top:8px;
}

.contact-detail-list p{
  margin:8px 0 0;
  color:#9fb0bf;
  font-size:.77rem;
  line-height:1.55;
}

.contact-social-panel{
  margin-top:22px;
}

.contact-social-links{
  display:grid;
  gap:9px;
  margin-top:14px;
}

.contact-social-links a{
  display:flex;
  align-items:center;
  gap:12px;
  min-height:52px;
  padding:10px 13px;
  border:1px solid rgba(255,255,255,.07);
  border-radius:14px;
  color:#dfeaf2;
  background:rgba(255,255,255,.025);
  transition:.22s ease;
}

.contact-social-links a:hover{
  transform:translateX(4px);
  border-color:rgba(50,207,225,.28);
  background:rgba(26,169,207,.06);
}

.contact-social-links a span{
  width:32px;
  height:32px;
  display:grid;
  place-items:center;
  border:1px solid rgba(55,210,224,.18);
  border-radius:50%;
  color:#4eddd7;
}

.contact-social-links a strong{
  font-size:.76rem;
}

.contact-response-section{
  background:linear-gradient(180deg,#061a2f,#071c33);
}

.contact-response-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.contact-response-card{
  min-height:210px;
  padding:22px;
  border:1px solid rgba(91,184,241,.13);
  border-radius:20px;
  background:linear-gradient(145deg,rgba(255,255,255,.05),rgba(255,255,255,.02));
}

.contact-response-card span{
  color:#46d9d4;
  font-size:.62rem;
  font-weight:900;
}

.contact-response-card h3{
  margin:18px 0 10px;
}

.contact-response-card p{
  color:#a9b9c6;
  font-size:.8rem;
  line-height:1.6;
}

@media(max-width:980px){
  .contact-hero-grid,
  .contact-main-grid{
    grid-template-columns:1fr;
  }

  .contact-options-grid,
  .contact-response-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .contact-hero-panel{
    max-width:620px;
  }

  .contact-details-panel{
    position:static;
  }
}

@media(max-width:640px){
  .contact-hero{
    min-height:auto;
  }

  .contact-hero-grid{
    padding-top:60px;
  }

  .contact-hero-panel{
    flex-direction:column;
    text-align:center;
  }

  .contact-hero-panel img{
    width:120px;
    flex-basis:120px;
  }

  .contact-options-grid,
  .contact-response-grid,
  .form-row{
    grid-template-columns:1fr;
  }

  .contact-form-panel,
  .contact-details-panel{
    padding:24px 20px;
  }

  .contact-submit{
    width:100%;
  }
}


/* Contact email refinements */
.contact-email-list strong a{
  color:#f4fbff;
  text-decoration:none;
  transition:color .2s ease,text-shadow .2s ease;
}

.contact-email-list strong a:hover{
  color:#51e3dd;
  text-shadow:0 0 12px rgba(81,227,221,.28);
}

.contact-email-list article{
  position:relative;
  overflow:hidden;
}

.contact-email-list article::after{
  content:"";
  position:absolute;
  right:-40px;
  top:-40px;
  width:100px;
  height:100px;
  border-radius:50%;
  background:rgba(37,193,224,.045);
  pointer-events:none;
}


/* =========================================================
   FINAL ABOUT PAGE
   ========================================================= */

.about-final-hero{
  position:relative;
  min-height:670px;
  display:grid;
  align-items:center;
  overflow:hidden;
  isolation:isolate;
}

.about-final-bg{
  position:absolute;
  inset:0;
  z-index:-3;
  background:url("../images/johannesburg-digital-skyline.png") center/cover no-repeat;
  filter:saturate(1.08) brightness(.64) contrast(1.12);
}

.about-final-overlay{
  position:absolute;
  inset:0;
  z-index:-2;
  background:
    linear-gradient(90deg,rgba(3,16,33,.93),rgba(3,16,33,.71) 42%,rgba(3,16,33,.38) 75%,rgba(3,16,33,.64)),
    linear-gradient(180deg,rgba(3,15,29,.16),rgba(4,20,39,.54) 76%,#061a2f);
}

.about-final-hero-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:48px;
  align-items:center;
  padding-top:95px;
  padding-bottom:72px;
}

.about-final-copy h1{
  font-size:clamp(2.8rem,5.2vw,5rem);
}

.about-final-brand-panel{
  min-height:300px;
  display:flex;
  align-items:center;
  gap:28px;
  padding:38px;
  border:1px solid rgba(89,190,246,.27);
  border-radius:28px;
  background:
    radial-gradient(circle at 20% 50%,rgba(31,168,242,.16),transparent 40%),
    linear-gradient(145deg,rgba(17,47,79,.74),rgba(5,24,45,.88));
  box-shadow:
    0 28px 70px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.09);
}

.about-final-brand-panel img{
  width:150px;
  flex:0 0 150px;
  filter:
    drop-shadow(0 12px 24px rgba(0,0,0,.38))
    drop-shadow(0 0 18px rgba(0,197,255,.45));
}

.about-final-brand-panel strong{
  display:block;
  font-size:2rem;
  letter-spacing:-.055em;
}

.about-final-brand-panel strong span{color:#f8fbff}
.about-final-brand-panel strong em{color:#1cc4c0;font-style:normal}

.about-final-brand-panel small{
  display:block;
  margin-top:8px;
  color:#edf5fa;
  font-size:.62rem;
  font-weight:900;
  letter-spacing:.28em;
}

.about-final-brand-panel p{
  margin:20px 0 0;
  color:#4fddd7;
  font-weight:700;
  line-height:1.5;
}

.about-final-story{
  background:linear-gradient(180deg,#061a2f,#071c33);
}

.about-final-story-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:42px;
  align-items:start;
}

.about-timeline{
  position:relative;
  display:grid;
  gap:12px;
}

.about-timeline::before{
  content:"";
  position:absolute;
  left:20px;
  top:20px;
  bottom:20px;
  width:1px;
  background:linear-gradient(#35d9d3,rgba(53,217,211,.10));
}

.about-timeline article{
  position:relative;
  display:grid;
  grid-template-columns:42px 1fr;
  gap:16px;
  padding:16px;
  border:1px solid rgba(91,184,241,.12);
  border-radius:16px;
  background:rgba(255,255,255,.03);
}

.about-timeline article > span{
  z-index:1;
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:12px;
  color:#45ddd7;
  background:#071c33;
  border:1px solid rgba(55,210,224,.24);
  font-size:.65rem;
  font-weight:900;
}

.about-timeline h3{
  margin-bottom:6px;
}

.about-timeline p{
  margin:0;
  color:#9fb0bf;
  font-size:.77rem;
  line-height:1.5;
}

.about-purpose-section{
  background:linear-gradient(180deg,#071c33,#061a2f);
}

.about-purpose-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.about-purpose-card{
  position:relative;
  min-height:360px;
  padding:30px;
  border:1px solid rgba(91,184,241,.14);
  border-radius:24px;
  background:
    radial-gradient(circle at 90% 10%,rgba(25,176,222,.10),transparent 28%),
    linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.022));
}

.about-card-number{
  position:absolute;
  top:18px;
  right:18px;
  color:#627f97;
  font-size:.62rem;
  font-weight:900;
}

.about-purpose-card h2{
  margin-top:18px;
  font-size:clamp(1.7rem,2.6vw,2.45rem);
}

.about-purpose-card p{
  color:#aab9c6;
  line-height:1.7;
}

.about-values-final{
  background:linear-gradient(180deg,#061a2f,#071c33);
}

.about-values-grid,
.about-team-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:28px;
}

.about-value-card,
.about-team-card,
.about-why-card{
  min-height:210px;
  padding:22px;
  border:1px solid rgba(91,184,241,.13);
  border-radius:20px;
  background:linear-gradient(145deg,rgba(255,255,255,.05),rgba(255,255,255,.02));
  transition:.24s ease;
}

.about-value-card:hover,
.about-team-card:hover,
.about-why-card:hover{
  transform:translateY(-5px);
  border-color:rgba(51,205,230,.29);
  box-shadow:0 22px 44px rgba(0,0,0,.18);
}

.about-value-card span{
  color:#46d9d4;
  font-size:.62rem;
  font-weight:900;
}

.about-value-card h3,
.about-team-card h3,
.about-why-card h3{
  margin:18px 0 10px;
}

.about-value-card p,
.about-team-card p,
.about-why-card p{
  color:#a9b9c6;
  font-size:.8rem;
  line-height:1.6;
}

.about-team-final{
  background:linear-gradient(180deg,#071c33,#061a2f);
}

.about-progress-final{
  background:linear-gradient(180deg,#061a2f,#071c33);
}

.about-progress-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:28px;
}

.about-progress-card{
  min-height:230px;
  padding:22px;
  border:1px solid rgba(91,184,241,.13);
  border-radius:20px;
  background:rgba(255,255,255,.035);
}

.about-progress-card > span{
  display:inline-block;
  padding:6px 9px;
  border-radius:999px;
  color:#9caebe;
  background:rgba(255,255,255,.05);
  font-size:.58rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.about-progress-card.done > span{
  color:#45e59a;
  background:rgba(57,217,138,.08);
}

.about-progress-card.current > span{
  color:#4ee1ff;
  background:rgba(57,223,255,.09);
}

.about-progress-card h3{
  margin:18px 0 10px;
}

.about-progress-card p{
  color:#a9b9c6;
  font-size:.8rem;
  line-height:1.6;
}

.about-why-final{
  background:linear-gradient(180deg,#071c33,#061a2f);
}

.about-why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:28px;
}

@media(max-width:980px){
  .about-final-hero-grid,
  .about-final-story-grid{
    grid-template-columns:1fr;
  }

  .about-final-brand-panel{
    max-width:620px;
  }

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

  .about-values-grid,
  .about-team-grid{
    grid-template-columns:repeat(2,1fr);
  }

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

@media(max-width:640px){
  .about-final-hero{
    min-height:auto;
  }

  .about-final-hero-grid{
    padding-top:60px;
  }

  .about-final-brand-panel{
    flex-direction:column;
    text-align:center;
    padding:28px 22px;
  }

  .about-final-brand-panel img{
    width:120px;
    flex-basis:120px;
  }

  .about-values-grid,
  .about-team-grid,
  .about-progress-grid,
  .about-why-grid{
    grid-template-columns:1fr;
  }
}
