
/* ── PAGE PARTICLES ── */
.page-particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ── HERO ── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 80px 60px;
  z-index: 1;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 55% 50%, rgba(23,64,255,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(25,211,255,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 85% 15%, rgba(25,211,255,0.05) 0%, transparent 55%);
}
.hero-inner {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

/* Apply only on mobile */
@media (max-width: 767px) {
  .hero-inner {
    margin: 0 auto;
  }

}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
  background: rgba(25,211,255,0.05);
  border: 1px solid rgba(25,211,255,0.18);
  padding: 6px 14px; border-radius: 100px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--core-cyan);
  animation: pulse-cyan 2.2s infinite;
  flex-shrink: 0;
}
.hero-eyebrow-text {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--core-cyan);
}
.hero-h1 {
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 900; letter-spacing: -0.03em;
  line-height: 1.0; margin-bottom: 24px;
}
.hero-h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--core-cyan) 0%, #5AB3FF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-family: 'Roboto Serif', serif;
  font-size: 18px; font-weight: 300;
  color: var(--body-text); line-height: 1.78;
  margin-bottom: 40px; max-width: 560px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── STATS STRIP ── */
.stats-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  text-align: center; padding: 52px 24px;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}
.stat-item:last-child { border-right: none; }
/* 360 is first and most prominent */
.stat-item:first-child {
  background: rgba(25,211,255,0.04);
  border-right: 1px solid rgba(25,211,255,0.15);
}
.stat-item:first-child .stat-num-big {
  font-size: clamp(52px, 7vw, 80px);
}
.stat-item:hover { background: rgba(25,211,255,0.03); }
.stat-num-big {
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 900; letter-spacing: -0.04em;
  color: var(--core-cyan); line-height: 1;
  margin-bottom: 10px;
}
.stat-label-big {
  font-size: 12px; color: var(--body-text); line-height: 1.5;
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600;
}
.stat-item:first-child .stat-label-big { color: rgba(25,211,255,0.7); }

/* ── WHO WE ARE ── */
.who-section { padding: 112px 60px; position: relative; z-index: 1; }
.who-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start; margin-top: 56px;
}
.who-desc {
  font-family: 'Roboto Serif', serif;
  font-size: 17px; font-weight: 300;
  color: var(--body-text); line-height: 1.82;
  margin-bottom: 28px;
}
.who-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.who-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--body-text); line-height: 1.55;
  padding: 13px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.25s;
}
.who-item:hover { border-color: rgba(25,211,255,0.15); color: var(--protocol-white); }
.who-arrow { color: var(--core-cyan); flex-shrink: 0; }

