/* ═══════════════════════════════════════════════════════════════
   AViSEC — Global Styles
   ═══════════════════════════════════════════════════════════════ */

/* Skip link — a11y */
.skip-link {
  position: absolute; top: -40px; left: 8px;
  background: var(--accent); color: #fff;
  padding: 10px 16px; border-radius: 6px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.85rem;
  z-index: 1000; transition: top 0.2s;
}
.skip-link:focus { top: 8px; outline: 2px solid #fff; outline-offset: 2px; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .gsap-fade { opacity: 1 !important; transform: none !important; }
}

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

:root {
  /* Brand */
  --bg:        #0d1730;
  --surface:   #142142;
  --nav:       #182751;
  --accent:    #079AED;
  --accent-2:  #00A3F3;
  --grid:      #1c2d5c;
  --dim:       #1e3066;

  /* Pillars — 90°-spaced hues for clear separation */
  --cloud:  #3DA5FF;  /* sky / azure */
  --ai:     #D45CFF;  /* magenta-violet */
  --crypto: #2ECF8A;  /* emerald */
  --pqc:    #FF8A3D;  /* warm orange */

  /* Type */
  --text:      #e6effc;
  --text-dim:  #a5b8d8;
  --text-mute: #6f88b0;
  --hairline:  #233562;

  /* Layout */
  --max:       1280px;
  --nav-h:     72px;

  /* Type scale (responsive, anchored to 16/9) */
  --fs-h1:     clamp(2.2rem, 4.6vw, 4.4rem);
  --fs-h2:     clamp(1.8rem, 3.2vw, 3rem);
  --fs-h3:     clamp(1.1rem, 1.4vw, 1.4rem);
  --fs-body:   clamp(0.95rem, 1vw, 1.05rem);
  --fs-mono:   clamp(0.7rem, 0.78vw, 0.82rem);
}

html { scroll-behavior: auto; }
/* Global Inter enforcement — defeats any third-party (Zoho) injected font-family */
*, *::before, *::after { font-family: 'Inter', system-ui, sans-serif !important; }

