:root {
  --navy-950: #031028;
  --navy-925: #061a3d;
  --navy-900: #08224f;
  --navy-800: #0b3473;
  --sky-500: #3fb3ff;
  --green-500: #84c54a;
  --green-700: #3f7b23;
  --cream: #f7f3ea;
  --bone: #fbfaf6;
  --ink: #07152e;
  --muted: #66758d;
  --line: rgba(7,21,46,.12);
  --white: #fff;
  --radius-xl: 38px;
  --radius-lg: 28px;
  --shadow-soft: 0 22px 70px rgba(3,16,40,.11);
  --shadow-deep: 0 36px 110px rgba(3,16,40,.26);
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bone);
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
::selection { background: rgba(132,197,74,.28); }
.shell { width: min(1180px, calc(100% - 42px)); margin-inline: auto; }
.skip-link { position: fixed; top: -70px; left: 18px; z-index: 9999; padding: 12px 16px; border-radius: 999px; background: #fff; color: var(--navy-900); box-shadow: var(--shadow-soft); }
.skip-link:focus { top: 18px; }
.page-progress { position: fixed; inset: 0 auto auto 0; height: 3px; width: 0; z-index: 1000; background: linear-gradient(90deg, var(--green-500), var(--sky-500)); box-shadow: 0 0 26px rgba(63,179,255,.5); }
.cursor-orb { position: fixed; width: 360px; height: 360px; left: 50%; top: 50%; border-radius: 50%; pointer-events: none; z-index: 1; transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(63,179,255,.12), rgba(132,197,74,.07) 42%, transparent 70%); mix-blend-mode: multiply; }

.site-header { position: fixed; inset: 16px 0 auto 0; z-index: 950; transition: transform .35s var(--ease); }
.nav { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 10px 12px 10px 14px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(4,18,43,.66); backdrop-filter: blur(22px) saturate(140%); box-shadow: 0 20px 80px rgba(3,16,40,.24); }
.site-header.scrolled .nav { background: rgba(255,255,255,.90); border-color: rgba(7,21,46,.1); }
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-logo { width: 54px; height: 54px; display: grid; place-items: center; overflow: hidden; border-radius: 50%; background: white; box-shadow: inset 0 0 0 1px rgba(7,21,46,.08); flex: 0 0 auto; }
.brand-logo img { width: 72px; max-width: none; height: 50px; object-fit: cover; object-position: 39% 50%; }
.brand-copy { display: grid; line-height: 1.1; min-width: 0; }
.brand-copy strong { color: white; font-size: .98rem; font-weight: 800; letter-spacing: -.03em; }
.brand-copy small { margin-top: 3px; color: rgba(255,255,255,.66); font-size: .72rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 320px; }
.site-header.scrolled .brand-copy strong, .site-header.scrolled .brand-copy small, .site-header.scrolled .nav-links a:not(.nav-button) { color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 3px; }
.nav-links a { color: rgba(255,255,255,.82); font-size: .9rem; font-weight: 800; padding: 12px 14px; border-radius: 999px; transition: .25s var(--ease); }
.nav-links a:hover { color: white; background: rgba(255,255,255,.11); }
.site-header.scrolled .nav-links a:hover { background: rgba(7,21,46,.06); color: var(--navy-900); }
.nav-button { background: #fff; color: var(--navy-950) !important; box-shadow: 0 14px 36px rgba(255,255,255,.18); }
.site-header.scrolled .nav-button { background: var(--navy-900); color: #fff !important; box-shadow: 0 16px 34px rgba(8,34,79,.18); }
.nav-toggle { display: none; width: 48px; height: 48px; border: 0; border-radius: 50%; cursor: pointer; background: rgba(255,255,255,.12); }
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; border-radius: 999px; background: white; transition: .25s var(--ease); }
.site-header.scrolled .nav-toggle span { background: var(--navy-900); }

h1, h2, h3 { margin: 0; line-height: .98; letter-spacing: -.06em; font-weight: 800; }
h1 { font-size: clamp(3.5rem, 7vw, 7.2rem); }
h2 { font-size: clamp(2.3rem, 5vw, 5.25rem); }
h3 { font-size: 1.34rem; letter-spacing: -.04em; line-height: 1.1; }
p { margin: 0; line-height: 1.72; color: var(--muted); }
.section { position: relative; padding: clamp(86px, 10vw, 150px) 0; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 56px; padding: 15px 22px; border-radius: 999px; border: 0; cursor: pointer; font-weight: 900; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease); }
.btn:hover { transform: translateY(-3px); }
.btn-light { background: white; color: var(--navy-950); box-shadow: 0 20px 50px rgba(255,255,255,.18); }
.btn-ghost { color: white; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.08); backdrop-filter: blur(16px); }

