:root{
  --bg: #ffffff;
  --text: #0b1220;
  --muted: #5a6475;

  --primary: #6b4cff;      /* purple button */
  --primary-2: #7a5cff;

  --cyan: #1fb6ff;
  --green: #7bdc2a;

  --card: #ffffff;
  --card-border: rgba(20, 24, 40, 0.10);

  --shadow: 0 18px 50px rgba(9, 13, 28, 0.10);
  --shadow-soft: 0 12px 30px rgba(9, 13, 28, 0.08);

  --radius: 16px;
  --radius-lg: 22px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

img{ max-width: 100%; display:block; }

.container{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(20,24,40,0.06);
  padding: 8px 0;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 18px 0;
  
}

.brand{ display:flex; align-items:center; text-decoration:none; }
.brand-logo{
  height: 40px;
  width: auto;
}

.nav{
  display:flex;
  gap: 22px;
  align-items:center;
  margin-left: auto;   /* pushes nav to right */
  margin-right: 28px;
}

.nav-link{
  text-decoration:none;
  color: rgba(11,18,32,0.78);
  font-weight: 700;
  font-size: 16px;
  padding: 10px 10px;
  border-radius: 12px;
}
.nav-link:hover{
  background: rgba(107,76,255,0.08);
  color: rgba(11,18,32,0.92);
}

.header-actions{
  display:flex;
  align-items:center;
  gap: 12px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 12px;
  text-decoration:none;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 26px rgba(107,76,255,0.25);
}
.btn-primary:hover{ background: var(--primary-2); }

.btn-secondary{
  background: #1b2a55;
  color: #fff;
  box-shadow: 0 10px 26px rgba(0,0,0,0.22);
}
.btn-secondary:hover{ background: #22346a; }

.btn-ghost{
  background: #ffffff;
  color: rgba(11,18,32,0.82);
  border-color: rgba(20,24,40,0.14);
}
.btn-ghost:hover{
  box-shadow: var(--shadow-soft);
}

.btn-full{ width: 100%; }

.hamburger{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(20,24,40,0.12);
  background: #fff;
  display:none;
  cursor:pointer;
}
.hamburger span{
  display:block;
  height: 2px;
  width: 18px;
  background: rgba(11,18,32,0.75);
  margin: 5px auto;
  border-radius: 2px;
}

.mobile-nav{
  padding: 10px 20px 18px;
  border-top: 1px solid rgba(20,24,40,0.06);
  background: rgba(255,255,255,0.95);
}
.mobile-link{
  display:block;
  padding: 12px 10px;
  border-radius: 12px;
  text-decoration:none;
  color: rgba(11,18,32,0.84);
  font-weight: 600;
  font-size: 14px;
}
.mobile-link:hover{ background: rgba(107,76,255,0.08); }

/* Hero */
.hero{
  position: relative;
  padding: 90px 0 80px;
  overflow: hidden;
  background:
    linear-gradient(
      rgba(255,255,255,0.40),
      rgba(255,255,255,0.40)
    ),
    url("../img/hero-workflow.jpg") center/cover no-repeat;
  
}
.hero::before{
  content:"";
  position:absolute;
  inset: -120px -120px auto -120px;
  height: 520px;
  background:
    radial-gradient(closest-side, rgba(107,76,255,0.14), transparent 70%),
    radial-gradient(closest-side, rgba(31,182,255,0.10), transparent 70%),
    radial-gradient(closest-side, rgba(123,220,42,0.10), transparent 70%);
  pointer-events:none;
}
.hero-inner{ position: relative;
  text-align:center;
}

.hero-title{
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -0.02em;
  line-height: 1.06;
  margin: 0 0 14px;
  font-weight: 800;
}
.accent{
  background: linear-gradient(90deg, rgba(107,76,255,1), rgba(31,182,255,1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-subtitle{
  margin: 0 auto 22px;
  max-width: 720px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
}
.hero-actions{
  display:flex;
  justify-content:center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Solutions */
.solutions{
  padding: 52px 0 64px;
}
.section-head{
  text-align:center;
  margin-bottom: 26px;
}
.section-head h2{
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.section-head p{
  margin: 0 auto;
  max-width: 720px;
  color: rgba(90,100,117,0.95);
  line-height: 1.6;
  font-size: 14px;
}

.card-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}
.card{
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 18px 18px 16px;
  box-shadow: 0 10px 30px rgba(12, 20, 45, 0.05);
  min-height: 168px;
}
.card-icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 800;
  margin-bottom: 10px;
  border: 1px solid rgba(20,24,40,0.10);
}
.icon-blue{ background: rgba(31,182,255,0.10); color: rgba(0,120,190,0.95); }
.icon-purple{ background: rgba(107,76,255,0.10); color: rgba(84,55,230,0.95); }
.icon-green{ background: rgba(123,220,42,0.10); color: rgba(60,140,0,0.95); }

.card h3{
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.card p{
  margin: 0 0 12px;
  color: rgba(90,100,117,0.95);
  font-size: 13px;
  line-height: 1.6;
}
.card-link{
  text-decoration:none;
  font-weight: 700;
  font-size: 13px;
  color: rgba(107,76,255,0.95);
}
.card-link:hover{ text-decoration: underline; }

/* EOS */
.eos{
  padding: 74px 0;
  background:
    radial-gradient(900px 400px at 20% 30%, rgba(107,76,255,0.25), transparent 60%),
    radial-gradient(700px 360px at 80% 70%, rgba(31,182,255,0.20), transparent 60%),
    #0a1328;
  color: #e9eeff;
}
.eos-inner{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.pill{
  display:inline-flex;
  align-items:center;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(123,220,42,0.14);
  color: rgba(197,255,154,0.95);
  border: 1px solid rgba(123,220,42,0.18);
  margin: 0 0 14px;
}

.eos-title{
  margin: 0 0 12px;
  font-size: clamp(26px, 2.6vw, 36px);
  letter-spacing: -0.02em;
  line-height: 1.12;
}
.eos-accent{
  background: linear-gradient(90deg, rgba(31,182,255,1), rgba(123,220,42,1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eos-text{
  margin: 0 0 16px;
  color: rgba(233,238,255,0.78);
  line-height: 1.65;
  font-size: 14px;
  max-width: 560px;
}

.eos-list{
  margin: 0 0 18px;
  padding-left: 18px;
  color: rgba(233,238,255,0.82);
  line-height: 1.7;
  font-size: 13px;
}

.eos-visual .diagram{
  border-radius: 18px;
  border: 1px solid rgba(233,238,255,0.10);
  background: rgba(10,19,40,0.55);
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
  padding: 18px;
}

.layer{
  border-radius: 14px;
  padding: 14px 14px;
  border: 1px solid rgba(233,238,255,0.12);
  background: rgba(255,255,255,0.04);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  min-height: 52px;
  color: rgba(233,238,255,0.90);
}
.layer:last-child{ margin-bottom: 0; }

.layer-1{ outline: 1px solid rgba(233,238,255,0.10); }
.layer-2{ border-color: rgba(123,220,42,0.28); color: rgba(210,255,175,0.95); }
.layer-3{ border-color: rgba(107,76,255,0.26); color: rgba(210,198,255,0.95); }
.layer-4{ border-color: rgba(31,182,255,0.26); color: rgba(185,235,255,0.95); }

/* Bottom CTA */
.cta{
  padding: 56px 0 62px;
  text-align:center;
}
.cta-inner{
  max-width: 760px;
}
.cta h2{
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.cta p{
  margin: 0 auto 18px;
  color: rgba(90,100,117,0.95);
  line-height: 1.6;
  font-size: 14px;
}

.footer{
  padding: 18px 0 26px;
  border-top: 1px solid rgba(20,24,40,0.06);
  color: rgba(90,100,117,0.9);
  font-size: 13px;
}
.footer-inner{
  display:flex;
  justify-content:center;
}

/* Responsive */
@media (max-width: 980px){
  .card-grid{ grid-template-columns: 1fr; }
  .eos-inner{ grid-template-columns: 1fr; }
  .eos-visual{ order: 2; }
  .eos-copy{ order: 1; }
  .hero{ padding-top: 58px; }
}

@media (max-width: 860px){
  .nav{ display:none; }
  .hamburger{ display:inline-block; }
}

@media (max-width: 520px){
  .container{ width: min(1120px, calc(100% - 28px)); }
  .hero-actions{ width: 100%; }
  .btn{ width: 100%; }
}


.card-icon{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom: 10px;
  border: 1px solid rgba(20,24,40,0.10);
}

.card-icon img{
  width: 28px;
  height: 28px;
  display:block;
}

.header-container{
  width: min(1040px, calc(100% - 60px));
  margin: 0 auto;
}
.card{
  position: relative;
  overflow: hidden; /* ensures the top bar corners clip nicely */
}

.card-accent{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;              /* adjust to 5-8px to taste */
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  opacity: 0.95;
}

/* Accent color families */
.accent-blue{
  background: linear-gradient(90deg,
    rgba(31,182,255,0.95),
    rgba(31,182,255,0.65),
    rgba(31,182,255,0.35)
  );
}

.accent-purple{
  background: linear-gradient(90deg, rgba(107,76,255,0.95), rgba(107,76,255,0.55),rgba(107,76,255,0.35));
}

.accent-green{
  background: linear-gradient(90deg, rgba(123,220,42,0.95), rgba(123,220,42,0.55),rgba(123,220,42,0.35));
}

.page-hero{
  padding: 90px 0 60px;
  text-align: center;
}

.page-hero.dark{
  background: #0a1328;
  color: #fff;
}

.page-content{
  padding: 60px 0;
}

.contact-form{
  display: grid;
  gap: 18px;
  max-width: 520px;
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(20,24,40,0.15);
}
/* Page hero with background image */
.page-hero-img{
  position: relative;
  padding: 88px 0 56px;
  overflow: hidden;
}
.page-hero-img-inner{
  position: relative;
  text-align: left;
  max-width: 900px;
}
.page-hero-img .kicker{
  margin: 0 0 10px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(11,18,32,0.55);
}
.page-hero-img h1{
  margin: 0 0 12px;
  font-size: clamp(34px, 3.6vw, 50px);
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.page-hero-img .lead{
  margin: 0 0 18px;
  color: rgba(90,100,117,0.95);
  font-size: 16px;
  line-height: 1.65;
  max-width: 720px;
}
.page-hero-img--services{
  background:
    linear-gradient(rgba(255,255,255,0.78), rgba(255,255,255,0.84)),
    url("../img/services-hero.jpg") center/cover no-repeat;
}
.stat-row{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.stat{
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(20,24,40,0.10);
  border-radius: 14px;
  padding: 12px 12px;
  box-shadow: 0 10px 30px rgba(12, 20, 45, 0.04);
}
.stat-num{
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: 14px;
}
.stat-label{
  color: rgba(90,100,117,0.92);
  font-size: 12px;
  margin-top: 4px;
}

/* Card with media */
.card--with-media{
  padding: 0;
}
.card-media{
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  overflow: hidden;
  height: 150px;
}
.card-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-body{
  padding: 18px 18px 16px;
}
.mini-list{
  margin: 10px 0 12px;
  padding-left: 18px;
  color: rgba(90,100,117,0.95);
  font-size: 13px;
  line-height: 1.6;
}

/* Feature band */
.feature-band{
  padding: 64px 0;
  background: rgba(10, 19, 40, 0.03);
}
.feature-band-head{
  text-align: center;
  margin-bottom: 26px;
}
.feature-band-head h2{
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.feature-band-head p{
  margin: 0 auto;
  max-width: 760px;
  color: rgba(90,100,117,0.95);
  line-height: 1.6;
  font-size: 14px;
}
.feature-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.feature-card{
  background: #fff;
  border: 1px solid rgba(20,24,40,0.10);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 10px 30px rgba(12, 20, 45, 0.05);
}
.feature-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(20,24,40,0.10);
  margin-bottom: 10px;
}
.feature-icon span{
  font-weight: 900;
  opacity: 0.90;
}
.feature-card h3{
  margin: 0 0 8px;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.feature-card p{
  margin: 0;
  color: rgba(90,100,117,0.95);
  font-size: 13px;
  line-height: 1.6;
}

/* Delivery section */
.delivery{
  padding: 72px 0;
  background:
    radial-gradient(900px 420px at 20% 20%, rgba(107,76,255,0.12), transparent 60%),
    radial-gradient(740px 380px at 80% 80%, rgba(31,182,255,0.10), transparent 60%),
    #0a1328;
  color: #e9eeff;
}
.delivery-inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}
.delivery-copy .muted{
  color: rgba(233,238,255,0.78);
  line-height: 1.65;
  font-size: 14px;
  max-width: 520px;
}
.delivery-steps{
  background: rgba(10,19,40,0.55);
  border: 1px solid rgba(233,238,255,0.10);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
}
.step{
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding: 12px 0;
}
.step-badge{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(233,238,255,0.12);
}
.step-body h3{
  margin: 0 0 4px;
  font-size: 15px;
}
.step-body p{
  margin: 0;
  color: rgba(233,238,255,0.78);
  font-size: 13px;
  line-height: 1.6;
}

/* Proof */
.proof{
  padding: 62px 0;
}
.proof-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}
.proof-card{
  background: #fff;
  border: 1px solid rgba(20,24,40,0.10);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(12, 20, 45, 0.05);
}
.proof-card h3{
  margin: 0 0 8px;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.proof-card p{
  margin: 0;
  color: rgba(90,100,117,0.95);
  font-size: 13px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 980px){
  .stat-row{ grid-template-columns: 1fr; }
  .feature-grid{ grid-template-columns: 1fr; }
  .delivery-inner{ grid-template-columns: 1fr; }
  .proof-grid{ grid-template-columns: 1fr; }
}

/* =========================================================
   PRISMCX PAGE LAYOUT PACK: HERO + SPLIT + MEDIA PATTERNS
   Paste at bottom of assets/css/styles.css
   ========================================================= */

/* Shared helpers */
.kicker{
  margin: 0 0 10px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(11,18,32,0.55);
}
.kicker-dark{
  color: rgba(233,238,255,0.70);
}
.lead{
  margin: 0 0 18px;
  color: rgba(90,100,117,0.95);
  font-size: 16px;
  line-height: 1.65;
  max-width: 780px;
}
.lead-dark{
  color: rgba(233,238,255,0.78);
}

.split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: center;
}

.media-card{
  border-radius: 18px;
  border: 1px solid rgba(20,24,40,0.10);
  background: rgba(255,255,255,0.70);
  box-shadow: 0 18px 50px rgba(9, 13, 28, 0.10);
  overflow: hidden;
}
.media-card img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.caption{
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(90,100,117,0.88);
}

/* Mini list (consistent bullets) */
.mini-list{
  margin: 10px 0 16px;
  padding-left: 18px;
  color: rgba(90,100,117,0.95);
  font-size: 13px;
  line-height: 1.65;
}
.mini-list li{ margin: 4px 0; }

/* ---------------------------------------------------------
   HERO A: Image background hero
   Use inline style to set unique page background image:
   style="background-image: linear-gradient(...), url(...);"
   --------------------------------------------------------- */
.page-hero-img{
  position: relative;
  padding: 88px 0 56px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,0.78), rgba(255,255,255,0.84)),
    radial-gradient(700px 340px at 18% 20%, rgba(107,76,255,0.12), transparent 60%),
    radial-gradient(680px 340px at 82% 70%, rgba(31,182,255,0.10), transparent 60%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero-img-inner{
  position: relative;
  text-align: left;
  max-width: 920px;
}

.page-hero-img h1{
  margin: 0 0 12px;
  font-size: clamp(34px, 3.6vw, 50px);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

/* Optional stat row for Hero A */
.stat-row{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
  max-width: 720px;
}
.stat{
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(20,24,40,0.10);
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 10px 30px rgba(12, 20, 45, 0.04);
}
.stat-num{
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: 14px;
}
.stat-label{
  color: rgba(90,100,117,0.92);
  font-size: 12px;
  margin-top: 4px;
}

/* ---------------------------------------------------------
   HERO B: Split hero (text left, image right)
   --------------------------------------------------------- */
.page-hero-split{
  padding: 86px 0 52px;
  background:
    radial-gradient(900px 420px at 22% 30%, rgba(107,76,255,0.12), transparent 60%),
    radial-gradient(760px 380px at 80% 70%, rgba(31,182,255,0.10), transparent 60%),
    #ffffff;
}

.page-hero-split h1{
  margin: 0 0 12px;
  font-size: clamp(34px, 3.6vw, 50px);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.page-hero-split .media-card{
  height: 330px;
}

/* ---------------------------------------------------------
   HERO C: Minimal hero + image block
   --------------------------------------------------------- */
.page-hero-min{
  padding: 82px 0 28px;
  text-align: left;
}
.page-hero-min h1{
  margin: 0 0 12px;
  font-size: clamp(34px, 3.6vw, 50px);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.page-hero-imageblock{
  padding: 10px 0 52px;
}
.imageblock{
  border-radius: 18px;
  border: 1px solid rgba(20,24,40,0.10);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(9, 13, 28, 0.10);
}
.imageblock img{
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* ---------------------------------------------------------
   HERO D: Dark hero
   --------------------------------------------------------- */
.page-hero-dark{
  padding: 86px 0 58px;
  background:
    radial-gradient(900px 420px at 20% 20%, rgba(107,76,255,0.22), transparent 60%),
    radial-gradient(760px 380px at 80% 80%, rgba(31,182,255,0.18), transparent 60%),
    #0a1328;
  color: #e9eeff;
}
.page-hero-dark h1{
  margin: 0 0 12px;
  font-size: clamp(34px, 3.6vw, 50px);
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.page-hero-dark .hero-actions{
  margin-top: 18px;
}

/* ---------------------------------------------------------
   Split section (image + narrative)
   --------------------------------------------------------- */
.split-section{
  padding: 66px 0;
}
.split-section h2{
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.split-section p{
  margin: 0 0 12px;
  color: rgba(90,100,117,0.95);
  line-height: 1.65;
}
.split-section .media-card{
  height: 320px;
}

/* Optional inverted (dark) split band */
.split-section-dark{
  padding: 72px 0;
  background:
    radial-gradient(900px 420px at 20% 20%, rgba(107,76,255,0.16), transparent 60%),
    radial-gradient(760px 380px at 80% 80%, rgba(31,182,255,0.12), transparent 60%),
    #0a1328;
  color: #e9eeff;
}
.split-section-dark p{
  color: rgba(233,238,255,0.78);
}
.split-section-dark .mini-list{
  color: rgba(233,238,255,0.82);
}
.split-section-dark .media-card{
  border-color: rgba(233,238,255,0.10);
  background: rgba(10,19,40,0.55);
}

/* ---------------------------------------------------------
   Page section spacing helpers
   --------------------------------------------------------- */
.page-section{
  padding: 62px 0;
}
.page-section-tight{
  padding: 46px 0;
}
.page-section-tint{
  padding: 64px 0;
  background: rgba(10, 19, 40, 0.03);
}

/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */
@media (max-width: 980px){
  .split{
    grid-template-columns: 1fr;
  }
  .page-hero-split .media-card{
    height: 260px;
  }
  .split-section .media-card{
    height: 260px;
  }
  .imageblock img{
    height: 280px;
  }
  .stat-row{
    grid-template-columns: 1fr;
  }
}

.nav-dropdown{
  position: relative;
  display: flex;
  align-items: center;
}

/* Make the dropdown area "stay hovered" while moving down */
.nav-dropdown::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;          /* hover buffer bridge */
}

.dropdown-menu{
  position: absolute;
  top: 100%;             /* no gap */
  left: 50%;
  transform: translateX(-50%);
  margin-top: 12px;      /* visual spacing, but hover bridge keeps it stable */
  min-width: 260px;
  background: #fff;
  border: 1px solid rgba(20,24,40,0.10);
  border-radius: 14px;
  box-shadow: 0 18px 60px rgba(9,13,28,0.12);
  padding: 10px;
  z-index: 60;

  /* Use opacity instead of display so it's smoother and less fragile */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .15s ease, visibility .15s ease;
}

/* Keep it open when hovering anywhere over the dropdown or focusing within it */
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown-item{
  display: block;
  padding: 10px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: rgba(11,18,32,0.86);
  font-weight: 600;
  font-size: 14px;
}

.dropdown-item:hover{
  background: rgba(10,19,40,0.04);
  color: rgba(11,18,32,1);
}
.nav-dropdown:hover .dropdown-menu{
  display: block;
}

.nav-dropdown{
  position: relative;
  display: flex;
  align-items: center;
}

/* Invisible bridge to prevent hover gap */
.nav-dropdown::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.dropdown-menu{
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 12px;
  min-width: 260px;
  background: #fff;
  border: 1px solid rgba(20,24,40,0.10);
  border-radius: 14px;
  box-shadow: 0 18px 60px rgba(9,13,28,0.12);
  padding: 10px;
  z-index: 60;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .15s ease, visibility .15s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown-item{
  display:block;
  padding: 10px 10px;
  border-radius: 10px;
  text-decoration:none;
  color: rgba(11,18,32,0.86);
  font-weight: 600;
  font-size: 14px;
}

.dropdown-item:hover{
  background: rgba(10,19,40,0.04);
  color: rgba(11,18,32,1);
}

/* EOS hero: unified block with blended image */
.page-hero-dark.hero-eos{
  background:
    radial-gradient(900px 420px at 20% 20%, rgba(107,76,255,0.22), transparent 60%),
    radial-gradient(760px 380px at 80% 80%, rgba(31,182,255,0.18), transparent 60%),
    #0a1328;
}

/* 20% less height: reduce padding + tighten spacing */
.page-hero-dark.hero-eos--compact{
  padding: 40px 0 58px; /* was ~86/58 in earlier versions */
}

.hero-eos-inner{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 560px);
  gap: 22px;
  align-items: center;
}

.hero-eos-copy{
  max-width: 720px;
}

/* Right side: no "rectangle" look, blend edges */
.hero-eos-art{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-eos-art img {
  max-height: 450px;
}
}