/* ===========================================================
   I am J Technology & Innovation Center
   Phase 4.1 Design System
   =========================================================== */

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

:root {
  --primary: #2563eb;
  --secondary: #06b6d4;
  --accent: #8b5cf6;
  --bg: #000000;
  --bg-2: #050505;
  --surface: rgba(255,255,255,.065);
  --surface-strong: rgba(255,255,255,.10);
  --border: rgba(255,255,255,.12);
  --text: #f8fafc;
  --muted: #b8c4d6;
  --shadow: 0 24px 70px rgba(0,0,0,.62);
  --radius: 22px;
  --header-height: 88px;
}

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  line-height: 1.7;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(37,99,235,.12), transparent 28%),
    radial-gradient(circle at 90% 22%, rgba(139,92,246,.10), transparent 26%),
    linear-gradient(180deg, #000000 0%, #030303 42%, #000000 100%);
}

body.menu-open { overflow: hidden; }

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

/* === Site-wide CTA links should not look like underlined links === */
a.cta {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.container { width: min(1220px, 92%); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(20px);
  transition: background .3s ease, box-shadow .3s ease, min-height .3s ease;
}

.site-header.scrolled {
  min-height: 72px;
  background: rgba(0,0,0,.96);
  box-shadow: 0 10px 35px rgba(0,0,0,.25);
}

.header-inner {
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: max-content;
}

.brand-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-copy { display: flex; flex-direction: column; line-height: 1.15; }
.brand-copy strong { font-size: 1.45rem; letter-spacing: -.02em; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: .78rem; }

.primary-nav { display: flex; align-items: center; gap: 6px; }
.primary-nav > a,
.nav-group-toggle {
  border: 0;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  font: inherit;
  font-weight: 600;
  font-size: .92rem;
  padding: 12px 13px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.primary-nav > a:hover,
.primary-nav > a.active,
.nav-group-toggle:hover,
.nav-group.open .nav-group-toggle {
  color: #8fdcff;
  background: rgba(255,255,255,.07);
}

.nav-group { position: relative; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 240px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(3,3,3,.99);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.nav-dropdown-right { left: auto; right: 0; }

.nav-dropdown a {
  display: block;
  padding: 11px 13px;
  border-radius: 10px;
  color: var(--muted);
  text-decoration: none;
  font-size: .9rem;
}

.nav-dropdown a:hover { color: var(--text); background: rgba(255,255,255,.07); }

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown,
.nav-group.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  cursor: pointer;
  padding: 11px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--text);
  transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { padding: 110px 0 80px; }
.hero-grid, .split-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: #74d8ff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero h1{
    max-width:680px;
    font-size:3.4rem;
    line-height:1.1;
    letter-spacing:-.025em;
}

.hero p {
  max-width: 720px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 1.15rem;
}

.button-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: white;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  box-shadow: 0 16px 40px rgba(37,99,235,.24);
  text-decoration: none;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.btn:hover { transform: translateY(-3px); box-shadow: 0 22px 50px rgba(37,99,235,.35); }
.btn-secondary { background: transparent; border-color: rgba(255,255,255,.24); box-shadow: none; }
.btn-secondary:hover { border-color: #74d8ff; }

.visual-frame {
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 20%, rgba(37,99,235,.10), transparent 34%),
    #000000;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visual-frame img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.visual-frame-hero { transform: perspective(1100px) rotateY(-3deg); }

.section { padding: 92px 0; }
.section-intro { padding-top: 50px; }

.section-heading { max-width: 820px; margin-bottom: 44px; }
.section-heading.centered { margin-inline: auto; text-align: center; }

.section-heading h2,
.content-block h2,
.cta-panel h2 {
  font-size: clamp(2.15rem, 4vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.section-heading p,
.content-block p,
.cta-panel p { margin-top: 18px; color: var(--muted); }

.platform-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 30px; }

.platform-card {
  display: grid;
  grid-template-rows: 330px auto;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  box-shadow: var(--shadow);
  transition: transform .3s ease, border-color .3s ease;
}

.platform-card:hover { transform: translateY(-7px); border-color: rgba(116,216,255,.55); }
.platform-image { overflow: hidden; background: rgba(255,255,255,.035); }
.platform-image img { width: 100%; height: 100%; object-fit: contain; padding: 16px; }
.platform-content { padding: 30px; }
.platform-label { color: #74d8ff; font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.platform-content h3, .image-card h3, .feature-card h3 { margin-top: 10px; font-size: 1.45rem; }
.platform-content p, .image-card p, .feature-card p { margin-top: 12px; color: var(--muted); }

.check-list { list-style: none; margin: 20px 0; }
.check-list li { position: relative; padding-left: 24px; margin: 8px 0; color: var(--muted); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: #74d8ff; font-weight: 800; }

.text-link { display: inline-block; margin-top: 16px; color: #74d8ff; text-decoration: none; font-weight: 800; }
.text-link:hover { text-decoration: underline; }

.conversation-section { background: linear-gradient(90deg, rgba(37,99,235,.08), rgba(139,92,246,.07)); }
.content-block { max-width: 680px; }

.image-showcase { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 26px; }
.image-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform .3s ease, border-color .3s ease;
}
.image-card:hover { transform: translateY(-7px); border-color: rgba(116,216,255,.55); }
.image-card > img { width: 100%; height: 270px; object-fit: cover; }
.image-card-content { padding: 25px; }

.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.feature-grid.three-column { grid-template-columns: repeat(3, minmax(0,1fr)); }

.feature-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.feature-card:hover { transform: translateY(-6px); background: var(--surface-strong); border-color: rgba(116,216,255,.5); }

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
  padding: 0 12px;
  border-radius: 14px;
  color: #dff8ff;
  background: linear-gradient(135deg, rgba(37,99,235,.48), rgba(6,182,212,.3));
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .05em;
}

.metrics-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(37,99,235,.16), rgba(139,92,246,.12));
  overflow: hidden;
}

.metric { padding: 36px 22px; text-align: center; border-right: 1px solid var(--border); }
.metric:last-child { border-right: 0; }
.metric strong { display: block; color: #82e4ff; font-size: clamp(2.2rem, 5vw, 4.2rem); line-height: 1; }
.metric span { display: block; margin-top: 10px; color: var(--muted); font-size: .9rem; }

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 38px;
  padding: 44px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background:
    radial-gradient(circle at 90% 10%, rgba(6,182,212,.18), transparent 30%),
    linear-gradient(135deg, rgba(37,99,235,.17), rgba(139,92,246,.12));
  box-shadow: var(--shadow);
}

.site-footer {
  margin-top: 55px;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,.94);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3,1fr);
  gap: 42px;
  padding: 64px 0 44px;
}

.footer-brand { margin-bottom: 20px; }
.footer-grid p { max-width: 460px; color: var(--muted); }
.footer-grid h3 { margin-bottom: 15px; font-size: 1rem; }
.footer-grid > div > a:not(.brand-lockup) {
  display: block;
  margin: 9px 0;
  color: var(--muted);
  text-decoration: none;
}
.footer-grid a:hover { color: #74d8ff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  color: #8996aa;
  font-size: .84rem;
}

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

@media (max-width: 1080px) {
  .menu-toggle { display: block; }
  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px 4%;
    border-bottom: 1px solid var(--border);
    background: rgba(0,0,0,.985);
  }
  .primary-nav.open { display: flex; }
  .primary-nav > a, .nav-group-toggle { width: 100%; text-align: left; padding: 14px; }
  .nav-dropdown, .nav-dropdown-right {
    position: static;
    width: auto;
    padding: 0 8px 8px 18px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  .nav-group:hover .nav-dropdown { display: none; }
  .nav-group.open .nav-dropdown { display: block; }
  .nav-dropdown a { padding: 11px 14px; }
  .hero-grid, .split-grid { grid-template-columns: 1fr; gap: 42px; }
  .visual-frame-hero { transform: none; }
  .platform-grid, .image-showcase { grid-template-columns: 1fr; }
  .platform-card { grid-template-rows: minmax(300px, 480px) auto; }
  .image-card > img {
    height: auto;
    max-height: 520px;
    object-fit: contain;
    background:
      radial-gradient(circle at 50% 12%, rgba(37,99,235,.08), transparent 32%),
      #000000;
  }
  .feature-grid, .feature-grid.three-column { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .metrics-panel { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .cta-panel { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 680px) {
  :root { --header-height: 78px; }
  .brand-logo { width: 48px; height: 48px; }
  .brand-copy strong { font-size: 1.18rem; }
  .brand-copy small { max-width: 190px; font-size: .68rem; }
  .hero { padding: 74px 0 54px; }
  .hero h1 { font-size: clamp(2.7rem, 14vw, 4.2rem); }
  .section { padding: 68px 0; }
  .button-row { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .platform-card { grid-template-rows: 260px auto; }
  .feature-grid, .feature-grid.three-column { grid-template-columns: 1fr; }
  .metrics-panel { grid-template-columns: 1fr; }
  .metric, .metric:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--border); }
  .metric:last-child { border-bottom: 0; }
  .cta-panel { padding: 30px 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}


/* ===========================
   PHASE 4.2 — BLACK FUTURE THEME
=========================== */

main{
  background:
    linear-gradient(180deg, transparent 0%, rgba(255,255,255,.008) 45%, transparent 100%);
}

.section{
  position:relative;
}

.section::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(
    180deg,
    rgba(255,255,255,.012),
    transparent 14%,
    transparent 86%,
    rgba(255,255,255,.008)
  );
}

.section > .container{
  position:relative;
  z-index:1;
}

.hero{
  background:
    radial-gradient(circle at 72% 26%, rgba(37,99,235,.11), transparent 26%),
    radial-gradient(circle at 18% 20%, rgba(6,182,212,.06), transparent 22%),
    #000000;
}

.visual-frame,
.platform-image,
.image-card > img{
  background-color:#000;
}

.visual-frame img,
.platform-image img,
.image-card > img{
  mix-blend-mode:normal;
}

.platform-card,
.image-card,
.feature-card,
.metrics-panel,
.cta-panel{
  background-color:#070707;
}

.platform-card,
.image-card,
.feature-card{
  box-shadow:
    0 20px 60px rgba(0,0,0,.72),
    inset 0 1px 0 rgba(255,255,255,.04);
}

.platform-card:hover,
.image-card:hover,
.feature-card:hover{
  box-shadow:
    0 26px 76px rgba(0,0,0,.80),
    0 0 0 1px rgba(116,216,255,.18),
    0 0 40px rgba(37,99,235,.10);
}

.eyebrow,
.platform-label,
.text-link{
  color:#72dcff;
}

.section-heading h2,
.content-block h2,
.cta-panel h2,
.hero h1{
  text-shadow:0 0 34px rgba(37,99,235,.10);
}

.conversation-section{
  background:
    radial-gradient(circle at 15% 40%, rgba(139,92,246,.09), transparent 28%),
    linear-gradient(180deg, #000 0%, #050505 100%);
}

.enterprise-section{
  background:
    radial-gradient(circle at 80% 18%, rgba(6,182,212,.07), transparent 24%),
    #000;
}

.technology-section{
  background:
    linear-gradient(180deg, #000 0%, #040404 100%);
}

.metrics-section{
  background:#000;
}

.metrics-panel{
  background:
    radial-gradient(circle at 50% 0%, rgba(37,99,235,.13), transparent 34%),
    linear-gradient(135deg, #070707, #0b0b0b);
}

.cta-panel{
  background:
    radial-gradient(circle at 90% 10%, rgba(6,182,212,.14), transparent 28%),
    radial-gradient(circle at 8% 90%, rgba(139,92,246,.10), transparent 24%),
    #080808;
}

.site-footer{
  background:#000;
}

@media(max-width:680px){
  .hero{
    background:
      radial-gradient(circle at 50% 16%, rgba(37,99,235,.09), transparent 28%),
      #000;
  }
}


/* ===========================
   PHASE 4.3 — COMMERCIAL PLATFORM
=========================== */

.hero-kicker{
  margin-top:18px !important;
  color:#ffffff !important;
  font-size:clamp(1.25rem,2.1vw,1.75rem) !important;
  font-weight:700;
  letter-spacing:-.02em;
}

.commercial-platform-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:30px;
}

.commercial-phone-card,
.commercial-facts-card{
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.02));
  box-shadow:var(--shadow);
}

.commercial-phone-stage,
.commercial-facts-stage{
  min-height:390px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px;
  background:
    radial-gradient(circle at 50% 18%,rgba(37,99,235,.12),transparent 32%),
    #000;
}

.commercial-phone-stage img,
.commercial-facts-stage img{
  width:100%;
  height:100%;
  max-height:450px;
  object-fit:contain;
}

.app-store-download{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px 24px;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  background:#000;
  transition:background .25s ease,transform .25s ease;
}

.app-store-download:hover{
  background:#050505;
}

.app-store-download img{
  width:min(290px,82%);
  max-height:84px;
  object-fit:contain;
}

.commercial-copy{
  padding:30px;
}

.commercial-copy h3{
  margin-top:10px;
  font-size:1.5rem;
}

.commercial-copy p{
  margin-top:14px;
  color:var(--muted);
}

.commercial-check-list{
  margin-top:20px;
}

.credibility-strip{
  margin-top:30px;
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  border:1px solid var(--border);
  border-radius:20px;
  overflow:hidden;
  background:#050505;
}

.credibility-strip > div{
  padding:24px 16px;
  text-align:center;
  border-right:1px solid var(--border);
}

.credibility-strip > div:last-child{
  border-right:0;
}

.credibility-strip strong{
  display:block;
  color:#79ddff;
  font-size:1.6rem;
  line-height:1.1;
}

.credibility-strip span{
  display:block;
  margin-top:8px;
  color:var(--muted);
  font-size:.8rem;
}

.video-showcase-section{
  background:
    radial-gradient(circle at 50% 0%,rgba(37,99,235,.08),transparent 28%),
    #000;
}

.video-card-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
}

/* The first video card is the primary act and spans the full first row. */
.video-card-grid > .video-card:first-child{
  grid-column:1 / -1;
  min-height:380px;
  padding:clamp(34px,5vw,58px);
  border-radius:28px;
  background:
    radial-gradient(circle at 82% 18%,rgba(6,182,212,.18),transparent 30%),
    radial-gradient(circle at 12% 88%,rgba(139,92,246,.14),transparent 28%),
    linear-gradient(135deg,rgba(37,99,235,.22),rgba(8,8,12,.96) 55%,rgba(255,255,255,.035));
  border-color:rgba(116,216,255,.38);
  box-shadow:
    0 34px 90px rgba(0,0,0,.72),
    0 0 0 1px rgba(116,216,255,.08),
    0 0 58px rgba(37,99,235,.14);
  transform:translateZ(0);
}

.video-card-grid > .video-card:first-child:hover{
  transform:translateY(-10px) scale(1.008);
  border-color:rgba(116,216,255,.72);
  box-shadow:
    0 42px 110px rgba(0,0,0,.82),
    0 0 0 1px rgba(116,216,255,.18),
    0 0 76px rgba(37,99,235,.22);
}

.video-card-grid > .video-card:first-child .video-label{
  color:#a7efff;
  font-size:.82rem;
}

.video-card-grid > .video-card:first-child h3{
  max-width:820px;
  margin-top:16px;
  font-size:clamp(2rem,4vw,3.25rem);
  line-height:1.08;
  letter-spacing:-.035em;
  text-shadow:0 0 34px rgba(37,99,235,.18);
}

.video-card-grid > .video-card:first-child p{
  max-width:780px;
  margin:20px 0 30px;
  font-size:clamp(1rem,1.7vw,1.18rem);
  line-height:1.75;
}

.video-card-grid > .video-card:first-child .btn{
  min-height:56px;
  padding:14px 30px;
  font-size:1rem;
}

.video-card{
  min-height:280px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  padding:30px;
  border:1px solid var(--border);
  border-radius:20px;
  background:linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.018));
  box-shadow:0 20px 60px rgba(0,0,0,.55);
  transition:transform .32s ease,border-color .32s ease,box-shadow .32s ease,background .32s ease;
}

.video-card:hover{
  transform:translateY(-6px);
  border-color:rgba(116,216,255,.48);
  background:linear-gradient(145deg,rgba(255,255,255,.075),rgba(255,255,255,.025));
  box-shadow:0 28px 76px rgba(0,0,0,.68),0 0 34px rgba(37,99,235,.10);
}

.video-label{
  color:#74d8ff;
  font-size:.76rem;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.video-card h3{
  margin-top:12px;
  font-size:1.45rem;
}

.video-card p{
  flex:1;
  margin:14px 0 24px;
  color:var(--muted);
}

.ecosystem-bridge-section{
  background:
    radial-gradient(circle at 80% 20%,rgba(139,92,246,.09),transparent 28%),
    #000;
}

.language-expansion-card{
  padding:34px;
  border:1px solid var(--border);
  border-radius:24px;
  background:linear-gradient(145deg,#080808,#030303);
  box-shadow:var(--shadow);
}

.language-step{
  margin-top:24px;
  padding:24px;
  border:1px solid var(--border);
  border-radius:18px;
  background:rgba(255,255,255,.035);
}

.language-step strong{
  display:block;
  color:#7ee2ff;
  font-size:3.5rem;
  line-height:1;
}

.language-step span{
  display:block;
  margin-top:10px;
  color:var(--muted);
}

.language-step.enterprise strong{
  color:#b59cff;
}

.language-arrow{
  padding:12px 0;
  text-align:center;
  color:#74d8ff;
  font-size:2rem;
}

@media(max-width:1080px){
  .commercial-platform-grid{
    grid-template-columns:1fr;
  }

  .video-card-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .credibility-strip{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .credibility-strip > div{
    border-bottom:1px solid var(--border);
  }

  .credibility-strip > div:nth-child(2n){
    border-right:0;
  }

  .credibility-strip > div:last-child{
    grid-column:1/-1;
    border-bottom:0;
  }
}

@media(max-width:680px){
  .video-card-grid{
    grid-template-columns:1fr;
  }

  .video-card-grid > .video-card:first-child{
    min-height:330px;
    padding:30px 24px;
    border-radius:22px;
  }

  .video-card-grid > .video-card:first-child:hover{
    transform:translateY(-6px);
  }

  .commercial-phone-stage,
  .commercial-facts-stage{
    min-height:280px;
  }

  .commercial-copy{
    padding:24px;
  }

  .credibility-strip{
    grid-template-columns:1fr;
  }

  .credibility-strip > div,
  .credibility-strip > div:nth-child(2n){
    border-right:0;
    border-bottom:1px solid var(--border);
  }

  .credibility-strip > div:last-child{
    grid-column:auto;
    border-bottom:0;
  }
}


/* ===========================
   PHASE 4.5 — ENTERPRISE HERO
=========================== */

.enterprise-hero-card{
  margin-bottom:48px;
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:28px;
  background:
    radial-gradient(circle at 78% 18%,rgba(6,182,212,.12),transparent 30%),
    linear-gradient(145deg,#090909,#020202);
  box-shadow:
    0 30px 90px rgba(0,0,0,.72),
    inset 0 1px 0 rgba(255,255,255,.05);
}

.enterprise-hero-image{
  position:relative;
  overflow:hidden;
  background:#000;
}

.enterprise-hero-image::after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:35%;
  pointer-events:none;
  background:linear-gradient(180deg,transparent,rgba(0,0,0,.6));
}

.enterprise-hero-image img{
  width:100%;
  max-height:620px;
  object-fit:cover;
  object-position:center;
}

.enterprise-hero-copy{
  max-width:1000px;
  padding:42px 44px 46px;
}

.enterprise-hero-copy h2{
  max-width:900px;
  font-size:clamp(2rem,3.7vw,3.65rem);
  line-height:1.08;
  letter-spacing:-.04em;
  text-wrap:balance;
}

.enterprise-hero-copy p{
  max-width:920px;
  margin-top:20px;
  color:var(--muted);
  font-size:1.08rem;
}

.enterprise-hero-statement{
  color:#ffffff!important;
  font-size:clamp(1.18rem,2vw,1.55rem)!important;
  font-weight:800;
  letter-spacing:-.02em;
}

.enterprise-deployment-heading{
  margin-top:8px;
}

@media(max-width:680px){
  .enterprise-hero-card{
    margin-bottom:36px;
    border-radius:20px;
  }

  .enterprise-hero-image img{
    max-height:390px;
  }

  .enterprise-hero-copy{
    padding:28px 22px 32px;
  }

  .enterprise-hero-copy h2{
    font-size:clamp(1.75rem,8.5vw,2.45rem);
  }

  .enterprise-hero-copy p{
    font-size:1rem;
  }
}


/* ===========================================================
   PHASE 4.6 — TRUST, GOVERNANCE & LEGAL CENTER
   Namespaced to avoid conflicts with existing site components
   =========================================================== */

.trust-center-page {
  --trust-blue: #74d8ff;
  --trust-violet: #b59cff;
  --trust-panel: rgba(255,255,255,.055);
  --trust-panel-strong: rgba(255,255,255,.085);
  --trust-line: rgba(255,255,255,.13);
  --trust-muted: #b8c4d6;
  --trust-radius: 22px;
}

.trust-center-page main {
  background:
    radial-gradient(circle at 12% 6%, rgba(37,99,235,.10), transparent 27%),
    radial-gradient(circle at 88% 28%, rgba(139,92,246,.08), transparent 25%),
    #000;
}

.trust-breadcrumbs {
  padding-top: 30px;
  color: #8fa0b8;
  font-size: .82rem;
}

.trust-breadcrumbs a {
  color: #a9bad0;
  text-decoration: none;
}

.trust-breadcrumbs a:hover {
  color: var(--trust-blue);
}

.trust-hero {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  padding: clamp(38px, 6vw, 72px);
  border: 1px solid var(--trust-line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 14%, rgba(6,182,212,.16), transparent 28%),
    radial-gradient(circle at 12% 88%, rgba(139,92,246,.13), transparent 30%),
    linear-gradient(135deg, rgba(37,99,235,.22), #07080c 58%, #030303);
  box-shadow:
    0 34px 95px rgba(0,0,0,.74),
    inset 0 1px 0 rgba(255,255,255,.05);
}

.trust-hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -110px;
  bottom: -170px;
  border-radius: 50%;
  border: 1px solid rgba(116,216,255,.13);
  box-shadow:
    0 0 0 34px rgba(116,216,255,.025),
    0 0 0 68px rgba(139,92,246,.018);
  pointer-events: none;
}

.trust-hero .eyebrow {
  margin-bottom: 16px;
}

.trust-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 930px;
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 1.03;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.trust-hero p {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin-top: 24px;
  color: #cad5e5;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.trust-hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.trust-section {
  padding: 78px 0;
}

.trust-section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.trust-section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.trust-section-heading p {
  margin-top: 16px;
  color: var(--trust-muted);
}

.trust-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
}

.trust-card {
  position: relative;
  min-height: 285px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--trust-line);
  border-radius: var(--trust-radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(37,99,235,.08), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.068), rgba(255,255,255,.018));
  box-shadow:
    0 22px 66px rgba(0,0,0,.62),
    inset 0 1px 0 rgba(255,255,255,.035);
  transition:
    transform .3s ease,
    border-color .3s ease,
    box-shadow .3s ease,
    background .3s ease;
}

.trust-card:hover {
  transform: translateY(-7px);
  border-color: rgba(116,216,255,.52);
  background:
    radial-gradient(circle at 100% 0%, rgba(37,99,235,.13), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,.082), rgba(255,255,255,.025));
  box-shadow:
    0 30px 82px rgba(0,0,0,.76),
    0 0 42px rgba(37,99,235,.11);
}