/* strength cards */
.strength-cards { display: flex; flex-direction: column; gap: 14px; }
.strength-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 24px 26px;
  display: flex; align-items: flex-start; gap: 20px;
  transition: all 0.35s ease;
  position: relative; overflow: hidden;
}
.strength-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--core-cyan), transparent);
  transform: scaleX(0); transition: transform 0.4s ease;
}
.strength-card:hover::after { transform: scaleX(1); }
.strength-card:hover {
  border-color: rgba(25,211,255,0.18);
  background: rgba(25,211,255,0.04);
  transform: translateX(4px);
}
.sc-icon-block {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 10px;
  background: rgba(25,211,255,0.07);
  border: 1px solid rgba(25,211,255,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.sc-icon-block svg { width: 20px; height: 20px; stroke: var(--core-cyan); fill: none; stroke-width: 1.5; }
.strength-card:hover .sc-icon-block { background: rgba(25,211,255,0.12); }
.sc-tag {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--core-cyan); margin-bottom: 5px;
}
.sc-title { font-size: 15px; font-weight: 800; margin-bottom: 5px; }
.sc-desc { font-size: 13px; color: var(--body-text); line-height: 1.55; }

/* ── OUTCOMES ── */
.outcomes-section { padding: 112px 60px; background: rgba(10,13,18,0.5); position: relative; z-index: 1; }
.outcomes-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-top: 56px;
}
.outcome-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 32px 28px;
  transition: all 0.35s ease;
  position: relative; overflow: hidden;
}
.outcome-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--core-cyan), var(--vector-blue));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.outcome-card:hover::before { transform: scaleX(1); }
.outcome-card:hover {
  border-color: rgba(25,211,255,0.15);
  background: rgba(25,211,255,0.03);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.outcome-title { font-size: 16px; font-weight: 800; margin-bottom: 10px; }
.outcome-desc { font-size: 13px; color: var(--body-text); line-height: 1.65; }

/* ── PARTNERS ── */
.partners-section { padding: 112px 60px; border-top: 1px solid var(--border); position: relative; z-index: 1; }
.partners-logos {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 12px; margin: 56px auto 0;
}
.partner-logo-box {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 14px 22px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; min-width: 100px; min-height: 75px;
}
.partner-logo-box:hover { border-color: rgba(25,211,255,0.15);     background: rgb(19 30 81); }
.partner-logo-box img { max-height: 36px; max-width: 120px; object-fit: contain; transition: filter 0.3s; }
.partner-logo-box:hover img { filter: brightness(3) saturate(1); }

@media (max-width: 900px) {
  .hero { padding: 60px 24px; }
  .who-section { padding: 72px 24px; }
  .who-intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:first-child { border-bottom-color: rgba(25,211,255,0.15); }
  .outcomes-section { padding: 72px 24px; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .partners-section { padding: 72px 24px; }
}

.why-img{
    width: 500px;
        border-radius: 6%;
            margin-bottom: 20px;
}
/* Apply only on mobile */
@media (max-width: 767px) {
.why-img{
    width: 300px !important;
}


}


.page-hero { padding: 120px 60px 100px; position: relative; overflow: hidden; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 30%, transparent 100%);
}
.hero-bg-glow {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 65% 70% at 50% 60%, rgba(23,64,255,0.1) 0%, transparent 65%),
    radial-gradient(ellipse 35% 40% at 15% 20%, rgba(25,211,255,0.05) 0%, transparent 60%);
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

/* ── WHO WE ARE (merged context + who we are) ── */
.who-section { padding: 112px 60px; }
.who-full-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start; margin-top: 56px;
}

/* left: what we do + 3 bullet items */
.who-desc {
  font-family: 'Roboto Serif', serif;
  font-size: 17px; font-weight: 300;
  color: var(--body-text); line-height: 1.82;
  margin-bottom: 28px;
}
.emergence-list { display: flex; flex-direction: column; margin-top: 20px; gap: 10px; margin-bottom: 36px; }
.emergence-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px; color: var(--body-text); line-height: 1.65;
  transition: all 0.3s;
}
.emergence-item:hover {
  border-color: rgba(25,211,255,0.15);
  background: rgba(25,211,255,0.03);
  color: rgba(245,247,250,0.8);
  transform: translateX(4px);
}
.emergence-item::before { content: '→'; color: var(--core-cyan); flex-shrink: 0; margin-top: 1px; }
.emergence-item strong { color: var(--protocol-white); }




/* ── PURPOSE ── */
.purpose-section {
  padding: 112px 60px;
  background: rgba(8,11,16,0.6);
  border-top: 1px solid var(--border);
}
.purpose-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 56px;
}
.purpose-card {
  border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  transition: all 0.35s ease;
  background: rgba(255,255,255,0.01);
}
.purpose-card:hover {
  border-color: rgba(25,211,255,0.18);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4), 0 0 40px rgba(25,211,255,0.06);
}
.purpose-card-head {
  padding: 28px 28px 20px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.purpose-card-title { font-size: 16px; font-weight: 800; }
.purpose-card-body { padding: 24px 28px; }
.purpose-card-text { font-size: 14px; color: var(--body-text); line-height: 1.75; }

/* ── PRINCIPLES ── */
.values-strip { padding: 112px 60px; }
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 56px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
}
.value-block {
  padding: 40px 32px;
  background: var(--engine-black);
  transition: background 0.3s;
  position: relative;
}
.value-block:hover { background: rgba(25,211,255,0.03); }
.value-num {
  font-size: 56px; font-weight: 900;
  letter-spacing: -0.04em; line-height: 1;
  color: rgba(25,211,255,0.12);
  margin-bottom: 20px;
  font-family: 'Urbanist', sans-serif;
  transition: color 0.3s;
}
.value-block:hover .value-num { color: rgba(25,211,255,0.25); }
.value-title { font-size: 16px; font-weight: 800; margin-bottom: 10px; }
.value-desc { font-size: 13px; color: var(--body-text); line-height: 1.65; }

