/* ==========================================================================
   AzenfoTech — Design System
   Display: Space Grotesk | Body: Inter | Data/Mono: IBM Plex Mono
   ========================================================================== */

:root{
  /* Brand palette */
  --primary:#2563EB;      /* Royal Blue */
  --secondary:#7C3AED;    /* Purple */
  --indigo:#2563EB;
  --indigo-2:#7C3AED;
  --cyan:#7C3AED;
  --amber:#FFB020;
  --coral:#FF6B6B;

  --slate-900:#0F172A;
  --slate-500:#64748B;

  --ink:#0A0E17;
  --ink-2:#10151F;
  --ink-3:#161C29;
  --line-dark:rgba(230,233,242,0.09);
  --text-dark:#E9EBF4;
  --text-dark-muted:#9AA2B8;

  --paper:#FFFFFF;
  --paper-2:#F8FAFC;
  --paper-3:#F1F5F9;
  --line-light:rgba(15,23,42,0.08);
  --text-light:#0F172A;
  --text-light-muted:#64748B;

  --grad-brand:linear-gradient(115deg,#2563EB 0%, #7C3AED 100%);
  --grad-logo:linear-gradient(100deg,#2563EB 0%, #14B8A6 100%);
  --grad-warm:linear-gradient(115deg,#FFB020 0%, #FF6B6B 100%);
  --grad-mesh:radial-gradient(60% 50% at 15% 10%, rgba(37,99,235,0.16), transparent 60%),
              radial-gradient(50% 45% at 85% 15%, rgba(124,58,237,0.14), transparent 60%),
              radial-gradient(60% 60% at 50% 100%, rgba(37,99,235,0.06), transparent 60%);

  --radius-sm:10px;
  --radius-md:16px;
  --radius-lg:24px;
  --radius-xl:32px;

  --shadow-glow:0 0 0 1px rgba(37,99,235,0.15), 0 20px 60px -20px rgba(37,99,235,0.35);
  --shadow-card:0 1px 2px rgba(15,23,42,0.06), 0 20px 40px -24px rgba(15,23,42,0.16);

  --ease:cubic-bezier(.16,1,.3,1);

  /* Default (brand) theme: white with subtle gray sections */
  --bg:var(--paper);
  --bg-2:var(--paper-2);
  --bg-3:var(--paper-3);
  --line:var(--line-light);
  --text:var(--text-light);
  --text-muted:var(--text-light-muted);
  color-scheme: light;
}

html[data-theme="dark"]{
  --bg:var(--ink);
  --bg-2:var(--ink-2);
  --bg-3:var(--ink-3);
  --line:var(--line-dark);
  --text:var(--text-dark);
  --text-muted:var(--text-dark-muted);
  --shadow-card:0 1px 2px rgba(0,0,0,0.4), 0 20px 40px -24px rgba(0,0,0,0.6);
  --grad-mesh:radial-gradient(60% 50% at 15% 10%, rgba(37,99,235,0.35), transparent 60%),
              radial-gradient(50% 45% at 85% 15%, rgba(124,58,237,0.28), transparent 60%),
              radial-gradient(60% 60% at 50% 100%, rgba(37,99,235,0.10), transparent 60%);
  color-scheme: dark;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *,*::before,*::after{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important;}
}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:'Inter',system-ui,-apple-system,sans-serif;
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  transition:background .4s var(--ease), color .4s var(--ease);
  overflow-x:hidden;
}

h1,h2,h3,h4,.font-display{
  font-family:'Space Grotesk',system-ui,sans-serif;
  font-weight:600;
  letter-spacing:-0.02em;
  line-height:1.08;
  margin:0;
}
.font-mono{font-family:'IBM Plex Mono',monospace;}

a{color:inherit;text-decoration:none;}
img{max-width:100%;display:block;}
button{font-family:inherit;}

::selection{background:var(--indigo);color:#fff;}

:focus-visible{outline:2px solid var(--cyan); outline-offset:3px; border-radius:4px;}

.container{
  width:100%;
  max-width:1240px;
  margin:0 auto;
  padding:0 24px;
}
.section{padding:120px 0;}
@media (max-width:900px){ .section{padding:80px 0;} }
.section-alt{background:var(--bg-2);}

.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-family:'IBM Plex Mono',monospace;
  font-size:12.5px; letter-spacing:0.08em; text-transform:uppercase;
  color:var(--indigo-2);
  padding:6px 14px 6px 10px;
  border:1px solid var(--line);
  border-radius:99px;
  background:var(--bg-2);
  margin-bottom:20px;
}
.eyebrow .dot{width:6px;height:6px;border-radius:50%;background:var(--cyan);box-shadow:0 0 8px var(--cyan);}

.text-gradient{
  background:var(--grad-brand);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}

.lede{font-size:19px; color:var(--text-muted); max-width:640px; font-weight:400;}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:14px 26px;
  border-radius:99px;
  font-weight:600; font-size:15px;
  cursor:pointer; border:1px solid transparent;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
  white-space:nowrap;
}
.btn-primary{
  background:var(--primary); color:#fff;
  box-shadow:0 8px 20px -8px rgba(37,99,235,0.55);
}
.btn-primary:hover{background:var(--grad-brand); transform:translateY(-2px); box-shadow:0 14px 32px -8px rgba(124,58,237,0.55);}
.btn-ghost{
  background:transparent; color:var(--text); border-color:var(--line);
}
.btn-ghost:hover{border-color:var(--secondary); color:var(--secondary); transform:translateY(-2px);}
.btn-sm{padding:10px 18px; font-size:13.5px;}
.btn-block{width:100%;}

/* Header */
.site-header{
  position:sticky; top:0; left:0; right:0; z-index:100;
  padding:22px 0;
  transition:padding .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  border-bottom:1px solid transparent;
}
body.home-page .site-header,
body.products-page .site-header,
body.services-page .site-header{
  position:fixed;
}
.site-header.scrolled{
  padding:12px 0;
  background:color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter:blur(16px) saturate(140%);
  -webkit-backdrop-filter:blur(16px) saturate(140%);
  border-bottom:1px solid var(--line);
  box-shadow:0 10px 30px -20px rgba(0,0,0,0.4);
}
.nav-inner{display:flex; align-items:center; justify-content:space-between; gap:24px;}
.brand{display:flex; flex-direction:row; align-items:center; gap:12px; line-height:1;}
.brand-icon{height:32px; flex:0 0 auto; display:inline-flex; align-items:center; justify-content:center; border-radius:0; background:transparent;}
.brand-icon img{height:32px; width:auto; display:block;}
.brand-logo{height:32px; width:auto; display:block;}
.brand-icon + .brand-text{display:none;}
.brand-text{display:flex; flex-direction:column; line-height:1;}
.brand-name{
  font-family:Inter, 'Poppins', system-ui, -apple-system, sans-serif; font-weight:700; font-size:26px; letter-spacing:0.5px;
  color:var(--secondary);
}
.brand-tagline{
  font-family:Inter, system-ui, -apple-system, sans-serif; font-size:12px; font-weight:500; color:var(--text-muted); letter-spacing:0.5px; margin-top:2px;
}
.brand-azenfo{ color: #ffffff; font-weight:700; }
.brand-tech{ color: #1fd1d8; font-weight:700; }
.brand-tagline{
  font-family:Inter, system-ui, -apple-system, sans-serif; font-size:12px; font-weight:500; color:var(--text-muted); letter-spacing:0.5px; margin-top:2px;
}
.brand-tagline::before{
  content:''; width:12px; height:1.5px; border-radius:2px; background:var(--grad-logo); flex-shrink:0;
}
.nav-links{display:flex; align-items:center; gap:2px; list-style:none; margin:0; padding:0;}
.nav-links a{
  padding:9px 14px; border-radius:99px; font-size:14.5px; font-weight:500; color:var(--text-muted);
  transition:color .25s, background .25s;
}
.nav-links a:hover, .nav-links a.active{color:var(--text); background:var(--bg-2);}
.nav-actions{display:flex; align-items:center; gap:10px;}
.theme-toggle{
  width:38px;height:38px;border-radius:50%;
  border:1px solid var(--line); background:var(--bg-2); color:var(--text);
  display:flex;align-items:center;justify-content:center; cursor:pointer;
}
.theme-toggle svg{width:17px;height:17px;}
.menu-btn{display:none; width:40px;height:40px;border-radius:10px;border:1px solid var(--line);background:var(--bg-2);align-items:center;justify-content:center;cursor:pointer;}

@media (max-width:980px){
  .nav-links{display:none;}
  .menu-btn{display:flex;}
  .nav-actions .btn-ghost.hide-mobile{display:none;}
}

.mobile-drawer{
  position:fixed; inset:0; z-index:150; display:none;
  background:var(--bg);
}
.mobile-drawer.open{display:block;}
.mobile-drawer-inner{padding:100px 28px 40px; display:flex; flex-direction:column; gap:6px;}
.mobile-drawer a{padding:16px 4px; font-size:22px; font-family:'Space Grotesk',sans-serif; border-bottom:1px solid var(--line);}
.mobile-drawer .btn{margin-top:24px;}
.drawer-close{position:absolute; top:26px; right:24px; width:40px;height:40px;border-radius:10px;border:1px solid var(--line);background:var(--bg-2);display:flex;align-items:center;justify-content:center;cursor:pointer;}

/* Hero */
.hero{
  position:relative;
  padding:180px 0 120px;
  overflow:hidden;
}
.hero::before{
  content:'';
  position:absolute; inset:0;
  background:var(--grad-mesh);
  pointer-events:none;
}
.hero-grid{
  position:absolute; inset:0;
  background-image:linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size:64px 64px;
  mask-image:radial-gradient(ellipse 70% 60% at 50% 20%, black 10%, transparent 75%);
  -webkit-mask-image:radial-gradient(ellipse 70% 60% at 50% 20%, black 10%, transparent 75%);
  opacity:0.7;
  pointer-events:none;
}
.hero-content{position:relative; z-index:2; text-align:center; max-width:880px; margin:0 auto;}
.hero h1{font-size:clamp(40px,6vw,74px);}
.hero .lede{margin:26px auto 0; text-align:center; font-size:20px;}
.hero-actions{display:flex; gap:14px; justify-content:center; margin-top:38px; flex-wrap:wrap;}
.hero-stats{display:flex; gap:48px; justify-content:center; margin-top:72px; flex-wrap:wrap;}
.hero-stat-num{font-family:'Space Grotesk',sans-serif; font-size:34px; font-weight:700;}
.hero-stat-label{font-size:13px; color:var(--text-muted); font-family:'IBM Plex Mono',monospace; letter-spacing:.03em;}

/* Signature: AI Build Console */
.console{
  position:relative; z-index:2;
  max-width:640px; margin:64px auto 0;
  background:color-mix(in srgb, var(--bg-2) 70%, transparent);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  box-shadow:var(--shadow-card);
  overflow:hidden;
  text-align:left;
}
.console-bar{display:flex;align-items:center;gap:8px;padding:14px 18px;border-bottom:1px solid var(--line);}
.console-dot{width:9px;height:9px;border-radius:50%;}
.console-title{margin-left:8px;font-family:'IBM Plex Mono',monospace;font-size:12px;color:var(--text-muted);}
.console-body{padding:22px 24px 26px; font-family:'IBM Plex Mono',monospace; font-size:13.5px;}
.console-line{display:flex;align-items:center;gap:12px;padding:8px 0; color:var(--text-muted); opacity:0.35; transition:opacity .5s var(--ease), color .5s var(--ease);}
.console-line.active{opacity:1; color:var(--text);}
.console-line.done{opacity:0.85;}
.console-check{width:16px;height:16px;border-radius:50%;border:1.5px solid var(--line); flex-shrink:0; display:flex;align-items:center;justify-content:center;}
.console-line.done .console-check, .console-line.active .console-check{border-color:var(--cyan); background:rgba(34,211,238,0.12);}
.console-line.done .console-check::after{content:'✓'; font-size:9px; color:var(--cyan);}
.console-line.active .console-check::after{content:''; width:6px;height:6px;border-radius:50%;background:var(--amber); animation:pulse 1.2s infinite;}
@keyframes pulse{0%,100%{opacity:1;}50%{opacity:0.3;}}

/* Cards */
.grid{display:grid; gap:20px;}
.grid-2{grid-template-columns:repeat(2,1fr);}
.grid-3{grid-template-columns:repeat(3,1fr);}
.grid-4{grid-template-columns:repeat(4,1fr);}
@media (max-width:980px){ .grid-3,.grid-4{grid-template-columns:repeat(2,1fr);} }
@media (max-width:640px){ .grid-2,.grid-3,.grid-4{grid-template-columns:1fr;} }

.card{
  background:var(--bg-2);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:30px;
  transition:transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover{transform:translateY(-4px); border-color:rgba(91,95,239,0.4); box-shadow:var(--shadow-glow);}
.card-icon{
  width:46px;height:46px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  background:var(--bg-3); border:1px solid var(--line);
  margin-bottom:18px; color:var(--indigo-2);
}
.card h3{font-size:19px; margin-bottom:10px;}
.card p{color:var(--text-muted); font-size:14.5px; margin:0;}

.section-head{max-width:640px; margin-bottom:56px;}
.section-head.center{margin-left:auto; margin-right:auto; text-align:center;}
.section-head h2{font-size:clamp(28px,4vw,42px); margin-top:14px;}

/* Product cards */
.product-card{
  background:var(--bg-2); border:1px solid var(--line); border-radius:var(--radius-lg);
  overflow:hidden; display:flex; flex-direction:column; position:relative;
  transition:transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.product-card::before{
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:var(--card-accent, var(--grad-brand));
}
.product-card:hover{transform:translateY(-5px); border-color:rgba(37,99,235,0.35); box-shadow:var(--shadow-glow);}
.product-card-top{padding:32px 30px 0;}
.product-icon-tile{
  width:50px; height:50px; border-radius:14px;
  background:var(--card-accent, var(--grad-brand));
  display:flex; align-items:center; justify-content:center; color:#fff;
  box-shadow:0 8px 20px -8px rgba(37,99,235,0.5);
}
.product-card-tag{
  display:inline-block; font-family:'IBM Plex Mono',monospace; font-size:11.5px; letter-spacing:.04em;
  padding:5px 11px; border-radius:99px; background:var(--bg-3); border:1px solid var(--line); color:var(--indigo-2);
  margin-top:18px;
}
.product-card h3.product-name{
  font-family:'Space Grotesk',sans-serif; font-size:25px; font-weight:700; letter-spacing:-0.02em;
  margin:14px 0 10px;
}
.product-card p{color:var(--text-muted); font-size:14.5px;}
.product-feat-list{list-style:none; margin:20px 0 0; padding:0; display:flex; flex-wrap:wrap; gap:8px;}
.product-feat-list li{font-size:12.5px; color:var(--text-muted); background:var(--bg-3); border:1px solid var(--line); padding:5px 10px; border-radius:8px;}
.product-card-bottom{margin-top:auto; padding:26px 30px 30px; display:flex; gap:10px; border-top:1px solid var(--line); margin-top:24px;}
.status-badge{font-family:'IBM Plex Mono',monospace; font-size:11px; padding:4px 10px; border-radius:99px;}
.status-live{background:rgba(37,99,235,0.1); color:var(--primary); border:1px solid rgba(37,99,235,0.3);}
.status-soon{background:rgba(255,176,32,0.12); color:var(--amber); border:1px solid rgba(255,176,32,0.3);}

/* Home page product showcase graphic */
.showcase-stack{position:relative; height:380px;}
.showcase-card{
  position:absolute; width:78%; border-radius:var(--radius-md); overflow:hidden;
  background:var(--bg-2); border:1px solid var(--line); box-shadow:var(--shadow-card);
}
.showcase-card .sc-bar{display:flex; gap:5px; padding:12px 14px; border-bottom:1px solid var(--line);}
.showcase-card .sc-dot{width:7px;height:7px;border-radius:50%; background:var(--line);}
.showcase-card .sc-body{padding:18px 16px 22px; display:flex; flex-direction:column; gap:10px;}
.showcase-card .sc-row{height:8px; border-radius:5px; background:var(--bg-3);}
.showcase-card .sc-row.grad{background:var(--card-accent, var(--grad-brand)); opacity:0.85;}
.showcase-card.sc-1{top:0; left:0; z-index:3; --card-accent:linear-gradient(115deg,#2563EB,#7C3AED);}
.showcase-card.sc-2{top:56px; left:16%; z-index:2; opacity:0.92; transform:rotate(2.5deg); --card-accent:linear-gradient(115deg,#7C3AED,#2563EB);}
.showcase-card.sc-3{top:112px; left:30%; z-index:1; opacity:0.8; transform:rotate(-2deg); --card-accent:linear-gradient(115deg,#2563EB,#7C3AED);}
@media (max-width:640px){ .showcase-stack{height:300px;} .showcase-card{width:88%;} }

/* Logo strip */
.logo-strip{display:flex; flex-wrap:wrap; gap:14px; justify-content:center; align-items:center;}
.logo-chip{
  font-family:'IBM Plex Mono',monospace; font-size:13px; color:var(--text-muted);
  padding:10px 18px; border:1px solid var(--line); border-radius:10px; background:var(--bg-2);
}

/* Timeline (process) */
.timeline{position:relative; max-width:900px; margin:0 auto;}
.timeline::before{content:'';position:absolute; left:23px; top:8px; bottom:8px; width:2px; background:linear-gradient(var(--indigo), var(--cyan)); opacity:0.35;}
.timeline-item{position:relative; padding:0 0 44px 68px;}
.timeline-item:last-child{padding-bottom:0;}
.timeline-num{
  position:absolute; left:0; top:0; width:48px; height:48px; border-radius:50%;
  background:var(--bg-2); border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  font-family:'IBM Plex Mono',monospace; font-size:14px; font-weight:600; color:var(--indigo-2);
}
.timeline-item h3{font-size:19px; margin-bottom:8px;}
.timeline-item p{color:var(--text-muted); font-size:14.5px; margin:0; max-width:560px;}

/* Stats band */
.stats-band{
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  padding:56px 0;
}
.stats-band .grid{grid-template-columns:repeat(4,1fr); text-align:center;}
@media (max-width:760px){ .stats-band .grid{grid-template-columns:repeat(2,1fr); gap:36px;} }
.stat-num{font-family:'Space Grotesk',sans-serif; font-size:40px; font-weight:700;}
.stat-label{color:var(--text-muted); font-size:13.5px; margin-top:6px;}

/* Testimonials */
.testi-card{background:var(--bg-2); border:1px solid var(--line); border-radius:var(--radius-md); padding:32px;}
.testi-stars{color:var(--amber); font-size:15px; letter-spacing:2px; margin-bottom:16px;}
.testi-quote{font-size:16px; margin-bottom:22px;}
.testi-person{display:flex; align-items:center; gap:12px;}
.testi-avatar{width:42px;height:42px;border-radius:50%; background:var(--grad-brand); display:flex;align-items:center;justify-content:center; color:#fff; font-weight:700; font-family:'Space Grotesk',sans-serif;}
.testi-name{font-weight:600; font-size:14.5px;}
.testi-role{font-size:12.5px; color:var(--text-muted);}

/* CTA band */
.cta-band{
  position:relative; border-radius:var(--radius-xl); overflow:hidden;
  padding:80px 48px; text-align:center;
  background:var(--bg-2); border:1px solid var(--line);
}
.cta-band::before{content:'';position:absolute; inset:0; background:var(--grad-mesh); opacity:0.9;}
.cta-band > *{position:relative; z-index:1;}
.cta-band h2{font-size:clamp(28px,4vw,44px); margin-bottom:16px;}
.cta-band p{color:var(--text-muted); max-width:520px; margin:0 auto 32px;}
.cta-actions{display:flex; gap:14px; justify-content:center; flex-wrap:wrap;}

/* Footer */
.site-footer{border-top:1px solid var(--line); padding:72px 0 32px;}
.footer-top{display:grid; grid-template-columns:1.6fr repeat(4,1fr); gap:32px; padding-bottom:56px;}
@media (max-width:900px){ .footer-top{grid-template-columns:repeat(2,1fr);} }
@media (max-width:560px){ .footer-top{grid-template-columns:1fr;} }
.footer-col h4{font-size:13px; text-transform:uppercase; letter-spacing:.06em; color:var(--text-muted); margin-bottom:16px; font-family:'IBM Plex Mono',monospace; font-weight:500;}
.footer-col a{display:block; font-size:14.5px; color:var(--text); opacity:0.82; padding:6px 0;}
.footer-col a:hover{opacity:1; color:var(--indigo-2);}
.footer-bottom{display:flex; justify-content:space-between; align-items:center; padding-top:28px; border-top:1px solid var(--line); flex-wrap:wrap; gap:16px;}
.footer-bottom p{font-size:13px; color:var(--text-muted); margin:0;}
.social-row{display:flex; gap:10px;}
.social-row a{width:36px;height:36px;border-radius:50%; border:1px solid var(--line); display:flex;align-items:center;justify-content:center; background:var(--bg-2);}
.social-row a:hover{border-color:var(--indigo-2);}
.footer-newsletter{display:flex; gap:8px; margin-top:10px;}
.footer-newsletter input{
  flex:1; padding:11px 14px; border-radius:10px; border:1px solid var(--line); background:var(--bg-3); color:var(--text); font-size:13.5px;
}

/* Floating buttons */
.float-stack{position:fixed; right:22px; bottom:22px; z-index:90; display:flex; flex-direction:column; gap:12px; align-items:flex-end;}
.fab{
  width:52px;height:52px;border-radius:50%; display:flex;align-items:center;justify-content:center;
  cursor:pointer; box-shadow:0 10px 30px -8px rgba(0,0,0,0.5);
  transition:transform .3s var(--ease), opacity .3s var(--ease);
  border:none;
}
.fab-whatsapp{background:#25D366; color:#fff;}
.fab-top{background:var(--bg-2); border:1px solid var(--line); color:var(--text); opacity:0; pointer-events:none;}
.fab-top.show{opacity:1; pointer-events:auto;}
.fab:hover{transform:translateY(-3px) scale(1.05);}

/* Forms */
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
@media (max-width:640px){ .form-row{grid-template-columns:1fr;} }
.field{display:flex; flex-direction:column; gap:8px; margin-bottom:16px;}
.field label{font-size:13px; font-weight:600; color:var(--text-muted);}
.field input, .field select, .field textarea{
  padding:13px 15px; border-radius:10px; border:1px solid var(--line); background:var(--bg-3); color:var(--text);
  font-family:inherit; font-size:14.5px;
}
.field textarea{resize:vertical; min-height:120px;}
.field input:focus, .field select:focus, .field textarea:focus{border-color:var(--indigo-2);}

/* Page hero (interior pages) */
.page-hero{padding:170px 0 70px; text-align:center; position:relative;}
.page-hero::before{content:'';position:absolute; inset:0; background:var(--grad-mesh); opacity:0.6; pointer-events:none;}
.page-hero > *{position:relative; z-index:1;}
.page-hero h1{font-size:clamp(34px,5vw,56px);}
.breadcrumb{font-family:'IBM Plex Mono',monospace; font-size:12.5px; color:var(--text-muted); margin-bottom:18px;}
.breadcrumb a{color:var(--indigo-2);}

/* Utility */
.reveal{opacity:0; transform:translateY(24px); transition:opacity .8s var(--ease), transform .8s var(--ease);}
.reveal.in{opacity:1; transform:translateY(0);}
.flex{display:flex;}
.items-center{align-items:center;}
.gap-2{gap:8px;}
.mt-8{margin-top:8px;} .mt-16{margin-top:16px;} .mt-24{margin-top:24px;} .mt-32{margin-top:32px;} .mt-48{margin-top:48px;} .mt-64{margin-top:64px;}
.text-center{text-align:center;}
.tag{display:inline-block; font-size:12px; font-family:'IBM Plex Mono',monospace; color:var(--indigo-2); background:var(--bg-3); border:1px solid var(--line); padding:4px 10px; border-radius:8px; margin:0 6px 6px 0;}
.pill-row{display:flex; flex-wrap:wrap; gap:8px;}
hr.div{border:none; border-top:1px solid var(--line); margin:64px 0;}

.two-col{display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center;}
@media (max-width:900px){ .two-col{grid-template-columns:1fr; gap:32px;} }

.mock-panel{
  background:var(--bg-2); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:8px; box-shadow:var(--shadow-card);
}
.mock-panel-inner{
  background:var(--bg-3); border-radius:calc(var(--radius-lg) - 8px); padding:28px; min-height:280px;
  display:flex; flex-direction:column; gap:14px; justify-content:center;
}
.mock-bar{height:10px; border-radius:6px; background:var(--line);}
.mock-bar.grad{background:var(--grad-brand); opacity:0.75;}

.faq-item{border-bottom:1px solid var(--line); padding:22px 0;}
.faq-q{display:flex; justify-content:space-between; align-items:center; cursor:pointer; font-weight:600; font-size:16px; gap:16px;}
.faq-a{max-height:0; overflow:hidden; transition:max-height .4s var(--ease); color:var(--text-muted); font-size:14.5px;}
.faq-item.open .faq-a{max-height:200px; margin-top:14px;}
.faq-icon{transition:transform .3s var(--ease); flex-shrink:0;}
.faq-item.open .faq-icon{transform:rotate(45deg);}

.badge-row{display:flex; gap:10px; flex-wrap:wrap; justify-content:center;}

.blog-card{background:var(--bg-2); border:1px solid var(--line); border-radius:var(--radius-md); overflow:hidden;}
.blog-card-img{height:170px; background:var(--grad-mesh), var(--bg-3); position:relative;}
.blog-card-body{padding:24px;}
.blog-card .tag{margin-bottom:12px;}
.blog-card h3{font-size:17px; margin-bottom:8px;}
.blog-card p{font-size:13.5px; color:var(--text-muted); margin:0 0 14px;}
.blog-meta{font-size:12px; color:var(--text-muted); font-family:'IBM Plex Mono',monospace;}

.job-row{display:flex; justify-content:space-between; align-items:center; padding:24px 28px; border:1px solid var(--line); border-radius:var(--radius-md); background:var(--bg-2); flex-wrap:wrap; gap:14px;}
.job-title{font-weight:600; font-size:17px; margin-bottom:6px;}
.job-meta{font-size:13px; color:var(--text-muted);}

.value-card{text-align:center; padding:34px 24px;}
.value-card .card-icon{margin-left:auto; margin-right:auto;}

.map-embed{border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--line); height:340px;}

.contact-info-row{display:flex; gap:16px; align-items:flex-start; padding:18px 0; border-bottom:1px solid var(--line);}
.contact-info-row:last-child{border-bottom:none;}
.contact-info-icon{width:40px;height:40px;border-radius:10px; background:var(--bg-3); border:1px solid var(--line); display:flex;align-items:center;justify-content:center; flex-shrink:0; color:var(--indigo-2);}

/* AI Neural Graphic (home signature visual) */
.ai-graphic-panel{
  background:var(--bg-2); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:28px; box-shadow:var(--shadow-card); position:relative; overflow:hidden;
}
.ai-graphic-panel::before{content:'';position:absolute; inset:0; background:var(--grad-mesh); opacity:0.5; pointer-events:none;}
.neural-svg{position:relative; z-index:1; width:100%; height:auto; display:block;}
.neural-svg .flow-line{stroke-dasharray:5 7; animation:dashFlow 2.8s linear infinite;}
.neural-svg .flow-line.rev{animation-direction:reverse;}
.neural-svg .node{animation:nodePulse 2.6s ease-in-out infinite;}
@keyframes dashFlow{to{stroke-dashoffset:-24;}}
@keyframes nodePulse{0%,100%{opacity:0.75; r:5;}50%{opacity:1; r:6.4;}}
@media (prefers-reduced-motion: reduce){
  .neural-svg .flow-line{animation:none;}
  .neural-svg .node{animation:none;}
}

/* Hexagon AI capability graphic (home signature visual #2) */
.hex-graphic{position:relative; z-index:1; display:flex; align-items:center; justify-content:space-between; gap:14px; padding:10px 2px;}
.hex-col{display:flex; flex-direction:column; gap:26px; align-items:center;}
.hex-item{display:flex; flex-direction:column; align-items:center; gap:9px; text-align:center; width:88px;}
.hex-shape{
  width:56px; height:56px; flex-shrink:0;
  clip-path:polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0% 50%);
  background:var(--bg-3); border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; color:var(--indigo-2);
  transition:transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
}
.hex-item:hover .hex-shape{transform:translateY(-4px); background:var(--grad-logo); color:#fff;}
.hex-item span{
  font-family:'IBM Plex Mono',monospace; font-size:10px; letter-spacing:.04em; text-transform:uppercase;
  color:var(--text-muted); line-height:1.3;
}
.hex-core{position:relative; width:120px; height:120px; display:flex; align-items:center; justify-content:center; flex-shrink:0;}
.hex-core-ring{position:absolute; inset:0; border-radius:50%; border:1.5px dashed var(--line); animation:hexSpin 16s linear infinite;}
.hex-core-badge{
  width:82px; height:82px; border-radius:50%; background:var(--grad-logo);
  display:flex; align-items:center; justify-content:center; color:#fff;
  font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:21px;
  box-shadow:0 0 0 6px rgba(37,99,235,0.10), 0 16px 36px -14px rgba(37,99,235,0.55);
  animation:hexPulse 2.8s ease-in-out infinite;
}
@keyframes hexSpin{to{transform:rotate(360deg);}}
@keyframes hexPulse{
  0%,100%{box-shadow:0 0 0 6px rgba(37,99,235,0.10), 0 16px 36px -14px rgba(37,99,235,0.55);}
  50%{box-shadow:0 0 0 10px rgba(20,184,166,0.12), 0 20px 42px -14px rgba(20,184,166,0.55);}
}
@media (max-width:640px){
  .hex-graphic{flex-direction:column; gap:24px;}
  .hex-col{flex-direction:row; flex-wrap:wrap; justify-content:center; gap:18px;}
}
@media (prefers-reduced-motion: reduce){
  .hex-core-ring{animation:none;}
  .hex-core-badge{animation:none;}
}