.trust-card-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border: 1px solid rgba(116,216,255,.2);
  border-radius: 999px;
  color: var(--trust-blue);
  background: rgba(37,99,235,.10);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.trust-card h3 {
  margin-top: 18px;
  font-size: 1.45rem;
  line-height: 1.2;
}

.trust-card p {
  flex: 1;
  margin-top: 13px;
  color: var(--trust-muted);
  font-size: .94rem;
}

.trust-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--trust-blue);
  text-decoration: none;
  font-weight: 800;
}

.trust-card-link:hover {
  text-decoration: underline;
}

.trust-callout {
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid rgba(116,216,255,.2);
  border-left: 4px solid var(--trust-blue);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(37,99,235,.13), rgba(255,255,255,.025));
  color: #dbe8f7;
}

.trust-callout strong {
  color: #fff;
}

/* Policy document layout */

.trust-policy-shell {
  display: grid;
  grid-template-columns: 280px minmax(0,1fr);
  gap: 28px;
  align-items: start;
  padding: 38px 0 76px;
}

.trust-policy-toc {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  max-height: calc(100vh - var(--header-height) - 40px);
  overflow-y: auto;
  padding: 22px;
  border: 1px solid var(--trust-line);
  border-radius: 18px;
  background: rgba(6,6,8,.92);
  box-shadow: 0 18px 55px rgba(0,0,0,.52);
  backdrop-filter: blur(16px);
}

.trust-policy-toc h3 {
  margin-bottom: 12px;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.trust-policy-toc a {
  display: block;
  padding: 8px 0;
  color: #98a9bf;
  text-decoration: none;
  font-size: .84rem;
  line-height: 1.4;
}

.trust-policy-toc a:hover,
.trust-policy-toc a.active {
  color: var(--trust-blue);
}

.trust-policy-document {
  overflow: hidden;
  padding: clamp(26px, 5vw, 58px);
  border: 1px solid var(--trust-line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 95% 2%, rgba(37,99,235,.075), transparent 24%),
    linear-gradient(145deg, #090909, #030303);
  box-shadow:
    0 30px 90px rgba(0,0,0,.72),
    inset 0 1px 0 rgba(255,255,255,.035);
}

.trust-policy-document h1 {
  max-width: 920px;
  margin-top: 12px;
  font-size: clamp(2.25rem, 4.7vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.trust-policy-summary {
  max-width: 860px;
  margin-top: 22px;
  color: #c0ccdc;
  font-size: clamp(1rem, 1.6vw, 1.16rem);
}

.trust-document-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1px;
  margin: 30px 0;
  overflow: hidden;
  border: 1px solid var(--trust-line);
  border-radius: 16px;
  background: var(--trust-line);
}

.trust-document-meta > div {
  min-height: 84px;
  padding: 16px;
  background: #090909;
  font-size: .9rem;
}

.trust-document-meta strong {
  display: block;
  margin-bottom: 5px;
  color: #8ea0b8;
  font-size: .67rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.trust-document-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 32px;
}

.trust-policy-document section {
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.trust-policy-document section + section {
  margin-top: 38px;
}

.trust-policy-document h2 {
  padding-top: 8px;
  border-top: 1px solid var(--trust-line);
  font-size: clamp(1.55rem, 2.7vw, 2.25rem);
  line-height: 1.16;
  letter-spacing: -.025em;
}

.trust-policy-document h3 {
  margin-top: 26px;
  font-size: 1.18rem;
}

.trust-policy-document p,
.trust-policy-document li {
  color: #c1ccda;
}

.trust-policy-document p {
  margin-top: 15px;
}

.trust-policy-document ul,
.trust-policy-document ol {
  margin: 15px 0 0 23px;
}

.trust-policy-document li + li {
  margin-top: 8px;
}

.trust-principles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  margin-top: 18px;
}

.trust-principle {
  padding: 19px;
  border: 1px solid var(--trust-line);
  border-radius: 14px;
  background: rgba(255,255,255,.035);
}

.trust-principle strong {
  display: block;
  margin-bottom: 5px;
  color: var(--trust-blue);
}

.trust-revision-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin-top: 16px;
  border-radius: 14px;
}

.trust-revision-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: .86rem;
}

.trust-revision-table th,
.trust-revision-table td {
  padding: 13px;
  border: 1px solid var(--trust-line);
  text-align: left;
}

.trust-revision-table th {
  color: #eaf4ff;
  background: rgba(37,99,235,.13);
}

.trust-revision-table td {
  color: #b9c5d5;
  background: rgba(255,255,255,.025);
}

/* Trust footer navigation block */

.trust-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.trust-related-links a {
  padding: 8px 12px;
  border: 1px solid var(--trust-line);
  border-radius: 999px;
  color: #b9c9dd;
  text-decoration: none;
  font-size: .82rem;
}

.trust-related-links a:hover {
  color: #fff;
  border-color: rgba(116,216,255,.48);
  background: rgba(37,99,235,.10);
}

@media (max-width: 1080px) {
  .trust-card-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .trust-policy-shell {
    grid-template-columns: 1fr;
  }

  .trust-policy-toc {
    position: relative;
    top: auto;
    max-height: none;
  }
}

@media (max-width: 680px) {
  .trust-breadcrumbs {
    padding-top: 18px;
  }

  .trust-hero {
    padding: 30px 22px;
    border-radius: 22px;
  }

  .trust-hero-actions {
    flex-direction: column;
  }

  .trust-section {
    padding: 58px 0;
  }

  .trust-card-grid,
  .trust-principles-grid,
  .trust-document-meta {
    grid-template-columns: 1fr;
  }

  .trust-card {
    min-height: 0;
    padding: 24px;
  }

  .trust-policy-shell {
    padding-top: 24px;
  }

  .trust-policy-document {
    padding: 26px 20px;
    border-radius: 20px;
  }

  .trust-document-actions {
    flex-direction: column;
  }

  .trust-document-actions .btn {
    width: 100%;
  }
}

@media print {
  .trust-center-page {
    --text: #111827;
    --muted: #4b5563;
    color: #111827;
    background: #fff !important;
  }

  .trust-center-page body,
  .trust-center-page main {
    color: #111827;
    background: #fff !important;
  }

  .trust-center-page .site-header,
  .trust-center-page .site-footer,
  .trust-breadcrumbs,
  .trust-policy-toc,
  .trust-document-actions,
  .trust-hero-actions {
    display: none !important;
  }

  .trust-policy-shell {
    display: block;
    padding: 0;
  }

  .trust-policy-document {
    padding: 0;
    border: 0;
    border-radius: 0;
    color: #111827;
    background: #fff !important;
    box-shadow: none;
  }

  .trust-policy-document h1,
  .trust-policy-document h2,
  .trust-policy-document h3,
  .trust-policy-document strong {
    color: #111827 !important;
    text-shadow: none;
  }

  .trust-policy-summary,
  .trust-policy-document p,
  .trust-policy-document li,
  .trust-document-meta > div,
  .trust-revision-table td {
    color: #374151 !important;
  }

  .trust-document-meta {
    border-color: #d1d5db;
    background: #d1d5db;
  }

  .trust-document-meta > div,
  .trust-principle,
  .trust-revision-table th,
  .trust-revision-table td {
    color: #111827;
    background: #fff !important;
    border-color: #d1d5db;
  }

  .trust-policy-document section {
    break-inside: avoid-page;
  }

  .trust-policy-document h2 {
    break-after: avoid;
    border-color: #d1d5db;
  }

  .trust-callout {
    color: #111827;
    background: #f3f4f6 !important;
    border-color: #9ca3af;
  }
}

/* ===========================================================
   PHASE 4.7 — GLOBAL REUSABLE MODAL
   Used for contact pages, documents, videos, and embedded content
   =========================================================== */

.iamj-modal-overlay{
  position:fixed;
  inset:0;
  z-index:99999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:3vh 3vw;
  background:rgba(0,0,0,.78);
  backdrop-filter:blur(12px);
}

.iamj-modal-overlay.is-open{display:flex}

.iamj-modal-window{
  width:min(1180px,94vw);
  height:min(860px,92vh);
  display:grid;
  grid-template-rows:auto minmax(0,1fr);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.18);
  border-radius:22px;
  background:#fff;
  color:#111827;
  box-shadow:0 42px 130px rgba(0,0,0,.72);
}

.iamj-modal-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:16px 18px;
  border-bottom:1px solid #d9dde5;
  background:#fff;
}

.iamj-modal-kicker{
  display:block;
  color:#5b6780;
  font-size:11px;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.iamj-modal-title{
  margin:3px 0 0!important;
  padding:0!important;
  border:0!important;
  color:#1a2a4f!important;
  font-size:21px!important;
  line-height:1.2!important;
}

.iamj-modal-close{
  flex:0 0 auto;
  width:42px;
  height:42px;
  border:1px solid #cbd2dd;
  border-radius:50%;
  background:#f7f8fa;
  color:#1a2a4f;
  font-size:26px;
  line-height:1;
  cursor:pointer;
  transition:transform .2s ease,background .2s ease;
}

.iamj-modal-close:hover{
  transform:scale(1.05);
  background:#eef2fa;
}

.iamj-modal-body{
  min-height:0;
  display:grid;
  grid-template-rows:minmax(0,1fr) auto;
  background:#f5f6f8;
}

.iamj-modal-frame{
  width:100%;
  height:100%;
  border:0;
  background:#fff;
}

.iamj-modal-fallback{
  padding:9px 14px;
  border-top:1px solid #d9dde5;
  background:#fff;
  color:#5b6472;
  font-size:12px;
  text-align:center;
}

.iamj-modal-fallback a{color:#2c3e66}
body.iamj-modal-open{overflow:hidden}

[data-modal-open]{cursor:pointer}
.contact-text-link{
  border:0;
  padding:0;
  background:transparent;
  color:#2c3e66;
  font:inherit;
  font-weight:700;
  text-decoration:underline;
  cursor:pointer;
}

@media(max-width:680px){
  .iamj-modal-overlay{padding:2vh 2vw}
  .iamj-modal-window{width:96vw;height:92vh;border-radius:14px}
  .iamj-modal-header{padding:13px 14px}
  .iamj-modal-title{font-size:18px!important}
  .iamj-modal-close{width:38px;height:38px}
}

@media print{
  .iamj-modal-overlay{display:none!important}
  .contact-text-link{color:#000;text-decoration:none}
}



/* ===========================================================
   PHASE 4.8 — LEGAL DOCUMENT PAGE
   White institutional document surface inside the dark site system
   =========================================================== */

body.legal-document-page{
  min-height:100vh;
  margin:0;
  padding:40px 20px;
  color:#111827;
  background:#f1f3f6;
  font-family:"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  line-height:1.58;
}

.legal-document-page > .container{
  width:auto;
  max-width:1100px;
  margin:0 auto;
  padding:42px;
  border:1px solid #d9dde5;
  border-radius:12px;
  background:#fff;
  box-shadow:0 18px 55px rgba(20,32,58,.09);
}

.legal-document-page h1{
  max-width:none!important;
  margin:0;
  padding-bottom:10px;
  border-bottom:2px solid #2c3e66;
  color:#111827;
  font-size:30px!important;
  line-height:1.2!important;
  letter-spacing:0!important;
  text-shadow:none!important;
}

.legal-document-page h2{
  margin-top:34px;
  padding-left:15px;
  border-left:4px solid #2c3e66;
  color:#111827;
  font-size:22px;
  line-height:1.25;
  letter-spacing:0;
  text-shadow:none;
}

.legal-document-page h3{
  margin-top:24px;
  color:#1a2a4f;
  font-size:17px;
}

.legal-document-page p{margin:12px 0;color:#111827}
.legal-document-page ul,.legal-document-page ol{margin:10px 0;padding-left:26px}
.legal-document-page li{margin:7px 0;color:#111827}
.legal-document-page a{color:#2c3e66;font-weight:600}

.legal-document-page .subtitle{
  padding:12px 0 14px;
  margin-bottom:20px;
  border-bottom:1px solid #cfcfcf;
  color:#2c3e66;
  font-size:16px;
}

.legal-document-page .document-meta{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  margin:20px 0;
}

.legal-document-page .document-meta div{
  padding:11px 12px;
  border:1px solid #d9dde5;
  border-radius:8px;
  background:#f9fafb;
  color:#111827;
  font-size:13px;
}

.legal-document-page .document-meta strong{
  display:block;
  margin-bottom:3px;
  color:#4b5563;
  font-size:11px;
  letter-spacing:.07em;
  text-transform:uppercase;
}

.legal-document-page .hero{
  padding:18px;
  margin:20px 0 24px;
  border:1px solid #c9d3f0;
  border-radius:8px;
  background:#eef2fa;
}

.legal-document-page .hero::before{display:none}
.legal-document-page .hero p{max-width:none;margin:12px 0;color:#111827;font-size:inherit}
.legal-document-page .hero p:first-child{margin-top:0}
.legal-document-page .hero p:last-child{margin-bottom:0}

.legal-document-page .cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:18px 0 24px;
  justify-content: center; /* centers the buttons/links in the row */
}

.legal-document-page .cta{
  min-height:auto;
  padding:10px 14px;
  border:0;
  border-radius:8px;
  background:#2c3e66;
  color:#fff;
  box-shadow:none;
  font-size:14px;
  font-weight:700;
}

.legal-document-page .cta:hover{transform:none;box-shadow:none;background:#1a2a4f}
.legal-document-page .cta.secondary{background:#1a2a4f}

.legal-document-page .bubble-note{
  padding:13px 16px;
  margin:20px 0;
  border-left:4px solid #2c3e66;
  background:#f8f8f8;
  color:#111827;
  font-size:14px;
}

.legal-document-page .alpha-list{list-style:none;padding-left:0}
.legal-document-page .alpha-list li{
  padding:10px 12px;
  margin:10px 0;
  border:1px solid #d9dde5;
  border-radius:8px;
  background:#fafafa;
}

.legal-document-page .legal-list{padding-left:22px}

.legal-document-page .footer{
  margin-top:42px;
  padding-top:20px;
  border-top:1px solid #cfcfcf;
  color:#4b5563;
  font-size:12px;
  text-align:center;
}

@media(max-width:640px){
  body.legal-document-page{padding:16px 10px;font-size:14px;line-height:1.48}
  .legal-document-page > .container{padding:22px 16px;border-radius:8px}
  .legal-document-page h1{font-size:23px!important}
  .legal-document-page h2{margin-top:26px;font-size:18px}
  .legal-document-page h3{font-size:16px}
  .legal-document-page .subtitle{font-size:14px}
  .legal-document-page .document-meta{grid-template-columns:1fr}
  .legal-document-page .hero{padding:14px}
  .legal-document-page .cta{width:100%}
  .legal-document-page .cta-row { justify-content: center; }
}

@media print{
  body.legal-document-page{margin:0;padding:0;background:#fff}
  .legal-document-page > .container{max-width:100%;padding:0;border:0;border-radius:0;box-shadow:none}
  .legal-document-page .cta-row{display:none}
  .legal-document-page h2{break-after:avoid}
  .legal-document-page section{break-inside:avoid-page}
  .legal-document-page a{color:#000;text-decoration:none}
}


/* Legal document inline modal links */
.legal-document-page .legal-inline-link{display:inline;margin:0;padding:0;border:0;color:#2c3e66;background:transparent;font:inherit;font-weight:700;text-decoration:underline;cursor:pointer}.legal-document-page .legal-inline-link:hover{color:#1a2a4f}.legal-document-page .legal-inline-link:focus-visible{outline:3px solid rgba(37,99,235,.28);outline-offset:3px;border-radius:3px}


/* ===========================================================
   FIX: Modal iframe and body scrollability
   =========================================================== */
#iamjModal .iamj-modal-body {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#iamjModal .iamj-modal-frame {
  width: 100%;
  height: 70vh;
  border: 0;
}

/* ===========================================================
   FIX: Ensure Print button (cta-row) is visible on mobile
   =========================================================== */
@media (max-width: 680px) {
  .legal-document-page .cta-row {
    display: flex !important;
  }
}

/* === FINAL OVERRIDE: CTA links must never be underlined === */
a.cta,
.legal-document-page a.cta {
  text-decoration: none !important;
}

/* Inline contact links: remove underline */
a.contact-text-link {
  text-decoration: none !important;
}

/* ===========================================================
   Research, Grants & Innovation Partnerships — Phase 3
   =========================================================== */

.grant-portal-page {
  background:
    radial-gradient(circle at 8% 5%, rgba(37,99,235,.18), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(6,182,212,.12), transparent 26%),
    radial-gradient(circle at 50% 72%, rgba(139,92,246,.08), transparent 30%),
    #000;
}

.grant-hero {
  position: relative;
  padding: clamp(78px, 8vw, 108px) 0 clamp(54px, 6vw, 68px);
  overflow: hidden;
}

.grant-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  pointer-events: none;
}

.grant-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
}

.grant-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.1rem, 4.2vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.grant-hero-description {
  max-width: 760px;
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.75;
}

.grant-proof {
  display: inline-flex;
  margin-top: 28px;
  padding: 10px 15px;
  border: 1px solid rgba(116,216,255,.28);
  border-radius: 999px;
  color: #bfefff;
  background: rgba(6,182,212,.07);
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: .02em;
}

.grant-orbit {
  position: relative;
  min-height: 480px;
  border: 1px solid var(--border);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 50%, rgba(37,99,235,.28), transparent 28%),
    radial-gradient(circle at 50% 50%, rgba(6,182,212,.07), transparent 56%),
    rgba(255,255,255,.025);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.grant-orbit-core {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 148px;
  height: 148px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(116,216,255,.4);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.8), rgba(6,182,212,.18) 62%, transparent 64%);
  box-shadow: 0 0 70px rgba(37,99,235,.42);
  font-weight: 900;
  letter-spacing: -.04em;
}

.grant-orbit-ring {
  position: absolute;
  inset: 50% auto auto 50%;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.grant-orbit-ring.one { width: 265px; height: 265px; }
.grant-orbit-ring.two { width: 390px; height: 390px; }
.grant-orbit-node {
  position: absolute;
  min-width: 88px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(0,0,0,.78);
  color: var(--muted);
  text-align: center;
  font-size: .76rem;
  font-weight: 700;
}
.grant-orbit-node.n1 { top: 12%; left: 12%; }
.grant-orbit-node.n2 { top: 16%; right: 10%; }
.grant-orbit-node.n3 { bottom: 15%; left: 9%; }
.grant-orbit-node.n4 { bottom: 12%; right: 13%; }

.grant-section {
  padding: clamp(72px, 9vw, 118px) 0;
}

.grant-section + .grant-section {
  border-top: 1px solid rgba(255,255,255,.055);
}

.grant-section-heading {
  max-width: 900px;
  margin-bottom: 44px;
}

.grant-section-heading h2 {
  font-size: clamp(2.05rem, 4.3vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -.05em;
  text-wrap: balance;
}

.grant-section-heading p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.04rem;
}

.grant-executive-panel {
  display: grid;
  grid-template-columns: .62fr 1.38fr;
  gap: 56px;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 14%, rgba(37,99,235,.15), transparent 30%),
    rgba(255,255,255,.032);
}

.grant-executive-panel p {
  color: var(--muted);
  font-size: 1.08rem;
}
.grant-executive-panel p + p { margin-top: 18px; }

.grant-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(37,99,235,.16), rgba(6,182,212,.07), rgba(139,92,246,.11));
}

.grant-metric {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.grant-metric:last-child { border-right: 0; }
.grant-metric strong {
  color: #93eaff;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -.06em;
}
.grant-metric span {
  max-width: 190px;
  margin: 13px auto 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.45;
}

.grant-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.grant-filter {
  padding: 10px 15px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: .84rem;
  font-weight: 750;
  cursor: pointer;
}

.grant-filter.active,
.grant-filter:hover {
  color: #fff;
  border-color: rgba(116,216,255,.55);
  background: rgba(37,99,235,.18);
}

.grant-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}

.grant-research-card,
.grant-asset-card,
.grant-funding-card,
.grant-document-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.022));
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.grant-research-card:hover,
.grant-asset-card:hover,
.grant-funding-card:hover,
.grant-document-card:hover {
  transform: translateY(-7px);
  border-color: rgba(116,216,255,.48);
  background: linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.03));
}

.grant-research-card {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.grant-card-tag,
.grant-status {
  display: inline-flex;
  width: max-content;
  padding: 6px 10px;
  border: 1px solid rgba(116,216,255,.25);
  border-radius: 999px;
  color: #9de8ff;
  background: rgba(6,182,212,.06);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.grant-research-card h3,
.grant-asset-card h3,
.grant-funding-card h3,
.grant-document-card h3 {
  margin-top: 18px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.grant-research-card p,
.grant-asset-card p,
.grant-funding-card p,
.grant-document-card p {
  margin-top: 13px;
  color: var(--muted);
}

.grant-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  list-style: none;
}

.grant-chip-list li {
  padding: 7px 10px;
  border-radius: 10px;
  color: #c5d2e4;
  background: rgba(255,255,255,.055);
  font-size: .76rem;
}

.grant-assets-grid,
.grant-funding-grid,
.grant-document-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 22px;
}

.grant-asset-card,
.grant-funding-card,
.grant-document-card { padding: 28px; }

.grant-readiness-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 20px 34px;
}

.grant-readiness-item {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
}

.grant-readiness-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 13px;
}

.grant-readiness-track {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
}

.grant-readiness-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 1.1s cubic-bezier(.22,1,.36,1);
}
.grant-readiness-fill.is-ready { width: var(--readiness); }

.grant-maturity {
  display: grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 12px;
}

.grant-maturity-step {
  position: relative;
  min-height: 235px;
  padding: 22px 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255,255,255,.028);
}

.grant-maturity-step::after {
  content: "";
  position: absolute;
  top: 38px;
  left: calc(100% + 1px);
  width: 12px;
  height: 1px;
  background: rgba(116,216,255,.42);
}

.grant-maturity-step:last-child::after { display: none; }
.grant-maturity-number {
  color: #79dcff;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .12em;
}
.grant-maturity-step h3 { margin-top: 34px; font-size: 1.04rem; }
.grant-maturity-step p { margin-top: 10px; color: var(--muted); font-size: .84rem; line-height: 1.55; }

.grant-sdg-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0,1fr));
  gap: 12px;
}

.grant-sdg-card {
  min-height: 210px;
  padding: 20px 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255,255,255,.03);
}

.grant-sdg-number {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-weight: 900;
}

.grant-sdg-card h3 { margin-top: 18px; font-size: .93rem; line-height: 1.3; }
.grant-sdg-card p { margin-top: 10px; color: var(--muted); font-size: .78rem; line-height: 1.5; }

.grant-partner-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.grant-partner-cloud span {
  padding: 15px 18px;
  border: 1px solid var(--border);
  border-radius: 15px;
  color: #d8e4f3;
  background: rgba(255,255,255,.03);
  font-weight: 700;
}

.grant-document-card .text-link { margin-top: 24px; }

.grant-difference-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
  list-style: none;
}

.grant-difference-list li {
  position: relative;
  padding: 22px 22px 22px 54px;
  border: 1px solid var(--border);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255,255,255,.025);
}

.grant-difference-list li::before {
  content: "✓";
  position: absolute;
  left: 21px;
  top: 20px;
  color: #7fe7ff;
  font-weight: 900;
}

.grant-final-cta {
  padding: clamp(34px, 6vw, 68px);
  border: 1px solid var(--border);
  border-radius: 32px;
  background:
    radial-gradient(circle at 88% 18%, rgba(6,182,212,.18), transparent 28%),
    radial-gradient(circle at 12% 90%, rgba(139,92,246,.15), transparent 30%),
    linear-gradient(135deg, rgba(37,99,235,.15), rgba(255,255,255,.025));
  box-shadow: var(--shadow);
}