body {
  background: var(--bg);
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .brand { font-family: 'Inter', system-ui, sans-serif; letter-spacing: -0.02em; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: rgba(7,154,237,0.35); color: #fff; }

/* Global focus state */
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(7,154,237,0.15) !important;
}

/* ─── Nav ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(17, 30, 48, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
  z-index: 100;
  display: flex; align-items: center;
}
.nav-inner {
  width: 100%; max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  display: flex; align-items: center;
  color: #fff;
}
.brand .i-dot { color: var(--accent); }
.brand-logo {
  width: 130px;
  height: 48px;
  aspect-ratio: 130 / 48;
  display: block;
}
.footer-brand { display: inline-flex; }
.footer-logo {
  width: 144px;
  height: 53px;
  aspect-ratio: 144 / 53;
  display: block;
  margin-bottom: 14px;
}
.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 16px;
  color: var(--text-dim);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-link { opacity: 0.78; transition: opacity 0.18s ease; }
.nav-link:hover { color: var(--text-dim); opacity: 1; }
.nav-link.active { color: var(--accent); opacity: 1; }
.nav-link.active::after {
  content: ''; position: absolute;
  bottom: 4px; left: 16px; right: 16px; height: 1px;
  background: var(--accent);
}
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 6px;
  border: 1px solid var(--accent);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.nav-cta:hover { background: transparent; color: var(--accent) !important; transform: translateY(-1px); }
.nav-cta::after { display: none; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { width: 22px; height: 2px; background: var(--text); transition: 0.2s; }

/* ─── Page sections ─── */
main { position: relative; }
html { scroll-behavior: smooth; }
.section {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  padding: 80px 32px;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.section.hero-section { min-height: 100vh; height: 100vh; padding-top: var(--nav-h); padding-bottom: 0; box-sizing: border-box; }
.section[data-section="about-hero"] {
  min-height: 100vh;
  height: 100vh;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 40px;
}
.section[data-section="contact-hero"] {
  min-height: 100vh;
  height: 100vh;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 80px;
  justify-content: center;
}
.section[data-section="home-pillars"],
.section[data-section="home-intro"],
.section[data-section="home-cta"] {
  height: auto;
  min-height: 0;
}
.container { width: 100%; max-width: var(--max); margin: 0 auto; position: relative; z-index: 2; }

.page { display: none; }
.page.active { display: block; }

/* ─── Backgrounds ─── */
.bg-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(var(--grid) 1.5px, transparent 1.5px),
    linear-gradient(90deg, var(--grid) 1.5px, transparent 1.5px);
  background-size: 56px 56px;
  opacity: 0.9;
  mask-image:
    radial-gradient(ellipse at center, black 50%, transparent 95%),
    linear-gradient(to bottom, black 0%, black 45%, rgba(0,0,0,0.25) 85%, transparent 100%);
  -webkit-mask-image:
    radial-gradient(ellipse at center, black 50%, transparent 95%),
    linear-gradient(to bottom, black 0%, black 45%, rgba(0,0,0,0.25) 85%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
}
.bg-dots {
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(circle, #2c4280 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.35;
}
.bg-glow {
  position: absolute; z-index: 0; pointer-events: none;
  width: 540px; height: 540px; border-radius: 50%;
  background: radial-gradient(circle, rgba(7,154,237,0.10) 0%, transparent 70%);
}

/* Hero animated background — aurora mesh + network canvas */
.bg-aurora {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 50% at 80% 20%, rgba(7,154,237,0.06), transparent 70%),
    radial-gradient(70% 60% at 20% 80%, rgba(11,20,40,0.9), transparent 60%),
    linear-gradient(135deg, #060c1e 0%, #0b1428 100%);
  background-size: 200% 200%, 200% 200%, 200% 200%;
  animation: aurora-shift 24s ease-in-out infinite;
  pointer-events: none;
}
@keyframes aurora-shift {
  0%   { background-position: 0% 0%, 100% 100%, 0% 50%; }
  50%  { background-position: 100% 50%, 0% 50%, 100% 50%; }
  100% { background-position: 0% 0%, 100% 100%, 0% 50%; }
}
.bg-network {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%;
  pointer-events: none;
}
.hero-section .bg-grid {
  opacity: 0.7;
}

/* ─── Typewriter (contact hero) ─── */
#contactTypewriter { display: inline-block; }
#contactTypewriter .tw-text { white-space: pre-wrap; }
#contactTypewriter .tw-cursor {
  display: inline-block;
  margin-left: 2px;
  color: var(--accent);
  font-weight: 300;
  animation: tw-blink 0.85s steps(2, end) infinite;
  transform: translateY(-0.04em);
}
#contactTypewriter.tw-done .tw-cursor { display: none; }
@keyframes tw-blink {
  0%, 50%   { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}

/* ─── Hero ─── */
.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-mono);
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: ''; width: 32px; height: 1px; background: var(--accent);
}
.hero h1 {
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #f3f7ff;
  max-width: 18ch;
  text-wrap: balance;
}
.hero h1 .accent { color: var(--accent); }
.hero-sub {
  margin-top: 28px;
  font-size: var(--fs-body);
  color: var(--text-dim);
  max-width: 60ch;
  line-height: 1.6;
}
.hero-ctas { margin-top: 44px; display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 6px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent); color: #fff;
  border: 1px solid var(--accent);
}
.btn-primary:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(7,154,237,0.5);
}
.btn-secondary {
  background: transparent; color: var(--text);
  border: 1px solid var(--hairline);
}
.btn-secondary:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-arrow { transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

.hero-meta {
  position: absolute;
  bottom: 32px; left: 32px; right: 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: var(--text-mute);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}
.hero-meta .pulse {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--crypto); margin-right: 8px;
  box-shadow: 0 0 0 0 rgba(46,207,138,0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(46,207,138,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(46,207,138,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,207,138,0); }
}

/* ─── Section eyebrow ─── */
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-mono);
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--accent);
}
.section-title {
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #f3f7ff;
  max-width: 22ch;
  margin-bottom: 24px;
}
.section-title .accent { color: var(--accent); }
.section-lead {
  font-size: var(--fs-body);
  color: var(--text-dim);
  max-width: 65ch;
  line-height: 1.7;
}