.hero { min-height: 100svh; position: relative; overflow: hidden; color: white; background: var(--navy-950); isolation: isolate; padding: 0; }
.hero-photo { position: absolute; inset: 0 0 0 42%; z-index: -2; background: url("https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?auto=format&fit=crop&w=2400&q=88") center/cover no-repeat; opacity: .70; filter: saturate(.92) contrast(1.08); transform: scale(1.04); mask-image: linear-gradient(90deg, transparent 0%, black 22%, black 100%); }
.hero-scrim { position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 16% 22%, rgba(63,179,255,.30), transparent 28%), radial-gradient(circle at 86% 74%, rgba(132,197,74,.18), transparent 24%), linear-gradient(105deg, rgba(3,16,40,.98) 0%, rgba(5,25,58,.93) 45%, rgba(3,16,40,.35) 100%); }
.hero-grid-lines { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px); background-size: 70px 70px; mask-image: radial-gradient(circle at 56% 36%, black, transparent 76%); }
.route-map { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .58; pointer-events: none; }
.route-line { fill: none; stroke: rgba(255,255,255,.25); stroke-width: 1.5; stroke-dasharray: 10 14; animation: routeDash 16s linear infinite; }
.route-two { stroke: rgba(132,197,74,.25); animation-duration: 21s; animation-direction: reverse; }
.route-three { stroke: rgba(63,179,255,.22); animation-duration: 25s; }
.route-dot { fill: var(--green-500); filter: drop-shadow(0 0 12px rgba(132,197,74,.95)); animation: dotPulse 2.8s ease-in-out infinite; }
.dot-white { fill: white; animation-delay: .45s; }
.dot-blue { fill: var(--sky-500); animation-delay: 1s; }
.hero-layout { position: relative; z-index: 5; min-height: calc(100svh - 70px); display: grid; grid-template-columns: minmax(0,.95fr) minmax(420px,1.05fr); gap: clamp(34px, 5vw, 78px); align-items: center; padding: clamp(132px, 12vw, 170px) 0 72px; }
.micro-label, .section-kicker { display: inline-flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: .15em; font-size: .72rem; font-weight: 900; }
.micro-label { color: rgba(255,255,255,.86); padding: 10px 14px; border: 1px solid rgba(255,255,255,.17); border-radius: 999px; background: rgba(255,255,255,.09); backdrop-filter: blur(16px); }
.micro-label span { width: 9px; height: 9px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 0 rgba(132,197,74,.65); animation: pulse 1.8s infinite; }
.hero h1 { max-width: 900px; margin-top: 24px; text-wrap: balance; }
.hero-lead { max-width: 760px; margin-top: 26px; color: rgba(255,255,255,.76); font-size: clamp(1.04rem, 1.6vw, 1.22rem); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.trust-strip { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; margin-top: 34px; max-width: 760px; }
.trust-strip article { padding: 18px; border-radius: 24px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(16px); position: relative; overflow: hidden; }
.trust-strip article::after { content: ""; position: absolute; inset: 0; transform: translateX(-130%); background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent); animation: shine 6s ease-in-out infinite; }
.trust-strip article:nth-child(2)::after { animation-delay: .5s; }
.trust-strip article:nth-child(3)::after { animation-delay: 1s; }
.trust-strip strong { display: block; font-size: clamp(1.8rem, 3vw, 2.55rem); line-height: 1; letter-spacing: -.06em; }
.trust-strip strong::after { content: "+"; color: var(--green-500); font-size: .58em; }
.trust-strip span { display: block; margin-top: 8px; color: rgba(255,255,255,.66); font-size: .82rem; font-weight: 750; }
.hero-board { position: relative; min-height: 650px; }
.board-photo { position: absolute; right: 0; top: 0; width: 88%; height: 520px; margin: 0; border-radius: 44px; overflow: hidden; border: 1px solid rgba(255,255,255,.22); box-shadow: var(--shadow-deep); }
.board-photo img { width: 100%; height: 100%; object-fit: cover; animation: slowDrift 17s ease-in-out infinite alternate; }
.board-photo::before { content: ""; position: absolute; z-index: 2; inset: -35% auto auto -88%; width: 60%; height: 175%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent); transform: rotate(18deg); animation: sweep 7.4s ease-in-out infinite; }
.board-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(3,16,40,.82)); }
.board-panel { position: absolute; z-index: 4; width: min(330px, 52%); padding: 20px; border-radius: 26px; background: rgba(255,255,255,.92); color: var(--ink); border: 1px solid rgba(255,255,255,.7); box-shadow: 0 28px 80px rgba(0,0,0,.22); backdrop-filter: blur(18px); }
.board-panel span { display: block; color: var(--green-700); text-transform: uppercase; letter-spacing: .14em; font-size: .68rem; font-weight: 950; }
.board-panel strong { display: block; margin-top: 8px; line-height: 1.35; font-size: .96rem; }
.board-panel-a { left: 0; top: 82px; animation: panelFloat 7s ease-in-out infinite; }
.board-panel-b { right: 5%; bottom: 12px; animation: panelFloat 7.8s ease-in-out infinite reverse; }
.board-flow { position: absolute; left: 18%; right: 10%; bottom: 102px; z-index: 5; display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; gap: 10px; padding: 14px; border-radius: 22px; background: rgba(255,255,255,.92); color: var(--navy-950); border: 1px solid rgba(255,255,255,.68); box-shadow: 0 26px 70px rgba(0,0,0,.18); backdrop-filter: blur(18px); }
.board-flow b { padding: 10px 12px; border-radius: 999px; background: #f5f8fb; font-size: .76rem; }
.board-flow i { height: 2px; border-radius: 999px; overflow: hidden; background: rgba(7,21,46,.11); position: relative; }
.board-flow i::after { content: ""; position: absolute; inset: 0; width: 48%; background: linear-gradient(90deg, var(--green-500), var(--sky-500)); animation: routeMove 2.8s ease-in-out infinite; }
.audience-bar { position: relative; z-index: 6; margin-top: -40px; margin-bottom: 34px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; padding: 12px; border-radius: 28px; background: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.66); box-shadow: 0 24px 80px rgba(3,16,40,.14); backdrop-filter: blur(20px); }
.audience-bar span { color: var(--navy-900); background: #f3f7fb; border-radius: 999px; padding: 12px 14px; font-size: .81rem; font-weight: 900; white-space: nowrap; }
.audience-bar span:nth-child(even) { color: var(--green-700); background: #eef8e9; }

.intro { background: var(--bone); }
.split-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(30px, 6vw, 80px); align-items: start; }
.section-kicker { color: var(--green-700); margin-bottom: 16px; }
.section-kicker.light { color: #b7ef82; }
.large-copy p { font-size: clamp(1.08rem, 1.7vw, 1.32rem); color: #354157; line-height: 1.75; }
.signature-line { display: flex; align-items: center; gap: 16px; margin-top: 28px; color: var(--navy-900); }
.signature-line span { width: 74px; height: 2px; background: linear-gradient(90deg, var(--green-500), var(--sky-500)); border-radius: 999px; }
.signature-line strong { font-size: .94rem; text-transform: uppercase; letter-spacing: .11em; }

.capability-section { background: #fff; }
.section-heading { max-width: 860px; margin-bottom: 48px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading p { margin-top: 18px; font-size: 1.05rem; max-width: 720px; }
.section-heading.centered p { margin-inline: auto; }
.capability-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.cap-card { min-height: 310px; padding: 26px; border-radius: 30px; background: linear-gradient(180deg, #fff, #f8fbfe); border: 1px solid var(--line); box-shadow: 0 16px 50px rgba(3,16,40,.06); transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease); }
.cap-card:hover { transform: translateY(-8px); box-shadow: 0 28px 80px rgba(3,16,40,.12); border-color: rgba(132,197,74,.24); }
.cap-card span { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--navy-900); color: white; font-weight: 900; margin-bottom: 64px; }
.cap-card h3 { color: var(--navy-950); }
.cap-card p { margin-top: 14px; font-size: .96rem; }

.sectors { background: linear-gradient(180deg, var(--bone), #eef4f8); overflow: hidden; }
.sector-mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 286px; gap: 16px; }
.sector-card { position: relative; min-height: 286px; overflow: hidden; border-radius: 34px; box-shadow: 0 20px 70px rgba(3,16,40,.12); border: 1px solid rgba(255,255,255,.5); isolation: isolate; transition: transform .32s var(--ease), box-shadow .32s var(--ease); }
.sector-card:hover { transform: translateY(-8px); box-shadow: 0 34px 100px rgba(3,16,40,.20); }
.sector-card.tall { grid-row: span 2; }
.sector-card.wide { grid-column: span 2; }
.sector-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .85s var(--ease); }
.sector-card:hover img { transform: scale(1.08); }
.sector-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 16%, rgba(3,16,40,.30) 52%, rgba(3,16,40,.93)); }
.sector-card div { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 26px; color: white; }
.sector-card span { color: #b7ef82; text-transform: uppercase; letter-spacing: .13em; font-size: .70rem; font-weight: 950; }
.sector-card h3 { margin-top: 9px; font-size: 1.32rem; color: white; }
.sector-card p { margin-top: 10px; color: rgba(255,255,255,.72); font-size: .92rem; line-height: 1.55; }

.network { background: var(--navy-950); color: white; overflow: hidden; }
.network::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 15% 15%, rgba(63,179,255,.18), transparent 28%), radial-gradient(circle at 86% 80%, rgba(132,197,74,.16), transparent 28%); pointer-events: none; }
.network-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(34px, 6vw, 80px); align-items: center; }
.network-image { position: relative; min-height: 650px; border-radius: 42px; overflow: hidden; box-shadow: var(--shadow-deep); border: 1px solid rgba(255,255,255,.16); }
.network-image img { width: 100%; height: 650px; object-fit: cover; }
.network-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 44%, rgba(3,16,40,.82)); }
.image-badge { position: absolute; z-index: 2; padding: 16px 18px; border-radius: 22px; background: rgba(255,255,255,.9); color: var(--ink); box-shadow: 0 24px 70px rgba(0,0,0,.18); backdrop-filter: blur(16px); }
.image-badge strong { display: block; color: var(--navy-900); font-size: 1.35rem; }
.image-badge span { color: var(--muted); font-size: .82rem; font-weight: 800; }
.badge-top { top: 24px; right: 24px; animation: panelFloat 7s ease-in-out infinite; }
.badge-bottom { bottom: 24px; left: 24px; animation: panelFloat 8s ease-in-out infinite reverse; }
.network-copy p { color: rgba(255,255,255,.72); margin-top: 20px; font-size: 1.05rem; }
.network-list { display: grid; gap: 12px; margin-top: 28px; }
.network-list article { display: grid; grid-template-columns: 50px 1fr; gap: 14px; padding: 20px; border-radius: 24px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); }
.network-list span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--green-500); color: #10240b; font-weight: 900; }
.network-list p { margin-top: 8px; font-size: .92rem; }