.grant-final-cta h2 {
  max-width: 920px;
  font-size: clamp(2.15rem, 4.5vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.grant-final-cta p {
  max-width: 900px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.05rem;
}

.grant-disclaimer {
  max-width: 980px;
  padding: 24px 0 50px;
  color: #8693a8;
  font-size: .8rem;
  line-height: 1.65;
}

@media (max-width: 1120px) {
  .grant-hero-grid { grid-template-columns: 1fr; }
  .grant-orbit { min-height: 390px; }
  .grant-portfolio-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grant-maturity { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .grant-maturity-step:nth-child(3)::after { display: none; }
  .grant-sdg-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
}

@media (max-width: 820px) {
  .grant-executive-panel { grid-template-columns: 1fr; gap: 26px; }
  .grant-metrics { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grant-metric:nth-child(2) { border-right: 0; }
  .grant-metric:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .grant-portfolio-grid,
  .grant-assets-grid,
  .grant-funding-grid,
  .grant-document-grid,
  .grant-readiness-grid,
  .grant-difference-list { grid-template-columns: 1fr; }
  .grant-sdg-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 560px) {
  .grant-hero h1 { font-size: clamp(2.5rem, 14vw, 4.2rem); }
  .grant-orbit { min-height: 330px; }
  .grant-orbit-ring.two { width: 300px; height: 300px; }
  .grant-orbit-ring.one { width: 210px; height: 210px; }
  .grant-orbit-node { min-width: 72px; font-size: .66rem; }
  .grant-metrics,
  .grant-maturity,
  .grant-sdg-grid { grid-template-columns: 1fr; }
  .grant-metric { border-right: 0; border-bottom: 1px solid var(--border); }
  .grant-metric:last-child { border-bottom: 0; }
  .grant-maturity-step::after { display: none; }
}


/* ===========================================================
   Document Library Portal
   =========================================================== */

.document-library-page {
  background:
    radial-gradient(circle at 8% 5%, rgba(37,99,235,.15), transparent 28%),
    radial-gradient(circle at 92% 20%, rgba(6,182,212,.10), transparent 27%),
    radial-gradient(circle at 55% 78%, rgba(139,92,246,.08), transparent 30%),
    #000;
}

.library-hero { padding:78px 0 58px; }
.library-hero-grid {
  display:grid;
  grid-template-columns:minmax(0,1.18fr) minmax(300px,.82fr);
  gap:clamp(38px,6vw,78px);
  align-items:center;
}
.library-hero h1 {
  max-width:1040px;
  font-size:clamp(2rem,3.6vw,3.35rem);
  line-height:1.08;
  letter-spacing:-.04em;
  text-wrap:balance;
}
.library-hero-copy>p {
  max-width:780px;
  margin-top:16px;
  color:var(--muted);
  font-size:clamp(1rem,1.05vw,1.08rem);
  line-height:1.75;
}
.library-status {
  display:inline-flex;
  margin-top:24px;
  padding:9px 14px;
  border:1px solid rgba(116,216,255,.27);
  border-radius:999px;
  color:#bdefff;
  background:rgba(6,182,212,.06);
  font-size:.8rem;
  font-weight:750;
}
.library-index-panel {
  padding:30px;
  border:1px solid var(--border);
  border-radius:28px;
  background:linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.022));
  box-shadow:var(--shadow);
}
.library-index-panel strong { display:block; font-size:1.05rem; }
.library-index-panel ul { display:grid; gap:12px; margin-top:22px; list-style:none; }
.library-index-panel li { display:flex; align-items:center; justify-content:space-between; gap:16px; padding:14px 0; border-bottom:1px solid rgba(255,255,255,.07); color:var(--muted); }
.library-index-panel li:last-child { border-bottom:0; }
.library-index-panel b { color:#8be5ff; font-size:1.18rem; }

.library-section { padding:clamp(68px,8vw,104px) 0; }
.library-section + .library-section { border-top:1px solid rgba(255,255,255,.055); }
.library-heading { max-width:900px; margin-bottom:38px; }
.library-heading h2 { font-size:clamp(1.9rem,3.6vw,3.4rem); line-height:1.07; letter-spacing:-.04em; text-wrap:balance; }
.library-heading p { margin-top:16px; color:var(--muted); }

.library-overview-panel {
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:45px;
  padding:clamp(28px,4.5vw,52px);
  border:1px solid var(--border);
  border-radius:28px;
  background:rgba(255,255,255,.03);
}
.library-overview-panel p { color:var(--muted); font-size:1.04rem; }
.library-note { margin-top:18px; padding:20px; border-left:3px solid #60d9ff; border-radius:0 16px 16px 0; background:rgba(37,99,235,.08); }
.library-note strong { display:block; margin-bottom:7px; }

.library-controls {
  display:grid;
  grid-template-columns:minmax(250px,1fr) auto;
  gap:18px;
  align-items:center;
  margin-bottom:30px;
}
.library-search {
  width:100%;
  min-height:52px;
  padding:0 18px;
  border:1px solid var(--border);
  border-radius:15px;
  color:var(--text);
  background:rgba(255,255,255,.045);
  font:inherit;
}
.library-search:focus { outline:2px solid rgba(116,216,255,.35); outline-offset:2px; }
.library-filter-row { display:flex; flex-wrap:wrap; gap:9px; }
.library-filter {
  min-height:42px;
  padding:8px 13px;
  border:1px solid var(--border);
  border-radius:999px;
  color:var(--muted);
  background:transparent;
  font:inherit;
  font-size:.8rem;
  font-weight:700;
  cursor:pointer;
}
.library-filter.active,.library-filter:hover { color:#fff; border-color:rgba(116,216,255,.55); background:rgba(37,99,235,.16); }

.library-collection-grid { display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); gap:18px; }
.library-collection-card,
.library-document-card,
.library-use-card,
.library-access-card {
  border:1px solid var(--border);
  border-radius:22px;
  background:linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.022));
  transition:transform .3s ease,border-color .3s ease,background .3s ease;
}
.library-collection-card:hover,
.library-document-card:hover,
.library-use-card:hover,
.library-access-card:hover {
  transform:translateY(-6px);
  border-color:rgba(116,216,255,.48);
  background:linear-gradient(145deg,rgba(255,255,255,.085),rgba(255,255,255,.03));
}
.library-collection-card { min-height:330px; display:flex; flex-direction:column; padding:24px; }
.library-tag,.library-doc-status {
  display:inline-flex;
  width:max-content;
  padding:6px 10px;
  border:1px solid rgba(116,216,255,.24);
  border-radius:999px;
  color:#9be8ff;
  background:rgba(6,182,212,.055);
  font-size:.68rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.library-collection-card h3,.library-document-card h3,.library-use-card h3,.library-access-card h3 { margin-top:17px; font-size:1.22rem; line-height:1.22; }
.library-collection-card p,.library-document-card p,.library-use-card p,.library-access-card p { margin-top:12px; color:var(--muted); }
.library-count { margin-top:auto; padding-top:20px; color:#8de6ff; font-size:.82rem; font-weight:750; }
.library-collection-card .text-link { margin-top:12px; }

.library-document-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:20px; }
.library-document-card { min-height:285px; display:flex; flex-direction:column; padding:25px; }
.library-document-card .text-link { margin-top:auto; padding-top:20px; }
.library-document-card[hidden] { display:none; }
.library-no-results { display:none; padding:28px; border:1px dashed var(--border); border-radius:18px; color:var(--muted); text-align:center; }
.library-no-results.is-visible { display:block; }

.library-use-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:18px; }
.library-use-card { padding:24px; }

.library-access-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:22px; }
.library-access-card { padding:30px; }
.library-access-card.private { background:linear-gradient(145deg,rgba(139,92,246,.10),rgba(255,255,255,.022)); }
.library-recommendation { margin-top:22px; padding:20px; border:1px solid var(--border); border-radius:16px; color:var(--muted); background:rgba(255,255,255,.025); }

.library-cta {
  padding:clamp(32px,5vw,58px);
  border:1px solid var(--border);
  border-radius:30px;
  background:
    radial-gradient(circle at 88% 18%,rgba(6,182,212,.17),transparent 30%),
    linear-gradient(135deg,rgba(37,99,235,.15),rgba(139,92,246,.09));
  box-shadow:var(--shadow);
}
.library-cta h2 { max-width:900px; font-size:clamp(2rem,4vw,3.8rem); line-height:1.05; letter-spacing:-.045em; }
.library-cta p { max-width:860px; margin-top:18px; color:var(--muted); }
.library-disclaimer { padding:24px 0 46px; color:#8592a6; font-size:.8rem; line-height:1.65; }

@media(max-width:1120px){
  .library-hero-grid,.library-overview-panel{grid-template-columns:1fr}
  .library-collection-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .library-use-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:820px){
  .library-controls{grid-template-columns:1fr}
  .library-document-grid,.library-access-grid{grid-template-columns:1fr}
  .library-collection-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:560px){
  .library-collection-grid,.library-use-grid{grid-template-columns:1fr}
  .library-hero h1{font-size:clamp(2.15rem,11vw,3rem)}
}

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


/* ===========================================================
   Contact & Collaboration — Grants and Institutional Review
   =========================================================== */

.grant-contact-page {
  background:
    radial-gradient(circle at 8% 7%, rgba(37,99,235,.15), transparent 28%),
    radial-gradient(circle at 92% 22%, rgba(6,182,212,.10), transparent 27%),
    radial-gradient(circle at 52% 82%, rgba(139,92,246,.08), transparent 30%),
    #000;
}

.grant-contact-hero {
  padding:78px 0 58px;
}

.grant-contact-hero-grid {
  display:grid;
  grid-template-columns:minmax(0,1.12fr) minmax(320px,.88fr);
  gap:clamp(38px,6vw,76px);
  align-items:center;
}

.grant-contact-hero h1 {
  max-width:1040px;
  font-size:clamp(2rem,3.6vw,3.35rem);
  line-height:1.08;
  letter-spacing:-.04em;
  text-wrap:balance;
}

.grant-contact-hero-copy>p {
  max-width:780px;
  margin-top:16px;
  color:var(--muted);
  font-size:clamp(1rem,1.05vw,1.08rem);
  line-height:1.75;
}

.grant-contact-signal {
  padding:30px;
  border:1px solid var(--border);
  border-radius:28px;
  background:linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.022));
  box-shadow:var(--shadow);
}

.grant-contact-signal strong {
  display:block;
  font-size:1.05rem;
}

.grant-contact-signal ul {
  display:grid;
  gap:12px;
  margin-top:22px;
  list-style:none;
}

.grant-contact-signal li {
  padding:13px 0;
  border-bottom:1px solid rgba(255,255,255,.07);
  color:var(--muted);
}

.grant-contact-signal li:last-child { border-bottom:0; }

.contact-section {
  padding:clamp(68px,8vw,104px) 0;
}

.contact-section + .contact-section {
  border-top:1px solid rgba(255,255,255,.055);
}

.contact-heading {
  max-width:900px;
  margin-bottom:38px;
}

.contact-heading h2 {
  font-size:clamp(1.9rem,3.6vw,3.4rem);
  line-height:1.07;
  letter-spacing:-.04em;
  text-wrap:balance;
}

.contact-heading p {
  margin-top:16px;
  color:var(--muted);
}

.contact-pathway-grid,
.contact-area-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
}

.contact-pathway-card,
.contact-area-card,
.contact-headquarters-card,
.contact-form-panel {
  border:1px solid var(--border);
  border-radius:24px;
  background:linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.022));
  transition:transform .3s ease,border-color .3s ease,background .3s ease;
}

.contact-pathway-card:hover,
.contact-area-card:hover {
  transform:translateY(-6px);
  border-color:rgba(116,216,255,.48);
  background:linear-gradient(145deg,rgba(255,255,255,.085),rgba(255,255,255,.03));
}

.contact-pathway-card,
.contact-area-card {
  padding:28px;
}

.contact-pathway-card h3,
.contact-area-card h3 {
  margin-top:16px;
  font-size:1.3rem;
}

.contact-pathway-card p,
.contact-area-card p,
.contact-headquarters-card p {
  margin-top:12px;
  color:var(--muted);
}

.contact-headquarters-card {
  padding:clamp(28px,4vw,46px);
}

.contact-headquarters-card strong {
  display:block;
  margin-top:8px;
  font-size:1.45rem;
}

.contact-headquarters-card span {
  display:block;
  margin-top:5px;
  color:#8de6ff;
  font-weight:750;
}

.contact-form-layout {
  display:grid;
  grid-template-columns:.75fr 1.25fr;
  gap:38px;
  align-items:start;
}

.contact-form-panel {
  padding:clamp(26px,4vw,42px);
}

.contact-form-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}

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

.contact-field.full {
  grid-column:1/-1;
}

.contact-field label {
  font-size:.84rem;
  font-weight:750;
}

.contact-input,
.contact-select,
.contact-textarea {
  width:100%;
  min-height:50px;
  padding:12px 14px;
  border:1px solid var(--border);
  border-radius:14px;
  color:var(--text);
  background:rgba(255,255,255,.045);
  font:inherit;
}

.contact-textarea {
  min-height:170px;
  resize:vertical;
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
  outline:2px solid rgba(116,216,255,.35);
  outline-offset:2px;
}

.contact-consent {
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-top:18px;
  color:var(--muted);
  font-size:.8rem;
  line-height:1.55;
}

.contact-form-actions {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:16px;
  margin-top:24px;
}

.contact-email-fallback {
  color:#9be8ff;
  font-size:.84rem;
  text-decoration:none;
}

.contact-email-fallback:hover {
  text-decoration:underline;
}

.contact-disclaimer {
  padding:24px 0 46px;
  color:#8592a6;
  font-size:.8rem;
  line-height:1.65;
}

@media(max-width:900px){
  .grant-contact-hero-grid,
  .contact-form-layout {
    grid-template-columns:1fr;
  }
}

@media(max-width:700px){
  .contact-pathway-grid,
  .contact-area-grid,
  .contact-form-grid {
    grid-template-columns:1fr;
  }
  .contact-field.full { grid-column:auto; }
}


/* Contact API submission states */
.contact-form-errors,
.contact-form-status {
  grid-column: 1 / -1;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 14px;
  font-size: .88rem;
  line-height: 1.55;
}

.contact-form-errors {
  list-style-position: inside;
  color: #ffd7d7;
  border: 1px solid rgba(248,113,113,.38);
  background: rgba(127,29,29,.22);
}

.contact-form-errors li + li { margin-top: 6px; }

.contact-form-status.is-success {
  color: #d8ffe8;
  border: 1px solid rgba(74,222,128,.38);
  background: rgba(20,83,45,.24);
}

.contact-form-status.is-error {
  color: #ffd7d7;
  border: 1px solid rgba(248,113,113,.38);
  background: rgba(127,29,29,.22);
}

.contact-form-status.is-warning {
  color: #fff3c4;
  border: 1px solid rgba(250,204,21,.34);
  background: rgba(113,63,18,.24);
}

.contact-form-panel[aria-busy="true"] { cursor: progress; }
.contact-form-panel[aria-busy="true"] .contact-input,
.contact-form-panel[aria-busy="true"] .contact-select,
.contact-form-panel[aria-busy="true"] .contact-textarea { opacity: .72; }

.contact-form-panel button[disabled] {
  cursor: wait;
  opacity: .72;
}


/* ===========================================================
   Start a Research Partnership
   =========================================================== */

.research-partnership-page {
  background:
    radial-gradient(circle at 8% 7%, rgba(37,99,235,.16), transparent 28%),
    radial-gradient(circle at 92% 20%, rgba(6,182,212,.10), transparent 27%),
    radial-gradient(circle at 52% 80%, rgba(139,92,246,.09), transparent 30%),
    #000;
}

.research-partnership-hero {
  padding:78px 0 58px;
}

.research-partnership-hero-grid {
  display:grid;
  grid-template-columns:minmax(0,1.12fr) minmax(320px,.88fr);
  gap:clamp(38px,6vw,76px);
  align-items:center;
}

.research-partnership-hero h1 {
  max-width:1040px;
  font-size:clamp(2rem,3.6vw,3.35rem);
  line-height:1.08;
  letter-spacing:-.04em;
  text-wrap:balance;
}

.research-partnership-hero-copy>p {
  max-width:780px;
  margin-top:16px;
  color:var(--muted);
  font-size:clamp(1rem,1.05vw,1.08rem);
  line-height:1.75;
}

.research-proof {
  display:inline-flex;
  margin-top:24px;
  padding:9px 14px;
  border:1px solid rgba(116,216,255,.27);
  border-radius:999px;
  color:#bdefff;
  background:rgba(6,182,212,.06);
  font-size:.8rem;
  font-weight:750;
}

.research-visual-panel {
  min-height:420px;
  position:relative;
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:30px;
  background:
    radial-gradient(circle at 50% 50%, rgba(37,99,235,.28), transparent 25%),
    radial-gradient(circle at 50% 50%, rgba(6,182,212,.08), transparent 55%),
    rgba(255,255,255,.025);
  box-shadow:var(--shadow);
}

.research-visual-core {
  position:absolute;
  inset:50% auto auto 50%;
  width:142px;
  height:142px;
  display:grid;
  place-items:center;
  transform:translate(-50%,-50%);
  border:1px solid rgba(116,216,255,.42);
  border-radius:50%;
  background:radial-gradient(circle,rgba(37,99,235,.82),rgba(6,182,212,.16) 62%,transparent 64%);
  box-shadow:0 0 70px rgba(37,99,235,.42);
  font-weight:900;
}

.research-node {
  position:absolute;
  padding:10px 12px;
  border:1px solid var(--border);
  border-radius:13px;
  color:var(--muted);
  background:rgba(0,0,0,.78);
  font-size:.74rem;
  font-weight:700;
}

.research-node.n1{top:12%;left:10%}
.research-node.n2{top:14%;right:9%}
.research-node.n3{bottom:14%;left:9%}
.research-node.n4{bottom:12%;right:10%}

.research-section {
  padding:clamp(68px,8vw,104px) 0;
}

.research-section + .research-section {
  border-top:1px solid rgba(255,255,255,.055);
}

.research-heading {
  max-width:900px;
  margin-bottom:38px;
}

.research-heading h2 {
  font-size:clamp(1.9rem,3.6vw,3.4rem);
  line-height:1.07;
  letter-spacing:-.04em;
  text-wrap:balance;
}

.research-heading p {
  margin-top:16px;
  color:var(--muted);
}

.research-value-grid,
.research-model-grid,
.research-priority-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
}

.research-value-card,
.research-model-card,
.research-priority-card,
.research-step,
.research-readiness-card,
.research-form-panel {
  border:1px solid var(--border);
  border-radius:24px;
  background:linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.022));
}

.research-value-card,
.research-model-card,
.research-priority-card {
  padding:28px;
  transition:transform .3s ease,border-color .3s ease,background .3s ease;
}

.research-value-card:hover,
.research-model-card:hover,
.research-priority-card:hover {
  transform:translateY(-6px);
  border-color:rgba(116,216,255,.48);
  background:linear-gradient(145deg,rgba(255,255,255,.085),rgba(255,255,255,.03));
}

.research-value-card h3,
.research-model-card h3,
.research-priority-card h3 {
  margin-top:16px;
  font-size:1.3rem;
}

.research-value-card p,
.research-model-card p,
.research-priority-card p,
.research-step p,
.research-readiness-card li {
  margin-top:12px;
  color:var(--muted);
}

.research-process {
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:14px;
}

.research-step {
  min-height:245px;
  padding:22px;
}

.research-step-number {
  color:#83e5ff;
  font-size:.76rem;
  font-weight:850;
  letter-spacing:.12em;
}

.research-step h3 {
  margin-top:34px;
  font-size:1.05rem;
}

.research-readiness-card {
  padding:30px;
}

.research-readiness-card ul {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px 28px;
  list-style:none;
}

.research-readiness-card li {
  position:relative;
  padding-left:26px;
}

.research-readiness-card li::before {
  content:"✓";
  position:absolute;
  left:0;
  color:#7fe7ff;
  font-weight:900;
}

.research-form-layout {
  display:grid;
  grid-template-columns:.72fr 1.28fr;
  gap:38px;
  align-items:start;
}

.research-form-panel {
  padding:clamp(26px,4vw,42px);
}

.research-form-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}

.research-field {
  display:grid;
  gap:8px;
}

.research-field.full {
  grid-column:1/-1;
}

.research-field label {
  font-size:.84rem;
  font-weight:750;
}

.research-input,
.research-select,
.research-textarea {
  width:100%;
  min-height:50px;
  padding:12px 14px;
  border:1px solid var(--border);
  border-radius:14px;
  color:var(--text);
  background:rgba(255,255,255,.045);
  font:inherit;
}

.research-textarea {
  min-height:180px;
  resize:vertical;
}

.research-input:focus,
.research-select:focus,
.research-textarea:focus {
  outline:2px solid rgba(116,216,255,.35);
  outline-offset:2px;
}

.research-consent {
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-top:18px;
  color:var(--muted);
  font-size:.8rem;
  line-height:1.55;
}

.research-form-actions {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:16px;
  margin-top:24px;
}

.research-final-cta {
  padding:clamp(32px,5vw,58px);
  border:1px solid var(--border);
  border-radius:30px;
  background:
    radial-gradient(circle at 88% 18%,rgba(6,182,212,.17),transparent 30%),
    linear-gradient(135deg,rgba(37,99,235,.15),rgba(139,92,246,.09));
  box-shadow:var(--shadow);
}

.research-final-cta h2 {
  max-width:900px;
  font-size:clamp(2rem,4vw,3.8rem);
  line-height:1.05;
  letter-spacing:-.045em;
}

.research-final-cta p {
  max-width:860px;
  margin-top:18px;
  color:var(--muted);
}

.research-disclaimer {
  padding:24px 0 46px;
  color:#8592a6;
  font-size:.8rem;
  line-height:1.65;
}

