/* Avaropoint Design System — Slate blue + cool neutrals. Weblisk-inspired.
   12px radius. 6rem section rhythm. Inter typeface. */

:root {
  /* Brand */
  --primary:    #3B4F7C;
  --primary-d:  #2D3E64;
  --primary-dd: #1E2D4D;
  --primary-l:  #93AEDB;
  --primary-bg: #F1F4F9;
  --primary-tint:rgba(59,79,124,.03);
  --accent:     #06B6D4;

  /* Backgrounds */
  --bg:         #ffffff;
  --bg-alt:     #F8FAFC;
  --bg-card:    #ffffff;
  --bg-showcase:#0F172A;          /* hero, intelligence, weblisk, elevate, closing — dramatic dark panels in light mode */

  /* Text */
  --text:       #0F172A;
  --text-s:     #334155;
  --text-m:     #64748B;

  /* UI chrome */
  --border:     #E2E8F0;
  --header-bg:  rgba(255,255,255,.85);
  --header-bg-s:rgba(255,255,255,.96);
  --nav-bg:     rgba(255,255,255,.98);

  /* Buttons */
  --btn-bg:     #3B4F7C;
  --btn-bg-h:   #2D3E64;
  --btn-text:   #ffffff;
  --btn-shadow: rgba(59,79,124,.3);

  /* Table accents */
  --table-header:#F8FAFC;         /* neutral column headers */
  --table-highlight:var(--primary-bg); /* branded column */

  /* System */
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 1px 3px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
  --shadow-md:  0 4px 12px rgba(15,23,42,.08), 0 2px 4px rgba(15,23,42,.04);
  --shadow-lg:  0 12px 24px rgba(15,23,42,.1), 0 4px 8px rgba(15,23,42,.05);
  --ease:       cubic-bezier(.4,0,.2,1);
}