.readiness { background: #fff; }
.readiness-inner { padding: clamp(34px, 6vw, 72px); border-radius: 44px; background: radial-gradient(circle at 85% 14%, rgba(132,197,74,.16), transparent 28%), linear-gradient(135deg, #f8fbfe, #fff); border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.readiness-inner h2 { max-width: 900px; }
.readiness-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 34px; }
.readiness-grid article { padding: 24px; border-radius: 28px; background: #fff; border: 1px solid var(--line); box-shadow: 0 12px 38px rgba(3,16,40,.05); }
.readiness-grid article > span { display: block; width: 42px; height: 6px; border-radius: 999px; background: linear-gradient(90deg, var(--green-500), var(--sky-500)); margin-bottom: 54px; }
.readiness-grid p { margin-top: 12px; font-size: .95rem; }

.quality { background: linear-gradient(180deg, var(--bone), #fff); }
.quality-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(34px, 6vw, 76px); align-items: start; }
.quality-copy { position: sticky; top: 120px; }
.quality-copy p { margin-top: 20px; font-size: 1.08rem; }
.quality-stack { display: grid; gap: 14px; }
.quality-stack article { padding: 28px; border-radius: 30px; background: #fff; border: 1px solid var(--line); box-shadow: 0 16px 48px rgba(3,16,40,.06); }
.quality-stack article:nth-child(even) { transform: translateX(34px); }
.quality-stack p { margin-top: 10px; }

.people { background: #fff; }
.people-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(34px, 6vw, 76px); align-items: center; }
.people-photo { margin: 0; border-radius: 42px; overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--line); }
.people-photo img { width: 100%; height: 600px; object-fit: cover; }
.people-copy p { margin-top: 20px; font-size: 1.06rem; }
.value-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.value-pills span { padding: 11px 14px; border-radius: 999px; color: var(--navy-900); background: #eef8e9; border: 1px solid rgba(132,197,74,.22); font-weight: 900; font-size: .88rem; }

.contact { background: var(--navy-950); color: white; overflow: hidden; }
.contact::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 14% 16%, rgba(63,179,255,.20), transparent 28%), radial-gradient(circle at 84% 72%, rgba(132,197,74,.18), transparent 26%); }
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(34px, 6vw, 74px); align-items: start; }
.contact-copy p { color: rgba(255,255,255,.72); margin-top: 20px; font-size: 1.05rem; }
.contact-cards { display: grid; gap: 12px; margin-top: 30px; }
.contact-cards a { padding: 18px; border-radius: 24px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); transition: transform .25s var(--ease), background .25s var(--ease); }
.contact-cards a:hover { transform: translateX(6px); background: rgba(255,255,255,.12); }
.contact-cards span { display: block; color: #b7ef82; font-size: .72rem; text-transform: uppercase; letter-spacing: .13em; font-weight: 950; }
.contact-cards strong { display: block; margin-top: 6px; }
.inquiry-form { padding: clamp(24px, 4vw, 38px); border-radius: 34px; background: rgba(255,255,255,.94); color: var(--ink); border: 1px solid rgba(255,255,255,.70); box-shadow: var(--shadow-deep); display: grid; gap: 18px; }
.inquiry-form label { display: grid; gap: 8px; }
.inquiry-form label span { color: var(--navy-900); font-weight: 900; }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea { width: 100%; border: 1px solid rgba(7,21,46,.14); background: #f8fbfd; color: var(--ink); border-radius: 18px; padding: 15px 16px; outline: none; transition: .25s var(--ease); }
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus { border-color: var(--green-500); box-shadow: 0 0 0 4px rgba(132,197,74,.14); background: #fff; }
.inquiry-form textarea { min-height: 130px; resize: vertical; }
.inquiry-form .btn { width: fit-content; background: var(--navy-900); color: white; box-shadow: 0 16px 36px rgba(8,34,79,.2); }

.whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 920; width: 66px; height: 66px; border-radius: 50%; display: grid; place-items: center; color: #06210c; background: #25d366; box-shadow: 0 18px 44px rgba(37,211,102,.38); font-weight: 950; transition: transform .25s var(--ease); }
.whatsapp:hover { transform: translateY(-5px) scale(1.04); }
.footer { padding: 42px 0; background: #020a1a; color: white; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 28px; }
.footer-grid img { width: 70px; height: 62px; object-fit: cover; object-position: 39% 50%; border-radius: 16px; background: white; }
.footer-grid p { color: rgba(255,255,255,.64); max-width: 660px; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .82s var(--ease), transform .82s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
.delay-3 { transition-delay: .32s; }
.tilt-card { transform-style: preserve-3d; will-change: transform; }

@keyframes pulse { 70% { box-shadow: 0 0 0 14px rgba(132,197,74,0); } 100% { box-shadow: 0 0 0 0 rgba(132,197,74,0); } }
@keyframes routeDash { to { stroke-dashoffset: -360; } }
@keyframes dotPulse { 0%,100% { transform: scale(1); opacity: .75; } 50% { transform: scale(1.75); opacity: 1; } }
@keyframes shine { 0%,65% { transform: translateX(-130%); opacity: 0; } 75% { opacity: 1; } 100% { transform: translateX(160%); opacity: 0; } }
@keyframes slowDrift { 0% { transform: scale(1.02) translate3d(0,0,0); } 100% { transform: scale(1.08) translate3d(-1.4%,-1%,0); } }
@keyframes sweep { 0%,62% { transform: translateX(-140%) rotate(18deg); opacity: 0; } 76% { opacity: 1; } 100% { transform: translateX(240%) rotate(18deg); opacity: 0; } }
@keyframes panelFloat { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(0,-14px,0); } }
@keyframes routeMove { 0% { transform: translateX(-115%); } 55% { transform: translateX(65%); } 100% { transform: translateX(220%); } }

@media (max-width: 1120px) {
  .hero-layout, .split-grid, .network-grid, .quality-grid, .people-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 980px; }
  .hero h1 { max-width: 1000px; }
  .hero-photo { inset: 0; opacity: .30; mask-image: linear-gradient(180deg, transparent 0%, black 20%, black 100%); }
  .hero-board { min-height: 600px; }
  .board-photo { width: 83%; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .sector-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 310px; }
  .sector-card.tall { grid-row: span 1; }
  .quality-copy { position: relative; top: 0; }
  .quality-stack article:nth-child(even) { transform: none; }
}

@media (max-width: 840px) {
  .shell { width: min(100% - 28px, 1180px); }
  .site-header { inset: 10px 0 auto 0; }
  .nav { height: 68px; }
  .brand-copy small { display: none; }
  .brand-logo { width: 48px; height: 48px; }
  .nav-toggle { display: block; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }
  .nav-links { position: fixed; top: 84px; left: 14px; right: 14px; display: grid; padding: 18px; border-radius: 28px; background: rgba(4,18,43,.96); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(22px); transform: translateY(-14px); opacity: 0; pointer-events: none; transition: .25s var(--ease); }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { color: white !important; }
  .nav-button { background: white !important; color: var(--navy-950) !important; }
  .hero-layout { padding-top: 118px; padding-bottom: 34px; min-height: auto; }
  h1 { font-size: clamp(2.9rem, 13vw, 4.8rem); }
  h2 { font-size: clamp(2.2rem, 11vw, 3.6rem); }
  .trust-strip, .capability-grid, .readiness-grid { grid-template-columns: 1fr; }
  .hero-board { min-height: auto; display: grid; gap: 14px; }
  .board-photo, .board-panel, .board-flow { position: relative; inset: auto; width: 100%; left: auto; right: auto; top: auto; bottom: auto; }
  .board-photo { height: 430px; border-radius: 34px; }
  .board-flow { grid-template-columns: 1fr; align-items: stretch; }
  .board-flow i { height: 3px; }
  .audience-bar { margin-top: 8px; justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; }
  .audience-bar::-webkit-scrollbar { display: none; }
  .sector-mosaic { grid-template-columns: 1fr; grid-auto-rows: 440px; }
  .sector-card.wide { grid-column: span 1; }
  .network-image, .network-image img, .people-photo img { height: 430px; min-height: 430px; }
  .footer-grid { display: grid; }
  .cursor-orb { display: none; }
}

@media (max-width: 560px) {
  .micro-label { border-radius: 20px; align-items: flex-start; }
  .hero-actions { display: grid; }
  .btn { width: 100%; }
  .section { padding: 76px 0; }
  .sector-mosaic { grid-auto-rows: 480px; }
  .sector-card div { padding: 22px; }
  .contact-cards strong { word-break: break-word; }
}

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


/* ======================================================
   SIMPLE HOMEPAGE REFINEMENT
   Removes the busy AI-looking hero elements and count cards.
   ====================================================== */
.hero-simple {
  min-height: 100svh;
  background: #031028;
}
.hero-simple .hero-photo {
  inset: 0;
  opacity: .38;
  filter: saturate(.82) contrast(1.04);
  mask-image: none;
  background-position: center right;
}
.hero-simple .hero-scrim {
  background:
    linear-gradient(90deg, rgba(3,16,40,.96) 0%, rgba(3,16,40,.88) 48%, rgba(3,16,40,.58) 100%),
    radial-gradient(circle at 16% 22%, rgba(63,179,255,.18), transparent 30%);
}
.hero-simple .hero-grid-lines,
.hero-simple .route-map,
.hero-simple .trust-strip,
.hero-simple .hero-board {
  display: none !important;
}
.simple-hero-layout {
  grid-template-columns: minmax(0, .96fr) minmax(360px, .82fr);
  gap: clamp(34px, 6vw, 92px);
  padding: clamp(132px, 12vw, 172px) 0 72px;
}
.hero-simple h1 {
  max-width: 940px;
  font-size: clamp(3.25rem, 6.4vw, 6.35rem);
  letter-spacing: -.072em;
}
.hero-simple .hero-lead {
  max-width: 720px;
  color: rgba(255,255,255,.76);
}
.simple-hero-image {
  position: relative;
  margin: 0;
  min-height: 560px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 34px 96px rgba(0,0,0,.28);
  background: rgba(255,255,255,.08);
}
.simple-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  filter: saturate(.92) contrast(1.03);
}
.simple-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(3,16,40,.88));
}
.simple-hero-image figcaption {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px;
  border-radius: 22px;
  color: white;
  background: rgba(3,16,40,.58);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(16px);
}
.simple-hero-image figcaption span {
  display: block;
  color: #b7ef82;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .70rem;
  font-weight: 950;
  margin-bottom: 8px;
}
.simple-hero-image figcaption strong {
  display: block;
  line-height: 1.38;
  font-size: 1rem;
}
.simple-audience {
  margin-top: -28px;
  margin-bottom: 32px;
  max-width: 980px;
}
.simple-audience span {
  font-size: .78rem;
  padding: 11px 13px;
}
@media (max-width: 1050px) {
  .simple-hero-layout { grid-template-columns: 1fr; padding-bottom: 48px; }
  .simple-hero-image { min-height: 440px; }
  .simple-hero-image img { min-height: 440px; }
}
@media (max-width: 820px) {
  .simple-hero-layout { padding-top: 118px; }
  .hero-simple h1 { font-size: clamp(2.75rem, 12.6vw, 4.5rem); }
  .simple-hero-image { min-height: 360px; border-radius: 28px; }
  .simple-hero-image img { min-height: 360px; }
  .simple-audience { margin-top: 8px; }
}