@media(max-width:1050px){
  .research-partnership-hero-grid,
  .research-form-layout {
    grid-template-columns:1fr;
  }

  .research-process {
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}

@media(max-width:760px){
  .research-value-grid,
  .research-model-grid,
  .research-priority-grid,
  .research-form-grid,
  .research-readiness-card ul {
    grid-template-columns:1fr;
  }

  .research-process {
    grid-template-columns:1fr;
  }

  .research-field.full {
    grid-column:auto;
  }
}


/* ===========================================================
   AI Technology Portal
   =========================================================== */

.technology-portal-page {
  background:
    radial-gradient(circle at 8% 6%,rgba(37,99,235,.16),transparent 28%),
    radial-gradient(circle at 92% 20%,rgba(6,182,212,.10),transparent 27%),
    radial-gradient(circle at 55% 78%,rgba(139,92,246,.08),transparent 30%),
    #000;
}

.tech-hero { padding:78px 0 58px; }
.tech-hero-grid {
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr);
  gap:clamp(38px,6vw,78px);
  align-items:center;
}
.tech-hero h1 {
  max-width:1040px;
  font-size:clamp(2rem,3.6vw,3.35rem);
  line-height:1.08;
  letter-spacing:-.04em;
  text-wrap:balance;
}
.tech-hero-copy>p {
  max-width:780px;
  margin-top:16px;
  color:var(--muted);
  font-size:clamp(1rem,1.05vw,1.08rem);
  line-height:1.75;
}
.tech-proof {
  display:inline-flex;
  margin-top:24px;
  padding:9px 14px;
  border:1px solid rgba(116,216,255,.27);
  border-radius:999px;
  color:#bdefff;
  background:rgba(6,182,212,.06);
  font-size:.8rem;
  font-weight:750;
}
.tech-hero-panel {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  padding:24px;
  border:1px solid var(--border);
  border-radius:28px;
  background:linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.022));
  box-shadow:var(--shadow);
}
.tech-hero-stat {
  min-height:135px;
  padding:20px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  background:rgba(255,255,255,.025);
}
.tech-hero-stat strong { display:block;color:#8ce7ff;font-size:1.8rem;line-height:1; }
.tech-hero-stat span { display:block;margin-top:10px;color:var(--muted);font-size:.82rem;line-height:1.45; }

.tech-section { padding:clamp(68px,8vw,104px) 0; }
.tech-section + .tech-section { border-top:1px solid rgba(255,255,255,.055); }
.tech-heading { max-width:920px;margin-bottom:38px; }
.tech-heading h2 {
  font-size:clamp(1.9rem,3.6vw,3.4rem);
  line-height:1.07;
  letter-spacing:-.04em;
  text-wrap:balance;
}
.tech-heading p { margin-top:16px;color:var(--muted); }

.tech-overview-panel {
  display:grid;
  grid-template-columns:.72fr 1.28fr;
  gap:46px;
  padding:clamp(28px,4.5vw,52px);
  border:1px solid var(--border);
  border-radius:28px;
  background:rgba(255,255,255,.03);
}
.tech-overview-panel p { color:var(--muted);font-size:1.04rem; }
.tech-overview-panel p+p { margin-top:16px; }

.tech-stack-visual {
  overflow:hidden;
  margin-bottom:28px;
  border:1px solid var(--border);
  border-radius:28px;
  background:#080808;
  box-shadow:var(--shadow);
}
.tech-stack-visual img { width:100%;max-height:680px;object-fit:contain; }
.tech-flow {
  margin:20px 0 30px;
  padding:20px;
  border-left:3px solid #68ddff;
  border-radius:0 16px 16px 0;
  color:var(--muted);
  background:rgba(37,99,235,.08);
}
.tech-flow strong { display:block;margin-bottom:6px;color:var(--text); }

.tech-table-wrap {
  width:100%;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  border:1px solid var(--border);
  border-radius:22px;
  background:rgba(255,255,255,.025);
}
.tech-table {
  width:100%;
  min-width:820px;
  border-collapse:collapse;
}
.tech-table th,
.tech-table td {
  padding:17px 18px;
  border-bottom:1px solid rgba(255,255,255,.08);
  text-align:left;
  vertical-align:top;
}
.tech-table th {
  color:#9be9ff;
  background:rgba(37,99,235,.10);
  font-size:.78rem;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.tech-table tr:last-child td { border-bottom:0; }
.tech-table td { color:var(--muted); }
.tech-table td strong { color:var(--text); }

.tech-service-grid,
.tech-credit-grid,
.tech-roadmap-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}
.tech-service-card,
.tech-credit-card,
.tech-roadmap-card {
  padding:26px;
  border:1px solid var(--border);
  border-radius:22px;
  background:linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.022));
  transition:transform .3s ease,border-color .3s ease,background .3s ease;
}
.tech-service-card:hover,
.tech-credit-card:hover,
.tech-roadmap-card:hover {
  transform:translateY(-6px);
  border-color:rgba(116,216,255,.48);
  background:linear-gradient(145deg,rgba(255,255,255,.085),rgba(255,255,255,.03));
}
.tech-service-card h3,
.tech-credit-card h3,
.tech-roadmap-card h3 { margin-top:15px;font-size:1.22rem; }
.tech-service-card p,
.tech-credit-card p,
.tech-roadmap-card p { margin-top:11px;color:var(--muted); }
.tech-note {
  margin-top:24px;
  padding:20px;
  border:1px solid var(--border);
  border-radius:16px;
  color:var(--muted);
  background:rgba(255,255,255,.025);
}

.tech-jcoin-panel {
  padding:clamp(28px,4.5vw,52px);
  border:1px solid var(--border);
  border-radius:30px;
  background:
    radial-gradient(circle at 88% 12%,rgba(6,182,212,.14),transparent 27%),
    linear-gradient(145deg,rgba(37,99,235,.12),rgba(255,255,255,.025));
}
.tech-jcoin-panel>p { max-width:980px;color:var(--muted); }
.tech-jcoin-panel>p+p { margin-top:14px; }
.tech-cascade {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:24px 0 32px;
  list-style:none;
}
.tech-cascade li {
  padding:9px 12px;
  border:1px solid var(--border);
  border-radius:12px;
  color:#d8e5f5;
  background:rgba(255,255,255,.035);
  font-size:.8rem;
}
.tech-subsection { margin-top:48px; }
.tech-subsection h3 { margin-bottom:12px;font-size:1.5rem; }
.tech-subsection>p { margin-bottom:22px;color:var(--muted); }

.tech-roadmap-phase {
  display:inline-flex;
  padding:6px 10px;
  border:1px solid rgba(116,216,255,.24);
  border-radius:999px;
  color:#9be8ff;
  background:rgba(6,182,212,.055);
  font-size:.68rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.tech-final-cta {
  padding:clamp(32px,5vw,58px);
  border:1px solid var(--border);
  border-radius:30px;
  background:
    radial-gradient(circle at 88% 18%,rgba(6,182,212,.17),transparent 30%),
    linear-gradient(135deg,rgba(37,99,235,.15),rgba(139,92,246,.09));
  box-shadow:var(--shadow);
}
.tech-final-cta h2 {
  max-width:900px;
  font-size:clamp(2rem,4vw,3.8rem);
  line-height:1.05;
  letter-spacing:-.045em;
}
.tech-final-cta p { max-width:860px;margin-top:18px;color:var(--muted); }
.tech-disclaimer { padding:24px 0 46px;color:#8592a6;font-size:.8rem;line-height:1.65; }

@media(max-width:1000px){
  .tech-hero-grid,.tech-overview-panel{grid-template-columns:1fr}
  .tech-service-grid,.tech-credit-grid,.tech-roadmap-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:650px){
  .tech-hero-panel,.tech-service-grid,.tech-credit-grid,.tech-roadmap-grid{grid-template-columns:1fr}
}

/* Technical Architecture Portal */
.architecture-portal-page{background:radial-gradient(circle at 8% 6%,rgba(37,99,235,.16),transparent 28%),radial-gradient(circle at 92% 20%,rgba(6,182,212,.10),transparent 27%),#000}
.arch-hero{padding:78px 0 58px}.arch-hero-grid{display:grid;grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);gap:clamp(38px,6vw,78px);align-items:center}
.arch-hero h1{max-width:1040px;font-size:clamp(2rem,3.6vw,3.35rem);line-height:1.08;letter-spacing:-.04em;text-wrap:balance}.arch-hero-copy>p{max-width:780px;margin-top:16px;color:var(--muted);font-size:clamp(1rem,1.05vw,1.08rem);line-height:1.75}
.arch-proof{display:inline-flex;margin-top:24px;padding:9px 14px;border:1px solid rgba(116,216,255,.27);border-radius:999px;color:#bdefff;background:rgba(6,182,212,.06);font-size:.8rem;font-weight:750}
.arch-hero-panel{display:grid;gap:13px;padding:24px;border:1px solid var(--border);border-radius:28px;background:linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.022));box-shadow:var(--shadow)}
.arch-hero-row{display:flex;align-items:center;gap:14px;padding:15px;border:1px solid rgba(255,255,255,.08);border-radius:16px;background:rgba(255,255,255,.025)}.arch-hero-row strong{display:grid;width:42px;height:42px;place-items:center;border-radius:12px;color:#9be9ff;background:rgba(37,99,235,.14)}.arch-hero-row span{color:var(--muted);font-size:.86rem}
.arch-section{padding:clamp(68px,8vw,104px) 0}.arch-section+.arch-section{border-top:1px solid rgba(255,255,255,.055)}.arch-heading{max-width:940px;margin-bottom:38px}.arch-heading h2{font-size:clamp(1.9rem,3.6vw,3.4rem);line-height:1.07;letter-spacing:-.04em;text-wrap:balance}.arch-heading p{margin-top:16px;color:var(--muted)}
.arch-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}.arch-card{padding:26px;border:1px solid var(--border);border-radius:22px;background:linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.022));transition:.3s}.arch-card:hover{transform:translateY(-6px);border-color:rgba(116,216,255,.48)}.arch-card h3{margin-top:15px;font-size:1.22rem}.arch-card p{margin-top:11px;color:var(--muted)}
.arch-diagram-shell{padding:clamp(20px,4vw,38px);border:1px solid var(--border);border-radius:30px;background:radial-gradient(circle at 50% 45%,rgba(37,99,235,.12),transparent 32%),rgba(255,255,255,.025);box-shadow:var(--shadow)}.arch-diagram-wrap{overflow-x:auto}.arch-diagram{width:100%;min-width:980px;height:auto;display:block}.arch-diagram text{font-family:Inter,Arial,sans-serif;fill:#e9f1fb}.arch-diagram .node{fill:rgba(10,15,25,.96);stroke:rgba(255,255,255,.18);stroke-width:1.4}.arch-diagram .core{fill:rgba(37,99,235,.20);stroke:rgba(116,216,255,.62)}.arch-diagram .deploy{fill:rgba(139,92,246,.11)}.arch-diagram .edge{fill:none;stroke:rgba(116,216,255,.52);stroke-width:2;marker-end:url(#arrow)}.arch-diagram .muted-edge{fill:none;stroke:rgba(255,255,255,.22);stroke-width:1.4;stroke-dasharray:6 6;marker-end:url(#arrowMuted)}.arch-diagram .title{font-size:14px;font-weight:800}.arch-diagram .sub{fill:#9ba9bc;font-size:11px}.arch-diagram .label{fill:#93e8ff;font-size:12px;font-weight:700}
.arch-table-wrap{overflow-x:auto;border:1px solid var(--border);border-radius:22px;background:rgba(255,255,255,.025)}.arch-table{width:100%;min-width:980px;border-collapse:collapse}.arch-table th,.arch-table td{padding:17px 18px;border-bottom:1px solid rgba(255,255,255,.08);text-align:left;vertical-align:top}.arch-table th{color:#9be9ff;background:rgba(37,99,235,.10);font-size:.78rem;text-transform:uppercase}.arch-table td{color:var(--muted)}.arch-table td strong{color:var(--text)}
.arch-process{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:12px}.arch-step{min-height:225px;padding:22px;border:1px solid var(--border);border-radius:20px;background:rgba(255,255,255,.028)}.arch-step span{color:#83e5ff;font-size:.76rem;font-weight:850}.arch-step h3{margin-top:34px}.arch-step p{margin-top:10px;color:var(--muted);font-size:.84rem}
.arch-deploy-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:16px}.arch-deploy-card{min-height:300px;display:flex;flex-direction:column;padding:24px;border:1px solid var(--border);border-radius:22px;background:linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.022))}.arch-deploy-card h3{margin-top:16px}.arch-deploy-card p{margin-top:11px;color:var(--muted)}.arch-deploy-card ul{margin-top:auto;padding-top:18px;list-style:none}.arch-deploy-card li{margin-top:7px;color:var(--muted);font-size:.8rem}
.arch-chips{display:flex;flex-wrap:wrap;gap:10px}.arch-chips span{padding:10px 13px;border:1px solid var(--border);border-radius:12px;color:#d8e5f5;background:rgba(255,255,255,.035);font-size:.8rem}
.arch-timeline{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:14px}.arch-time-card{min-height:220px;padding:22px;border:1px solid var(--border);border-radius:20px;background:rgba(255,255,255,.028)}.arch-phase{display:inline-flex;padding:6px 10px;border:1px solid rgba(116,216,255,.24);border-radius:999px;color:#9be8ff;font-size:.68rem;font-weight:800;text-transform:uppercase}.arch-time-card h3{margin-top:26px}.arch-time-card p{margin-top:10px;color:var(--muted);font-size:.84rem}
.arch-final{padding:clamp(32px,5vw,58px);border:1px solid var(--border);border-radius:30px;background:radial-gradient(circle at 88% 18%,rgba(6,182,212,.17),transparent 30%),linear-gradient(135deg,rgba(37,99,235,.15),rgba(139,92,246,.09));box-shadow:var(--shadow)}.arch-final h2{max-width:900px;font-size:clamp(2rem,4vw,3.8rem);line-height:1.05;letter-spacing:-.045em}.arch-final p{max-width:860px;margin-top:18px;color:var(--muted)}.arch-disclaimer{padding:24px 0 46px;color:#8592a6;font-size:.8rem}
@media(max-width:1100px){.arch-hero-grid{grid-template-columns:1fr}.arch-process{grid-template-columns:repeat(3,1fr)}.arch-deploy-grid{grid-template-columns:repeat(3,1fr)}.arch-timeline{grid-template-columns:repeat(3,1fr)}}@media(max-width:780px){.arch-grid{grid-template-columns:repeat(2,1fr)}.arch-deploy-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:600px){.arch-grid,.arch-process,.arch-deploy-grid,.arch-timeline{grid-template-columns:1fr}}


/* Architecture diagram visibility and professional visual upgrade */
.arch-diagram-shell {
  background:
    linear-gradient(180deg, rgba(16,24,39,.96), rgba(7,12,20,.98)),
    rgba(255,255,255,.04);
  border-color: rgba(148,163,184,.30);
}

.arch-diagram {
  filter: none;
}

.arch-diagram .node {
  fill: rgba(20,31,48,.98);
  stroke: rgba(148,163,184,.58);
  stroke-width: 1.8;
}

.arch-diagram .core {
  fill: rgba(37,99,235,.34);
  stroke: rgba(125,211,252,.95);
  stroke-width: 2.4;
}

.arch-diagram .deploy {
  fill: rgba(91,33,182,.26);
  stroke: rgba(196,181,253,.72);
}

.arch-diagram .support {
  fill: rgba(8,47,73,.72);
  stroke: rgba(103,232,249,.62);
}

.arch-diagram .edge {
  stroke: rgba(125,211,252,.92);
  stroke-width: 2.5;
}

.arch-diagram .muted-edge {
  stroke: rgba(203,213,225,.46);
  stroke-width: 1.8;
  stroke-dasharray: 7 7;
}

.arch-diagram .title {
  fill: #f8fafc;
  font-size: 14px;
  font-weight: 800;
}

.arch-diagram .sub {
  fill: #cbd5e1;
  font-size: 11px;
}

.arch-diagram .label {
  fill: #bae6fd;
  font-size: 12px;
  font-weight: 800;
}

.arch-diagram .section-label {
  fill: #93c5fd;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.arch-diagram .lane {
  fill: rgba(15,23,42,.52);
  stroke: rgba(148,163,184,.18);
  stroke-width: 1;
}

.arch-diagram .lane-title {
  fill: #94a3b8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.arch-diagram .badge {
  fill: rgba(14,116,144,.32);
  stroke: rgba(103,232,249,.70);
}

.arch-diagram-note {
  color: #dbeafe;
  background: rgba(30,64,175,.16);
  border-left-color: #7dd3fc;
}

@media(max-width:700px){
  .arch-diagram-shell{padding:16px}
}


/* ===========================================================
   Architecture diagram — mobile horizontal scrolling fix
   =========================================================== */

.arch-diagram-shell {
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

.arch-diagram-wrap {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto !important;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x pan-y;
  scrollbar-width: thin;
  scrollbar-color: rgba(125,211,252,.72) rgba(255,255,255,.08);
  scroll-snap-type: x proximity;
  border-radius: 18px;
}

.arch-diagram-wrap::-webkit-scrollbar {
  height: 10px;
}

.arch-diagram-wrap::-webkit-scrollbar-track {
  background: rgba(255,255,255,.07);
  border-radius: 999px;
}

.arch-diagram-wrap::-webkit-scrollbar-thumb {
  background: rgba(125,211,252,.72);
  border-radius: 999px;
  border: 2px solid rgba(8,15,26,.9);
}

.arch-diagram-wrap:focus {
  outline: 2px solid rgba(125,211,252,.72);
  outline-offset: 5px;
}

.arch-diagram {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  scroll-snap-align: start;
}

.arch-diagram-scroll-hint {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 14px;
  padding: 11px 14px;
  border: 1px solid rgba(125,211,252,.28);
  border-radius: 13px;
  color: #dbeafe;
  background: rgba(14,116,144,.12);
  font-size: .78rem;
  font-weight: 700;
}

.arch-diagram-scroll-arrow {
  flex: 0 0 auto;
  color: #7dd3fc;
  font-size: 1.2rem;
  line-height: 1;
}

@media (max-width: 820px) {
  .arch-diagram-shell {
    padding: 14px;
    overflow: visible;
  }

  .arch-diagram-scroll-hint {
    display: flex;
  }

  .arch-diagram-wrap {
    margin-right: 0;
    padding-bottom: 12px;
  }

  .arch-diagram {
    width: 1120px !important;
    min-width: 1120px !important;
    max-width: none !important;
  }
}

@media (max-width: 480px) {
  .arch-diagram {
    width: 1040px !important;
    min-width: 1040px !important;
  }

  .arch-diagram-scroll-hint {
    font-size: .74rem;
  }
}


/* ===========================================================
   Architecture V4 — spectacular mobile diagram and tables
   =========================================================== */

.architecture-portal-page,
.architecture-portal-page main,
.architecture-portal-page .arch-section,
.architecture-portal-page .container {
  min-width: 0;
}

.arch-diagram-shell {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: clamp(18px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(186,230,253,.52);
  background:
    radial-gradient(circle at 51% 38%, rgba(37,99,235,.28), transparent 34%),
    linear-gradient(180deg, #17243a 0%, #0e1b30 52%, #091425 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 24px 70px rgba(0,0,0,.34);
}

.arch-diagram-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(186,230,253,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(186,230,253,.055) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 94%);
}

.arch-diagram-wrap {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: scroll !important;
  overflow-y: hidden !important;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x !important;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  scrollbar-width: auto;
  scrollbar-color: #7dd3fc rgba(255,255,255,.13);
  border: 1px solid rgba(186,230,253,.24);
  border-radius: 18px;
  background: rgba(3,10,22,.24);
}

.arch-diagram-wrap::-webkit-scrollbar {
  display: block !important;
  height: 13px !important;
}

.arch-diagram-wrap::-webkit-scrollbar-track {
  background: rgba(255,255,255,.11);
  border-radius: 999px;
}

.arch-diagram-wrap::-webkit-scrollbar-thumb {
  min-width: 72px;
  background: linear-gradient(90deg, #38bdf8, #a5f3fc);
  border: 3px solid #102039;
  border-radius: 999px;
}

.arch-diagram-wrap:focus {
  outline: 2px solid #7dd3fc;
  outline-offset: 4px;
}

.arch-diagram {
  display: block !important;
  width: 1280px !important;
  min-width: 1280px !important;
  max-width: none !important;
  height: 820px !important;
  min-height: 820px !important;
  flex: none !important;
}

.arch-diagram .lane {
  fill: rgba(30,47,73,.88);
  stroke: rgba(186,230,253,.34);
}

.arch-diagram .node {
  fill: #233753;
  stroke: #a5dff8;
  stroke-width: 2;
}

.arch-diagram .core {
  fill: #245bbb !important;
  stroke: #d5f3ff;
  stroke-width: 3;
}

.arch-diagram .deploy {
  fill: #4c3a85;
  stroke: #ddd6fe;
}

.arch-diagram .support {
  fill: #15516a;
  stroke: #a5f3fc;
}

.arch-diagram .title {
  fill: #ffffff;
  font-weight: 800;
}

.arch-diagram .sub {
  fill: #e2e8f0;
}

.arch-diagram .lane-title,
.arch-diagram .section-label,
.arch-diagram .label {
  fill: #d9f5ff;
}

.arch-diagram .edge {
  stroke: #7dd3fc;
  stroke-width: 3;
}

.arch-diagram .muted-edge {
  stroke: #cbd5e1;
  stroke-width: 2;
  opacity: .82;
}

.arch-diagram-scroll-hint,
.arch-table-scroll-hint {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 12px;
  padding: 11px 14px;
  border: 1px solid rgba(125,211,252,.42);
  border-radius: 13px;
  color: #f0f9ff;
  background: rgba(2,132,199,.16);
  font-size: .78rem;
  font-weight: 750;
}

.arch-diagram-mobile-controls {
  position: relative;
  z-index: 2;
  display: none;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.arch-diagram-mobile-controls button {
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid rgba(125,211,252,.44);
  border-radius: 11px;
  color: #f0f9ff;
  background: rgba(15,45,75,.92);
  font: inherit;
  font-size: .74rem;
  font-weight: 750;
  cursor: pointer;
}

.arch-diagram-mobile-controls button:active {
  background: rgba(2,132,199,.35);
}

.arch-table-scroll-hint {
  display: none;
  margin-top: 8px;
}

.arch-table-wrap {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: scroll !important;
  overflow-y: hidden !important;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x !important;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  scrollbar-width: auto;
  scrollbar-color: #7dd3fc rgba(255,255,255,.12);
  border-color: rgba(186,230,253,.34);
  background: #101d31;
}

.arch-table-wrap::-webkit-scrollbar {
  display: block !important;
  height: 13px !important;
}

.arch-table-wrap::-webkit-scrollbar-track {
  background: rgba(255,255,255,.10);
  border-radius: 999px;
}

.arch-table-wrap::-webkit-scrollbar-thumb {
  min-width: 70px;
  background: linear-gradient(90deg, #38bdf8, #a5f3fc);
  border: 3px solid #102039;
  border-radius: 999px;
}

.arch-table-wrap:focus {
  outline: 2px solid #7dd3fc;
  outline-offset: 4px;
}

.arch-table {
  width: 1240px !important;
  min-width: 1240px !important;
  max-width: none !important;
  table-layout: fixed !important;
  border-collapse: separate;
  border-spacing: 0;
}

.arch-table th,
.arch-table td {
  min-width: 0;
  padding: 18px 20px;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  line-height: 1.55;
  vertical-align: top;
}

.arch-table th {
  position: sticky;
  top: 0;
  z-index: 2;
  color: #e0f2fe;
  background: #18355a;
}

.arch-table td {
  color: #d7e3f1;
  background: rgba(15,29,49,.95);
}

.arch-table tbody tr:nth-child(even) td {
  background: rgba(21,38,63,.96);
}

.arch-table td strong {
  color: #ffffff;
}

.arch-table th:nth-child(1),
.arch-table td:nth-child(1) { width: 210px; }

.arch-table th:nth-child(2),
.arch-table td:nth-child(2) { width: 320px; }

.arch-table th:nth-child(3),
.arch-table td:nth-child(3) { width: 390px; }

.arch-table th:nth-child(4),
.arch-table td:nth-child(4) { width: 320px; }

@media (max-width: 820px) {
  .architecture-portal-page {
    overflow-x: hidden;
  }

  .arch-diagram-shell {
    width: 100%;
    max-width: 100%;
    padding: 12px;
    overflow: hidden;
  }

  .arch-diagram-mobile-controls {
    display: grid;
  }

  .arch-diagram-scroll-hint,
  .arch-table-scroll-hint {
    display: flex;
  }

  .arch-diagram-wrap,
  .arch-table-wrap {
    width: 100%;
    max-width: calc(100vw - 48px);
    margin-inline: auto;
  }

  .arch-table {
    width: 1180px !important;
    min-width: 1180px !important;
  }

  .arch-table th,
  .arch-table td {
    font-size: .93rem;
  }
}

@media (max-width: 480px) {
  .arch-diagram-wrap,
  .arch-table-wrap {
    max-width: calc(100vw - 36px);
  }

  .arch-diagram {
    width: 1180px !important;
    min-width: 1180px !important;
    height: 756px !important;
    min-height: 756px !important;
  }

  .arch-diagram-mobile-controls button {
    font-size: .7rem;
    padding-inline: 6px;
  }

  .arch-table {
    width: 1120px !important;
    min-width: 1120px !important;
  }

  .arch-table th,
  .arch-table td {
    padding: 16px 18px;
    font-size: .9rem;
  }
}


/* ===========================================================
   Architecture V5 — iPhone-native horizontal scroll
   =========================================================== */

.architecture-portal-page {
  overflow-x: clip;
}

.arch-diagram-shell {
  width: 100%;
  max-width: 100%;
  overflow: visible !important;
  background:
    radial-gradient(circle at 50% 34%, rgba(56,189,248,.22), transparent 34%),
    linear-gradient(180deg, #223551 0%, #152842 50%, #0d1d33 100%) !important;
  border-color: rgba(186,230,253,.65) !important;
}

.arch-diagram-wrap,
.arch-table-wrap {
  display: block !important;
  box-sizing: border-box;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  -webkit-overflow-scrolling: touch !important;
  overscroll-behavior: auto;
  touch-action: auto !important;
  scroll-behavior: smooth;
  scrollbar-width: auto;
  scrollbar-color: #7dd3fc #14243a;
  border: 1px solid rgba(186,230,253,.42);
  border-radius: 18px;
  background: #102039;
}

.arch-diagram-wrap::-webkit-scrollbar,
.arch-table-wrap::-webkit-scrollbar {
  height: 14px !important;
}

.arch-diagram-wrap::-webkit-scrollbar-track,
.arch-table-wrap::-webkit-scrollbar-track {
  background: #14243a;
}

.arch-diagram-wrap::-webkit-scrollbar-thumb,
.arch-table-wrap::-webkit-scrollbar-thumb {
  background: #7dd3fc;
  border: 3px solid #14243a;
  border-radius: 999px;
}

.arch-diagram-canvas {
  display: block;
  width: 1280px;
  min-width: 1280px;
  height: 820px;
}

.arch-diagram {
  display: block !important;
  width: 1280px !important;
  min-width: 1280px !important;
  max-width: 1280px !important;
  height: 820px !important;
  min-height: 820px !important;
}

.arch-diagram .lane {
  fill: #29405f !important;
  stroke: #8fdcff !important;
  stroke-width: 1.8 !important;
}

.arch-diagram .node {
  fill: #315173 !important;
  stroke: #b8e7ff !important;
  stroke-width: 2.2 !important;
}

.arch-diagram .core {
  fill: #2e67c7 !important;
  stroke: #ffffff !important;
  stroke-width: 3.2 !important;
}

.arch-diagram .support {
  fill: #17627e !important;
  stroke: #b8f4ff !important;
}

.arch-diagram .deploy {
  fill: #604b99 !important;
  stroke: #ece7ff !important;
}

.arch-diagram .title {
  fill: #ffffff !important;
}

.arch-diagram .sub {
  fill: #f0f7ff !important;
}

.arch-diagram .lane-title,
.arch-diagram .section-label,
.arch-diagram .label {
  fill: #e6f8ff !important;
}

.arch-diagram .edge {
  stroke: #8ee7ff !important;
  stroke-width: 3.2 !important;
}

.arch-diagram .muted-edge {
  stroke: #dbeafe !important;
  stroke-width: 2.2 !important;
  opacity: .9 !important;
}

/* Fixed readable table geometry */
.arch-table {
  display: table !important;
  width: 1320px !important;
  min-width: 1320px !important;
  max-width: 1320px !important;
  table-layout: fixed !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
}

.arch-col-layer { width: 220px; }
.arch-col-components { width: 340px; }
.arch-col-purpose { width: 420px; }
.arch-col-technologies { width: 340px; }

.arch-table th,
.arch-table td {
  display: table-cell !important;
  box-sizing: border-box;
  padding: 20px 22px !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
  line-height: 1.6 !important;
  vertical-align: top !important;
}

.arch-table th {
  color: #f0f9ff !important;
  background: #214267 !important;
  font-size: .82rem !important;
}

.arch-table td {
  color: #e1ebf7 !important;
  background: #142740 !important;
  font-size: .96rem !important;
}

.arch-table tbody tr:nth-child(even) td {
  background: #19304e !important;
}

.arch-table td strong {
  color: #ffffff !important;
}

/* iPhone/mobile: local scrollers fill the content width, inner content stays wide */
@media (max-width: 820px) {
  .arch-diagram-shell {
    padding: 12px !important;
  }

  .arch-diagram-wrap,
  .arch-table-wrap {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .arch-diagram-mobile-controls {
    display: grid !important;
  }

  .arch-diagram-scroll-hint,
  .arch-table-scroll-hint {
    display: flex !important;
  }

  .arch-table {
    width: 1240px !important;
    min-width: 1240px !important;
    max-width: 1240px !important;
  }

  .arch-col-layer { width: 210px; }
  .arch-col-components { width: 320px; }
  .arch-col-purpose { width: 390px; }
  .arch-col-technologies { width: 320px; }
}

@media (max-width: 480px) {
  .arch-diagram-canvas,
  .arch-diagram {
    width: 1180px !important;
    min-width: 1180px !important;
    max-width: 1180px !important;
    height: 756px !important;
    min-height: 756px !important;
  }

  .arch-table {
    width: 1160px !important;
    min-width: 1160px !important;
    max-width: 1160px !important;
  }

  .arch-col-layer { width: 200px; }
  .arch-col-components { width: 300px; }
  .arch-col-purpose { width: 370px; }
  .arch-col-technologies { width: 290px; }

  .arch-table th,
  .arch-table td {
    padding: 18px 20px !important;
    font-size: .94rem !important;
  }
}


/* ===========================================================
   I am J Research Labs Portal
   =========================================================== */

.research-labs-page {
  background:
    radial-gradient(circle at 8% 6%, rgba(37,99,235,.16), transparent 28%),
    radial-gradient(circle at 92% 20%, rgba(6,182,212,.10), transparent 27%),
    radial-gradient(circle at 55% 78%, rgba(139,92,246,.08), transparent 30%),
    #000;
}

.research-labs-hero {
  padding: 78px 0 58px;
}

.research-labs-hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(320px,.9fr);
  gap: clamp(38px,6vw,78px);
  align-items: center;
}

.research-labs-hero h1 {
  max-width: 1040px;
  font-size: clamp(2rem,3.6vw,3.35rem);
  line-height: 1.08;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.research-labs-hero-copy > p {
  max-width: 780px;
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(1rem,1.05vw,1.08rem);
  line-height: 1.75;
}

.research-labs-proof {
  display: inline-flex;
  margin-top: 24px;
  padding: 9px 14px;
  border: 1px solid rgba(116,216,255,.27);
  border-radius: 999px;
  color: #bdefff;
  background: rgba(6,182,212,.06);
  font-size: .8rem;
  font-weight: 750;
}

.research-labs-hero-panel {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.022));
  box-shadow: var(--shadow);
}

.research-labs-stat {
  min-height: 138px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
}

.research-labs-stat strong {
  display: block;
  color: #8ce7ff;
  font-size: 1.75rem;
  line-height: 1;
}

.research-labs-stat span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.45;
}

.research-labs-section {
  padding: clamp(68px,8vw,104px) 0;
}

.research-labs-section + .research-labs-section {
  border-top: 1px solid rgba(255,255,255,.055);
}

.research-labs-heading {
  max-width: 930px;
  margin-bottom: 38px;
}

.research-labs-heading h2 {
  font-size: clamp(1.9rem,3.6vw,3.4rem);
  line-height: 1.07;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.research-labs-heading p {
  margin-top: 16px;
  color: var(--muted);
}

.research-labs-mission {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 46px;
  padding: clamp(28px,4.5vw,52px);
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255,255,255,.03);
}

.research-labs-mission-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.research-labs-grid,
.research-labs-method-grid,
.research-labs-governance-grid,
.research-labs-collaboration-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 22px;
}

.research-labs-card,
.research-labs-method-card,
.research-labs-governance-card,
.research-labs-collaboration-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.022));
  transition: transform .3s ease,border-color .3s ease,background .3s ease;
}

.research-labs-card:hover,
.research-labs-method-card:hover,
.research-labs-governance-card:hover,
.research-labs-collaboration-card:hover {
  transform: translateY(-6px);
  border-color: rgba(116,216,255,.48);
  background: linear-gradient(145deg,rgba(255,255,255,.085),rgba(255,255,255,.03));
}

.research-labs-card h3,
.research-labs-method-card h3,
.research-labs-governance-card h3,
.research-labs-collaboration-card h3 {
  margin-top: 16px;
  font-size: 1.24rem;
}

.research-labs-card p,
.research-labs-method-card p,
.research-labs-governance-card p,
.research-labs-collaboration-card p {
  margin-top: 11px;
  color: var(--muted);
}

.research-labs-question {
  margin-top: 18px;
  padding: 15px;
  border-left: 3px solid #68ddff;
  border-radius: 0 14px 14px 0;
  color: #dceeff;
  background: rgba(37,99,235,.08);
  font-size: .84rem;
  line-height: 1.55;
}

.research-labs-process {
  display: grid;
  grid-template-columns: repeat(6,minmax(0,1fr));
  gap: 12px;
}

.research-labs-step {
  min-height: 232px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255,255,255,.028);
}

.research-labs-step-number {
  color: #83e5ff;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.research-labs-step h3 {
  margin-top: 34px;
  font-size: 1.04rem;
}

.research-labs-step p {
  margin-top: 10px;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.55;
}

.research-labs-readiness {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255,255,255,.03);
}

.research-labs-readiness ul {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 14px 28px;
  list-style: none;
}

.research-labs-readiness li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}