@media (max-width: 900px) {
  .page-hero { padding: 80px 24px 60px; }
  .who-section { padding: 72px 24px; }
  .who-full-grid { grid-template-columns: 1fr; gap: 40px; }
  .purpose-section { padding: 72px 24px; }
  .purpose-grid { grid-template-columns: 1fr; }
  .values-strip { padding: 72px 24px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .value-num { font-size: 40px; }
}



.page-hero { padding: 120px 60px 100px; position: relative; overflow: hidden; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 30%, transparent 100%);
}
.hero-bg-glow {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 65% 70% at 50% 55%, rgba(23,64,255,0.1) 0%, transparent 65%),
    radial-gradient(ellipse 30% 40% at 85% 15%, rgba(25,211,255,0.05) 0%, transparent 60%);
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

/* ── PILLAR NAV — full width, prominent ── */
.pillar-nav-wrap {
  position: sticky; top: var(--nav-h); z-index: 20;
  background: rgba(8,11,16,0.96);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.pillar-nav {
  display: grid; grid-template-columns: repeat(7, 1fr);
  max-width: 100%;
}
.pillar-nav-item {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px;
  padding: 22px 12px;
  text-decoration: none;
  color: var(--mid-gray);
  border-right: 1px solid var(--border);
  border-bottom: 2px solid transparent;
  transition: all 0.25s;
  text-align: center;
}
.pillar-nav-item:last-child { border-right: none; }
.pillar-nav-item:hover {
  background: rgba(25,211,255,0.03);
  color: var(--protocol-white);
  border-bottom-color: rgba(25,211,255,0.4);
}
.pillar-nav-item.active {
  color: var(--core-cyan);
  background: rgba(25,211,255,0.04);
  border-bottom-color: var(--core-cyan);
}
.pnav-num {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: inherit; opacity: 0.6;
  font-family: 'Courier New', monospace;
}
.pillar-nav-item.active .pnav-num { opacity: 1; }
.pnav-label {
  font-size: 16px; font-weight: 700;
  letter-spacing: 0.02em; line-height: 1.3;
}
.pnav-star {
  font-size: 8px; color: var(--core-cyan);
  letter-spacing: 0.1em;
}

/* ── PILLAR ROWS ── */
.solutions-full { padding: 80px 60px 112px; }

.pillar-full {
  display: grid; grid-template-columns: 420px 1fr;
  gap: 0; border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  margin-bottom: 20px;
  transition: border-color 0.35s, box-shadow 0.35s;
  background: rgba(255,255,255,0.01);
}
.pillar-full:hover {
  border-color: rgba(25,211,255,0.18);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 40px rgba(25,211,255,0.05);
}
.pillar-full.reverse { grid-template-columns: 1fr 420px; }
.pillar-full.reverse .pillar-full-img { order: 2; }
.pillar-full.reverse .pillar-full-body { order: 1; }

.pillar-full-img { overflow: hidden; background: var(--surface-2); }
.pillar-full-img img {
  width: 100%; height: 100%; object-fit: cover; display: block; min-height: 300px;
  transition: transform 0.6s ease;
}
.pillar-full:hover .pillar-full-img img { transform: scale(1.04); }

.pillar-full-body {
  padding: 44px 48px;
  background: rgba(255,255,255,0.015);
  display: flex; flex-direction: column; justify-content: center;
}
.pillar-full.featured .pillar-full-body {
  background: linear-gradient(135deg, rgba(25,211,255,0.04), rgba(23,64,255,0.06));
}

.pf-num {
  font-size: 15px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--core-cyan);
  font-family: 'Courier New', monospace; margin-bottom: 10px;
}
.pf-title { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; }
.pf-desc {
  font-family: 'Roboto Serif', serif;
  font-size: 15px; font-weight: 300;
  color: var(--body-text); line-height: 1.75; margin-bottom: 22px;
}
.pf-items {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 4px;
}
.pf-item {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 12px; color: var(--body-text); line-height: 1.4;
  padding: 9px 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all 0.2s;
}
.pf-item:hover { border-color: rgba(25,211,255,0.12); color: rgba(245,247,250,0.8); }
.pf-item::before { content: '→'; color: var(--core-cyan); font-size: 10px; flex-shrink: 0; margin-top: 1px; }
.pf-cta { margin-top: 22px; }
.pf-cta a {
  font-size: 12px; font-weight: 700; color: var(--core-cyan);
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  letter-spacing: 0.06em; transition: gap 0.2s;
}
.pf-cta a:hover { gap: 10px; }