/* ─── Pillar cards ─── */.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  align-items: stretch;
}
.pillar {
  background: var(--surface);
  border-radius: 14px;
  padding: 32px 22px 26px;
  display: flex; flex-direction: column;
  position: relative;
  border: 1px solid var(--hairline);
  transition: border-color 0.3s, transform 0.3s;
  overflow: hidden;
  height: 100%;
  min-height: 0;
  text-align: center;
}
.pillar::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
}
.pillar:hover { transform: translateY(-6px); border-color: #1a2d5a; }
.p-cloud::before  { background: var(--cloud); }
.p-ai::before     { background: var(--ai); }
.p-crypto::before { background: var(--crypto); }
.p-pqc::before    { background: var(--pqc); }

.badge {
  position: absolute; top: 14px; right: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem; letter-spacing: 0.12em;
  padding: 4px 9px; border-radius: 20px; text-transform: uppercase;
}
.badge-merged { background: rgba(46,207,138,0.1); color: var(--crypto); border: 1px solid rgba(46,207,138,0.25); }
.badge-new    { background: rgba(255,138,61,0.12); color: var(--pqc); border: 1px solid rgba(255,138,61,0.3); }

.icon-area { width: 100%; height: 110px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }

.pillar h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.pillar .sub-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.08em;
  color: var(--text-mute); margin-bottom: 16px; text-transform: uppercase;
}
.p-cloud  h3 { color: var(--cloud); }
.p-ai     h3 { color: var(--ai); }
.p-crypto h3 { color: var(--crypto); }
.p-pqc    h3 { color: var(--pqc); }

.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; justify-content: center; }
.tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem; padding: 3px 8px;
  border-radius: 4px; letter-spacing: 0.06em;
}
.tc { background: rgba(46,207,138,0.10); color: #5fdfa3; border: 1px solid rgba(46,207,138,0.25); }
.tp { background: rgba(255,138,61,0.10); color: #ffb380; border: 1px solid rgba(255,138,61,0.25); }
.tb { background: rgba(61,165,255,0.10); color: #88c4ff; border: 1px solid rgba(61,165,255,0.25); }
.ta { background: rgba(212,92,255,0.10); color: #e3a8ff; border: 1px solid rgba(212,92,255,0.25); }

.pillar-desc {
  font-size: 0.82rem; line-height: 1.6;
  color: var(--text-dim);
  border-top: 1px solid var(--hairline);
  padding-top: 16px; margin-top: auto;
  word-break: break-word;
}

/* ─── Section divider ─── */
.section-divider {
  background: #060c1e;
  padding: 32px 0;
}
.section-divider .sd-row {
  display: flex;
  align-items: center;
  gap: 18px;
}
.section-divider .sd-line {
  flex: 1;
  height: 1px;
  background: rgba(7,154,237,0.15);
  transform-origin: center;
  transform: scaleX(0);
  display: block;
}
.section-divider .sd-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(7,154,237,0.5);
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
}

/* connector */
.connector {
  width: 100%;
  display: flex; align-items: center;
  margin-top: 28px;
  position: relative; height: 12px;
}
.connector::before {
  content: ''; position: absolute; left: 0; right: 0; top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(61,165,255,0.5), rgba(212,92,255,0.5), rgba(46,207,138,0.5), rgba(255,138,61,0.5));
}
.cn { flex: 1; display: flex; justify-content: center; }
.cn span { width: 10px; height: 10px; border-radius: 50%; display: block; box-shadow: 0 0 12px currentColor; }

/* strip */
.strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-top: 28px;
}
.strip-item {
  background: rgba(7,16,30,0.6);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 16px 18px;
}
.strip-item .st { font-size: 0.85rem; font-weight: 700; margin-bottom: 4px; }
.strip-item .sd {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem; color: var(--text-mute); line-height: 1.5;
}
.sc .st { color: var(--cloud); }
.sa .st { color: var(--ai); }
.sk .st { color: var(--crypto); }
.sp .st { color: var(--pqc); }

/* ─── Stats ─── */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 48px;
}
.stat {
  border-left: 2px solid var(--accent);
  padding: 8px 0 8px 24px;
}
.stat .num {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.stat .lbl {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.5;
}

/* ─── Intro / CTA blocks ─── */
.intro-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.intro-block .lead-large {
  font-size: clamp(1.25rem, 1.7vw, 1.7rem);
  font-weight: 500;
  line-height: 1.4;
  color: #ddeeff;
  letter-spacing: -0.01em;
}

.cta-band {
  background: linear-gradient(135deg, rgba(7,154,237,0.08), rgba(7,154,237,0.02));
  border: 1px solid rgba(7,154,237,0.25);
  border-radius: 18px;
  padding: 56px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 30%, rgba(7,154,237,0.15), transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(46,207,138,0.10), transparent 50%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(1.6rem, 2.6vw, 2.4rem); font-weight: 700; margin-bottom: 16px; color: #fff; letter-spacing: -0.02em; }
.cta-band p { color: var(--text-dim); margin-bottom: 28px; max-width: 50ch; margin-left: auto; margin-right: auto; }

/* ─── Service detail blocks ─── */
.service-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
  padding: 80px 0;
  border-top: 1px solid var(--hairline);
}
.service-detail.reverse .sd-text { order: 2; }
.service-detail .sd-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.service-detail h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 700; line-height: 1.2;
  margin-bottom: 20px; letter-spacing: -0.02em;
  color: #fff;
}
.service-detail p { color: var(--text-dim); font-size: var(--fs-body); margin-bottom: 24px; line-height: 1.7; }
.service-detail ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.service-detail li {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem; color: var(--text);
  padding-left: 24px; position: relative; line-height: 1.6;
}
.service-detail li::before {
  content: '▸'; position: absolute; left: 0;
  color: currentColor; opacity: 0.7;
}
.sd-cloud { color: var(--cloud); }
.sd-ai { color: var(--ai); }
.sd-crypto { color: var(--crypto); }
.sd-pqc { color: var(--pqc); }
.sd-cloud .sd-eyebrow, .sd-cloud li { color: var(--cloud); }
.sd-ai .sd-eyebrow, .sd-ai li { color: var(--ai); }
.sd-crypto .sd-eyebrow, .sd-crypto li { color: var(--crypto); }
.sd-pqc .sd-eyebrow, .sd-pqc li { color: var(--pqc); }
.service-detail li span { color: var(--text-dim); }