.research-labs-readiness li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7fe7ff;
  font-weight: 900;
}

.research-labs-roadmap {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
}

.research-labs-roadmap-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255,255,255,.028);
}

.research-labs-phase {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(116,216,255,.24);
  border-radius: 999px;
  color: #9be8ff;
  background: rgba(6,182,212,.055);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.research-labs-roadmap-card h3 {
  margin-top: 26px;
  font-size: 1.12rem;
}

.research-labs-roadmap-card p {
  margin-top: 11px;
  color: var(--muted);
}

.research-labs-table-hint {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
  padding: 11px 14px;
  border: 1px solid rgba(125,211,252,.42);
  border-radius: 13px;
  color: #f0f9ff;
  background: rgba(2,132,199,.16);
  font-size: .78rem;
  font-weight: 750;
}

.research-labs-table-wrap {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: auto;
  scrollbar-width: auto;
  scrollbar-color: #7dd3fc #14243a;
  border: 1px solid rgba(186,230,253,.34);
  border-radius: 22px;
  background: #101d31;
}

.research-labs-table-wrap::-webkit-scrollbar {
  height: 14px;
}

.research-labs-table-wrap::-webkit-scrollbar-track {
  background: #14243a;
}

.research-labs-table-wrap::-webkit-scrollbar-thumb {
  background: #7dd3fc;
  border: 3px solid #14243a;
  border-radius: 999px;
}

.research-labs-table {
  display: table;
  width: 1460px;
  min-width: 1460px;
  max-width: 1460px;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
}

.research-labs-table th,
.research-labs-table td {
  display: table-cell;
  padding: 20px 22px;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  line-height: 1.6;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.research-labs-table th {
  color: #f0f9ff;
  background: #214267;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.research-labs-table td {
  color: #e1ebf7;
  background: #142740;
  font-size: .96rem;
}

.research-labs-table tbody tr:nth-child(even) td {
  background: #19304e;
}

.research-labs-table td strong {
  color: #fff;
}

.research-program-col { width: 260px; }
.research-focus-col { width: 300px; }
.research-methods-col { width: 340px; }
.research-outputs-col { width: 340px; }
.research-maturity-col { width: 220px; }

.research-metric-dimension { width: 300px; }
.research-metric-examples { width: 470px; }
.research-metric-meaning { width: 470px; }

.research-labs-final {
  padding: clamp(32px,5vw,58px);
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 18%,rgba(6,182,212,.17),transparent 30%),
    linear-gradient(135deg,rgba(37,99,235,.15),rgba(139,92,246,.09));
  box-shadow: var(--shadow);
}

.research-labs-final h2 {
  max-width: 900px;
  font-size: clamp(2rem,4vw,3.8rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.research-labs-final p {
  max-width: 860px;
  margin-top: 18px;
  color: var(--muted);
}

.research-labs-disclaimer {
  padding: 24px 0 46px;
  color: #8592a6;
  font-size: .8rem;
  line-height: 1.65;
}

@media(max-width:1050px) {
  .research-labs-hero-grid,
  .research-labs-mission {
    grid-template-columns: 1fr;
  }

  .research-labs-process {
    grid-template-columns: repeat(3,minmax(0,1fr));
  }
}

@media(max-width:760px) {
  .research-labs-grid,
  .research-labs-method-grid,
  .research-labs-governance-grid,
  .research-labs-collaboration-grid,
  .research-labs-roadmap,
  .research-labs-readiness ul {
    grid-template-columns: 1fr;
  }

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

  .research-labs-process {
    grid-template-columns: 1fr;
  }

  .research-labs-table-hint {
    display: flex;
  }

  .research-labs-table-wrap {
    width: 100%;
    max-width: 100%;
  }

  .research-labs-table {
    width: 1380px;
    min-width: 1380px;
    max-width: 1380px;
  }
}


/* ===========================================================
   Executive Summary Portal
   =========================================================== */

.executive-summary-page {
  background:
    radial-gradient(circle at 8% 6%, rgba(37,99,235,.17), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(6,182,212,.10), transparent 27%),
    radial-gradient(circle at 52% 80%, rgba(139,92,246,.08), transparent 30%),
    #000;
}

.executive-hero {
  padding: 78px 0 58px;
}

.executive-hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(320px,.92fr);
  gap: clamp(38px,6vw,78px);
  align-items: center;
}

.executive-hero h1 {
  max-width: 1040px;
  font-size: clamp(2rem,3.6vw,3.35rem);
  line-height: 1.08;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.executive-hero-copy > p {
  max-width: 800px;
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(1rem,1.05vw,1.08rem);
  line-height: 1.75;
}

.executive-proof {
  display: inline-flex;
  margin-top: 24px;
  padding: 9px 14px;
  border: 1px solid rgba(116,216,255,.27);
  border-radius: 999px;
  color: #bdefff;
  background: rgba(6,182,212,.06);
  font-size: .8rem;
  font-weight: 750;
}

.executive-hero-panel {
  padding: 26px;
  border: 1px solid rgba(186,230,253,.26);
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 20%, rgba(6,182,212,.12), transparent 28%),
    linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.022));
  box-shadow: var(--shadow);
}

.executive-hero-panel strong {
  display: block;
  font-size: 1.08rem;
}

.executive-hero-panel ul {
  display: grid;
  gap: 13px;
  margin-top: 22px;
  list-style: none;
}

.executive-hero-panel li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: var(--muted);
}

.executive-hero-panel li:last-child {
  border-bottom: 0;
}

.executive-hero-panel b {
  color: #8ce7ff;
  font-size: 1.15rem;
}

.executive-section {
  padding: clamp(68px,8vw,104px) 0;
}

.executive-section + .executive-section {
  border-top: 1px solid rgba(255,255,255,.055);
}

.executive-heading {
  max-width: 930px;
  margin-bottom: 38px;
}

.executive-heading h2 {
  font-size: clamp(1.9rem,3.6vw,3.4rem);
  line-height: 1.07;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.executive-heading p {
  margin-top: 16px;
  color: var(--muted);
}

.executive-snapshot {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
}

.executive-snapshot-card,
.executive-card,
.executive-solution-card,
.executive-opportunity-card {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.022));
  transition: transform .3s ease,border-color .3s ease,background .3s ease;
}

.executive-snapshot-card:hover,
.executive-card:hover,
.executive-solution-card:hover,
.executive-opportunity-card:hover {
  transform: translateY(-6px);
  border-color: rgba(116,216,255,.48);
  background: linear-gradient(145deg,rgba(255,255,255,.085),rgba(255,255,255,.03));
}

.executive-snapshot-card {
  min-height: 220px;
  padding: 24px;
}

.executive-snapshot-card span {
  color: #8ce7ff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.executive-snapshot-card strong {
  display: block;
  margin-top: 16px;
  font-size: 1.35rem;
}

.executive-snapshot-card p {
  margin-top: 11px;
  color: var(--muted);
}

.executive-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 22px;
}

.executive-card {
  padding: 28px;
}

.executive-card h3,
.executive-solution-card h3,
.executive-opportunity-card h3 {
  margin-top: 16px;
  font-size: 1.24rem;
}

.executive-card p,
.executive-solution-card p,
.executive-opportunity-card p {
  margin-top: 11px;
  color: var(--muted);
}

.executive-solution-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 20px;
}

.executive-solution-card {
  min-height: 280px;
  padding: 26px;
}

.executive-feature-tag {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(116,216,255,.24);
  border-radius: 999px;
  color: #9be8ff;
  background: rgba(6,182,212,.055);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.executive-enterprise-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.executive-enterprise-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(145deg,rgba(37,99,235,.12),rgba(255,255,255,.025));
}

.executive-enterprise-card h3 {
  margin-top: 16px;
  font-size: 1.35rem;
}

.executive-enterprise-card p {
  margin-top: 12px;
  color: var(--muted);
}

.executive-enterprise-value {
  grid-column: 1 / -1;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255,255,255,.03);
}

.executive-enterprise-value ul {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 12px 24px;
  margin-top: 20px;
  list-style: none;
}

.executive-enterprise-value li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.executive-enterprise-value li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7fe7ff;
  font-weight: 900;
}

.executive-table-hint {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
  padding: 11px 14px;
  border: 1px solid rgba(125,211,252,.42);
  border-radius: 13px;
  color: #f0f9ff;
  background: rgba(2,132,199,.16);
  font-size: .78rem;
  font-weight: 750;
}

.executive-table-wrap {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: auto;
  scrollbar-width: auto;
  scrollbar-color: #7dd3fc #14243a;
  border: 1px solid rgba(186,230,253,.34);
  border-radius: 22px;
  background: #101d31;
}

.executive-table-wrap::-webkit-scrollbar {
  height: 14px;
}

.executive-table-wrap::-webkit-scrollbar-track {
  background: #14243a;
}

.executive-table-wrap::-webkit-scrollbar-thumb {
  background: #7dd3fc;
  border: 3px solid #14243a;
  border-radius: 999px;
}

.executive-table {
  display: table;
  width: 1260px;
  min-width: 1260px;
  max-width: 1260px;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
}

.executive-table th,
.executive-table td {
  display: table-cell;
  padding: 20px 22px;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  line-height: 1.6;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.executive-table th {
  color: #f0f9ff;
  background: #214267;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.executive-table td {
  color: #e1ebf7;
  background: #142740;
  font-size: .96rem;
}

.executive-table tbody tr:nth-child(even) td {
  background: #19304e;
}

.executive-table td strong {
  color: #fff;
}

.executive-col-area { width: 240px; }
.executive-col-current { width: 500px; }
.executive-col-next { width: 520px; }

.executive-opportunity-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 20px;
}

.executive-opportunity-card {
  min-height: 240px;
  padding: 26px;
}

.executive-final {
  padding: clamp(32px,5vw,58px);
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 18%,rgba(6,182,212,.17),transparent 30%),
    linear-gradient(135deg,rgba(37,99,235,.15),rgba(139,92,246,.09));
  box-shadow: var(--shadow);
}

.executive-final h2 {
  max-width: 920px;
  font-size: clamp(2rem,4vw,3.8rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.executive-final p {
  max-width: 860px;
  margin-top: 18px;
  color: var(--muted);
}

.executive-disclaimer {
  padding: 24px 0 46px;
  color: #8592a6;
  font-size: .8rem;
  line-height: 1.65;
}

@media(max-width:1050px) {
  .executive-hero-grid {
    grid-template-columns: 1fr;
  }

  .executive-solution-grid,
  .executive-opportunity-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

@media(max-width:760px) {
  .executive-snapshot,
  .executive-grid,
  .executive-solution-grid,
  .executive-opportunity-grid,
  .executive-enterprise-panel,
  .executive-enterprise-value ul {
    grid-template-columns: 1fr;
  }

  .executive-enterprise-value {
    grid-column: auto;
  }

  .executive-table-hint {
    display: flex;
  }

  .executive-table {
    width: 1180px;
    min-width: 1180px;
    max-width: 1180px;
  }
}


/* ===========================================================
   About I am J Portal
   =========================================================== */

.about-portal-page {
  background:
    radial-gradient(circle at 8% 6%, rgba(37,99,235,.17), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(6,182,212,.10), transparent 27%),
    radial-gradient(circle at 52% 80%, rgba(139,92,246,.08), transparent 30%),
    #000;
}

.about-hero {
  padding: 78px 0 58px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(320px,.92fr);
  gap: clamp(38px,6vw,78px);
  align-items: center;
}

.about-hero h1 {
  max-width: 1040px;
  font-size: clamp(2rem,3.6vw,3.35rem);
  line-height: 1.08;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.about-hero-copy > p {
  max-width: 800px;
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(1rem,1.05vw,1.08rem);
  line-height: 1.75;
}

.about-proof {
  display: inline-flex;
  margin-top: 24px;
  padding: 9px 14px;
  border: 1px solid rgba(116,216,255,.27);
  border-radius: 999px;
  color: #bdefff;
  background: rgba(6,182,212,.06);
  font-size: .8rem;
  font-weight: 750;
}

.about-hero-panel {
  padding: 26px;
  border: 1px solid rgba(186,230,253,.26);
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 20%, rgba(6,182,212,.12), transparent 28%),
    linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.022));
  box-shadow: var(--shadow);
}

.about-hero-panel strong {
  display: block;
  font-size: 1.08rem;
}

.about-hero-panel ul {
  display: grid;
  gap: 13px;
  margin-top: 22px;
  list-style: none;
}

.about-hero-panel li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: var(--muted);
}

.about-hero-panel li:last-child {
  border-bottom: 0;
}

.about-hero-panel b {
  color: #8ce7ff;
  font-size: 1.1rem;
}

.about-section {
  padding: clamp(68px,8vw,104px) 0;
}

.about-section + .about-section {
  border-top: 1px solid rgba(255,255,255,.055);
}

.about-heading {
  max-width: 930px;
  margin-bottom: 38px;
}

.about-heading h2 {
  font-size: clamp(1.9rem,3.6vw,3.4rem);
  line-height: 1.07;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.about-heading p {
  margin-top: 16px;
  color: var(--muted);
}

.about-identity-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
}

.about-identity-card,
.about-card,
.about-value-card,
.about-impact-card,
.about-next-card {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.022));
  transition: transform .3s ease,border-color .3s ease,background .3s ease;
}

.about-identity-card:hover,
.about-card:hover,
.about-value-card:hover,
.about-impact-card:hover,
.about-next-card:hover {
  transform: translateY(-6px);
  border-color: rgba(116,216,255,.48);
  background: linear-gradient(145deg,rgba(255,255,255,.085),rgba(255,255,255,.03));
}

.about-identity-card {
  min-height: 220px;
  padding: 24px;
}

.about-identity-card span {
  color: #8ce7ff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.about-identity-card strong {
  display: block;
  margin-top: 16px;
  font-size: 1.35rem;
}

.about-identity-card p {
  margin-top: 11px;
  color: var(--muted);
}

.about-story-panel {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 46px;
  padding: clamp(28px,4.5vw,52px);
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255,255,255,.03);
}

.about-story-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.about-story-copy p + p {
  margin-top: 16px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 22px;
}