@media (max-width: 1100px) {
  .pillar-nav { grid-template-columns: repeat(4, 1fr); }
  .pillar-nav-item:nth-child(4) { border-right: none; }
}
@media (max-width: 900px) {
  .page-hero { padding: 80px 24px 60px; }
  .solutions-full { padding: 60px 24px; }
  .pillar-nav { grid-template-columns: repeat(2, 1fr); }
  .pillar-nav-item { border-right: 1px solid var(--border); padding: 28px 16px; }
  .pillar-nav-item:nth-child(even) { border-right: none; }
  .pillar-full { grid-template-columns: 1fr; }
  .pillar-full.reverse { grid-template-columns: 1fr; }
  .pillar-full.reverse .pillar-full-img { order: 0; }
  .pillar-full.reverse .pillar-full-body { order: 0; }
  .pillar-full-img img { min-height: 220px; }
  .pillar-full-body { padding: 32px 28px; }
  .pf-items { grid-template-columns: 1fr; }
  .pf-title { font-size: 20px; }
  .pf-desc { font-size: 14px; }
  .pnav-label { font-size: 13px; }
}

@media (max-width: 768px) {
  .pillar-nav { grid-template-columns: 1fr; }
  .pillar-nav-item { 
    border-right: none; 
    border-bottom: 1px solid var(--border); 
    padding: 20px 16px;
  }
  .pillar-nav-item:last-child { border-bottom: none; }
  .pnav-label { font-size: 14px; font-weight: 700; }
  .pnav-num { font-size: 10px; }
  .pf-title { font-size: 22px; font-weight: 800; }
  .pf-desc { font-size: 15px; line-height: 1.8; }
  .pf-item { font-size: 13px; padding: 11px 14px; }
  .solutions-full { padding: 48px 16px; }
  .pillar-nav-wrap { position: relative; top: 0; }
  .page-hero { padding: 80px 16px 60px; }
  .section-inner { padding: 0; }
  .pillar-full { margin-bottom: 16px; border-radius: 12px; }
  .pillar-full-body { padding: 28px 20px; }
  .pillar-full-img img { min-height: 200px; }
  .pf-items { gap: 6px; }
}


.page-hero { padding: 120px 60px 100px; position: relative; overflow: hidden; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 30%, transparent 100%);
}
.hero-bg-glow {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 65% 70% at 50% 55%, rgba(23,64,255,0.1) 0%, transparent 65%),
    radial-gradient(ellipse 30% 40% at 85% 15%, rgba(25,211,255,0.05) 0%, transparent 60%);
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

/* platform tabs */
.platform-tabs-wrap {
  border-bottom: 1px solid var(--border);
  position: sticky; top: var(--nav-h); z-index: 10;
  background: rgba(8,11,16,0.95); backdrop-filter: blur(24px);
}
.platform-tabs {
  max-width: 1200px; margin: 0 auto; padding: 0 60px;
  display: flex; gap: 0;
}
.platform-tab {
  padding: 18px 32px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--mid-gray); text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.25s;
}
.platform-tab:hover { color: var(--protocol-white); }
.platform-tab.active { color: var(--core-cyan); border-bottom-color: var(--core-cyan); }