.image-placeholder {
  aspect-ratio: 4/3;
  border-radius: 14px;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 18px, rgba(7,154,237,0.04) 18px, rgba(7,154,237,0.04) 36px),
    var(--surface);
  border: 1px solid var(--hairline);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--text-mute);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
}
.image-placeholder::before {
  content: '';
  position: absolute; inset: 14px;
  border: 1px dashed var(--hairline);
  border-radius: 8px;
}
.image-placeholder span { position: relative; }
.image-placeholder .ip-label { font-weight: 700; color: var(--text-dim); margin-bottom: 6px; }

/* ─── About placeholder ─── */
.about-placeholder {
  border: 2px dashed var(--accent);
  border-radius: 18px;
  padding: 80px 40px;
  text-align: center;
  background: rgba(7,154,237,0.03);
  margin-top: 48px;
}
.about-placeholder .label {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem; letter-spacing: 0.18em;
  color: var(--accent); text-transform: uppercase;
  margin-bottom: 18px;
}
.about-placeholder h3 { font-size: 1.6rem; color: #fff; margin-bottom: 16px; }
.about-placeholder p { color: var(--text-dim); max-width: 50ch; margin: 0 auto; }

.about-block {
  border: 1px solid rgba(7,154,237,0.25);
  border-radius: 18px;
  padding: 56px 48px;
  background: rgba(7,154,237,0.03);
  margin-top: 48px;
}
.about-block h3 { font-size: 1.6rem; color: #fff; margin-bottom: 16px; }
.about-block p { color: var(--text-dim); max-width: 72ch; margin: 0 0 18px; }
.about-block p:last-child { margin-bottom: 0; }
.about-block .about-tagline { color: var(--accent); font-style: italic; }
@media (max-width: 640px) { .about-block { padding: 40px 24px; } }

.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 32px;
}
.about-stats .stat { border-color: var(--accent); }

/* ─── Contact ─── */
.contact-grid {
  display: grid; grid-template-columns: 45% 55%; gap: 64px;
  margin-top: 48px;
  align-items: start;
}
.contact-single {
  max-width: 640px;
  margin: 0 auto;
}
.contact-header {
  max-width: 640px;
  margin: 48px auto 32px;
  text-align: center;
}
.contact-header .contact-info-eyebrow {
  justify-content: center;
  display: inline-flex;
}
.contact-header .contact-info-heading {
  margin: 0;
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info-header { margin-bottom: 4px; }
.contact-info-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px 0;
}
.contact-info-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 18px 0;
}
.contact-info-sub {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 38ch;
  margin: 0;
}
.contact-item .label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.18em;
  color: var(--accent); text-transform: uppercase;
  margin-bottom: 8px;
}
.contact-item .value {
  font-size: 1.15rem; color: #fff; font-weight: 500;
  line-height: 1.4;
}
.contact-item a:hover { color: var(--accent); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-field label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.12em;
  color: var(--text-dim); text-transform: uppercase;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  color: var(--text);
  padding: 14px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field textarea { min-height: 120px; resize: vertical; font-family: 'Inter', sans-serif; }
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23079AED' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-success {
  display: none;
  margin-top: 20px;
  padding: 16px;
  background: rgba(46,207,138,0.1);
  border: 1px solid rgba(46,207,138,0.3);
  border-radius: 6px;
  color: var(--crypto);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
}
.form-success.show { display: block; }