.about-card,
.about-value-card,
.about-impact-card,
.about-next-card {
  padding: 28px;
}

.about-card h3,
.about-value-card h3,
.about-impact-card h3,
.about-next-card h3 {
  margin-top: 16px;
  font-size: 1.24rem;
}

.about-card p,
.about-value-card p,
.about-impact-card p,
.about-next-card p {
  margin-top: 11px;
  color: var(--muted);
}

.about-vision-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 20px;
}

.about-vision-card {
  min-height: 290px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 15%, rgba(6,182,212,.10), transparent 26%),
    linear-gradient(145deg,rgba(37,99,235,.10),rgba(255,255,255,.025));
}

.about-vision-card h3 {
  margin-top: 18px;
  font-size: 1.3rem;
}

.about-vision-card p {
  margin-top: 12px;
  color: var(--muted);
}

.about-founder-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 22px;
}

.about-founder-card {
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.022));
}

.about-founder-card h3 {
  margin-top: 20px;
  font-size: 1.45rem;
}

.about-founder-role {
  display: block;
  margin-top: 8px;
  color: #8ce7ff;
  font-weight: 750;
}

.about-founder-card p {
  margin-top: 18px;
  color: var(--muted);
}

.about-founder-note {
  margin-top: 22px;
  padding: 22px;
  border-left: 3px solid #68ddff;
  border-radius: 0 16px 16px 0;
  color: #dceeff;
  background: rgba(37,99,235,.08);
}

.about-milestone-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
}

.about-milestone-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255,255,255,.028);
}

.about-phase {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(116,216,255,.24);
  border-radius: 999px;
  color: #9be8ff;
  background: rgba(6,182,212,.055);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-milestone-card h3 {
  margin-top: 26px;
  font-size: 1.12rem;
}

.about-milestone-card p {
  margin-top: 11px;
  color: var(--muted);
}

.about-platform-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 22px;
}

.about-platform-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(145deg,rgba(37,99,235,.12),rgba(255,255,255,.025));
}

.about-platform-card h3 {
  margin-top: 16px;
  font-size: 1.35rem;
}

.about-platform-card p {
  margin-top: 12px;
  color: var(--muted);
}

.about-platform-card ul {
  display: grid;
  gap: 9px;
  margin-top: 22px;
  list-style: none;
}

.about-platform-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.about-platform-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7fe7ff;
  font-weight: 900;
}

.about-impact-grid,
.about-next-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 20px;
}

.about-final {
  padding: clamp(32px,5vw,58px);
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 18%,rgba(6,182,212,.17),transparent 30%),
    linear-gradient(135deg,rgba(37,99,235,.15),rgba(139,92,246,.09));
  box-shadow: var(--shadow);
}

.about-final h2 {
  max-width: 920px;
  font-size: clamp(2rem,4vw,3.8rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.about-final p {
  max-width: 860px;
  margin-top: 18px;
  color: var(--muted);
}

.about-disclaimer {
  padding: 24px 0 46px;
  color: #8592a6;
  font-size: .8rem;
  line-height: 1.65;
}

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

  .about-vision-grid,
  .about-milestone-grid,
  .about-impact-grid,
  .about-next-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

@media(max-width:760px) {
  .about-identity-grid,
  .about-grid,
  .about-vision-grid,
  .about-founder-grid,
  .about-milestone-grid,
  .about-platform-grid,
  .about-impact-grid,
  .about-next-grid {
    grid-template-columns: 1fr;
  }
}


/* ===========================================================
   About + Executive Summary V3 refinements
   =========================================================== */

.about-hero h1,
.executive-hero h1 {
  font-size: clamp(2rem, 3.45vw, 3.25rem);
  max-width: 980px;
}

.about-section,
.executive-section {
  padding-top: clamp(76px, 8.5vw, 112px);
  padding-bottom: clamp(76px, 8.5vw, 112px);
}

.about-heading,
.executive-heading {
  max-width: 900px;
  margin-bottom: 42px;
}

.about-heading p,
.executive-heading p {
  max-width: 850px;
  line-height: 1.78;
}

.about-founder-note {
  margin-top: 30px;
  padding: 28px 30px;
  border: 1px solid rgba(125,211,252,.26);
  border-left: 4px solid #7dd3fc;
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 12%, rgba(56,189,248,.10), transparent 24%),
    rgba(17,38,64,.56);
  color: #e4f4ff;
  font-size: .98rem;
  line-height: 1.72;
}

.about-impact-grid .about-impact-card {
  min-height: 250px;
}

@media (max-width: 760px) {
  .about-hero h1,
  .executive-hero h1 {
    font-size: clamp(2rem, 9.2vw, 2.75rem);
  }
}


/* ===========================================================
   Vision and Leadership Portals
   =========================================================== */

.vision-portal-page,
.leadership-portal-page {
  background:
    radial-gradient(circle at 8% 6%, rgba(37,99,235,.17), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(6,182,212,.10), transparent 27%),
    radial-gradient(circle at 52% 80%, rgba(139,92,246,.08), transparent 30%),
    #000;
}

.vision-hero,
.leadership-hero {
  padding: 78px 0 58px;
}

.vision-hero-grid,
.leadership-hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(320px,.92fr);
  gap: clamp(38px,6vw,78px);
  align-items: center;
}

.vision-hero h1,
.leadership-hero h1 {
  max-width: 980px;
  font-size: clamp(2rem,3.45vw,3.25rem);
  line-height: 1.08;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.vision-hero-copy > p,
.leadership-hero-copy > p {
  max-width: 800px;
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(1rem,1.05vw,1.08rem);
  line-height: 1.75;
}

.vision-proof,
.leadership-proof {
  display: inline-flex;
  margin-top: 24px;
  padding: 9px 14px;
  border: 1px solid rgba(116,216,255,.27);
  border-radius: 999px;
  color: #bdefff;
  background: rgba(6,182,212,.06);
  font-size: .8rem;
  font-weight: 750;
}

.vision-hero-panel,
.leadership-hero-panel {
  display: grid;
  gap: 13px;
  padding: 24px;
  border: 1px solid rgba(186,230,253,.26);
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 20%, rgba(6,182,212,.12), transparent 28%),
    linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.022));
  box-shadow: var(--shadow);
}

.vision-hero-row,
.leadership-hero-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.025);
}

.vision-hero-row strong,
.leadership-hero-row strong {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  color: #9be9ff;
  background: rgba(37,99,235,.14);
}

.vision-hero-row span,
.leadership-hero-row span {
  color: var(--muted);
  font-size: .86rem;
}

.vision-section,
.leadership-section {
  padding: clamp(76px,8.5vw,112px) 0;
}

.vision-section + .vision-section,
.leadership-section + .leadership-section {
  border-top: 1px solid rgba(255,255,255,.055);
}

.vision-heading,
.leadership-heading {
  max-width: 900px;
  margin-bottom: 42px;
}

.vision-heading h2,
.leadership-heading h2 {
  font-size: clamp(1.9rem,3.6vw,3.4rem);
  line-height: 1.07;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.vision-heading p,
.leadership-heading p {
  max-width: 850px;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.78;
}

.vision-grid,
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 22px;
}

.vision-future-grid,
.vision-outcome-grid,
.leadership-governance-grid,
.leadership-priority-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 20px;
}

.vision-card,
.vision-future-card,
.vision-outcome-card,
.leadership-card,
.leadership-governance-card,
.leadership-priority-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.022));
  transition: transform .3s ease,border-color .3s ease,background .3s ease;
}

.vision-card:hover,
.vision-future-card:hover,
.vision-outcome-card:hover,
.leadership-card:hover,
.leadership-governance-card:hover,
.leadership-priority-card:hover {
  transform: translateY(-6px);
  border-color: rgba(116,216,255,.48);
}

.vision-card h3,
.vision-future-card h3,
.vision-outcome-card h3,
.leadership-card h3,
.leadership-governance-card h3,
.leadership-priority-card h3 {
  margin-top: 16px;
  font-size: 1.24rem;
}

.vision-card p,
.vision-future-card p,
.vision-outcome-card p,
.leadership-card p,
.leadership-governance-card p,
.leadership-priority-card p {
  margin-top: 11px;
  color: var(--muted);
}

.vision-path,
.leadership-journey-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
}

.vision-step,
.leadership-journey-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255,255,255,.028);
}

.vision-step-number {
  color: #83e5ff;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.vision-step h3,
.leadership-journey-card h3 {
  margin-top: 28px;
  font-size: 1.12rem;
}

.vision-step p,
.leadership-journey-card p {
  margin-top: 11px;
  color: var(--muted);
}

.leadership-executive-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 24px;
}

.leadership-executive-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background:
    radial-gradient(circle at 90% 10%,rgba(6,182,212,.10),transparent 24%),
    linear-gradient(145deg,rgba(37,99,235,.11),rgba(255,255,255,.025));
}

.leadership-executive-card h3 {
  margin-top: 18px;
  font-size: 1.5rem;
}

.leadership-role {
  display: block;
  margin-top: 8px;
  color: #8ce7ff;
  font-weight: 750;
  line-height: 1.5;
}

.leadership-executive-card > p {
  margin-top: 18px;
  color: var(--muted);
}

.leadership-focus {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.leadership-focus h4 {
  font-size: .9rem;
  color: #eaf7ff;
}

.leadership-focus ul {
  display: grid;
  gap: 9px;
  margin-top: 14px;
  list-style: none;
}

.leadership-focus li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.leadership-focus li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7fe7ff;
  font-weight: 900;
}

.vision-final,
.leadership-final {
  padding: clamp(32px,5vw,58px);
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 18%,rgba(6,182,212,.17),transparent 30%),
    linear-gradient(135deg,rgba(37,99,235,.15),rgba(139,92,246,.09));
  box-shadow: var(--shadow);
}

.vision-final h2,
.leadership-final h2 {
  max-width: 920px;
  font-size: clamp(2rem,4vw,3.8rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.vision-final p,
.leadership-final p {
  max-width: 860px;
  margin-top: 18px;
  color: var(--muted);
}

.vision-disclaimer,
.leadership-disclaimer {
  padding: 24px 0 46px;
  color: #8592a6;
  font-size: .8rem;
  line-height: 1.65;
}

@media(max-width:1050px) {
  .vision-hero-grid,
  .leadership-hero-grid {
    grid-template-columns: 1fr;
  }

  .vision-future-grid,
  .vision-outcome-grid,
  .leadership-governance-grid,
  .leadership-priority-grid,
  .vision-path,
  .leadership-journey-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

@media(max-width:760px) {
  .vision-grid,
  .leadership-grid,
  .vision-future-grid,
  .vision-outcome-grid,
  .leadership-governance-grid,
  .leadership-priority-grid,
  .vision-path,
  .leadership-journey-grid,
  .leadership-executive-grid {
    grid-template-columns: 1fr;
  }

  .vision-hero h1,
  .leadership-hero h1 {
    font-size: clamp(2rem,9.2vw,2.75rem);
  }
}


/* ===========================================================
   Impact Portal
   =========================================================== */

.impact-portal-page {
  background:
    radial-gradient(circle at 8% 6%,rgba(37,99,235,.17),transparent 28%),
    radial-gradient(circle at 92% 18%,rgba(6,182,212,.10),transparent 27%),
    radial-gradient(circle at 52% 80%,rgba(139,92,246,.08),transparent 30%),
    #000;
}

.impact-hero {
  padding: 78px 0 58px;
}

.impact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(320px,.92fr);
  gap: clamp(38px,6vw,78px);
  align-items: center;
}

.impact-hero h1 {
  max-width: 980px;
  font-size: clamp(2rem,3.45vw,3.25rem);
  line-height: 1.08;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.impact-hero-copy > p {
  max-width: 800px;
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(1rem,1.05vw,1.08rem);
  line-height: 1.75;
}

.impact-proof {
  display: inline-flex;
  margin-top: 24px;
  padding: 9px 14px;
  border: 1px solid rgba(116,216,255,.27);
  border-radius: 999px;
  color: #bdefff;
  background: rgba(6,182,212,.06);
  font-size: .8rem;
  font-weight: 750;
}

.impact-hero-panel {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(186,230,253,.26);
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 20%,rgba(6,182,212,.12),transparent 28%),
    linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.022));
  box-shadow: var(--shadow);
}

.impact-stat {
  min-height: 138px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
}

.impact-stat strong {
  display: block;
  color: #8ce7ff;
  font-size: 1.55rem;
  line-height: 1;
}

.impact-stat span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.45;
}

.impact-section {
  padding: clamp(76px,8.5vw,112px) 0;
}

.impact-section + .impact-section {
  border-top: 1px solid rgba(255,255,255,.055);
}

.impact-heading {
  max-width: 900px;
  margin-bottom: 42px;
}

.impact-heading h2 {
  font-size: clamp(1.9rem,3.6vw,3.4rem);
  line-height: 1.07;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.impact-heading p {
  max-width: 850px;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.78;
}

.impact-grid,
.impact-priority-grid,
.impact-beneficiary-grid,
.impact-measure-grid,
.impact-principle-grid,
.impact-current-grid,
.impact-roadmap-grid {
  display: grid;
  gap: 20px;
}

.impact-grid {
  grid-template-columns: repeat(2,minmax(0,1fr));
}

.impact-priority-grid,
.impact-beneficiary-grid,
.impact-measure-grid,
.impact-principle-grid,
.impact-current-grid,
.impact-roadmap-grid {
  grid-template-columns: repeat(3,minmax(0,1fr));
}

.impact-card,
.impact-priority-card,
.impact-beneficiary-card,
.impact-measure-card,
.impact-principle-card,
.impact-current-card,
.impact-roadmap-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.022));
  transition: transform .3s ease,border-color .3s ease,background .3s ease;
}

.impact-card:hover,
.impact-priority-card:hover,
.impact-beneficiary-card:hover,
.impact-measure-card:hover,
.impact-principle-card:hover,
.impact-current-card:hover,
.impact-roadmap-card:hover {
  transform: translateY(-6px);
  border-color: rgba(116,216,255,.48);
}

.impact-card h3,
.impact-priority-card h3,
.impact-beneficiary-card h3,
.impact-measure-card h3,
.impact-principle-card h3,
.impact-current-card h3,
.impact-roadmap-card h3 {
  margin-top: 16px;
  font-size: 1.24rem;
}

.impact-card p,
.impact-priority-card p,
.impact-beneficiary-card p,
.impact-measure-card p,
.impact-principle-card p,
.impact-current-card p,
.impact-roadmap-card p {
  margin-top: 11px;
  color: var(--muted);
}

.impact-phase {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(116,216,255,.24);
  border-radius: 999px;
  color: #9be8ff;
  background: rgba(6,182,212,.055);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.impact-table-hint {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
  padding: 11px 14px;
  border: 1px solid rgba(125,211,252,.42);
  border-radius: 13px;
  color: #f0f9ff;
  background: rgba(2,132,199,.16);
  font-size: .78rem;
  font-weight: 750;
}

.impact-table-wrap {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: auto;
  scrollbar-width: auto;
  scrollbar-color: #7dd3fc #14243a;
  border: 1px solid rgba(186,230,253,.34);
  border-radius: 22px;
  background: #101d31;
}

.impact-table-wrap::-webkit-scrollbar {
  height: 14px;
}

.impact-table-wrap::-webkit-scrollbar-track {
  background: #14243a;
}

.impact-table-wrap::-webkit-scrollbar-thumb {
  background: #7dd3fc;
  border: 3px solid #14243a;
  border-radius: 999px;
}

.impact-table {
  display: table;
  width: 1380px;
  min-width: 1380px;
  max-width: 1380px;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
}

.impact-table th,
.impact-table td {
  display: table-cell;
  padding: 20px 22px;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  line-height: 1.6;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.impact-table th {
  color: #f0f9ff;
  background: #214267;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.impact-table td {
  color: #e1ebf7;
  background: #142740;
  font-size: .96rem;
}

.impact-table tbody tr:nth-child(even) td {
  background: #19304e;
}

.impact-table td strong {
  color: #fff;
}

.impact-col-capability { width: 270px; }
.impact-col-benefit { width: 350px; }
.impact-col-outcome { width: 390px; }
.impact-col-evidence { width: 370px; }

.impact-final {
  padding: clamp(32px,5vw,58px);
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 18%,rgba(6,182,212,.17),transparent 30%),
    linear-gradient(135deg,rgba(37,99,235,.15),rgba(139,92,246,.09));
  box-shadow: var(--shadow);
}

.impact-final h2 {
  max-width: 920px;
  font-size: clamp(2rem,4vw,3.8rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.impact-final p {
  max-width: 860px;
  margin-top: 18px;
  color: var(--muted);
}

.impact-disclaimer {
  padding: 24px 0 46px;
  color: #8592a6;
  font-size: .8rem;
  line-height: 1.65;
}

@media(max-width:1050px) {
  .impact-hero-grid {
    grid-template-columns: 1fr;
  }

  .impact-priority-grid,
  .impact-beneficiary-grid,
  .impact-measure-grid,
  .impact-principle-grid,
  .impact-current-grid,
  .impact-roadmap-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

@media(max-width:760px) {
  .impact-grid,
  .impact-priority-grid,
  .impact-beneficiary-grid,
  .impact-measure-grid,
  .impact-principle-grid,
  .impact-current-grid,
  .impact-roadmap-grid,
  .impact-hero-panel {
    grid-template-columns: 1fr;
  }

  .impact-hero h1 {
    font-size: clamp(2rem,9.2vw,2.75rem);
  }

  .impact-table-hint {
    display: flex;
  }

  .impact-table {
    width: 1280px;
    min-width: 1280px;
    max-width: 1280px;
  }
}


/* ===========================================================
   Products Portal
   =========================================================== */

.products-portal-page {
  background:
    radial-gradient(circle at 8% 6%,rgba(37,99,235,.17),transparent 28%),
    radial-gradient(circle at 92% 18%,rgba(6,182,212,.10),transparent 27%),
    radial-gradient(circle at 52% 80%,rgba(139,92,246,.08),transparent 30%),
    #000;
}

.products-hero {
  padding: 78px 0 58px;
}

.products-hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(320px,.92fr);
  gap: clamp(38px,6vw,78px);
  align-items: center;
}

.products-hero h1 {
  max-width: 980px;
  font-size: clamp(2rem,3.45vw,3.25rem);
  line-height: 1.08;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.products-hero-copy > p {
  max-width: 800px;
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(1rem,1.05vw,1.08rem);
  line-height: 1.75;
}

.products-proof {
  display: inline-flex;
  margin-top: 24px;
  padding: 9px 14px;
  border: 1px solid rgba(116,216,255,.27);
  border-radius: 999px;
  color: #bdefff;
  background: rgba(6,182,212,.06);
  font-size: .8rem;
  font-weight: 750;
}

.products-hero-panel {
  display: grid;
  gap: 13px;
  padding: 24px;
  border: 1px solid rgba(186,230,253,.26);
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 20%,rgba(6,182,212,.12),transparent 28%),
    linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.022));
  box-shadow: var(--shadow);
}

.products-hero-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.025);
}

.products-hero-row strong {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  color: #9be9ff;
  background: rgba(37,99,235,.14);
}

.products-hero-row span {
  color: var(--muted);
  font-size: .86rem;
}

.products-section {
  padding: clamp(76px,8.5vw,112px) 0;
}

.products-section + .products-section {
  border-top: 1px solid rgba(255,255,255,.055);
}

.products-heading {
  max-width: 900px;
  margin-bottom: 42px;
}

.products-heading h2 {
  font-size: clamp(1.9rem,3.6vw,3.4rem);
  line-height: 1.07;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.products-heading p {
  max-width: 850px;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.78;
}

.products-ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 24px;
}

.products-ecosystem-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background:
    radial-gradient(circle at 88% 12%,rgba(6,182,212,.11),transparent 25%),
    linear-gradient(145deg,rgba(37,99,235,.12),rgba(255,255,255,.025));
}

.products-ecosystem-card h3 {
  margin-top: 18px;
  font-size: 1.55rem;
}

.products-ecosystem-card p {
  margin-top: 14px;
  color: var(--muted);
}

.products-status {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  padding: 9px 12px;
  border: 1px solid rgba(125,211,252,.28);
  border-radius: 999px;
  color: #dff7ff;
  background: rgba(2,132,199,.10);
  font-size: .76rem;
  font-weight: 750;
}

.products-grid,
.products-feature-grid,
.products-experience-grid,
.products-jcoin-grid,
.products-enterprise-capability-grid,
.products-architecture-grid,
.products-roadmap-grid {
  display: grid;
  gap: 20px;
}

.products-grid,
.products-experience-grid,
.products-jcoin-grid {
  grid-template-columns: repeat(2,minmax(0,1fr));
}

.products-feature-grid,
.products-enterprise-capability-grid,
.products-architecture-grid,
.products-roadmap-grid {
  grid-template-columns: repeat(3,minmax(0,1fr));
}

.products-card,
.products-feature-card,
.products-experience-card,
.products-jcoin-card,
.products-enterprise-capability-card,
.products-architecture-card,
.products-roadmap-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.022));
  transition: transform .3s ease,border-color .3s ease,background .3s ease;
}

.products-card:hover,
.products-feature-card:hover,
.products-experience-card:hover,
.products-jcoin-card:hover,
.products-enterprise-capability-card:hover,
.products-architecture-card:hover,
.products-roadmap-card:hover {
  transform: translateY(-6px);
  border-color: rgba(116,216,255,.48);
}

.products-card h3,
.products-feature-card h3,
.products-experience-card h3,
.products-jcoin-card h3,
.products-enterprise-capability-card h3,
.products-architecture-card h3,
.products-roadmap-card h3 {
  margin-top: 16px;
  font-size: 1.24rem;
}

.products-card p,
.products-feature-card p,
.products-experience-card p,
.products-jcoin-card p,
.products-enterprise-capability-card p,
.products-architecture-card p,
.products-roadmap-card p {
  margin-top: 11px;
  color: var(--muted);
}

.products-availability {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255,255,255,.03);
}

.products-availability h3 {
  font-size: 1.2rem;
}

.products-availability ul {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 12px 28px;
  margin-top: 20px;
  list-style: none;
}

.products-availability li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.products-availability li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7fe7ff;
  font-weight: 900;
}

.products-enterprise-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 24px;
}

.products-enterprise-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background:
    radial-gradient(circle at 88% 12%,rgba(139,92,246,.12),transparent 25%),
    linear-gradient(145deg,rgba(37,99,235,.10),rgba(255,255,255,.025));
}

.products-enterprise-card h3 {
  margin-top: 18px;
  font-size: 1.5rem;
}

.products-enterprise-card p {
  margin-top: 13px;
  color: var(--muted);
}

.products-enterprise-card ul {
  display: grid;
  gap: 9px;
  margin-top: 22px;
  list-style: none;
}

.products-enterprise-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.products-enterprise-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7fe7ff;
  font-weight: 900;
}

.products-table-hint {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
  padding: 11px 14px;
  border: 1px solid rgba(125,211,252,.42);
  border-radius: 13px;
  color: #f0f9ff;
  background: rgba(2,132,199,.16);
  font-size: .78rem;
  font-weight: 750;
}

.products-table-wrap {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: auto;
  scrollbar-width: auto;
  scrollbar-color: #7dd3fc #14243a;
  border: 1px solid rgba(186,230,253,.34);
  border-radius: 22px;
  background: #101d31;
}

.products-table-wrap::-webkit-scrollbar {
  height: 14px;
}

.products-table-wrap::-webkit-scrollbar-track {
  background: #14243a;
}

.products-table-wrap::-webkit-scrollbar-thumb {
  background: #7dd3fc;
  border: 3px solid #14243a;
  border-radius: 999px;
}