/* RESET */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{font-size:16px;scroll-behavior:smooth;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
body{font-family:'Inter',-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;line-height:1.6;color:var(--text);background:var(--bg);overflow-x:hidden}
a{color:inherit;text-decoration:none}
ul{list-style:none}
img{max-width:100%;display:block}

/* ANIMATIONS */
.fade-up{opacity:0;transform:translateY(24px);transition:opacity .6s var(--ease),transform .6s var(--ease)}
.fade-up.in-view{opacity:1;transform:none}

/* Hero fade-up: CSS-only, transform-only so all text stays opaque for LCP */
/* h1 (child 2) has NO fade-up — visible at first paint for LCP */
.hero .fade-up{opacity:1;animation:heroSlideUp .6s var(--ease) both}
.hero .container>:nth-child(3){animation-delay:.05s}
.hero .container>:nth-child(4){animation-delay:.1s}
.hero .container>:nth-child(5){animation-delay:.15s}
@keyframes heroSlideUp{from{transform:translateY(24px)}to{transform:none}}

/* Reduced motion: disable all animations */
@media(prefers-reduced-motion:reduce){.fade-up,.hero .fade-up{opacity:1;transform:none;transition:none;animation:none}.intel-orbit,.intel-feed,.intel-return{animation:none}.intel-dot-feed,.intel-dot-return,.intel-glow-bg{animation:none}.intel-dot-feed animate,.intel-dot-return animate,.intel-glow-bg animate{display:none}}

/* A11Y */
.skip-link{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden;z-index:9999;padding:.75rem 1.5rem;background:var(--primary);color:#fff;font-weight:600;border-radius:var(--radius);font-size:.875rem}
.skip-link:focus{position:fixed;left:1rem;top:1rem;width:auto;height:auto;overflow:visible}

/* LAYOUT */
.container{max-width:1280px;margin:0 auto;padding:0 2rem}

/* HEADER */
.site-header{position:sticky;top:0;z-index:100;background:var(--header-bg);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);border-bottom:1px solid var(--border);transition:all .25s var(--ease)}
.site-header.scrolled{background:var(--header-bg-s);box-shadow:var(--shadow)}
.site-header .container{display:flex;align-items:center;justify-content:space-between;height:64px}

/* Logo as SVG images */
.logo{display:flex;align-items:center}
.logo img{height:28px;width:auto}
.logo .logo-light,.brand .logo-light{display:none}

.main-nav{display:flex;gap:.25rem;margin-left:2rem}
.nav-link{display:inline-flex;align-items:center;gap:.35rem;padding:.5rem .85rem;min-height:44px;border-radius:var(--radius);font-size:.875rem;font-weight:500;color:var(--text-m);transition:background .15s var(--ease),color .15s var(--ease)}
.nav-link:hover,.nav-link.active{background:var(--primary-bg);color:var(--primary)}

.nav-actions{display:flex;align-items:center;gap:.25rem;margin-left:auto}
.nav-actions button{background:none;border:none;padding:.5rem;min-height:48px;min-width:48px;display:flex;align-items:center;justify-content:center;color:var(--text-m);border-radius:var(--radius);cursor:pointer;transition:color .15s var(--ease),background .15s var(--ease)}
.nav-actions button:hover{color:var(--primary);background:var(--primary-bg)}

.nav-toggle{display:none !important}
.main-nav .nav-cta{display:none}

/* DARK THEME — variable overrides only */
[data-theme="dark"]{--primary:#93AEDB;--primary-d:#A8BFE5;--primary-dd:#3B4F7C;--primary-l:#93AEDB;--primary-bg:rgba(147,174,219,.1);--primary-tint:rgba(147,174,219,.04);--accent:#22d3ee;--bg:#0B1121;--bg-alt:#111827;--bg-card:#1A2332;--bg-showcase:#0B1121;--text:#E8ECF4;--text-s:#9CA8BC;--text-m:#6B7A90;--border:#243044;--header-bg:rgba(11,17,33,.88);--header-bg-s:rgba(11,17,33,.96);--nav-bg:rgba(26,35,50,.98);--btn-bg:#3B4F7C;--btn-bg-h:#4A6090;--btn-text:#fff;--btn-shadow:rgba(0,0,0,.3);--table-header:#111827;--table-highlight:rgba(147,174,219,.08);--shadow:0 1px 3px rgba(0,0,0,.4);--shadow-md:0 4px 6px -1px rgba(0,0,0,.4);--shadow-lg:0 10px 15px -3px rgba(0,0,0,.4)}
[data-theme="dark"] .logo .logo-dark,[data-theme="dark"] .brand .logo-dark{display:none}
[data-theme="dark"] .logo .logo-light,[data-theme="dark"] .brand .logo-light{display:block}

.nav-toggle{display:none;background:none;border:1.5px solid var(--border);border-radius:8px;padding:.3rem .55rem;cursor:pointer;color:var(--text);transition:border-color .2s var(--ease)}
.nav-toggle:hover{border-color:var(--primary)}

/* BUTTONS */
.btn{display:inline-flex;align-items:center;gap:.5rem;padding:.7rem 1.35rem;font-size:.875rem;font-weight:600;font-family:inherit;border:none;border-radius:8px;cursor:pointer;transition:all .2s var(--ease);letter-spacing:-.01em}
.btn svg{flex-shrink:0}

.btn-primary{background:var(--btn-bg);color:var(--btn-text);box-shadow:0 2px 8px var(--btn-shadow)}
.btn-primary:hover{background:var(--btn-bg-h);box-shadow:0 4px 16px var(--btn-shadow);transform:translateY(-1px)}

.btn-ghost{background:transparent;color:var(--text-s);border:1.5px solid var(--border)}
.btn-ghost:hover{border-color:var(--primary);color:var(--primary)}

.btn-nav{padding:.45rem .95rem;font-size:.8125rem;background:var(--btn-bg);color:var(--btn-text) !important;box-shadow:0 2px 6px var(--btn-shadow);white-space:nowrap}
.btn-nav:hover{background:var(--btn-bg-h);color:var(--btn-text) !important;transform:translateY(-1px)}

.btn-lg{padding:.9rem 2rem;font-size:1rem}
.btn-full{width:100%;justify-content:center}

/* HERO */
.hero{position:relative;padding:8rem 0 7rem;text-align:center;background:var(--bg-showcase);color:#fff;overflow:hidden}

.hero-glow{position:absolute;top:-280px;left:50%;transform:translateX(-50%);width:900px;height:900px;background:radial-gradient(circle,rgba(59,79,124,.15) 0%,transparent 55%);pointer-events:none}

.hero-badge{display:inline-block;padding:.35rem 1rem;font-size:.6875rem;font-weight:600;text-transform:uppercase;letter-spacing:.1em;color:var(--primary-l);border:1px solid rgba(147,174,219,.25);border-radius:100px;background:rgba(59,79,124,.1);margin-bottom:2rem}

.hero h1{font-size:3.25rem;font-weight:900;line-height:1.12;max-width:740px;margin:0 auto 1.5rem;letter-spacing:-.04em}
.gradient-text{color:var(--primary-l);-webkit-text-fill-color:var(--primary-l)}

.hero-sub{font-size:1.0625rem;color:rgba(255,255,255,.55);max-width:600px;margin:0 auto 2.5rem;line-height:1.7}

.hero-cta{display:flex;gap:.75rem;justify-content:center;flex-wrap:wrap}
.hero .btn-ghost{color:rgba(255,255,255,.7);border-color:rgba(255,255,255,.12)}
.hero .btn-ghost:hover{color:#fff;border-color:rgba(255,255,255,.3);background:rgba(255,255,255,.05)}

/* CHANNEL STRIP */
.channel-strip{padding:2.5rem 0;border-bottom:1px solid var(--border)}
.channel-grid{display:flex;align-items:center;justify-content:center;gap:2.5rem;flex-wrap:wrap}
.channel{display:flex;align-items:center;gap:.5rem;font-size:.8125rem;font-weight:500;color:var(--text-m)}
.channel svg{color:var(--primary);flex-shrink:0}

/* SECTIONS — consistent rhythm */
.section{padding:6rem 0;content-visibility:auto;contain-intrinsic-size:auto 800px}
.section-alt{background:var(--bg-alt)}

.section-header{text-align:center;max-width:600px;margin:0 auto 3.5rem}
.section-label{font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--primary);margin-bottom:.75rem}
.section-header h2{font-size:2rem;font-weight:800;letter-spacing:-.03em;color:var(--text);line-height:1.2;margin-bottom:.75rem}
.section-sub{font-size:1rem;color:var(--text-m);line-height:1.7}

/* PLATFORM PILLARS — 3-column cards */
.platform-metrics{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;max-width:800px;margin:0 auto 3rem;text-align:center}
.platform-metric{padding:1.25rem .75rem;border:1px solid var(--border);border-radius:var(--radius);background:var(--bg-card)}
.platform-metric-value{display:block;font-size:2rem;font-weight:900;color:var(--primary);letter-spacing:-.03em;line-height:1.1;margin-bottom:.25rem}
.platform-metric-label{font-size:.75rem;font-weight:600;color:var(--text-m);text-transform:uppercase;letter-spacing:.04em}

.platform-pillars{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.pillar-card{padding:2rem;border:1px solid var(--border);border-radius:var(--radius);background:var(--bg-card);transition:all .25s var(--ease)}
.pillar-card:hover{border-color:var(--primary-l);box-shadow:var(--shadow-md);transform:translateY(-2px)}
.pillar-icon{width:48px;height:48px;display:flex;align-items:center;justify-content:center;border-radius:12px;background:var(--primary-bg);color:var(--primary);margin-bottom:1.25rem}
.pillar-card h3{font-size:1.125rem;font-weight:700;color:var(--text);margin-bottom:.5rem;letter-spacing:-.02em}
.pillar-card p{font-size:.875rem;color:var(--text-m);line-height:1.65}
.pillar-stat{margin-top:1rem;padding-top:.875rem;border-top:1px solid var(--border);font-size:.75rem;color:var(--text-m);font-weight:500}
.pillar-stat-num{font-size:1.125rem;font-weight:800;color:var(--primary);margin-right:.25rem}
.pillar-card-accent{background:var(--primary-bg);border-color:var(--primary)}
.pillar-card-accent .pillar-icon{background:var(--btn-bg);color:#fff}

/* SOLUTIONS GRID — 2x2 numbered cards */
.solutions-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;max-width:920px;margin:0 auto}
.solution-card{padding:2rem;border:1px solid var(--border);border-radius:var(--radius);background:var(--bg-card);transition:all .25s var(--ease)}
.solution-card:hover{box-shadow:var(--shadow-md);transform:translateY(-2px)}
.solution-num{font-size:.75rem;font-weight:700;color:var(--primary);letter-spacing:.04em;margin-bottom:.75rem}
.solution-card h3{font-size:1rem;font-weight:700;color:var(--text);margin-bottom:.5rem;letter-spacing:-.01em}
.solution-card p{font-size:.875rem;color:var(--text-m);line-height:1.6}
.solution-outcome{margin-top:.75rem;padding-top:.75rem;border-top:1px solid var(--border);font-size:.8125rem;color:var(--text);line-height:1.55}
.solution-outcome-label{font-weight:700;color:var(--primary);margin-right:.25rem}

/* COMPARISON TABLE */
.compare-table-wrap{max-width:960px;margin:0 auto;overflow-x:auto;-webkit-overflow-scrolling:touch}
.compare-table{width:100%;border-collapse:separate;border-spacing:0;border:1px solid var(--border);border-radius:var(--radius);overflow:hidden}
.compare-table th,.compare-table td{padding:1rem 1.25rem;text-align:left;font-size:.875rem;line-height:1.55;vertical-align:top}
.compare-table thead th{font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.06em;padding:.85rem 1.25rem;border-bottom:2px solid var(--border)}
.compare-table thead th.compare-dim{background:var(--table-header)}
.compare-table thead th.compare-trad{background:var(--table-header);color:var(--text-m)}
.compare-table thead th.compare-avp{background:var(--table-highlight);color:var(--primary)}
.compare-table tbody tr{border-bottom:1px solid var(--border)}
.compare-table tbody tr:last-child td{border-bottom:none}
.compare-table tbody td{border-bottom:1px solid var(--border)}
.compare-table tbody tr:last-child td{border-bottom:none}
.compare-table td.compare-dim{font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:var(--text-s);background:var(--table-header);width:120px;white-space:nowrap}
.compare-example{display:block;margin-top:.5rem;font-size:.8rem;font-style:italic;color:var(--text-m);opacity:.85;line-height:1.5}
.compare-table td.compare-trad{background:var(--bg-card);color:var(--text-m)}
.compare-table td.compare-avp{background:var(--table-highlight);color:var(--text);font-weight:500}

/* Elevate panel — people narrative */
.elevate-panel{display:flex;gap:1.5rem;align-items:flex-start;max-width:960px;margin:3rem auto 0;padding:2.5rem;border-radius:var(--radius-lg);background:var(--bg-card);border:1px solid var(--border);box-shadow:var(--shadow)}
.elevate-icon{width:52px;height:52px;display:flex;align-items:center;justify-content:center;border-radius:14px;background:var(--primary-bg);color:var(--primary);flex-shrink:0}
.elevate-content h3{font-size:1.125rem;font-weight:800;color:var(--text);margin-bottom:.75rem;letter-spacing:-.02em}
.elevate-content p{font-size:.875rem;color:var(--text-m);line-height:1.7;margin-bottom:.75rem}
.elevate-content p:last-child{margin-bottom:0}

/* Standalone elevate section (dark purple) */
.elevate-section{text-align:center}
.elevate-standalone{max-width:760px;margin:0 auto}
.elevate-headline{font-size:clamp(1.75rem,3.5vw,2.5rem);font-weight:900;letter-spacing:-.03em;line-height:1.15;margin-bottom:1.5rem;color:#fff}
.elevate-standalone p{font-size:1.0625rem;line-height:1.75;color:rgba(255,255,255,.6);margin-bottom:1rem}
.elevate-standalone p:last-child{margin-bottom:0}
.elevate-standalone strong{color:#fff}

/* DOMAIN CARDS — 3x2 grid */
.domains-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem}
.domain-card{padding:1.75rem;border:1px solid var(--border);border-radius:var(--radius);background:var(--bg-card);transition:all .25s var(--ease)}
.domain-card:hover{border-color:var(--primary-l);box-shadow:var(--shadow-md);transform:translateY(-2px)}
.domain-icon{width:40px;height:40px;display:flex;align-items:center;justify-content:center;border-radius:10px;background:var(--primary-bg);color:var(--primary);margin-bottom:1rem}
.domain-card h3{font-size:.9375rem;font-weight:700;color:var(--text);margin-bottom:.375rem;letter-spacing:-.01em}
.domain-card p{font-size:.8125rem;color:var(--text-m);line-height:1.6}
.domain-card-highlight{background:var(--primary-bg);border-color:var(--primary)}

/* PROCESS / HOW IT WORKS — horizontal timeline */
.process-grid{display:grid;grid-template-columns:1fr auto 1fr auto 1fr auto 1fr auto 1fr;align-items:start;gap:0;max-width:1060px;margin:0 auto}
.process-step{text-align:center;padding:0 .75rem}
.process-num{font-size:.75rem;font-weight:700;color:var(--primary);letter-spacing:.04em;margin-bottom:.75rem}
.process-step h3{font-size:1rem;font-weight:700;color:var(--text);margin-bottom:.5rem;letter-spacing:-.01em}
.process-step p{font-size:.8125rem;color:var(--text-m);line-height:1.55}
.process-connector{width:40px;height:2px;background:var(--border);margin-top:1rem;align-self:start;flex-shrink:0}

/* WHY US — 2x2 grid */
.why-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem;max-width:880px;margin:0 auto}
.why-card{padding:2rem;border:1px solid var(--border);border-radius:var(--radius);background:var(--bg-card);transition:all .25s var(--ease)}
.why-card:hover{box-shadow:var(--shadow-md);transform:translateY(-2px)}
.why-icon{width:40px;height:40px;display:flex;align-items:center;justify-content:center;border-radius:10px;background:var(--primary-bg);color:var(--primary);margin-bottom:1rem}
.why-card h3{font-size:1rem;font-weight:700;color:var(--text);margin-bottom:.375rem;letter-spacing:-.01em}
.why-card p{font-size:.875rem;color:var(--text-m);line-height:1.6}

/* CLOSING CTA */
.section-closing{background:var(--bg-showcase);color:#fff;padding:6rem 0;text-align:center}
.closing-content h2{font-size:2rem;font-weight:800;letter-spacing:-.03em;color:#fff;line-height:1.25;max-width:680px;margin:0 auto 2rem}
.section-closing .btn-primary{box-shadow:0 4px 20px var(--btn-shadow)}

/* CONTACT */
.section-contact{padding:6rem 0;background:var(--bg-alt)}
.contact-layout{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start;max-width:960px;margin:0 auto}

.contact-text .section-label{text-align:left}
.contact-text h2{font-size:2rem;font-weight:800;letter-spacing:-.03em;color:var(--text);line-height:1.2;margin-bottom:1rem}
.contact-text > p{font-size:1rem;color:var(--text-m);line-height:1.7;margin-bottom:2rem}
.contact-perks{display:flex;flex-direction:column;gap:.75rem}
.contact-perks li{display:flex;align-items:center;gap:.625rem;font-size:.875rem;color:var(--text-s)}
.contact-perks svg{color:var(--primary);flex-shrink:0}

.contact-form{background:var(--bg-card);padding:2rem;border-radius:var(--radius-lg);border:1px solid var(--border);box-shadow:var(--shadow-lg)}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.form-group{margin-bottom:.875rem}
.form-group label{display:block;font-size:.75rem;font-weight:600;margin-bottom:.3rem;color:var(--text-s)}
.form-group input,.form-group textarea{width:100%;padding:.65rem .85rem;font-size:.875rem;border:1.5px solid var(--border);border-radius:8px;background:var(--bg-card);color:var(--text);font-family:inherit;transition:all .2s var(--ease)}
.form-group input::placeholder,.form-group textarea::placeholder{color:#94A3B8}
.form-group input:focus,.form-group textarea:focus{outline:none;border-color:var(--primary);box-shadow:0 0 0 3px rgba(59,79,124,.12)}
.contact-success[hidden]{display:none}
.contact-success{display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:3rem 2rem;gap:.75rem;color:var(--text)}
.contact-success svg{color:var(--primary)}
.contact-success h3{font-size:1.25rem;font-weight:700}
.contact-success p{color:var(--text-m);font-size:.9375rem}

/* FOOTER */
.site-footer{padding:3rem 0 2rem;background:var(--bg);color:var(--text-m)}
.footer-top{display:flex;justify-content:space-between;gap:3rem;padding-bottom:2rem;border-bottom:1px solid var(--border)}
.footer-brand{max-width:280px}
.footer-brand .brand{display:inline-flex;align-items:center;gap:.5rem;font-size:1.1rem;font-weight:700;color:var(--text);margin-bottom:.5rem}
.footer-brand img{margin-bottom:0}
.footer-tagline{font-size:.85rem;line-height:1.5;color:var(--text-m)}
.footer-nav{display:flex;gap:4rem}
.footer-col{display:flex;flex-direction:column;gap:.5rem}
.footer-col h3{font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;margin-bottom:.25rem;color:var(--text-m)}
.footer-col a{font-size:.875rem;color:var(--text-m);transition:color .15s var(--ease)}
.footer-col a:hover{color:var(--primary)}

/* Footer social icons & bottom */
.footer-copyright{display:flex;align-items:center;gap:.75rem}
.footer-social{display:inline-flex;gap:.5rem;align-items:center}
.footer-social a{display:inline-flex;align-items:center;color:var(--text-m);transition:color .2s var(--ease)}
.footer-social a:hover{color:var(--primary)}

/* HERO CONSTELLATION */
.hero-constellation{position:absolute;inset:0;width:100%;height:100%;z-index:1;pointer-events:none}
.hero .container{position:relative;z-index:2}



/* INTELLIGENCE LOOP — dark showcase section */
.intelligence-section{background:var(--bg-showcase);color:#fff;overflow:hidden}
.intelligence-section .section-label{color:var(--primary-l)}
.intelligence-section .section-header h2{color:#fff}
.intelligence-section .section-sub{color:rgba(255,255,255,.55)}

.intel-graphic{display:flex;justify-content:center;max-width:1280px;margin:0 auto}
.intel-svg{width:100%;height:auto;min-height:320px}

/* Orbital ring — slow continuous rotation */
.intel-orbit{fill:none;stroke:rgba(59,79,124,.15);stroke-width:1;stroke-dasharray:8 6;transform-origin:450px 250px;animation:orbit-spin 60s linear infinite}
@keyframes orbit-spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}

/* Feed lines — animated dashes flowing node → center */
.intel-feed{stroke:rgba(59,79,124,.4);stroke-width:1.5;stroke-dasharray:5 4;animation:feed-flow 1.5s linear infinite}
@keyframes feed-flow{from{stroke-dashoffset:0}to{stroke-dashoffset:-18}}

/* Return lines — animated dashes flowing center → node */
.intel-return{stroke:rgba(147,174,219,.35);stroke-width:1.5;stroke-dasharray:4 5;animation:return-flow 1.8s linear infinite}
@keyframes return-flow{from{stroke-dashoffset:0}to{stroke-dashoffset:-18}}

/* Traveling dots — feed (inward) */
.intel-dot-feed{fill:var(--primary-l);filter:url(#dot-glow)}
/* Traveling dots — return (outward) */
.intel-dot-return{fill:#fff;filter:url(#dot-glow)}

/* Center hub */
.intel-glow-bg{fill:rgba(59,79,124,.25);filter:url(#intel-glow)}
.intel-center{fill:var(--primary)}
.intel-center-t{fill:#fff;font-size:11px;font-weight:700;font-family:'Inter',sans-serif;text-anchor:middle;letter-spacing:.1em;text-transform:uppercase}

/* Agent nodes */
.intel-node{cursor:default}
.intel-node-ring{fill:rgba(255,255,255,.03);stroke:rgba(255,255,255,.12);stroke-width:1.5;transition:all .3s var(--ease)}
.intel-node-dot{fill:var(--primary-l);transition:all .3s var(--ease)}
.intel-node-label{fill:rgba(255,255,255,.5);font-size:13px;font-weight:600;font-family:'Inter',sans-serif;transition:fill .3s var(--ease)}
.intel-node:hover .intel-node-ring{fill:rgba(59,79,124,.1);stroke:var(--primary-l)}
.intel-node:hover .intel-node-dot{fill:#fff}
.intel-node:hover .intel-node-label{fill:#fff}

/* Flow direction labels */
.intel-flow-label{fill:rgba(255,255,255,.3);font-size:8px;font-weight:600;font-family:'Inter',sans-serif;letter-spacing:.08em;text-transform:uppercase}

/* Callout cards */
.intel-callouts{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;max-width:900px;margin:3rem auto 0}
.intel-callout{padding:1.5rem;border:1px solid rgba(255,255,255,.06);border-radius:var(--radius);background:rgba(255,255,255,.03);transition:all .25s var(--ease)}
.intel-callout:hover{border-color:rgba(59,79,124,.25);background:rgba(255,255,255,.05)}
.intel-callout h3{font-size:.875rem;font-weight:700;color:#fff;margin-bottom:.375rem;letter-spacing:-.01em}
.intel-callout p{font-size:.8125rem;color:rgba(255,255,255,.5);line-height:1.6}

/* HERO TRUST SIGNALS */
.hero-trust{display:flex;align-items:center;justify-content:center;gap:1.5rem;flex-wrap:wrap;margin-top:2rem}
.hero-trust-item{display:inline-flex;align-items:center;gap:.35rem;font-size:.6875rem;font-weight:500;color:rgba(255,255,255,.6);letter-spacing:.01em}
.hero-trust-item svg{color:rgba(147,174,219,.6);flex-shrink:0}

/* TRUST & SECURITY */
.security-arch{max-width:720px;margin:0 auto 3rem}
.security-boundary{border:2px solid var(--primary);border-radius:var(--radius-lg);padding:2rem;position:relative;background:var(--primary-tint)}
.boundary-label{position:absolute;top:-10px;left:1.5rem;background:var(--bg-alt);padding:0 .5rem;font-size:.6875rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--primary)}
.security-inner{display:flex;flex-direction:column;gap:1.25rem}
.security-layer{display:flex;gap:1rem;align-items:flex-start}
.security-layer-icon{width:36px;height:36px;display:flex;align-items:center;justify-content:center;border-radius:8px;background:var(--primary-bg);color:var(--primary);flex-shrink:0}
.security-layer h4{font-size:.875rem;font-weight:700;color:var(--text);margin-bottom:.2rem;letter-spacing:-.01em}
.security-layer p{font-size:.8125rem;color:var(--text-m);line-height:1.6}

.security-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem;max-width:900px;margin:0 auto 2.5rem}
.security-card{padding:1.75rem;border:1px solid var(--border);border-radius:var(--radius);background:var(--bg-card);transition:all .25s var(--ease);position:relative}
.security-card:hover{border-color:var(--primary-l);box-shadow:var(--shadow-md);transform:translateY(-2px)}
.security-card-icon{width:40px;height:40px;display:flex;align-items:center;justify-content:center;border-radius:10px;background:var(--primary-bg);color:var(--primary);margin-bottom:1rem}
.security-card h3{font-size:.9375rem;font-weight:700;color:var(--text);margin-bottom:.375rem;letter-spacing:-.01em}
.security-card p{font-size:.8125rem;color:var(--text-m);line-height:1.6}

/* Security bridge — transition between modes panel and cards */
.security-bridge{text-align:center;max-width:600px;margin:0 auto 2rem;padding-top:.5rem}
.security-bridge-label{font-size:.6875rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--primary);margin-bottom:.5rem}
.security-bridge-heading{font-size:1.0625rem;font-weight:600;color:var(--text-s);line-height:1.5}

.security-callout{display:flex;gap:1.25rem;align-items:flex-start;padding:2rem;border:1px solid var(--primary);border-radius:var(--radius);background:var(--primary-bg);max-width:900px;margin:0 auto}
.security-callout-icon{width:48px;height:48px;display:flex;align-items:center;justify-content:center;border-radius:12px;background:var(--btn-bg);color:#fff;flex-shrink:0}
.security-callout-content h3{font-size:1rem;font-weight:700;color:var(--text);margin-bottom:.5rem;letter-spacing:-.01em}
.security-callout-content p{font-size:.875rem;color:var(--text-m);line-height:1.7}
.security-callout-content em{color:var(--primary);font-style:normal;font-weight:600}

/* Data Flow Pipeline */
.data-flow{max-width:960px;margin:0 auto 3rem}
.data-flow-header{text-align:center;margin-bottom:2rem}
.data-flow-header h3{font-size:1.125rem;font-weight:700;color:var(--text);margin-bottom:.5rem}
.data-flow-header p{font-size:.875rem;color:var(--text-m);max-width:600px;margin:0 auto}
.data-flow-pipeline{display:flex;align-items:flex-start;justify-content:center;gap:.5rem;flex-wrap:nowrap;overflow-x:auto;padding:1.5rem 0}
.pipeline-step{display:flex;flex-direction:column;align-items:center;text-align:center;min-width:100px;max-width:120px;flex-shrink:0}
.pipeline-step-shield .pipeline-icon{background:var(--btn-bg);color:#fff}
.pipeline-icon{width:44px;height:44px;display:flex;align-items:center;justify-content:center;border-radius:12px;background:var(--primary-bg);color:var(--primary);margin-bottom:.5rem;flex-shrink:0}
.pipeline-label{font-size:.75rem;font-weight:700;color:var(--text);line-height:1.3;margin-bottom:.25rem}
.pipeline-desc{font-size:.6875rem;color:var(--text-m);line-height:1.4}
.pipeline-arrow{display:flex;align-items:center;color:var(--primary-l);margin-top:10px;flex-shrink:0}
.pipeline-footnote{text-align:center;font-size:.8125rem;color:var(--text-m);margin-top:1rem;padding:1rem 1.5rem;border:1px dashed var(--primary);border-radius:var(--radius);background:var(--primary-bg)}
.pipeline-footnote strong{color:var(--primary);font-weight:700}

/* Deployment Modes — comparison table */
.deploy-compare{max-width:960px;margin:0 auto;overflow-x:auto;-webkit-overflow-scrolling:touch}
.deploy-table{width:100%;border-collapse:separate;border-spacing:0;border:1px solid var(--border);border-radius:var(--radius);overflow:hidden}
.deploy-table th,.deploy-table td{padding:1rem 1.25rem;text-align:left;font-size:.875rem;line-height:1.55;vertical-align:top}
.deploy-table thead th{padding:1.25rem 1.25rem .85rem;border-bottom:2px solid var(--border);font-size:.9375rem;font-weight:700;color:var(--text)}
.deploy-table thead th.deploy-dim{background:var(--table-header);width:160px}
.deploy-table thead th.deploy-local{background:var(--table-highlight)}
.deploy-table thead th.deploy-external{background:var(--table-header)}
.deploy-heading{display:block;font-size:1.05rem;font-weight:800;letter-spacing:-.01em;margin-bottom:.35rem}
.deploy-sub{display:block;font-size:.8rem;font-weight:400;line-height:1.45;color:var(--text-m);letter-spacing:0}
.deploy-table tbody td{border-bottom:1px solid var(--border)}
.deploy-table tbody tr:last-child td{border-bottom:none}
.deploy-table td.deploy-dim{font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:var(--text-s);white-space:nowrap}
.deploy-table td.deploy-local{background:var(--table-highlight)}
.deploy-table td.deploy-external{background:var(--table-header);color:var(--text-m)}
.deploy-highlight-good{color:var(--primary);font-weight:700}

/* WEBLISK SECTION */
.weblisk-link{color:var(--primary-l);text-decoration:underline;text-underline-offset:2px;transition:color .2s var(--ease)}
.weblisk-link:hover{color:#fff}
.weblisk-features{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem;max-width:900px;margin:0 auto}
.weblisk-card{padding:1.75rem;border:1px solid rgba(255,255,255,.06);border-radius:var(--radius);background:rgba(255,255,255,.03);transition:all .25s var(--ease)}
.weblisk-card:hover{border-color:rgba(59,79,124,.25);background:rgba(255,255,255,.05);transform:translateY(-2px)}
.weblisk-card-icon{width:40px;height:40px;display:flex;align-items:center;justify-content:center;border-radius:10px;background:rgba(59,79,124,.15);color:var(--primary-l);margin-bottom:1rem}
.weblisk-card h3{font-size:.9375rem;font-weight:700;color:#fff;margin-bottom:.375rem;letter-spacing:-.01em}
.weblisk-card p{font-size:.8125rem;color:rgba(255,255,255,.5);line-height:1.6}
.weblisk-card em{color:var(--primary-l);font-style:normal;font-weight:600}

/* CUSTOMER LOGOS */
.customer-logos{margin-bottom:3.5rem}
.logo-track{display:flex;align-items:center;justify-content:center;gap:2rem;flex-wrap:wrap}
.logo-placeholder{display:flex;align-items:center;justify-content:center;width:160px;height:56px;border:1.5px dashed var(--border);border-radius:var(--radius);background:var(--bg-alt);transition:all .25s var(--ease)}
.logo-placeholder span{font-size:.75rem;font-weight:600;color:var(--text-m);letter-spacing:.02em}
.logo-placeholder:hover{border-color:var(--primary-l);background:var(--primary-bg)}

/* USE CASES */
.use-cases{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem}
.use-case-card{padding:1.75rem;border:1px solid var(--border);border-radius:var(--radius);background:var(--bg-card);transition:all .25s var(--ease)}
.use-case-card:hover{border-color:var(--primary-l);box-shadow:var(--shadow-md);transform:translateY(-2px)}
.use-case-tag{display:inline-block;font-size:.6875rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--primary);background:var(--primary-bg);padding:.25rem .65rem;border-radius:100px;margin-bottom:.875rem}
.use-case-card h3{font-size:1rem;font-weight:700;color:var(--text);margin-bottom:.5rem;letter-spacing:-.01em;line-height:1.3}
.use-case-card p{font-size:.8125rem;color:var(--text-m);line-height:1.6;margin-bottom:1.25rem}
.use-case-result{display:flex;align-items:baseline;gap:.5rem;padding-top:.875rem;border-top:1px solid var(--border)}
.use-case-metric{font-size:1.75rem;font-weight:900;color:var(--primary);letter-spacing:-.03em;line-height:1}
.use-case-label{font-size:.75rem;font-weight:600;color:var(--text-m)}

/* POWERED BY WEBLISK — footer badge */
.footer-bottom{padding-top:1.5rem;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:.5rem;font-size:.8rem;color:var(--text-m)}
.powered-by-weblisk{display:inline-flex;align-items:center;gap:.35rem;font-size:.6875rem;font-weight:600;color:var(--text-m);letter-spacing:.02em;padding:.3rem .7rem;border:1px solid var(--border);border-radius:100px;background:var(--bg-alt);transition:all .25s var(--ease)}
.powered-by-weblisk:hover{color:var(--primary);border-color:var(--primary);background:var(--primary-bg)}
.powered-by-weblisk svg{color:var(--primary)}

/* Footer accent link */
.footer-link-accent{color:var(--primary);text-decoration:underline;text-underline-offset:2px;transition:color .2s var(--ease)}
.footer-link-accent:hover{color:var(--text)}

/* Hero strong tag styling */
.hero-sub strong{color:var(--primary-l);font-weight:600}

/* DUOTONE ICON TREATMENT */
.domain-icon svg *,.pillar-icon svg *,.why-icon svg *{fill:currentColor;fill-opacity:.12;transition:fill-opacity .25s var(--ease)}
.domain-card:hover .domain-icon svg *,.pillar-card:hover .pillar-icon svg *,.why-card:hover .why-icon svg *{fill-opacity:.22}

/* FAQ SECTION */
.faq-grid{max-width:720px;margin:0 auto;display:flex;flex-direction:column;gap:.75rem}
.faq-item{border:1px solid var(--border);border-radius:var(--radius);background:var(--bg-card);overflow:hidden;transition:all .25s var(--ease)}
.faq-item[open]{border-color:var(--primary-l);box-shadow:var(--shadow)}
.faq-q{display:flex;align-items:center;justify-content:space-between;padding:1.25rem 1.5rem;font-size:.9375rem;font-weight:700;color:var(--text);cursor:pointer;list-style:none;letter-spacing:-.01em;transition:color .2s var(--ease)}
.faq-q::-webkit-details-marker{display:none}
.faq-q::marker{display:none;content:""}
.faq-q::after{content:"+";font-size:1.25rem;font-weight:400;color:var(--primary);transition:transform .2s var(--ease);flex-shrink:0;margin-left:1rem}
.faq-item[open] .faq-q::after{content:"−"}
.faq-item[open] .faq-q{color:var(--primary)}
.faq-a{padding:0 1.5rem 1.25rem}
.faq-a p{font-size:.875rem;color:var(--text-m);line-height:1.7}
.faq-a a{color:var(--primary);font-weight:600;text-decoration:underline;text-underline-offset:2px}
.faq-a a:hover{color:var(--primary-d)}

/* ENGAGEMENT MODELS */
.engagement-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;max-width:960px;margin:0 auto}
.engagement-card{padding:2rem;border:1px solid var(--border);border-radius:var(--radius);background:var(--bg-card);transition:all .25s var(--ease);display:flex;flex-direction:column}
.engagement-card:hover{border-color:var(--primary-l);box-shadow:var(--shadow-md);transform:translateY(-2px)}
.engagement-card-featured{border-color:var(--primary);background:var(--primary-bg);position:relative}
.engagement-card-featured::before{content:"Most Popular";position:absolute;top:-10px;left:50%;transform:translateX(-50%);font-size:.6875rem;font-weight:700;text-transform:uppercase;letter-spacing:.06em;background:var(--btn-bg);color:#fff;padding:.25rem .75rem;border-radius:100px;white-space:nowrap}
.engagement-tier{font-size:.6875rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--primary);margin-bottom:.75rem}
.engagement-card h3{font-size:1.125rem;font-weight:800;color:var(--text);margin-bottom:.625rem;letter-spacing:-.02em;line-height:1.3}
.engagement-card > p{font-size:.8125rem;color:var(--text-m);line-height:1.65;margin-bottom:1.25rem}
.engagement-includes{list-style:none;padding:0;margin:0 0 1.25rem;flex-grow:1}
.engagement-includes li{font-size:.8125rem;color:var(--text-s);padding:.35rem 0 .35rem 1.25rem;position:relative;line-height:1.5}
.engagement-includes li::before{content:"✓";position:absolute;left:0;color:var(--primary);font-weight:700;font-size:.75rem}
.engagement-ideal{font-size:.75rem;font-style:italic;color:var(--text-m);padding-top:.875rem;border-top:1px solid var(--border);margin-top:auto}

/* CUSTOMER SECTION — industry chips + horizontal scroll */
.industry-chips{display:flex;align-items:center;justify-content:center;gap:.5rem;flex-wrap:wrap;margin-bottom:2rem}
.industry-chip{display:inline-flex;align-items:center;font-size:.8125rem;font-weight:600;color:var(--text-m);padding:.65rem 1rem;border-radius:100px;border:1.5px solid var(--border);background:var(--bg-card);cursor:pointer;transition:all .2s var(--ease);white-space:nowrap;user-select:none;font-family:inherit;line-height:inherit;letter-spacing:inherit}
.industry-chip:hover{border-color:var(--primary-l);color:var(--primary)}
.industry-chip.active{background:var(--btn-bg);color:#fff;border-color:var(--btn-bg);box-shadow:0 2px 8px var(--btn-shadow)}

.use-case-scroll-wrap{position:relative}

.use-case-scroll{overflow-x:auto;-webkit-overflow-scrolling:touch;scroll-snap-type:x mandatory;scrollbar-width:none;scroll-behavior:smooth;padding:0 max(3vw, calc((100vw - 1280px) / 2 + 2rem))}\n.use-case-scroll:focus-visible{outline:2px solid var(--primary);outline-offset:2px;border-radius:var(--radius)}
.use-case-scroll::-webkit-scrollbar{display:none}

.use-case-track{display:flex;gap:1.25rem;padding:.25rem 0 1rem}

.use-case-track .use-case-card{min-width:340px;max-width:340px;flex-shrink:0;scroll-snap-align:start}

.scroll-dots{display:flex;align-items:center;justify-content:center;gap:.5rem;margin-top:.5rem;padding-bottom:.5rem}
.scroll-dot{width:8px;height:8px;border-radius:50%;background:var(--border);transition:all .25s var(--ease);cursor:pointer;padding:12px;background-clip:content-box}
.scroll-dot:hover{background:var(--primary-l)}
.scroll-dot.active{background:var(--primary);width:24px;border-radius:4px;background-clip:content-box}

.use-case-header{display:flex;align-items:center;gap:.5rem;flex-wrap:wrap;margin-bottom:.875rem}
.use-case-industry{display:inline-block;font-size:.6875rem;font-weight:600;color:var(--text-s);background:var(--bg-alt);padding:.25rem .6rem;border-radius:6px;letter-spacing:.02em}
.use-case-agent-tag{display:inline-block;font-size:.6875rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--primary);background:var(--primary-bg);padding:.25rem .65rem;border-radius:100px}

/* RESPONSIVE */
/* Nav collapses at 1024px */
@media(max-width:1024px){
  .nav-toggle{display:flex !important}
  .main-nav{display:none;position:absolute;top:64px;left:0;right:0;flex-direction:column;background:var(--nav-bg);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);border-bottom:1px solid var(--border);padding:.75rem 1rem;gap:.25rem;margin-left:0;z-index:100;box-shadow:var(--shadow-md)}
  .main-nav.open{display:flex}
  .nav-link{width:100%;padding:.75rem 1rem}
  .nav-actions .btn-nav{display:none}
  .main-nav .nav-cta{display:flex;justify-content:center;margin-top:.5rem;padding:.7rem 1.35rem}
}

@media(max-width:768px){

  .hero{padding:5rem 0 4rem}
  .hero h1{font-size:2rem}
  .hero-sub{font-size:.9375rem}

  .channel-grid{gap:1.5rem}

  .platform-pillars{grid-template-columns:1fr}
  .platform-metrics{grid-template-columns:repeat(2,1fr);gap:1rem}

  .compare-grid{grid-template-columns:1fr}
  .compare-table th,.compare-table td{padding:.75rem .875rem;font-size:.8125rem}
  .compare-table td.compare-dim{white-space:normal}
  .elevate-panel{flex-direction:column;padding:1.75rem}
  .domains-grid{grid-template-columns:1fr}
  .solutions-grid{grid-template-columns:1fr}
  .process-grid{grid-template-columns:1fr;gap:2rem}
  .process-connector{display:none}
  .process-step{text-align:left}
  .why-grid{grid-template-columns:1fr}
  .engagement-grid{grid-template-columns:1fr}
  .engagement-card-featured::before{position:static;transform:none;display:inline-block;margin-bottom:.75rem}
  .faq-q{padding:1rem 1.25rem;font-size:.875rem}
  .faq-a{padding:0 1.25rem 1rem}
  .use-case-track .use-case-card{min-width:280px;max-width:300px}
  .use-case-scroll{padding:0 5vw}
  .intel-callouts{grid-template-columns:1fr}
  .intel-graphic{margin:1rem -1rem 0;max-width:calc(100% + 2rem)}
  .intel-content{transform-origin:450px 250px;transform:scale(1.3)}
  .security-grid{grid-template-columns:1fr}
  .security-callout{flex-direction:column}
  .security-boundary{padding:1.5rem}
  .deploy-table td.deploy-dim{white-space:normal}
  .deploy-table th,.deploy-table td{padding:.75rem .875rem;font-size:.8125rem}
  .data-flow-pipeline{flex-wrap:wrap;justify-content:center;gap:.75rem}
  .pipeline-arrow{transform:rotate(90deg);margin:0}
  .pipeline-step{min-width:80px;max-width:none;flex-basis:calc(50% - 2rem)}
  .hero-trust{gap:.75rem}
  .hero-trust-item{font-size:.75rem}
  .weblisk-features{grid-template-columns:1fr}
  .use-cases{grid-template-columns:1fr}
  .logo-track{gap:1rem}
  .logo-placeholder{width:130px;height:48px}
  .footer-bottom{flex-direction:column;gap:1rem;text-align:center}
  .contact-layout{grid-template-columns:1fr;gap:2.5rem}
  .form-row{grid-template-columns:1fr}
  .footer-top{flex-direction:column;gap:2rem}
  .footer-nav{gap:2rem}

  .section-header h2,.contact-text h2,.closing-content h2{font-size:1.5rem}
  .section{padding:4rem 0}
  .contact-form{padding:1.5rem}
}

@media(max-width:480px){
  .hero{padding:3.5rem 0 3rem}
  .hero h1{font-size:1.625rem}
  .section{padding:3rem 0}
  .footer-nav{flex-direction:column;gap:2rem}
  .channel-grid{gap:1rem}
  .channel{font-size:.75rem}
}