/* ─── Briefing modal ─── */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: none; align-items: center; justify-content: center;
  padding: 32px;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 48px;
  width: 100%; max-width: 640px;
  max-height: 90vh; overflow-y: auto;
  position: relative;
}
.modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  font-size: 1.4rem;
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.05); color: #fff; }
.modal h2 { font-size: 1.6rem; margin-bottom: 8px; color: #fff; }
.modal .modal-sub { color: var(--text-dim); margin-bottom: 28px; font-size: 0.95rem; }

/* ─── Footer ─── */
.footer {
  background: #0a1226;
  border-top: 1px solid var(--hairline);
  padding: 64px 32px 32px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.18em;
  color: var(--accent); text-transform: uppercase;
  margin-bottom: 18px;
}
.footer p, .footer li { color: var(--text-dim); font-size: 0.88rem; line-height: 1.7; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer a:hover { color: var(--accent); }
.footer-brand-blurb { margin-top: 12px; max-width: 32ch; }
.footer-bottom {
  max-width: var(--max); margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: var(--text-mute);
  letter-spacing: 0.1em;
}

/* ─── Animation primitives ─── */
.gsap-fade { opacity: 0; transform: translateY(30px); }
/* LCP fix: hero h1 must paint visible. Skip the fade-in for it on mobile too. */
.hero-section h1.gsap-fade { opacity: 1; transform: none; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .strip { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .zoho-form-wrap { width: 100%; }
  .intro-block { grid-template-columns: 1fr; gap: 32px; }
  .service-detail { grid-template-columns: 1fr; gap: 32px; }
  .service-detail.reverse .sd-text { order: 0; }
}

@media (max-width: 720px) {
  :root { --nav-h: 64px; }
  .section { padding: calc(var(--nav-h) + 24px) 22px 60px; }
  .nav-inner { padding: 0 22px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    background: var(--nav);
    border-bottom: 1px solid var(--hairline);
    padding: 16px 22px;
    gap: 4px;
  }
  .nav-links.open .nav-link, .nav-links.open .nav-cta { width: 100%; text-align: left; }
  .hamburger { display: flex; }
  .pillars { grid-template-columns: 1fr; }
  .strip { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .exec-intro .stat .num { font-size: clamp(4rem, 13vw, 5.4rem); }
  .exec-intro .stat .lbl { font-size: 0.78rem; }
  .exec-intro .intro-block .lead-large { font-size: clamp(1.35rem, 5vw, 1.7rem); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 36px 24px; }
  .modal { padding: 32px 22px; }
  .about-stats { grid-template-columns: 1fr; }
  .hero-meta { display: none; }
}


.section[data-section="contact-form"] {
  padding: 80px 32px;
  min-height: calc(100svh - var(--nav-h));
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  align-items: flex-start;
}
.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-split-eyebrow { margin-bottom: 16px; }
.contact-split-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.1;
}
.contact-split-sub {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 440px;
}
.contact-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
}
.contact-trust li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-trust .ct-icon {
  color: var(--accent);
  font-size: 0.85rem;
  line-height: 1.4;
  width: 18px;
  flex-shrink: 0;
  text-align: center;
}
.contact-trust .ct-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
  font-weight: 500;
}
.contact-trust .ct-val {
  display: block;
  color: rgba(255,255,255,0.92);
  font-size: 0.95rem;
}
.contact-form-col { width: 100%; }

/* Strip card chrome — form sits on the section background */
.section[data-section="contact-form"] .zoho-form-wrap {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  max-width: none;
  margin: 0;
}

@media (max-width: 900px) {
  .section[data-section="contact-form"] { padding: 80px 22px; }
  .contact-split { grid-template-columns: 1fr; gap: 48px; }
  .contact-trust { padding-top: 24px; }
  .contact-form-col { margin-top: 40px; }
  .form-field input,
  .form-field select { padding: 10px 12px; }
  .form-field textarea { min-height: 90px; padding: 10px 12px; }
  #crmWebToEntityForm .zcwf_col_fld input[type=text],
  #crmWebToEntityForm .zcwf_col_fld input[type=password],
  #crmWebToEntityForm .zcwf_col_fld input[type=email],
  #crmWebToEntityForm .zcwf_col_fld input[type=tel],
  #crmWebToEntityForm .zcwf_col_fld_slt {
    padding: 16px 18px !important;
    min-height: 52px !important;
    font-size: 1rem !important;
  }
  #crmWebToEntityForm .zcwf_col_fld textarea {
    padding: 16px 18px !important;
    font-size: 1rem !important;
    min-height: 120px !important;
  }
}