.products-table {
  display: table;
  width: 1380px;
  min-width: 1380px;
  max-width: 1380px;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
}

.products-table th,
.products-table td {
  display: table-cell;
  padding: 20px 22px;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  line-height: 1.6;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.products-table th {
  color: #f0f9ff;
  background: #214267;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.products-table td {
  color: #e1ebf7;
  background: #142740;
  font-size: .96rem;
}

.products-table tbody tr:nth-child(even) td {
  background: #19304e;
}

.products-table td strong {
  color: #fff;
}

.products-col-dimension { width: 260px; }
.products-col-consumer { width: 360px; }
.products-col-nomad { width: 380px; }
.products-col-grid { width: 380px; }

.products-phase {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(116,216,255,.24);
  border-radius: 999px;
  color: #9be8ff;
  background: rgba(6,182,212,.055);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.products-final {
  padding: clamp(32px,5vw,58px);
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 18%,rgba(6,182,212,.17),transparent 30%),
    linear-gradient(135deg,rgba(37,99,235,.15),rgba(139,92,246,.09));
  box-shadow: var(--shadow);
}

.products-final h2 {
  max-width: 920px;
  font-size: clamp(2rem,4vw,3.8rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.products-final p {
  max-width: 860px;
  margin-top: 18px;
  color: var(--muted);
}

.products-disclaimer {
  padding: 24px 0 46px;
  color: #8592a6;
  font-size: .8rem;
  line-height: 1.65;
}

@media(max-width:1050px) {
  .products-hero-grid {
    grid-template-columns: 1fr;
  }

  .products-feature-grid,
  .products-enterprise-capability-grid,
  .products-architecture-grid,
  .products-roadmap-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

@media(max-width:760px) {
  .products-ecosystem-grid,
  .products-grid,
  .products-feature-grid,
  .products-experience-grid,
  .products-jcoin-grid,
  .products-enterprise-grid,
  .products-enterprise-capability-grid,
  .products-architecture-grid,
  .products-roadmap-grid,
  .products-availability ul {
    grid-template-columns: 1fr;
  }

  .products-hero h1 {
    font-size: clamp(2rem,9.2vw,2.75rem);
  }

  .products-table-hint {
    display: flex;
  }

  .products-table {
    width: 1280px;
    min-width: 1280px;
    max-width: 1280px;
  }
}


/* ===========================================================
   J-SPARK Nexus Enterprise Portal
   =========================================================== */

.spark-nexus-portal-page {
  background:
    radial-gradient(circle at 8% 6%,rgba(37,99,235,.18),transparent 28%),
    radial-gradient(circle at 92% 18%,rgba(6,182,212,.11),transparent 27%),
    radial-gradient(circle at 52% 80%,rgba(139,92,246,.09),transparent 30%),
    #000;
}

.spark-nexus-hero {
  padding: 78px 0 58px;
}

.spark-nexus-hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(320px,.92fr);
  gap: clamp(38px,6vw,78px);
  align-items: center;
}

.spark-nexus-hero h1 {
  max-width: 980px;
  font-size: clamp(2rem,3.45vw,3.25rem);
  line-height: 1.08;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.spark-nexus-hero-copy > p {
  max-width: 800px;
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(1rem,1.05vw,1.08rem);
  line-height: 1.75;
}

.spark-nexus-proof {
  display: inline-flex;
  margin-top: 24px;
  padding: 9px 14px;
  border: 1px solid rgba(116,216,255,.27);
  border-radius: 999px;
  color: #bdefff;
  background: rgba(6,182,212,.06);
  font-size: .8rem;
  font-weight: 750;
}

.spark-nexus-hero-panel {
  display: grid;
  gap: 13px;
  padding: 24px;
  border: 1px solid rgba(186,230,253,.26);
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 20%,rgba(6,182,212,.13),transparent 28%),
    linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.022));
  box-shadow: var(--shadow);
}

.spark-nexus-hero-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.025);
}

.spark-nexus-hero-row strong {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  color: #9be9ff;
  background: rgba(37,99,235,.14);
}

.spark-nexus-hero-row span {
  color: var(--muted);
  font-size: .86rem;
}

.spark-nexus-section {
  padding: clamp(76px,8.5vw,112px) 0;
}

.spark-nexus-section + .spark-nexus-section {
  border-top: 1px solid rgba(255,255,255,.055);
}

.spark-nexus-heading {
  max-width: 900px;
  margin-bottom: 42px;
}

.spark-nexus-heading h2 {
  font-size: clamp(1.9rem,3.6vw,3.4rem);
  line-height: 1.07;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.spark-nexus-heading p {
  max-width: 850px;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.78;
}

.spark-nexus-image-frame {
  overflow: hidden;
  border: 1px solid rgba(186,230,253,.28);
  border-radius: 28px;
  background: rgba(255,255,255,.025);
  box-shadow: var(--shadow);
}

.spark-nexus-image-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.spark-nexus-intro-grid,
.spark-nexus-model-grid,
.spark-nexus-grid-connected,
.spark-nexus-education-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 26px;
  align-items: center;
}

.spark-nexus-grid,
.spark-nexus-services-grid,
.spark-nexus-security-grid,
.spark-nexus-docs-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 20px;
}

.spark-nexus-card,
.spark-nexus-service-card,
.spark-nexus-security-card,
.spark-nexus-doc-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.022));
  transition: transform .3s ease,border-color .3s ease,background .3s ease;
}

.spark-nexus-card:hover,
.spark-nexus-service-card:hover,
.spark-nexus-security-card:hover,
.spark-nexus-doc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(116,216,255,.48);
}

.spark-nexus-card h3,
.spark-nexus-service-card h3,
.spark-nexus-security-card h3,
.spark-nexus-doc-card h3 {
  margin-top: 16px;
  font-size: 1.22rem;
}

.spark-nexus-card p,
.spark-nexus-service-card p,
.spark-nexus-security-card p,
.spark-nexus-doc-card p {
  margin-top: 11px;
  color: var(--muted);
}

.spark-nexus-model-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 26px;
  background:
    radial-gradient(circle at 88% 12%,rgba(6,182,212,.10),transparent 25%),
    linear-gradient(145deg,rgba(37,99,235,.11),rgba(255,255,255,.025));
}

.spark-nexus-model-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.spark-nexus-model-content {
  padding: 30px;
}

.spark-nexus-model-content h3 {
  margin-top: 16px;
  font-size: 1.45rem;
}

.spark-nexus-model-content p {
  margin-top: 12px;
  color: var(--muted);
}

.spark-nexus-model-content ul,
.spark-nexus-sector-list {
  display: grid;
  gap: 9px;
  margin-top: 22px;
  list-style: none;
}

.spark-nexus-model-content li,
.spark-nexus-sector-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.spark-nexus-model-content li::before,
.spark-nexus-sector-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7fe7ff;
  font-weight: 900;
}

.spark-nexus-grid-connected .spark-nexus-image-frame img {
  aspect-ratio: 2/3;
  object-fit: cover;
}

.spark-nexus-feature-stack {
  display: grid;
  gap: 16px;
}

.spark-nexus-feature-stack article {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,.028);
}

.spark-nexus-feature-stack h3 {
  font-size: 1.05rem;
}

.spark-nexus-feature-stack p {
  margin-top: 8px;
  color: var(--muted);
}

.spark-nexus-architecture {
  display: grid;
  grid-template-columns: repeat(6,minmax(0,1fr));
  gap: 12px;
}

.spark-nexus-step {
  min-height: 240px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255,255,255,.028);
}

.spark-nexus-step-number {
  color: #83e5ff;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.spark-nexus-step h3 {
  margin-top: 30px;
  font-size: 1.04rem;
}

.spark-nexus-step p {
  margin-top: 10px;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.55;
}

.spark-nexus-sector-list {
  grid-template-columns: repeat(3,minmax(0,1fr));
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255,255,255,.03);
}

.spark-nexus-lifecycle {
  display: grid;
  grid-template-columns: repeat(7,minmax(0,1fr));
  gap: 12px;
}

.spark-nexus-lifecycle .spark-nexus-step {
  min-height: 225px;
}

.spark-nexus-doc-card a {
  display: inline-flex;
  margin-top: 18px;
  color: #9be8ff;
  font-weight: 750;
}

.spark-nexus-final {
  padding: clamp(32px,5vw,58px);
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 18%,rgba(6,182,212,.17),transparent 30%),
    linear-gradient(135deg,rgba(37,99,235,.15),rgba(139,92,246,.09));
  box-shadow: var(--shadow);
}

.spark-nexus-final h2 {
  max-width: 920px;
  font-size: clamp(2rem,4vw,3.8rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.spark-nexus-final p {
  max-width: 860px;
  margin-top: 18px;
  color: var(--muted);
}

.spark-nexus-disclaimer {
  padding: 24px 0 46px;
  color: #8592a6;
  font-size: .8rem;
  line-height: 1.65;
}

@media(max-width:1100px) {
  .spark-nexus-hero-grid,
  .spark-nexus-intro-grid,
  .spark-nexus-grid-connected,
  .spark-nexus-education-grid {
    grid-template-columns: 1fr;
  }

  .spark-nexus-architecture,
  .spark-nexus-lifecycle {
    grid-template-columns: repeat(3,minmax(0,1fr));
  }
}

@media(max-width:850px) {
  .spark-nexus-model-grid,
  .spark-nexus-grid,
  .spark-nexus-services-grid,
  .spark-nexus-security-grid,
  .spark-nexus-docs-grid,
  .spark-nexus-sector-list {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

@media(max-width:760px) {
  .spark-nexus-model-grid,
  .spark-nexus-grid,
  .spark-nexus-services-grid,
  .spark-nexus-security-grid,
  .spark-nexus-docs-grid,
  .spark-nexus-sector-list,
  .spark-nexus-architecture,
  .spark-nexus-lifecycle {
    grid-template-columns: 1fr;
  }

  .spark-nexus-hero h1 {
    font-size: clamp(2rem,9.2vw,2.75rem);
  }
}


/* J-SPARK Nexus unique enterprise route */
.products-ecosystem-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.products-ecosystem-link:focus-visible {
  outline: 3px solid #7dd3fc;
  outline-offset: 5px;
}
.products-ecosystem-action {
  display: inline-flex;
  margin-top: 18px;
  color: #9be8ff;
  font-weight: 800;
  font-size: .86rem;
}
.products-ecosystem-link:hover .products-ecosystem-action {
  color: #ffffff;
}

/* Roadmap Portal */
.roadmap-portal-page{background:radial-gradient(circle at 10% 8%,rgba(37,99,235,.18),transparent 28%),radial-gradient(circle at 90% 15%,rgba(139,92,246,.12),transparent 26%),radial-gradient(circle at 50% 75%,rgba(6,182,212,.08),transparent 30%),#000}.roadmap-hero{padding:78px 0 58px}.roadmap-hero-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(360px,1fr);gap:clamp(38px,6vw,80px);align-items:center}.roadmap-hero h1{max-width:930px;font-size:clamp(2rem,3.45vw,3.25rem);line-height:1.08;letter-spacing:-.04em;text-wrap:balance}.roadmap-hero-copy>p{max-width:760px;margin-top:16px;color:var(--muted);font-size:clamp(1rem,1.05vw,1.08rem);line-height:1.75}.roadmap-proof{display:inline-flex;margin-top:24px;padding:9px 14px;border:1px solid rgba(116,216,255,.27);border-radius:999px;color:#bdefff;background:rgba(6,182,212,.06);font-size:.8rem;font-weight:750}.roadmap-hero-image,.roadmap-support-image{overflow:hidden;border:1px solid rgba(186,230,253,.26);border-radius:28px;background:rgba(255,255,255,.025);box-shadow:var(--shadow)}.roadmap-hero-image img,.roadmap-support-image img{display:block;width:100%;height:auto}.roadmap-section{padding:clamp(76px,8.5vw,112px) 0}.roadmap-section+.roadmap-section{border-top:1px solid rgba(255,255,255,.055)}.roadmap-heading{max-width:900px;margin-bottom:42px}.roadmap-heading h2{font-size:clamp(1.9rem,3.6vw,3.4rem);line-height:1.07;letter-spacing:-.04em;text-wrap:balance}.roadmap-heading p{max-width:850px;margin-top:16px;color:var(--muted);line-height:1.78}.roadmap-principles-grid,.roadmap-themes-grid,.roadmap-priorities-grid,.roadmap-evidence-grid{display:grid;gap:20px}.roadmap-principles-grid,.roadmap-themes-grid,.roadmap-priorities-grid{grid-template-columns:repeat(4,minmax(0,1fr))}.roadmap-evidence-grid{grid-template-columns:repeat(6,minmax(0,1fr))}.roadmap-card,.roadmap-theme-card,.roadmap-priority-card,.roadmap-evidence-card{padding:26px;border:1px solid var(--border);border-radius:22px;background:linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.022));transition:transform .3s ease,border-color .3s ease}.roadmap-card:hover,.roadmap-theme-card:hover,.roadmap-priority-card:hover{transform:translateY(-6px);border-color:rgba(116,216,255,.48)}.roadmap-card h3,.roadmap-theme-card h3,.roadmap-priority-card h3{margin-top:16px;font-size:1.18rem}.roadmap-card p,.roadmap-theme-card p,.roadmap-priority-card p{margin-top:10px;color:var(--muted)}.roadmap-journey-visual{margin-bottom:34px}.roadmap-journey-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:16px}.roadmap-stage{min-height:430px;padding:24px;border:1px solid var(--border);border-radius:24px;background:radial-gradient(circle at 85% 12%,rgba(99,102,241,.10),transparent 24%),rgba(255,255,255,.028)}.roadmap-status{display:inline-flex;padding:6px 10px;border:1px solid rgba(125,211,252,.28);border-radius:999px;color:#aeeeff;background:rgba(2,132,199,.08);font-size:.68rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase}.roadmap-stage h3{margin-top:24px;font-size:1.3rem}.roadmap-stage>p{margin-top:10px;color:var(--muted)}.roadmap-stage ul{display:grid;gap:8px;margin-top:20px;list-style:none}.roadmap-stage li{position:relative;padding-left:20px;color:var(--muted);font-size:.88rem}.roadmap-stage li:before{content:'•';position:absolute;left:0;color:#7fe7ff}.roadmap-split,.roadmap-vision-grid{display:grid;grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);gap:34px;align-items:center}.roadmap-pipeline-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}.roadmap-pipeline-step{min-height:220px;padding:22px;border:1px solid var(--border);border-radius:20px;background:rgba(255,255,255,.028)}.roadmap-step-number{color:#83e5ff;font-size:.76rem;font-weight:850;letter-spacing:.12em}.roadmap-pipeline-step h3{margin-top:28px;font-size:1.08rem}.roadmap-pipeline-step p{margin-top:9px;color:var(--muted);font-size:.88rem}.roadmap-maturity-grid{display:grid;gap:18px}.roadmap-maturity-row{display:grid;grid-template-columns:210px 1fr 170px;gap:18px;align-items:center;padding:17px 0;border-bottom:1px solid rgba(255,255,255,.07)}.roadmap-maturity-label{font-weight:700}.roadmap-maturity-status{color:#aeeeff;font-size:.85rem;text-align:right}.roadmap-progress{height:10px;overflow:hidden;border-radius:999px;background:rgba(255,255,255,.08)}.roadmap-progress span{display:block;height:100%;border-radius:inherit;background:linear-gradient(90deg,#38bdf8,#8b5cf6)}.roadmap-evidence-card{text-align:center}.roadmap-evidence-card strong{display:block;color:#9be8ff;font-size:1.9rem}.roadmap-evidence-card span{display:block;margin-top:8px;color:var(--muted);font-size:.8rem}.roadmap-final{padding:clamp(32px,5vw,58px);border:1px solid var(--border);border-radius:30px;background:radial-gradient(circle at 88% 18%,rgba(6,182,212,.17),transparent 30%),linear-gradient(135deg,rgba(37,99,235,.15),rgba(139,92,246,.09));box-shadow:var(--shadow)}.roadmap-final h2{max-width:920px;font-size:clamp(2rem,4vw,3.8rem);line-height:1.05;letter-spacing:-.045em}.roadmap-final p{max-width:860px;margin-top:18px;color:var(--muted)}.roadmap-disclaimer{padding:24px 0 46px;color:#8592a6;font-size:.8rem;line-height:1.65}@media(max-width:1100px){.roadmap-hero-grid,.roadmap-split,.roadmap-vision-grid{grid-template-columns:1fr}.roadmap-journey-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.roadmap-principles-grid,.roadmap-themes-grid,.roadmap-priorities-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.roadmap-evidence-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media(max-width:760px){.roadmap-principles-grid,.roadmap-journey-grid,.roadmap-pipeline-grid,.roadmap-themes-grid,.roadmap-priorities-grid,.roadmap-evidence-grid{grid-template-columns:1fr}.roadmap-hero h1{font-size:clamp(2rem,9.2vw,2.75rem)}.roadmap-stage{min-height:auto}.roadmap-maturity-row{grid-template-columns:1fr;gap:10px}.roadmap-maturity-status{text-align:left}}


/* ===========================================================
   Roadmap clean-image titles and captions
   =========================================================== */

.roadmap-visual-block {
  margin: 0;
  min-width: 0;
}

.roadmap-image-heading {
  margin: 0 0 14px;
  color: #f5f9ff;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 750;
  letter-spacing: .01em;
}

.roadmap-image-frame {
  overflow: hidden;
  border: 1px solid rgba(186,230,253,.26);
  border-radius: 28px;
  background: rgba(255,255,255,.025);
  box-shadow: var(--shadow);
}

.roadmap-image-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.roadmap-image-caption {
  max-width: 760px;
  margin: 13px 2px 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.65;
}

.roadmap-journey-visual {
  margin-bottom: 34px;
}

@media(max-width:760px) {
  .roadmap-image-heading {
    margin-bottom: 10px;
    font-size: 1rem;
  }

  .roadmap-image-caption {
    font-size: .84rem;
  }
}


/* ===========================================================
   Funding Portal
   =========================================================== */

.funding-portal-page {
  background:
    radial-gradient(circle at 8% 6%,rgba(37,99,235,.18),transparent 28%),
    radial-gradient(circle at 92% 18%,rgba(139,92,246,.12),transparent 27%),
    radial-gradient(circle at 52% 80%,rgba(6,182,212,.08),transparent 30%),
    #000;
}

.funding-hero { padding: 78px 0 58px; }

.funding-hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(330px,.92fr);
  gap: clamp(38px,6vw,78px);
  align-items: center;
}

.funding-hero h1 {
  max-width: 980px;
  font-size: clamp(2rem,3.45vw,3.25rem);
  line-height: 1.08;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.funding-hero-copy > p {
  max-width: 800px;
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(1rem,1.05vw,1.08rem);
  line-height: 1.75;
}

.funding-proof {
  display: inline-flex;
  margin-top: 24px;
  padding: 9px 14px;
  border: 1px solid rgba(116,216,255,.27);
  border-radius: 999px;
  color: #bdefff;
  background: rgba(6,182,212,.06);
  font-size: .8rem;
  font-weight: 750;
}

.funding-hero-panel {
  display: grid;
  gap: 13px;
  padding: 24px;
  border: 1px solid rgba(186,230,253,.26);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 18%,rgba(139,92,246,.15),transparent 28%),
    linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.022));
  box-shadow: var(--shadow);
}

.funding-hero-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.025);
}

.funding-hero-row strong {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  color: #9be9ff;
  background: rgba(37,99,235,.14);
}

.funding-hero-row span { color: var(--muted); font-size: .86rem; }

.funding-section { padding: clamp(76px,8.5vw,112px) 0; }
.funding-section + .funding-section { border-top: 1px solid rgba(255,255,255,.055); }

.funding-heading { max-width: 900px; margin-bottom: 42px; }
.funding-heading h2 {
  font-size: clamp(1.9rem,3.6vw,3.4rem);
  line-height: 1.07;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.funding-heading p {
  max-width: 850px;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.78;
}

.funding-grid,
.funding-pathway-grid,
.funding-use-grid,
.funding-readiness-grid,
.funding-model-grid,
.funding-governance-grid,
.funding-process-grid,
.funding-evidence-grid {
  display: grid;
  gap: 20px;
}

.funding-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
.funding-pathway-grid,
.funding-readiness-grid,
.funding-model-grid,
.funding-governance-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
.funding-use-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
.funding-process-grid { grid-template-columns: repeat(7,minmax(0,1fr)); }
.funding-evidence-grid { grid-template-columns: repeat(6,minmax(0,1fr)); }

.funding-card,
.funding-pathway-card,
.funding-use-card,
.funding-readiness-card,
.funding-model-card,
.funding-governance-card,
.funding-process-card,
.funding-evidence-card {
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.022));
  transition: transform .3s ease,border-color .3s ease;
}

.funding-card:hover,
.funding-pathway-card:hover,
.funding-use-card:hover,
.funding-readiness-card:hover,
.funding-model-card:hover,
.funding-governance-card:hover {
  transform: translateY(-6px);
  border-color: rgba(116,216,255,.48);
}

.funding-card h3,
.funding-pathway-card h3,
.funding-use-card h3,
.funding-readiness-card h3,
.funding-model-card h3,
.funding-governance-card h3,
.funding-process-card h3 {
  margin-top: 16px;
  font-size: 1.18rem;
}

.funding-card p,
.funding-pathway-card p,
.funding-use-card p,
.funding-readiness-card p,
.funding-model-card p,
.funding-governance-card p,
.funding-process-card p {
  margin-top: 10px;
  color: var(--muted);
}

.funding-pathway-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
}

.funding-card-action {
  display: inline-flex;
  margin-top: auto;
  padding-top: 22px;
  color: #9be8ff;
  font-weight: 800;
  font-size: .85rem;
}

.funding-evidence-card { text-align: center; }
.funding-evidence-card strong {
  display: block;
  color: #9be8ff;
  font-size: 1.65rem;
  line-height: 1.1;
}
.funding-evidence-card span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: .8rem;
}

.funding-process-card {
  min-height: 250px;
  padding: 22px;
}

.funding-step-number {
  color: #83e5ff;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.funding-table-hint {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
  padding: 11px 14px;
  border: 1px solid rgba(125,211,252,.42);
  border-radius: 13px;
  color: #f0f9ff;
  background: rgba(2,132,199,.16);
  font-size: .78rem;
  font-weight: 750;
}

.funding-table-wrap {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: auto;
  scrollbar-width: auto;
  scrollbar-color: #7dd3fc #14243a;
  border: 1px solid rgba(186,230,253,.34);
  border-radius: 22px;
  background: #101d31;
}

.funding-table {
  display: table;
  width: 1280px;
  min-width: 1280px;
  max-width: 1280px;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
}