/* platform sections */
.platform-section { padding: 100px 60px; border-bottom: 1px solid var(--border); }
.platform-section:last-of-type { border-bottom: none; }
.platform-section:nth-child(even) { background: rgba(10,13,18,0.5); }

.platform-block {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.platform-block.reverse .platform-screen-wrap { order: -1; }

.platform-logo-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--core-cyan);
  background: rgba(25,211,255,0.06);
  border: 1px solid rgba(25,211,255,0.18);
  padding: 8px 18px; border-radius: 100px;
  margin-bottom: 20px;
}
.platform-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800; letter-spacing: -0.025em;
  margin-bottom: 14px; line-height: 1.1;
}
.platform-sub {
  font-family: 'Roboto Serif', serif;
  font-size: 15px; font-weight: 300;
  color: var(--body-text); line-height: 1.8;
  margin-bottom: 28px;
}

/* modules (EdPractice & Mantrika) */
.platform-modules { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.platform-module {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.25s;
}
.platform-module:hover {
  border-color: rgba(25,211,255,0.15);
  background: rgba(25,211,255,0.03);
  transform: translateX(4px);
}
.module-marker {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--core-cyan); flex-shrink: 0; margin-top: 5px;
}
.module-name { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.module-desc { font-size: 12px; color: var(--body-text); line-height: 1.55; }

/* screen mockup */
.platform-screen-wrap { position: relative; }
.screen-badge {
  position: absolute; top: -14px; right: -14px;
  background: var(--core-cyan); color: var(--engine-black);
  font-size: 9px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  z-index: 2; animation: float 4s ease-in-out infinite;
}

/* ── CFT 7 DOMAINS — special layout ── */
.cft-domains-section {
  margin-top: 24px;
}
.cft-domains-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--core-cyan);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.cft-domains-label::after {
  content: '';
  flex: 1; height: 1px;
  background: linear-gradient(90deg, rgba(25,211,255,0.3), transparent);
}
.cft-domains-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.cft-domain {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.cft-domain::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--core-cyan), var(--vector-blue));
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.3s ease;
}
.cft-domain:hover::before { transform: scaleY(1); }
.cft-domain:hover {
  border-color: rgba(25,211,255,0.2);
  background: rgba(25,211,255,0.04);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.cft-domain-num {
  font-size: 8px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(25,211,255,0.5);
  font-family: 'Courier New', monospace; margin-bottom: 6px;
}
.cft-domain-title {
  font-size: 13px; font-weight: 800;
  margin-bottom: 8px; color: var(--protocol-white);
}
.cft-domain-items {
  display: flex; flex-direction: column; gap: 3px;
}
.cft-domain-item {
  font-size: 11px; color: var(--mid-gray); line-height: 1.4;
  display: flex; align-items: flex-start; gap: 6px;
}
.cft-domain-item::before { content: '–'; color: rgba(25,211,255,0.4); flex-shrink: 0; }
.cft-domain-tagline {
  font-size: 11px; font-style: italic;
  color: rgba(25,211,255,0.5);
  margin-top: 8px; line-height: 1.4;
  font-family: 'Roboto Serif', serif;
}

/* CFT stat — just domains count */
.cft-stat-lone {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 16px 24px;
  background: rgba(25,211,255,0.06);
  border: 1px solid rgba(25,211,255,0.2);
  border-radius: 10px;
  margin-top: 24px;
}
.cft-stat-lone-num {
  font-size: 28px; font-weight: 900;
  color: var(--core-cyan); letter-spacing: -0.04em; line-height: 1;
}
.cft-stat-lone-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mid-gray); line-height: 1.4;
}

/* EdPractice UGC stat */
.ep-stat-lone {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 22px;
  background: rgba(25,211,255,0.06);
  border: 1px solid rgba(25,211,255,0.2);
  border-radius: 10px;
  margin-top: 4px;
}
.ep-stat-lone-value {
  font-size: 20px; font-weight: 900;
  color: var(--core-cyan); letter-spacing: -0.02em;
}
.ep-stat-lone-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mid-gray);
}