/* ─── ZOHO WEB-TO-LEAD FORM — dark glass card ─── */
.zoho-form-wrap {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  padding: 48px;
  max-width: 640px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .zoho-form-wrap { padding: 32px; border-radius: 16px; }
}
.zoho-form-header { margin-bottom: 28px; }
.zoho-form-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.zoho-form-sub {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.55;
}
#crmWebToEntityForm.zcwf_lblLeft,
#crmWebToEntityForm {
  background: transparent !important;
  color: var(--text) !important;
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  font-family: 'Inter', sans-serif !important;
  box-sizing: border-box;
}
#crmWebToEntityForm * { box-sizing: border-box; }

/* Hide Zoho's built-in title — .contact-header above the form already provides heading */
#crmWebToEntityForm .zcwf_title { display: none !important; }

/* 2-column grid: Company+Name and Email+Mobile pair up; Description and submit span both. */
#crmWebToEntityForm form {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px !important;
}
#crmWebToEntityForm form > input[type=text][style*="display:none"],
#crmWebToEntityForm form > input[type=text][style*="display: none"],
#crmWebToEntityForm form > input[type=hidden] { grid-column: 1 / -1; display: none !important; }
#crmWebToEntityForm form > .wf_customMessageBox { grid-column: 1 / -1 !important; }
#crmWebToEntityForm .zcwf_row { display: block !important; margin: 0 !important; grid-column: span 1 !important; }
/* Description (textarea row) and Submit row span the full width */
#crmWebToEntityForm .zcwf_row:has(textarea),
#crmWebToEntityForm .zcwf_row_submit { grid-column: 1 / -1 !important; }

#crmWebToEntityForm .zcwf_row {
  display: block !important;
  margin: 0 0 18px 0 !important;
}
#crmWebToEntityForm .zcwf_row::after,
#crmWebToEntityForm .zcwf_col_fld::after { content: none !important; }

#crmWebToEntityForm .zcwf_col_lab {
  width: 100% !important;
  float: none !important;
  display: block !important;
  padding: 0 !important;
  margin: 0 0 8px 0 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 500 !important;
}
#crmWebToEntityForm .zcwf_col_lab label {
  font-family: inherit !important;
  font-size: inherit !important;
  color: inherit !important;
  letter-spacing: inherit !important;
}

#crmWebToEntityForm .zcwf_col_fld {
  width: 100% !important;
  float: none !important;
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  position: relative;
}

#crmWebToEntityForm .zcwf_col_fld input[type=text],
#crmWebToEntityForm .zcwf_col_fld input[type=password],
#crmWebToEntityForm .zcwf_col_fld input[type=email],
#crmWebToEntityForm .zcwf_col_fld input[type=tel],
#crmWebToEntityForm .zcwf_col_fld textarea,
#crmWebToEntityForm .zcwf_col_fld_slt {
  width: 100% !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 6px !important;
  padding: 14px 14px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.88rem !important;
  color: #fff !important;
  outline: none !important;
  float: none !important;
  resize: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: none !important;
  height: auto !important;
}
#crmWebToEntityForm .zcwf_col_fld textarea {
  min-height: 120px !important;
  resize: vertical !important;
  font-family: 'Inter', sans-serif !important;
}
#crmWebToEntityForm .zcwf_col_fld input::placeholder,
#crmWebToEntityForm .zcwf_col_fld textarea::placeholder {
  color: var(--text-dim) !important;
  opacity: 0.55;
}