.funding-table th,
.funding-table td {
  padding: 20px 22px;
  line-height: 1.6;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.funding-table th {
  color: #f0f9ff;
  background: #214267;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.funding-table td { color: #e1ebf7; background: #142740; font-size: .96rem; }
.funding-table tbody tr:nth-child(even) td { background: #19304e; }
.funding-col-criterion { width: 270px; }
.funding-col-question { width: 470px; }
.funding-col-evidence { width: 540px; }

.funding-final {
  padding: clamp(32px,5vw,58px);
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 18%,rgba(139,92,246,.18),transparent 30%),
    linear-gradient(135deg,rgba(37,99,235,.15),rgba(6,182,212,.08));
  box-shadow: var(--shadow);
}

.funding-final h2 {
  max-width: 920px;
  font-size: clamp(2rem,4vw,3.8rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.funding-final p { max-width: 860px; margin-top: 18px; color: var(--muted); }

.funding-disclaimer {
  padding: 24px 0 46px;
  color: #8592a6;
  font-size: .8rem;
  line-height: 1.65;
}

@media(max-width:1150px) {
  .funding-hero-grid { grid-template-columns: 1fr; }
  .funding-use-grid,
  .funding-process-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .funding-evidence-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
}

@media(max-width:900px) {
  .funding-pathway-grid,
  .funding-readiness-grid,
  .funding-model-grid,
  .funding-governance-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media(max-width:760px) {
  .funding-grid,
  .funding-pathway-grid,
  .funding-use-grid,
  .funding-readiness-grid,
  .funding-model-grid,
  .funding-governance-grid,
  .funding-process-grid,
  .funding-evidence-grid { grid-template-columns: 1fr; }

  .funding-hero h1 { font-size: clamp(2rem,9.2vw,2.75rem); }
  .funding-table-hint { display: flex; }
  .funding-pathway-card,
  .funding-process-card { min-height: auto; }
}


/* ===========================================================
   Download Center Portal
   =========================================================== */

.download-center-page {
  background:
    radial-gradient(circle at 8% 6%,rgba(37,99,235,.18),transparent 28%),
    radial-gradient(circle at 92% 18%,rgba(6,182,212,.11),transparent 27%),
    radial-gradient(circle at 52% 80%,rgba(139,92,246,.08),transparent 30%),
    #000;
}

.download-hero { padding: 78px 0 58px; }

.download-hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(330px,.92fr);
  gap: clamp(38px,6vw,78px);
  align-items: center;
}

.download-hero h1 {
  max-width: 980px;
  font-size: clamp(2rem,3.45vw,3.25rem);
  line-height: 1.08;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.download-hero-copy > p {
  max-width: 800px;
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(1rem,1.05vw,1.08rem);
  line-height: 1.75;
}

.download-proof {
  display: inline-flex;
  margin-top: 24px;
  padding: 9px 14px;
  border: 1px solid rgba(116,216,255,.27);
  border-radius: 999px;
  color: #bdefff;
  background: rgba(6,182,212,.06);
  font-size: .8rem;
  font-weight: 750;
}

.download-hero-panel {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(186,230,253,.26);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 18%,rgba(6,182,212,.14),transparent 28%),
    linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.022));
  box-shadow: var(--shadow);
}

.download-stat {
  min-height: 132px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
}

.download-stat strong {
  display: block;
  color: #8ce7ff;
  font-size: 1.5rem;
}

.download-stat span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.45;
}

.download-section { padding: clamp(76px,8.5vw,112px) 0; }
.download-section + .download-section { border-top: 1px solid rgba(255,255,255,.055); }

.download-heading { max-width: 900px; margin-bottom: 42px; }

.download-heading h2 {
  font-size: clamp(1.9rem,3.6vw,3.4rem);
  line-height: 1.07;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.download-heading p {
  max-width: 850px;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.78;
}

.download-overview-grid,
.download-featured-grid,
.download-category-grid,
.download-resource-grid,
.download-request-grid,
.download-guidance-grid {
  display: grid;
  gap: 20px;
}

.download-overview-grid,
.download-guidance-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }

.download-featured-grid,
.download-category-grid,
.download-resource-grid,
.download-request-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }

.download-card,
.download-featured-card,
.download-category-card,
.download-resource-card,
.download-request-card,
.download-guidance-card {
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.022));
  transition: transform .3s ease,border-color .3s ease;
}

.download-card:hover,
.download-featured-card:hover,
.download-category-card:hover,
.download-resource-card:hover {
  transform: translateY(-6px);
  border-color: rgba(116,216,255,.48);
}

.download-featured-card,
.download-resource-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
}

.download-card h3,
.download-featured-card h3,
.download-category-card h3,
.download-resource-card h3,
.download-request-card h3,
.download-guidance-card h3 {
  margin-top: 16px;
  font-size: 1.18rem;
}

.download-card p,
.download-featured-card p,
.download-category-card p,
.download-resource-card p,
.download-request-card p,
.download-guidance-card p {
  margin-top: 10px;
  color: var(--muted);
}

.download-format,
.download-status {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border: 1px solid rgba(125,211,252,.26);
  border-radius: 999px;
  color: #bdefff;
  background: rgba(2,132,199,.07);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.download-status { margin-top: 17px; }

.download-action {
  display: inline-flex;
  margin-top: auto;
  padding-top: 22px;
  color: #9be8ff;
  font-weight: 800;
  font-size: .85rem;
}

.download-action::after {
  content: " →";
  margin-left: 4px;
}

.download-request-panel {
  padding: clamp(32px,5vw,54px);
  border: 1px solid rgba(186,230,253,.28);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 18%,rgba(139,92,246,.15),transparent 30%),
    linear-gradient(135deg,rgba(37,99,235,.12),rgba(255,255,255,.025));
}

.download-final {
  padding: clamp(32px,5vw,58px);
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 18%,rgba(6,182,212,.17),transparent 30%),
    linear-gradient(135deg,rgba(37,99,235,.15),rgba(139,92,246,.09));
  box-shadow: var(--shadow);
}

.download-final h2 {
  max-width: 920px;
  font-size: clamp(2rem,4vw,3.8rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.download-final p {
  max-width: 860px;
  margin-top: 18px;
  color: var(--muted);
}

.download-disclaimer {
  padding: 24px 0 46px;
  color: #8592a6;
  font-size: .8rem;
  line-height: 1.65;
}

@media(max-width:1100px) {
  .download-hero-grid { grid-template-columns: 1fr; }
  .download-overview-grid,
  .download-guidance-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .download-featured-grid,
  .download-category-grid,
  .download-resource-grid,
  .download-request-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media(max-width:760px) {
  .download-overview-grid,
  .download-featured-grid,
  .download-category-grid,
  .download-resource-grid,
  .download-request-grid,
  .download-guidance-grid,
  .download-hero-panel { grid-template-columns: 1fr; }

  .download-hero h1 { font-size: clamp(2rem,9.2vw,2.75rem); }
  .download-featured-card,
  .download-resource-card { min-height: auto; }
}


/* ===========================================================
   Contact & Collaboration Portal
   =========================================================== */

.contact-portal-page {
  background:
    radial-gradient(circle at 8% 6%,rgba(37,99,235,.18),transparent 28%),
    radial-gradient(circle at 92% 18%,rgba(6,182,212,.11),transparent 27%),
    radial-gradient(circle at 52% 80%,rgba(139,92,246,.08),transparent 30%),
    #000;
}

.contact-hero { padding: 78px 0 58px; }

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(330px,.92fr);
  gap: clamp(38px,6vw,78px);
  align-items: center;
}

.contact-hero h1 {
  max-width: 980px;
  font-size: clamp(2rem,3.45vw,3.25rem);
  line-height: 1.08;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.contact-hero-copy > p {
  max-width: 800px;
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(1rem,1.05vw,1.08rem);
  line-height: 1.75;
}

.contact-proof {
  display: inline-flex;
  margin-top: 24px;
  padding: 9px 14px;
  border: 1px solid rgba(116,216,255,.27);
  border-radius: 999px;
  color: #bdefff;
  background: rgba(6,182,212,.06);
  font-size: .8rem;
  font-weight: 750;
}

.contact-hero-panel {
  display: grid;
  gap: 13px;
  padding: 24px;
  border: 1px solid rgba(186,230,253,.26);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 18%,rgba(6,182,212,.14),transparent 28%),
    linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.022));
  box-shadow: var(--shadow);
}

.contact-hero-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.025);
}

.contact-hero-row strong {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  color: #9be9ff;
  background: rgba(37,99,235,.14);
}

.contact-hero-row span { color: var(--muted); font-size: .86rem; }

.contact-section { padding: clamp(76px,8.5vw,112px) 0; }
.contact-section + .contact-section { border-top: 1px solid rgba(255,255,255,.055); }

.contact-heading { max-width: 900px; margin-bottom: 42px; }

.contact-heading h2 {
  font-size: clamp(1.9rem,3.6vw,3.4rem);
  line-height: 1.07;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.contact-heading p {
  max-width: 850px;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.78;
}

.contact-path-grid,
.contact-direct-grid,
.contact-expect-grid,
.contact-guidance-grid {
  display: grid;
  gap: 20px;
}

.contact-path-grid,
.contact-direct-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }

.contact-expect-grid,
.contact-guidance-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }

.contact-path-card,
.contact-direct-card,
.contact-expect-card,
.contact-guidance-card {
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.022));
  transition: transform .3s ease,border-color .3s ease;
}

.contact-path-card,
.contact-direct-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.contact-path-card:hover,
.contact-direct-card:hover,
.contact-guidance-card:hover {
  transform: translateY(-6px);
  border-color: rgba(116,216,255,.48);
}

.contact-path-card h3,
.contact-direct-card h3,
.contact-expect-card h3,
.contact-guidance-card h3 {
  margin-top: 16px;
  font-size: 1.18rem;
}

.contact-path-card p,
.contact-direct-card p,
.contact-expect-card p,
.contact-guidance-card p {
  margin-top: 10px;
  color: var(--muted);
}

.contact-card-action {
  display: inline-flex;
  margin-top: auto;
  padding-top: 22px;
  color: #9be8ff;
  font-weight: 800;
  font-size: .85rem;
}

.contact-card-action::after { content: " →"; margin-left: 4px; }

.contact-form-shell {
  padding: clamp(28px,4.5vw,48px);
  border: 1px solid rgba(186,230,253,.28);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 10%,rgba(37,99,235,.13),transparent 27%),
    linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.022));
  box-shadow: var(--shadow);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 20px;
}

.contact-field { min-width: 0; }

.contact-field-full { grid-column: 1 / -1; }

.contact-field label {
  display: block;
  margin-bottom: 8px;
  color: #f3f8ff;
  font-size: .84rem;
  font-weight: 700;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(186,230,253,.22);
  border-radius: 14px;
  padding: 13px 14px;
  color: #f5f9ff;
  background: rgba(2,10,22,.72);
  font: inherit;
}

.contact-field textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: 3px solid rgba(56,189,248,.28);
  border-color: #7dd3fc;
}

.contact-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 20px;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.55;
}

.contact-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.contact-form-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
}

.contact-form-status {
  min-height: 24px;
  color: #bdefff;
  font-size: .88rem;
}

.contact-privacy-note {
  margin-top: 20px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  color: var(--muted);
  background: rgba(255,255,255,.025);
  font-size: .82rem;
  line-height: 1.6;
}

.contact-step-number {
  color: #83e5ff;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.contact-hq {
  padding: clamp(32px,5vw,54px);
  border: 1px solid rgba(186,230,253,.28);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 18%,rgba(139,92,246,.15),transparent 30%),
    linear-gradient(135deg,rgba(37,99,235,.12),rgba(255,255,255,.025));
}

.contact-hq-grid {
  display: grid;
  grid-template-columns: minmax(0,.75fr) minmax(0,1.25fr);
  gap: 32px;
  align-items: center;
}

.contact-hq-label {
  color: #9be8ff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-hq-location {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: clamp(1.4rem,3vw,2.4rem);
  font-weight: 750;
}

.contact-final {
  padding: clamp(32px,5vw,58px);
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 18%,rgba(6,182,212,.17),transparent 30%),
    linear-gradient(135deg,rgba(37,99,235,.15),rgba(139,92,246,.09));
  box-shadow: var(--shadow);
}

.contact-final h2 {
  max-width: 920px;
  font-size: clamp(2rem,4vw,3.8rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.contact-final p {
  max-width: 860px;
  margin-top: 18px;
  color: var(--muted);
}

.contact-disclaimer {
  padding: 24px 0 46px;
  color: #8592a6;
  font-size: .8rem;
  line-height: 1.65;
}

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

  .contact-path-grid,
  .contact-direct-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }

  .contact-expect-grid,
  .contact-guidance-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media(max-width:760px) {
  .contact-path-grid,
  .contact-direct-grid,
  .contact-expect-grid,
  .contact-guidance-grid,
  .contact-form-grid { grid-template-columns: 1fr; }

  .contact-field-full { grid-column: auto; }
  .contact-hero h1 { font-size: clamp(2rem,9.2vw,2.75rem); }

  .contact-path-card,
  .contact-direct-card { min-height: auto; }

  .contact-form-footer { align-items: stretch; }
  .contact-form-footer .btn { width: 100%; justify-content: center; }
}

.ip-portal-page{background:radial-gradient(circle at 8% 6%,rgba(37,99,235,.18),transparent 28%),radial-gradient(circle at 92% 18%,rgba(139,92,246,.12),transparent 27%),#000}
.ip-hero{padding:78px 0 58px}.ip-hero-grid{display:grid;grid-template-columns:minmax(0,1.08fr) minmax(330px,.92fr);gap:clamp(38px,6vw,78px);align-items:center}
.ip-hero h1{max-width:980px;font-size:clamp(2rem,3.45vw,3.25rem);line-height:1.08;letter-spacing:-.04em;text-wrap:balance}
.ip-hero-copy>p,.ip-heading p{margin-top:16px;color:var(--muted);line-height:1.75}.ip-proof{display:inline-flex;margin-top:24px;padding:9px 14px;border:1px solid rgba(116,216,255,.27);border-radius:999px;color:#bdefff;background:rgba(6,182,212,.06);font-size:.8rem;font-weight:750}
.ip-hero-panel{display:grid;gap:13px;padding:24px;border:1px solid rgba(186,230,253,.26);border-radius:28px;background:linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.022));box-shadow:var(--shadow)}
.ip-hero-row{display:flex;align-items:center;gap:14px;padding:15px;border:1px solid rgba(255,255,255,.08);border-radius:16px;background:rgba(255,255,255,.025)}.ip-hero-row strong{display:grid;width:42px;height:42px;place-items:center;border-radius:12px;color:#9be9ff;background:rgba(37,99,235,.14)}.ip-hero-row span{color:var(--muted);font-size:.86rem}
.ip-section{padding:clamp(76px,8.5vw,112px) 0}.ip-section+.ip-section{border-top:1px solid rgba(255,255,255,.055)}.ip-heading{max-width:920px;margin-bottom:42px}.ip-heading h2{font-size:clamp(1.9rem,3.6vw,3.4rem);line-height:1.07;letter-spacing:-.04em;text-wrap:balance}
.ip-grid,.ip-grid3,.ip-grid4,.ip-grid7{display:grid;gap:20px}.ip-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.ip-grid3{grid-template-columns:repeat(3,minmax(0,1fr))}.ip-grid4{grid-template-columns:repeat(4,minmax(0,1fr))}.ip-grid7{grid-template-columns:repeat(7,minmax(0,1fr))}
.ip-card{padding:27px;border:1px solid var(--border);border-radius:22px;background:linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.022));transition:.3s}.ip-card:hover{transform:translateY(-6px);border-color:rgba(116,216,255,.48)}.ip-card h3{margin-top:16px;font-size:1.18rem}.ip-card p{margin-top:10px;color:var(--muted)}.ip-step{min-height:250px;padding:22px}.ip-step-number{color:#83e5ff;font-size:.76rem;font-weight:850;letter-spacing:.12em}
.ip-note{padding:22px 24px;border:1px solid rgba(125,211,252,.24);border-radius:18px;color:#d9e9f7;background:rgba(2,132,199,.07);line-height:1.7}
.ip-table-hint{display:none;margin-bottom:12px;padding:11px 14px;border:1px solid rgba(125,211,252,.42);border-radius:13px;color:#f0f9ff;background:rgba(2,132,199,.16);font-size:.78rem;font-weight:750}
.ip-table-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch;border:1px solid rgba(186,230,253,.34);border-radius:22px;background:#101d31}.ip-table{width:1320px;min-width:1320px;table-layout:fixed;border-collapse:separate;border-spacing:0}.ip-table th,.ip-table td{padding:20px 22px;line-height:1.6;text-align:left;vertical-align:top;border-bottom:1px solid rgba(255,255,255,.08)}.ip-table th{color:#f0f9ff;background:#214267;font-size:.82rem;text-transform:uppercase}.ip-table td{color:#e1ebf7;background:#142740}.ip-table tbody tr:nth-child(even) td{background:#19304e}
.ip-confidential-panel,.ip-final{padding:clamp(32px,5vw,58px);border:1px solid var(--border);border-radius:30px;background:linear-gradient(135deg,rgba(37,99,235,.15),rgba(139,92,246,.09));box-shadow:var(--shadow)}.ip-final h2{font-size:clamp(2rem,4vw,3.8rem);line-height:1.05;letter-spacing:-.045em}.ip-final p{max-width:860px;margin-top:18px;color:var(--muted)}.ip-disclaimer{padding:24px 0 46px;color:#8592a6;font-size:.8rem;line-height:1.65}
@media(max-width:1150px){.ip-hero-grid{grid-template-columns:1fr}.ip-grid4,.ip-grid7{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:900px){.ip-grid3{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:760px){.ip-grid,.ip-grid3,.ip-grid4,.ip-grid7{grid-template-columns:1fr}.ip-hero h1{font-size:clamp(2rem,9.2vw,2.75rem)}.ip-table-hint{display:block}.ip-step{min-height:auto}}

/* Innovation Protection Portal V2 — build 2026-07-17, asset v46 */
.innovation-protection-page .ip-hero{position:relative;overflow:hidden;background:radial-gradient(circle at 78% 24%,rgba(81,118,255,.18),transparent 35%),radial-gradient(circle at 15% 75%,rgba(68,211,178,.10),transparent 28%),#05070b}
.innovation-protection-page .ip-hero:after{content:"";position:absolute;inset:0;pointer-events:none;background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);background-size:48px 48px;mask-image:linear-gradient(to bottom,black,transparent)}
.innovation-protection-page .ip-hero-grid{position:relative;z-index:1}
.innovation-protection-page .ip-hero h1{max-width:900px;font-size:clamp(2.75rem,6vw,5.8rem);line-height:.97;letter-spacing:-.065em}
.innovation-protection-page .ip-hero-copy>p{max-width:800px;font-size:clamp(1.05rem,1.7vw,1.28rem)}
.innovation-protection-page .ip-accent-section{background:linear-gradient(180deg,rgba(255,255,255,.018),rgba(81,118,255,.035),rgba(255,255,255,.01));border-block:1px solid rgba(255,255,255,.06)}
.innovation-protection-page .ip-card{position:relative;overflow:hidden;transition:transform .28s ease,border-color .28s ease,background .28s ease}
.innovation-protection-page .ip-card:before{content:"";position:absolute;left:0;top:0;width:100%;height:2px;background:linear-gradient(90deg,rgba(83,128,255,.9),rgba(69,220,179,.75),transparent);opacity:.75}
.innovation-protection-page .ip-card:hover{transform:translateY(-4px);border-color:rgba(111,146,255,.35);background:rgba(255,255,255,.045)}
.innovation-protection-page .ip-table-four{min-width:1180px}
.innovation-protection-page .ip-lifecycle{display:grid;gap:14px;margin-top:34px}
.innovation-protection-page .ip-step{display:grid;grid-template-columns:72px 1fr;gap:20px;align-items:start;padding:24px;border:1px solid rgba(255,255,255,.09);border-radius:18px;background:rgba(255,255,255,.025)}
.innovation-protection-page .ip-step>span{display:grid;place-items:center;width:54px;height:54px;border-radius:16px;background:linear-gradient(135deg,rgba(81,118,255,.25),rgba(68,211,178,.12));border:1px solid rgba(122,151,255,.25);font-weight:800;letter-spacing:.08em}
.innovation-protection-page .ip-step h3{margin:2px 0 8px;font-size:1.12rem}.innovation-protection-page .ip-step p{margin:0;color:var(--muted,#a7adba)}
.innovation-protection-page .ip-disclaimer{padding-top:16px;padding-bottom:28px;font-size:.78rem;line-height:1.55;color:rgba(255,255,255,.48)}
@media(min-width:900px){.innovation-protection-page .ip-lifecycle{grid-template-columns:repeat(2,minmax(0,1fr))}.innovation-protection-page .ip-step:last-child{grid-column:1/-1}}
@media(max-width:700px){.innovation-protection-page .ip-hero h1{font-size:clamp(2.4rem,13vw,3.7rem)}.innovation-protection-page .ip-step{grid-template-columns:58px 1fr;padding:19px;gap:14px}.innovation-protection-page .ip-step>span{width:48px;height:48px}.innovation-protection-page .ip-table-hint{display:block}}

/* ===========================================================
   HEADER LANGUAGE PICKER — DOM POSITIONED BY language-sync.js
   Picker is inserted immediately before the hamburger.
   =========================================================== */
.iamj-header-language-picker {
  flex: 0 0 auto;
  min-width: 0;
}

.iamj-header-language-select {
  width: auto;
  max-width: 150px;
}

@media (max-width: 1080px) {
  .header-inner {
    gap: 10px;
  }

  .brand-lockup {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
  }

  .brand-copy {
    min-width: 0;
  }

  .iamj-header-language-picker {
    margin-left: auto;
    max-width: 76px;
  }

  .iamj-header-language-select {
    display: block;
    width: 76px;
    min-width: 0;
    max-width: 76px;
    height: 40px;
    padding: 0 20px 0 7px;
    font-size: .68rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }

  .menu-toggle {
    flex: 0 0 46px;
    margin-left: 0;
  }
}

@media (max-width: 680px) {
  .header-inner {
    width: 94%;
    gap: 7px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

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

  .brand-copy small {
    max-width: 100%;
    font-size: .58rem;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .iamj-header-language-picker,
  .iamj-header-language-select {
    width: 60px;
    max-width: 60px;
  }

  .iamj-header-language-select {
    padding-right: 17px;
    font-size: .61rem;
  }

  .menu-toggle {
    flex-basis: 42px;
    width: 42px;
    min-width: 42px;
    height: 42px;
    padding: 9px;
  }
}



/* Header control interaction safeguards — v48 */
.iamj-header-language-picker {
  position: relative;
  z-index: 1002;
  pointer-events: auto;
}
.iamj-header-language-select {
  position: relative;
  z-index: 1;
  pointer-events: auto;
  touch-action: manipulation;
}
.site-header .menu-toggle {
  position: relative;
  z-index: 1003;
  pointer-events: auto;
  touch-action: manipulation;
}


/* ===========================================================
   GLOBAL HEADER BRAND NORMALIZATION
   Ensures index.html and every submenu use identical logo text sizing.
   Long localized text is truncated instead of pushing header controls.
   =========================================================== */
.site-header .brand-lockup {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  overflow: hidden !important;
}

.site-header .brand-copy {
  display: flex !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  overflow: hidden !important;
  flex-direction: column !important;
  line-height: 1.15 !important;
}

.site-header .brand-copy strong {
  display: block !important;
  margin: 0 !important;
  max-width: 100% !important;
  font-size: 1.45rem !important;
  font-weight: 700 !important;
  line-height: 1.08 !important;
  letter-spacing: -.02em !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.site-header .brand-copy small {
  display: block !important;
  margin: 5px 0 0 !important;
  max-width: 100% !important;
  color: var(--muted) !important;
  font-size: .78rem !important;
  font-weight: 400 !important;
  line-height: 1.15 !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

@media (max-width: 1080px) {
  .site-header .brand-copy strong {
    font-size: 1.05rem !important;
  }

  .site-header .brand-copy small {
    font-size: .62rem !important;
  }
}

@media (max-width: 680px) {
  .site-header .brand-copy strong {
    font-size: .96rem !important;
  }

  .site-header .brand-copy small {
    font-size: .58rem !important;
    white-space: nowrap !important;
    overflow-wrap: normal !important;
  }
}

@media (max-width: 420px) {
  .site-header .brand-copy strong {
    font-size: .9rem !important;
  }

  .site-header .brand-copy small {
    display: none !important;
  }
}