@media (max-width: 900px) {
  .page-hero { padding: 80px 24px 60px; }
  .platform-tabs-wrap { overflow-x: auto; }
  .platform-tabs { padding: 0 24px; }
  .platform-section { padding: 72px 24px; }
  .platform-block { grid-template-columns: 1fr; gap: 48px; }
  .platform-block.reverse .platform-screen-wrap { order: 0; }
  .cft-domains-grid { grid-template-columns: 1fr; }
  .platform-title { font-size: clamp(20px, 4vw, 32px); }
}

@media (max-width: 768px) {
  .platform-tabs { padding: 0 16px; overflow-x: auto; flex-wrap: nowrap; }
  .platform-tab { padding: 14px 20px; font-size: 11px; white-space: nowrap; }
  .platform-section { padding: 56px 16px; }
  .platform-block { gap: 32px; }
  .platform-title { font-size: clamp(18px, 5vw, 28px); }
  .platform-sub { font-size: 14px; }
  .cft-domains-grid { grid-template-columns: 1fr; }
  .cft-domain { padding: 16px 16px; }
  .cft-domain-title { font-size: 12px; }
  .cft-domain-item { font-size: 10px; }
  .screen-badge { font-size: 8px; padding: 5px 12px; }
}



.contact-page {
  display: flex; min-height: calc(100vh - var(--nav-h));
}

.contact-left {
  width: 48%; padding: 80px 60px;
  background: rgba(8,11,16,0.8);
  border-right: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.contact-left-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 70%, rgba(23,64,255,0.1) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(25,211,255,0.05) 0%, transparent 60%);
  z-index: 0;
}
.contact-left canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: all; z-index: 0;
}
.contact-left-inner { position: relative; z-index: 1; }

.contact-title {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900; letter-spacing: -0.03em;
  line-height: 1.0; margin-bottom: 16px;
  margin-top: 8px;
}
.contact-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--core-cyan) 0%, #5AB3FF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-sub {
  font-family: 'Roboto Serif', serif;
  font-size: 15px; font-weight: 300;
  color: var(--body-text); line-height: 1.8;
  margin-bottom: 48px; max-width: 400px;
}

.contact-points { display: flex; flex-direction: column; gap: 12px; }
.contact-point {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 22px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s;
}
.contact-point:hover {
  border-color: rgba(25,211,255,0.15);
  background: rgba(25,211,255,0.03);
  transform: translateX(4px);
}
.contact-point-marker {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--core-cyan); flex-shrink: 0; margin-top: 4px;
}
.contact-point-title { font-size: 13px; font-weight: 800; margin-bottom: 4px; }
.contact-point-desc { font-size: 12px; color: var(--body-text); line-height: 1.6; }

/* right / form side */
.contact-right {
  flex: 1; padding: 80px 60px;
  display: flex; align-items: center; justify-content: center;
  background: var(--engine-black);
}
.contact-form-wrap {
  width: 100%; max-width: 480px;
}

.form-title { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.form-sub {
  font-family: 'Roboto Serif', serif;
  font-size: 14px; font-weight: 300;
  color: var(--body-text); line-height: 1.7;
  margin-bottom: 32px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mid-gray);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'Urbanist', sans-serif;
  font-size: 14px; color: var(--protocol-white);
  outline: none; transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(107,122,138,0.6); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(25,211,255,0.4);
  background: rgba(25,211,255,0.03);
  box-shadow: 0 0 0 3px rgba(25,211,255,0.08);
}
.form-group select option { background: #0D1117; }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit {
  width: 100%; padding: 16px;
  background: var(--core-cyan); color: var(--engine-black);
  border: none; border-radius: 8px;
  font-family: 'Urbanist', sans-serif;
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; transition: all 0.25s;
  position: relative; overflow: hidden;
}
.form-submit::before {
  content: '';
  position: absolute; inset: 0;
  background: white;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.form-submit:hover::before { transform: scaleX(1); }
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(25,211,255,0.3); }
.form-submit span { position: relative; z-index: 1; }