#crmWebToEntityForm .zcwf_col_fld input:focus,
#crmWebToEntityForm .zcwf_col_fld textarea:focus,
#crmWebToEntityForm .zcwf_col_fld_slt:focus {
  border-color: rgba(59, 165, 255, 0.6) !important;
  box-shadow: 0 0 0 3px rgba(59, 165, 255, 0.18), 0 0 12px rgba(59, 165, 255, 0.25) !important;
}

#crmWebToEntityForm .zcwf_col_help { display: none !important; }

/* Hide reset button — keep in DOM for Zoho's reset.click() */
#crmWebToEntityForm .zcwf_reset_hidden,
#crmWebToEntityForm input[type=reset] {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

#crmWebToEntityForm .zcwf_row_submit { margin-top: 12px !important; }
#crmWebToEntityForm .zcwf_row_submit .zcwf_col_lab { display: none !important; }
#crmWebToEntityForm .zcwf_row_submit .zcwf_col_fld { position: relative; }

/* Submit button: text + arrow centered, like the briefing modal "REQUEST BRIEFING →"
   Wrapper is flex-centered; the arrow is a ::after sibling rendered next to the input. */
#crmWebToEntityForm .zcwf_row_submit .zcwf_col_fld {
  position: relative;
  display: block;
}
#crmWebToEntityForm .zcwf_row_submit .zcwf_col_fld::after {
  content: '→';
  position: absolute;
  left: 50%;
  top: 50%;
  /* Offset right of center: half the uppercase-tracked label width (~3.5ch for "SUMMIT") + gap */
  transform: translate(calc(3.5ch + 8px), -50%);
  color: #07101e;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  pointer-events: none;
  transition: color 0.2s, transform 0.2s;
}
#crmWebToEntityForm .zcwf_row_submit .zcwf_col_fld:hover::after {
  color: var(--accent);
  transform: translate(calc(3.5ch + 12px), -50%);
}
#crmWebToEntityForm .formsubmit.zcwf_button,
#crmWebToEntityForm input[type=submit].formsubmit {
  width: 100% !important;
  display: block !important;
  background: var(--accent) !important;
  background-image: none !important;
  color: #07101e !important;
  border: 1px solid var(--accent) !important;
  border-radius: 6px !important;
  padding: 16px 22px !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  max-width: none !important;
  text-align: center !important;
  text-overflow: clip !important;
  overflow: visible !important;
  white-space: normal !important;
  box-shadow: none !important;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
#crmWebToEntityForm .formsubmit.zcwf_button:hover,
#crmWebToEntityForm input[type=submit].formsubmit:hover {
  background: transparent !important;
  background-image: none !important;
  color: var(--accent) !important;
  border-color: var(--accent) !important;
}
#crmWebToEntityForm .formsubmit.zcwf_button:disabled {
  opacity: 0.6;
  cursor: wait;
}

/* Success splash */
#crmWebToEntityForm .wf_customMessageBox,
.zoho-form-wrap .wf_customMessageBox,
#wf_splash {
  font-family: 'Inter', sans-serif !important;
  background: #0b1428 !important;
  border: 1px solid rgba(7,154,237,0.3) !important;
  color: #c8deff !important;
  border-radius: 8px !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4) !important;
  padding: 12px 18px !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.04em !important;
  z-index: 11000;
}
#wf_splash .wf_customCircle {
  background-color: #079AED !important;
}

@media (max-width: 600px) {
  .zoho-form-wrap { padding: 32px; }
}