/* progress bar */
.form-progress {
  height: 2px; background: var(--border);
  border-radius: 1px; margin-bottom: 28px; overflow: hidden;
}
.form-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--core-cyan), var(--vector-blue));
  border-radius: 1px;
  width: 0%; transition: width 0.4s ease;
}

/* success */
.form-success {
  display: none;
  text-align: center; padding: 48px 20px;
}
.form-success-icon { font-size: 52px; margin-bottom: 20px; }
.form-success-title { font-size: 24px; font-weight: 800; margin-bottom: 10px; }
.form-success-sub { font-size: 14px; color: var(--body-text); line-height: 1.7; margin-bottom: 32px; }

/* info strip */
.contact-info-strip {
  border-top: 1px solid var(--border);
  padding: 60px;
  background: rgba(8,11,16,0.5);
}
.contact-info-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
}
.contact-info-item {
  padding: 24px 32px;
  border-right: 1px solid var(--border);
  transition: background 0.25s;
}
.contact-info-item:last-child { border-right: none; }
.contact-info-item:hover { background: rgba(25,211,255,0.02); }
.info-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(25,211,255,0.6); margin-bottom: 8px;
}
.info-value { font-size: 14px; color: var(--protocol-white); font-weight: 600; }
.info-value a { color: inherit; text-decoration: none; transition: color 0.2s; }
.info-value a:hover { color: var(--core-cyan); }

@media (max-width: 900px) {
  .contact-page { flex-direction: column; }
  .contact-left { width: 100%; padding: 72px 24px; }
  .contact-right { padding: 48px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info-strip { padding: 48px 24px; }
  .contact-info-inner { grid-template-columns: 1fr; }
  .contact-info-item { border-right: none; border-bottom: 1px solid var(--border); padding: 20px 0; }
}

@media (max-width: 768px) {
  .contact-left { padding: 56px 16px; min-height: auto; }
  .contact-right { padding: 40px 16px; }
  .contact-title { font-size: clamp(28px, 5vw, 48px); margin-bottom: 12px; }
  .contact-sub { font-size: 14px; margin-bottom: 32px; }
  .contact-point { padding: 16px 16px; }
  .contact-point-title { font-size: 12px; }
  .contact-point-desc { font-size: 11px; }
  .contact-form-wrap { max-width: 100%; }
  .form-title { font-size: 18px; }
  .form-sub { font-size: 13px; margin-bottom: 24px; }
  .form-group label { font-size: 10px; }
  .form-group input,
  .form-group select,
  .form-group textarea { padding: 10px 12px; font-size: 13px; }
  .form-submit { padding: 14px; font-size: 12px; }
  .contact-info-strip { padding: 40px 16px; }
  .info-label { font-size: 9px; }
  .info-value { font-size: 13px; }
}


  .who-section {
  padding: 80px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Heading */
.section-tag {
  color: #00d4ff;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800; letter-spacing: -0.025em;
  line-height: 1.08; margin-bottom: 16px;
}



/* Grid */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  margin-top: 40px;
}

/* Left Content */
.who-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.who-desc {
  font-size: 16px;
  line-height: 1.7;

}

.who-desc li {
  margin-bottom: 12px;
}

.highlight {
  color: #ffffff;
}

/* Right Video */
.who-right {
  height: 100%;
}

.who-right video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 992px) {
  .who-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
  }
}

.btn-primary {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: white;

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;

  z-index: -1; /* push behind text */
}

@media (max-width: 767px) {

.nav-logo {
  max-width: 70%;
}

.nav-logo img {
  width: 100%;
  max-width: 220px; /* control size */
  height: auto;
  display: block;
}

}

.full-video-hero {
  width: 100%;
  padding-left: 5%;
  padding-right: 5%;
  overflow: hidden;
  position: relative;

}

.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.full-width-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sound-toggle-btn {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.sound-toggle-btn:hover {
  background: rgba(0, 0, 0, 0.85);
  transform: scale(1.1);
}