/* ─── Executive Leaders intro (home) — scoped overrides ─── */
.exec-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  min-height: calc(100svh - var(--nav-h));
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}
.exec-intro .container { width: 100%; }
.exec-intro .intro-block {
  display: block;
  grid-template-columns: none;
}
.exec-intro .intro-block > div:first-child {
  max-width: 880px;
  margin-bottom: 48px;
}
.exec-intro .intro-block .lead-large {
  color: var(--text-dim);
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  max-width: 880px;
}
.exec-intro .stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 0;
}
.exec-intro .stat .num {
  font-size: clamp(3.6rem, 5.2vw, 5rem);
  margin-bottom: 4px;
  line-height: 0.95;
}
.exec-intro .stat .lbl {
  font-size: 0.7rem; /* ~11px */
  margin-top: 2px;
}
.exec-intro .stat[data-pillar="cloud"]  .num { color: #3DA5FF; }
.exec-intro .stat[data-pillar="cloud"]            { border-left-color: #3DA5FF; }
.exec-intro .stat[data-pillar="ai"]     .num { color: #D45CFF; }
.exec-intro .stat[data-pillar="ai"]               { border-left-color: #D45CFF; }
.exec-intro .stat[data-pillar="crypto"] .num { color: #2ECF8A; }
.exec-intro .stat[data-pillar="crypto"]           { border-left-color: #2ECF8A; }
.exec-intro .stat[data-pillar="pqc"]    .num { color: #FF8A3D; }
.exec-intro .stat[data-pillar="pqc"]              { border-left-color: #FF8A3D; }

.exec-intro-rule {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 1px;
  background: #1c2d5c;
}


/* ─── Hero breathing-room (only when wide & tall enough to feel sparse) ─── */
@media (min-width: 1200px) and (min-height: 800px) {
  .section[data-section="home-hero"] .container {
    display: block;
    padding-top: clamp(24px, 6vh, 64px);
  }
  .section[data-section="home-hero"] .hero-eyebrow {
    margin-bottom: 24px;
  }
  .section[data-section="home-hero"] h1 {
    margin: 0;
  }
  .section[data-section="home-hero"] .hero-sub {
    margin-top: 20px;
  }
  .section[data-section="home-hero"] .hero-ctas {
    margin-top: 36px;
  }
}

/* ─── Pillar minimal layout (A/B) ─── */
.pillars--minimal {
  gap: 0;
}
.pillars--minimal .pillar {
  background: transparent;
  border: 0;
  border-radius: 0;
  border-right: 1px solid var(--hairline);
  padding: 24px 22px;
  box-shadow: none;
}
.pillars--minimal .pillar:last-child { border-right: 0; }
.pillars--minimal .pillar:hover { transform: none; box-shadow: none; }
@media (max-width: 1024px) {
  .pillars--minimal .pillar { border-right: 0; border-bottom: 1px solid var(--hairline); }
  .pillars--minimal .pillar:last-child { border-bottom: 0; }
}

/* ─── Connector dots — only when 4-up ─── */
@media (max-width: 1024px) {
  .connector { display: none !important; }
}

/* ─── Scroll cue (A/B) ─── */
.scroll-cue {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  color: var(--text-dim);
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.scroll-cue.visible { opacity: 0.55; }
.scroll-cue::after {
  content: '';
  width: 1px; height: 22px;
  background: linear-gradient(to bottom, var(--text-dim), transparent);
  animation: scrollCueDrop 1.8s ease-in-out infinite;
}
@keyframes scrollCueDrop {
  0% { transform: translateY(-6px); opacity: 0.2; }
  50% { opacity: 0.9; }
  100% { transform: translateY(6px); opacity: 0.2; }
}
.scroll-progress {
  position: fixed;
  top: 0; right: 0;
  width: 2px;
  height: 100svh;
  background: rgba(255,255,255,0.04);
  z-index: 50;
  pointer-events: none;
}
.scroll-progress::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: var(--scroll-pct, 0%);
  background: linear-gradient(to bottom, #3DA5FF, #D45CFF, #2ECF8A, #FF8A3D);
}


/* ═══ Mobile pillars: clean stacked single-column cards ═══ */
@media (max-width: 768px) {
  .section[data-section="home-pillars"] .pillars {
    grid-template-columns: 1fr;
  }

  /* Exec stats: 2×2 on mobile */
  .exec-intro .stats { grid-template-columns: 1fr 1fr !important; gap: 18px 16px; }
  .exec-intro .stat .num { font-size: clamp(2.4rem, 11vw, 3.6rem); }
}

/* ═══ Exec stats: pillar-coloured borders + numbers (all viewports) ═══ */
.exec-intro .stat { border-left-color: var(--stat-color, var(--accent)); }
.exec-intro .stat .num { color: var(--stat-color, inherit); }
