:root{
  --bg:#070A12;
  --bg2:#0B1220;
  --panel:rgba(11,18,32,.75);
  --panel2:rgba(248,250,252,.04);
  --text:#E5E7EB;
  --muted:#94A3B8;
  --border:rgba(148,163,184,.18);
  --brand1:#60A5FA;
  --brand2:#34D399;
  --brand3:#A78BFA;
  --shadow:0 18px 40px rgba(0,0,0,.45);
  --radius:18px;
  --radius-sm:14px;
  --max:1600px;
  --pad:clamp(20px, 4vw, 48px);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,"Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(900px 700px at 12% 10%, rgba(96,165,250,.22), transparent 60%),
    radial-gradient(920px 760px at 88% 16%, rgba(52,211,153,.20), transparent 60%),
    radial-gradient(680px 520px at 72% 0%, rgba(167,139,250,.14), transparent 55%),
    linear-gradient(135deg, var(--bg), var(--bg2));
  background-attachment:fixed;
  background-size:100% 100%;
  min-height:100vh;
}

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

.container{max-width:var(--max);margin:0 auto;padding:0 var(--pad)}
.skip{position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden}
.skip:focus{left:16px;top:16px;width:auto;height:auto;background:#fff;color:#000;padding:10px 12px;border-radius:10px;z-index:999}

/* Header */
.header{
  position:sticky;top:0;z-index:50;
  backdrop-filter:saturate(120%) blur(10px);
  background:rgba(11,18,32,.55);
  border-bottom:1px solid rgba(20,33,61,1);
}
.nav{display:flex;align-items:center;justify-content:space-between;gap:16px;height:74px}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  transition:all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transform:translateY(0) scale(1);
}
.brand:hover{
  transform:translateY(-2px) scale(1.03);
}
.logo{
  width:40px;height:40px;border-radius:12px;
  background:linear-gradient(90deg,var(--brand1),var(--brand2));
  transition:all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:0 2px 8px rgba(96,165,250,.2);
}
.brand:hover .logo{
  box-shadow:0 6px 20px rgba(96,165,250,.5);
  transform:scale(1.05);
}
.logo-img{
  width:40px;height:40px;
  display:block;
  transition:all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  filter:drop-shadow(0 2px 4px rgba(0,0,0,.1));
}
.logo-img img{
  width:40px;height:40px;
  display:block;
  transition:all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.brand:hover .logo-img{
  transform:scale(1.08);
  filter:drop-shadow(0 4px 12px rgba(96,165,250,.4));
}
.brand:hover .logo-img img{
  transform:scale(1.08);
}
.brand-name{font-weight:900;letter-spacing:.2px;transition:all 0.25s cubic-bezier(0.4, 0, 0.2, 1)}
.brand:hover .brand-name{opacity:.95}
.brand:active{
  transform:translateY(0) scale(1);
}
.brand:active .logo-img{
  transform:scale(1);
}
.brand-typing{
  display:inline-flex;
  align-items:center;
  gap:0;
}
.brand-typing::after{
  content:"";
  display:inline-block;
  width:10px;
  height:1.05em;
  margin-left:6px;
  border-radius:999px;
  background:rgba(248,250,252,.85);
  opacity:.9;
  animation: caretBlink 1s steps(2, end) infinite;
}
@keyframes caretBlink{
  0%,49%{opacity:.95}
  50%,100%{opacity:.12}
}
@media (prefers-reduced-motion: reduce){
  .brand-typing::after{animation:none;opacity:.0}
}
.nav-links{display:flex;gap:18px;align-items:center}
.nav-links a{
  color:var(--text);opacity:.86;font-weight:650;font-size:14px;
  padding:10px 10px;border-radius:12px;
}
.nav-links a:hover{opacity:1;background:rgba(248,250,252,.05)}
.nav-cta{
  display:flex;align-items:center;gap:10px;
}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  gap:10px;
  border-radius:14px;
  padding:12px 16px;
  font-weight:850;
  font-size:14px;
  border:1px solid transparent;
  cursor:pointer;
  white-space:nowrap;
  transition:all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transform:translateY(0) scale(1);
  position:relative;
}
.btn-primary{
  background:linear-gradient(90deg,var(--brand1),var(--brand2));
  color:#06101E;
  box-shadow:0 4px 12px rgba(96,165,250,.25);
}
a.btn.btn-primary:hover,
button.btn.btn-primary:hover{
  background:linear-gradient(90deg,#7AB3FB,#4DD9A4) !important;
  box-shadow:0 10px 30px rgba(96,165,250,.6) !important;
  transform:translateY(-4px) scale(1.05) !important;
}
a.btn.btn-primary:active,
button.btn.btn-primary:active{
  transform:translateY(-1px) scale(1) !important;
  box-shadow:0 2px 8px rgba(96,165,250,.3) !important;
}
.btn-ghost{
  background:rgba(248,250,252,.06);
  border-color:rgba(148,163,184,.30);
  color:var(--text);
}
a.btn.btn-ghost:hover,
button.btn.btn-ghost:hover{
  background:rgba(248,250,252,.25) !important;
  border-color:rgba(148,163,184,.70) !important;
  transform:translateY(-4px) scale(1.05) !important;
  box-shadow:0 6px 20px rgba(0,0,0,.3) !important;
}
a.btn.btn-ghost:active,
button.btn.btn-ghost:active{
  transform:translateY(-1px) scale(1) !important;
  background:rgba(248,250,252,.12) !important;
}
.btn-dark{
  background:#F8FAFC;
  color:#06101E;
  box-shadow:0 2px 8px rgba(0,0,0,.1);
}
a.btn.btn-dark:hover,
button.btn.btn-dark:hover{
  background:#FFFFFF !important;
  box-shadow:0 8px 24px rgba(0,0,0,.3) !important;
  transform:translateY(-4px) scale(1.05) !important;
}
a.btn.btn-dark:active,
button.btn.btn-dark:active{
  transform:translateY(-1px) scale(1) !important;
  box-shadow:0 2px 8px rgba(0,0,0,.1) !important;
}
.menu-btn{
  display:none;
  width:44px;height:44px;border-radius:14px;
  border:1px solid rgba(148,163,184,.30);
  background:rgba(248,250,252,.06);
  color:var(--text);
}
.menu-btn svg{width:22px;height:22px}

/* Mobile menu */
.mobile-panel{
  display:none;
  border-top:1px solid rgba(148,163,184,.14);
  padding:14px 0 18px;
}
.mobile-panel a{
  display:block;
  padding:12px 10px;
  border-radius:14px;
  color:var(--text);
  opacity:.92;
  font-weight:700;
}
.mobile-panel a:hover{background:rgba(248,250,252,.05);opacity:1}
.mobile-panel .row{display:flex;gap:10px;flex-wrap:wrap;padding:10px 10px 0}

/* Hero */
.hero{padding:54px 0 22px}
.grid-hero{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:clamp(20px, 3vw, 40px);
  align-items:start;
}
.qa-card{
  position:sticky;
  top:90px;
  align-self:start;
  transition:transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.qa-card:hover,
.qa-card:focus-within{
  transform:translateY(-6px) scale(1.02);
  box-shadow:0 12px 32px rgba(0,0,0,.3), 0 0 28px 4px rgba(96,165,250,.12), 0 0 0 1px rgba(96,165,250,.2) !important;
  border-color:rgba(96,165,250,.4);
  background:rgba(11,18,32,.85);
}
.qa-card:focus-within{
  outline:2px solid rgba(96,165,250,.5);
  outline-offset:2px;
}
@media (prefers-reduced-motion: reduce){
  .qa-card:hover,
  .qa-card:focus-within{
    transform:none;
    box-shadow:0 6px 20px rgba(0,0,0,.25), 0 0 0 1px rgba(96,165,250,.25) !important;
  }
}
.kicker{
  display:inline-flex;align-items:center;gap:10px;
  font-size:12px;font-weight:850;
  padding:8px 12px;border-radius:999px;
  color:#BFDBFE;
  border:1px solid rgba(96,165,250,.22);
  background:rgba(96,165,250,.10);
  margin-bottom:24px;
}
h1{
  margin:24px 0 20px;
  font-size: clamp(36px, 4.3vw, 60px);
  line-height:1.02;
  letter-spacing:-.03em;
}
.sub{
  margin:0 0 32px;
  color:rgba(203,213,225,0.95);
  font-size:18px;
  line-height:1.55;
  max-width:58ch;
}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:32px}
.chips{display:flex;gap:10px;flex-wrap:wrap;margin-top:28px}
.chip{
  padding:10px 16px;border-radius:999px;
  border:1px solid rgba(148,163,184,.20);
  background:rgba(248,250,252,.05);
  font-size:12px;font-weight:800;color:rgba(226,232,240,.92);
  display:inline-block;
  text-decoration:none;
  transition:all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor:pointer;
}
.chip:hover{
  transform:translateY(-2px) scale(1.05);
  box-shadow:0 4px 12px rgba(0,0,0,.2);
}
.chip.blue{
  border-color:rgba(96,165,250,.25);
  background:rgba(96,165,250,.10);
  color:#BFDBFE;
}
.chip.blue:hover{
  background:rgba(96,165,250,.18);
  border-color:rgba(96,165,250,.40);
  box-shadow:0 6px 16px rgba(96,165,250,.3);
}
.chip.green{
  border-color:rgba(52,211,153,.25);
  background:rgba(52,211,153,.10);
  color:#BBF7D0;
}
.chip.green:hover{
  background:rgba(52,211,153,.18);
  border-color:rgba(52,211,153,.40);
  box-shadow:0 6px 16px rgba(52,211,153,.3);
}
.chip.purple{
  border-color:rgba(167,139,250,.25);
  background:rgba(167,139,250,.10);
  color:#DDD6FE;
}
.chip.purple:hover{
  background:rgba(167,139,250,.18);
  border-color:rgba(167,139,250,.40);
  box-shadow:0 6px 16px rgba(167,139,250,.3);
}
.chip.orange{
  border-color:rgba(251,146,60,.25);
  background:rgba(251,146,60,.10);
  color:#FED7AA;
}
.chip.orange:hover{
  background:rgba(251,146,60,.18);
  border-color:rgba(251,146,60,.40);
  box-shadow:0 6px 16px rgba(251,146,60,.3);
}

.card{
  border-radius:22px;
  background:var(--panel);
  border:1px solid rgba(148,163,184,.20);
  box-shadow:var(--shadow);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}
.card-inner{padding:24px}
.mini-title{font-size:12px;font-weight:900;color:rgba(229,231,235,.95);letter-spacing:.02em;margin-bottom:8px}
.two-cols{
  display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:20px
}
.panel{
  border-radius:16px;
  border:1px solid rgba(148,163,184,.18);
  background:rgba(248,250,252,.05);
  padding:18px;
  position:relative;
  overflow:hidden;
}
.panel::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:3px;
  opacity:0.6;
  transition:opacity 0.3s ease;
}
.panel.blue{
  border-color:rgba(96,165,250,.25);
  background:linear-gradient(135deg, rgba(96,165,250,.12), rgba(167,139,250,.08));
}
.panel.blue::before{
  background:linear-gradient(90deg, rgba(96,165,250,.7), rgba(167,139,250,.5));
}
.panel.green{
  border-color:rgba(52,211,153,.25);
  background:linear-gradient(135deg, rgba(52,211,153,.12), rgba(96,165,250,.08));
}
.panel.green::before{
  background:linear-gradient(90deg, rgba(52,211,153,.7), rgba(96,165,250,.5));
}
.panel-interactive{
  transition:all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor:default;
}
.panel-interactive:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 32px rgba(0,0,0,.25);
}
.panel.blue.panel-interactive:hover{
  background:linear-gradient(135deg, rgba(96,165,250,.18), rgba(167,139,250,.12));
  border-color:rgba(96,165,250,.4);
}
.panel.blue.panel-interactive:hover::before{
  opacity:1;
}
.panel.green.panel-interactive:hover{
  background:linear-gradient(135deg, rgba(52,211,153,.18), rgba(96,165,250,.12));
  border-color:rgba(52,211,153,.4);
}
.panel.green.panel-interactive:hover::before{
  opacity:1;
}
/* QA panel list styling */
.qa-panel .qa-list{
  margin:20px 0 0;
  padding:0;
  list-style:none;
}
.qa-panel .qa-list li{
  display:flex;
  align-items:center;
  gap:10px;
  margin:12px 0;
  padding:10px 12px;
  border-radius:10px;
  background:rgba(248,250,252,.04);
  border:1px solid rgba(148,163,184,.1);
  transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position:relative;
  overflow:hidden;
}
.qa-panel .qa-list li::before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:3px;
  background:linear-gradient(180deg, rgba(96,165,250,.6), rgba(52,211,153,.4));
  opacity:0;
  transition:opacity 0.3s ease;
}
.qa-panel.blue .qa-list li::before{
  background:linear-gradient(180deg, rgba(96,165,250,.7), rgba(167,139,250,.5));
}
.qa-panel.green .qa-list li::before{
  background:linear-gradient(180deg, rgba(52,211,153,.7), rgba(96,165,250,.5));
}
.qa-panel .qa-list li:hover{
  background:rgba(248,250,252,.08);
  border-color:rgba(148,163,184,.2);
  transform:translateX(4px);
}
.qa-panel .qa-list li:hover::before{
  opacity:1;
}
.qa-list-icon{
  flex-shrink:0;
  width:20px;
  height:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:6px;
  font-size:12px;
  font-weight:900;
  transition:all 0.3s ease;
}
.qa-panel.blue .qa-list-icon{
  background:rgba(96,165,250,.2);
  color:rgba(96,165,250,.95);
}
.qa-panel.green .qa-list-icon{
  background:rgba(52,211,153,.2);
  color:rgba(52,211,153,.95);
}
.qa-panel .qa-list li:hover .qa-list-icon{
  transform:scale(1.15) rotate(5deg);
}
.qa-panel .qa-list li span:last-child{
  flex:1;
  color:rgba(226,232,240,.95);
  font-size:13px;
  line-height:1.5;
}
.bar{
  height:12px;
  border-radius:999px;
  background:rgba(148,163,184,.25);
  overflow:hidden;
  margin-top:16px;
  position:relative;
}
.bar > span{
  display:block;
  height:100%;
  border-radius:999px;
  width:0;
  animation:barFill 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.bar .b1{
  background:linear-gradient(90deg, #60A5FA, #3B82F6);
  box-shadow:0 0 12px rgba(96,165,250,.4);
  animation:barFill98 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.bar .b2{
  background:linear-gradient(90deg, #34D399, #22C55E);
  box-shadow:0 0 12px rgba(52,211,153,.4);
  animation:barFill100 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes barFill98{
  from{width:0}
  to{width:98%}
}
@keyframes barFill100{
  from{width:0}
  to{width:100%}
}
.metric-value{
  transition:transform 0.2s ease;
}
.panel-interactive:hover .metric-value{
  transform:scale(1.05);
}
.list{margin:16px 0 0;padding:0;list-style:none;color:rgba(226,232,240,.95);font-size:12px}
.list li{margin:10px 0}
.list-md{font-size:14px;line-height:1.6;color:rgba(203,213,225,.92)}
.list-md li{margin:12px 0}

/* Enhanced list styling for deliverable/quality cards */
.enhanced-list{
  margin:20px 0 0;
  padding:0;
  list-style:none;
}
.enhanced-list li{
  display:flex;
  align-items:start;
  gap:12px;
  margin:14px 0;
  padding:12px;
  border-radius:10px;
  background:rgba(248,250,252,.03);
  border:1px solid rgba(148,163,184,.08);
  transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position:relative;
  overflow:hidden;
}
.enhanced-list li::before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:3px;
  background:linear-gradient(180deg, rgba(96,165,250,.6), rgba(52,211,153,.4));
  opacity:0;
  transition:opacity 0.3s ease;
}
.enhanced-list li:hover{
  background:rgba(248,250,252,.06);
  border-color:rgba(148,163,184,.15);
  transform:translateX(4px);
}
.enhanced-list li:hover::before{
  opacity:1;
}
.list-icon{
  flex-shrink:0;
  width:20px;
  height:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:6px;
  background:linear-gradient(135deg, rgba(96,165,250,.2), rgba(52,211,153,.15));
  color:rgba(96,165,250,.95);
  font-size:11px;
  font-weight:900;
  margin-top:1px;
}
.deliverable-card .list-icon{
  background:linear-gradient(135deg, rgba(96,165,250,.25), rgba(167,139,250,.2));
  color:rgba(96,165,250,.95);
}
.quality-card .list-icon{
  background:linear-gradient(135deg, rgba(52,211,153,.25), rgba(96,165,250,.2));
  color:rgba(52,211,153,.95);
}
.enhanced-list li span:last-child{
  flex:1;
  color:rgba(226,232,240,.95);
  font-size:13px;
  line-height:1.5;
}
.deliverable-header{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:8px;
}
.deliverable-icon{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  flex-shrink:0;
  transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.blue-icon{
  background:linear-gradient(135deg, rgba(96,165,250,.25), rgba(167,139,250,.2));
  color:rgba(96,165,250,.95);
  border:1px solid rgba(96,165,250,.3);
}
.green-icon{
  background:linear-gradient(135deg, rgba(52,211,153,.25), rgba(96,165,250,.2));
  color:rgba(52,211,153,.95);
  border:1px solid rgba(52,211,153,.3);
}
.deliverable-card:hover .blue-icon,
.quality-card:hover .green-icon{
  transform:scale(1.1) rotate(5deg);
  box-shadow:0 4px 12px rgba(96,165,250,.2);
}
.deliverable-card{
  background:linear-gradient(135deg, rgba(11,18,32,.85), rgba(15,23,42,.9));
  border:1px solid rgba(96,165,250,.15);
  position:relative;
  overflow:hidden;
}
.deliverable-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:3px;
  background:linear-gradient(90deg, rgba(96,165,250,.6), rgba(167,139,250,.4));
  opacity:0.6;
}
.quality-card{
  background:linear-gradient(135deg, rgba(11,18,32,.85), rgba(6,16,28,.9));
  border:1px solid rgba(52,211,153,.15);
  position:relative;
  overflow:hidden;
}
.quality-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:3px;
  background:linear-gradient(90deg, rgba(52,211,153,.6), rgba(96,165,250,.4));
  opacity:0.6;
}
.deliverable-card:hover,
.quality-card:hover,
.deliverable-card:focus-within,
.quality-card:focus-within{
  transform:translateY(-6px) scale(1.02);
  box-shadow:0 12px 32px rgba(0,0,0,.3), 0 0 28px 4px rgba(96,165,250,.12), 0 0 0 1px rgba(96,165,250,.2) !important;
  border-color:rgba(96,165,250,.4);
  background:rgba(11,18,32,.85);
}
.deliverable-card:focus-within,
.quality-card:focus-within{
  outline:2px solid rgba(96,165,250,.5);
  outline-offset:2px;
}
@media (prefers-reduced-motion: reduce){
  .deliverable-card:hover,
  .quality-card:hover,
  .deliverable-card:focus-within,
  .quality-card:focus-within{
    transform:none;
    box-shadow:0 6px 20px rgba(0,0,0,.25), 0 0 0 1px rgba(96,165,250,.25) !important;
  }
}

/* Sections */
.section{padding:52px 0}
.section h2{
  margin:0 0 10px;
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing:-.02em;
}
.section p.lead{margin:0;color:rgba(203,213,225,.92);max-width:70ch;line-height:1.65}
.row3{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.svc{
  transition:transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.svc:hover,
.svc:focus-visible{
  transform:translateY(-6px) scale(1.02);
  box-shadow:0 12px 32px rgba(0,0,0,.3), 0 0 28px 4px rgba(96,165,250,.12), 0 0 0 1px rgba(96,165,250,.2) !important;
  border-color:rgba(96,165,250,.4);
  background:rgba(11,18,32,.85);
}
.svc:focus-visible{
  outline:2px solid rgba(96,165,250,.5);
  outline-offset:2px;
}
@media (prefers-reduced-motion: reduce){
  .svc:hover,
  .svc:focus-visible{
    transform:none;
    box-shadow:0 6px 20px rgba(0,0,0,.25), 0 0 0 1px rgba(96,165,250,.25) !important;
  }
}
.svc-icon{
  width:48px;
  height:48px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:16px;
  transition:transform 0.25s ease, box-shadow 0.25s ease;
}
.svc-icon.blue{
  background:rgba(96,165,250,.15);
  color:#60A5FA;
  border:1px solid rgba(96,165,250,.25);
}
.svc-icon.green{
  background:rgba(52,211,153,.15);
  color:#34D399;
  border:1px solid rgba(52,211,153,.25);
}
.svc-icon.orange{
  background:rgba(251,146,60,.15);
  color:#FB923C;
  border:1px solid rgba(251,146,60,.25);
}
.svc:hover .svc-icon{
  transform:scale(1.1);
  box-shadow:0 4px 12px rgba(0,0,0,.2);
}
.svc h3{margin:0 0 8px;font-size:16px;font-weight:950}
.svc p{margin:0;color:rgba(203,213,225,.90);line-height:1.6;font-size:14px}
.svc .meta{margin-top:10px;display:flex;gap:10px;flex-wrap:wrap;color:rgba(148,163,184,.95);font-size:12px;font-weight:750}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:18px;
  align-items:start;
}
.split > .callout:first-child{
  position:sticky;
  top:90px;
  max-height:calc(100vh - 120px);
  overflow-y:auto;
}
.callout{
  padding:18px;
  transition:transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
  height:100%;
  display:flex;
  flex-direction:column;
}
.callout:hover,
.callout:focus-within{
  transform:translateY(-6px) scale(1.02);
  box-shadow:0 12px 32px rgba(0,0,0,.3), 0 0 28px 4px rgba(96,165,250,.12), 0 0 0 1px rgba(96,165,250,.2) !important;
  border-color:rgba(96,165,250,.4);
  background:rgba(11,18,32,.85);
}
.callout:focus-within{
  outline:2px solid rgba(96,165,250,.5);
  outline-offset:2px;
}
@media (prefers-reduced-motion: reduce){
  .callout:hover,
  .callout:focus-within{
    transform:none;
    box-shadow:0 6px 20px rgba(0,0,0,.25), 0 0 0 1px rgba(96,165,250,.25) !important;
  }
}
.callout h3{margin:0 0 8px;font-size:16px;font-weight:950}
.callout p{margin:0;color:rgba(203,213,225,.92);line-height:1.6}
.process-step{
  position:relative;
  overflow:hidden;
}

/* Next steps styling */
.next-steps{
  margin:0;
  padding:0;
  position:relative;
}
.next-step{
  display:flex;
  gap:14px;
  align-items:start;
  padding:16px;
  border-radius:14px;
  background:rgba(248,250,252,.03);
  border:1px solid rgba(148,163,184,.08);
  transition:all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position:relative;
  overflow:hidden;
  opacity:0;
  transform:translateY(20px);
  animation:fadeInUpStep 0.6s ease-out forwards;
}
.next-step:nth-child(1){animation-delay:0.1s}
.next-step:nth-child(2){animation-delay:0.2s}
.next-step:nth-child(3){animation-delay:0.3s}
.next-step:nth-child(4){animation-delay:0.4s}

/* Subtle glow effect on hover */
.next-step::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:linear-gradient(135deg, rgba(96,165,250,.08), rgba(52,211,153,.05));
  opacity:0;
  transition:opacity 0.4s ease;
  border-radius:14px;
  pointer-events:none;
}
.next-step:hover::before{
  opacity:1;
}

.next-step:hover,
.next-step:focus-within{
  background:rgba(248,250,252,.06);
  border-color:rgba(96,165,250,.4);
  transform:translateX(6px) translateY(-6px) scale(1.02);
  box-shadow:0 12px 32px rgba(0,0,0,.25), 0 0 28px 4px rgba(96,165,250,.12), 0 0 0 1px rgba(96,165,250,.2);
}
.next-step:focus-within{
  outline:2px solid rgba(96,165,250,.5);
  outline-offset:2px;
}
@media (prefers-reduced-motion: reduce){
  .next-step:hover,
  .next-step:focus-within{
    transform:none;
    box-shadow:0 6px 20px rgba(0,0,0,.2), 0 0 0 1px rgba(96,165,250,.25);
  }
}
.next-step-number{
  flex-shrink:0;
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:linear-gradient(135deg, rgba(96,165,250,.25), rgba(52,211,153,.2));
  border:1px solid rgba(96,165,250,.3);
  color:rgba(96,165,250,.95);
  font-weight:850;
  font-size:14px;
  font-variant-numeric:tabular-nums;
  position:relative;
  transition:all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:0 2px 8px rgba(96,165,250,.15);
}
.next-step:hover .next-step-number{
  transform:scale(1.1) rotate(5deg);
  background:linear-gradient(135deg, rgba(96,165,250,.35), rgba(52,211,153,.3));
  border-color:rgba(96,165,250,.5);
  box-shadow:0 4px 12px rgba(96,165,250,.25);
}
.next-step-content{
  flex:1;
  min-width:0;
  position:relative;
  z-index:1;
}
@keyframes fadeInUpStep{
  from{
    opacity:0;
    transform:translateY(20px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}
@media (prefers-reduced-motion: reduce){
  .next-step{
    animation:none;
    opacity:1;
    transform:none;
  }
  .next-step:hover{
    transform:none;
  }
  .next-step:hover .next-step-number{
    transform:none;
  }
}
.process-number{
  position:absolute;
  top:18px;
  right:18px;
  font-size:72px;
  font-weight:950;
  line-height:1;
  color:rgba(148,163,184,.08);
  letter-spacing:-.03em;
  transition:color 0.25s ease, transform 0.25s ease;
  pointer-events:none;
  z-index:0;
}
.process-step:hover .process-number{
  color:rgba(148,163,184,.12);
  transform:scale(1.05);
}
.process-step h3{
  margin-top:0;
  position:relative;
  z-index:1;
}
.process-step p{
  position:relative;
  z-index:1;
}

.breadcrumbs{padding:16px 0 0;color:rgba(148,163,184,.95);font-size:13px}
.breadcrumbs a{opacity:.9}
.breadcrumbs a:hover{opacity:1;text-decoration:underline}
.page-title{
  padding:clamp(28px, 4vw, 40px) 0 clamp(16px, 2vw, 24px);
  position:relative;
}
.page-title::before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  width:4px;
  height:100%;
  background:linear-gradient(180deg, rgba(96,165,250,.8), rgba(167,139,250,.6), rgba(52,211,153,.7));
  border-radius:2px;
  opacity:0.8;
  box-shadow:0 0 12px rgba(96,165,250,.3), 0 0 24px rgba(52,211,153,.2);
  animation:accentPulse 3s ease-in-out infinite;
  transform-origin:center;
}
@keyframes accentPulse{
  0%, 100%{
    opacity:0.8;
    transform:scaleY(1);
    box-shadow:0 0 12px rgba(96,165,250,.3), 0 0 24px rgba(52,211,153,.2);
  }
  50%{
    opacity:1;
    transform:scaleY(1.02);
    box-shadow:0 0 16px rgba(96,165,250,.5), 0 0 32px rgba(52,211,153,.4);
  }
}
@media (prefers-reduced-motion: reduce){
  .page-title::before{
    animation:none;
    transform:none;
  }
}
.page-title h1{
  margin:0 0 16px;
  font-size:clamp(28px, 4vw, 48px);
  font-weight:950;
  line-height:1.15;
  letter-spacing:-.02em;
  background:linear-gradient(135deg, rgba(226,232,240,.98), rgba(203,213,225,.95));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  position:relative;
  padding-left:16px;
  white-space:nowrap;
  overflow:visible;
  display:inline-block;
  width:auto;
  max-width:100%;
}
@media (max-width: 1024px){
  .page-title h1{
    font-size:clamp(26px, 4.5vw, 42px);
  }
}
@media (max-width: 768px){
  .page-title h1{
    font-size:clamp(24px, 5.5vw, 36px);
  }
}
@media (max-width: 480px){
  .page-title h1{
    white-space:normal;
    line-height:1.2;
    font-size:clamp(22px, 6vw, 28px);
  }
}
.page-title .sub{
  font-size:clamp(14px, 1.8vw, 17px);
  line-height:1.6;
  color:rgba(203,213,225,.9);
  max-width:100%;
  padding-left:16px;
  margin-top:8px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
@media (max-width: 1024px){
  .page-title .sub{
    white-space:normal;
    font-size:clamp(14px, 2vw, 16px);
  }
}
@media (max-width: 768px){
  .page-title .sub{
    font-size:clamp(13px, 2.2vw, 15px);
  }
}

/* Work cards */
.work-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.work-card{overflow:hidden}
.thumb{
  height:150px;
  background:linear-gradient(135deg, rgba(96,165,250,.22), rgba(52,211,153,.14));
  border-bottom:1px solid rgba(148,163,184,.16);
}
.work-card .body{padding:16px}
.tag{display:inline-flex;gap:8px;align-items:center;font-size:12px;font-weight:850;color:#BFDBFE}
.tag span{width:8px;height:8px;border-radius:99px;background:var(--brand1);display:inline-block}
.work-card h3{margin:8px 0 8px;font-size:16px;font-weight:950}
.work-card p{margin:0;color:rgba(203,213,225,.92);line-height:1.6;font-size:14px}

/* Forms */
form{margin-top:18px}
.field{display:grid;gap:8px;margin-bottom:12px}
label{font-size:13px;font-weight:800;color:rgba(226,232,240,.95)}
input,textarea,select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  background:rgba(248,250,252,.06);
  border:1px solid rgba(148,163,184,.22);
  color:var(--text);
  outline:none;
}
textarea{min-height:120px;resize:vertical}
input:focus,textarea:focus,select:focus{border-color:rgba(96,165,250,.55);box-shadow:0 0 0 4px rgba(96,165,250,.12)}
.hint{font-size:12px;color:rgba(148,163,184,.98);line-height:1.5}

/* Trust Bar */
.trust-bar{
  margin-top:40px;
  padding-top:32px;
  border-top:1px solid rgba(148,163,184,.14);
}
.trust-label{
  font-size:12px;
  font-weight:700;
  color:rgba(148,163,184,.95);
  margin-bottom:24px;
  letter-spacing:.02em;
}
.trust-metrics{
  display:flex;
  gap:clamp(32px, 5vw, 64px);
  flex-wrap:wrap;
  align-items:flex-start;
  justify-content:flex-start;
}
.trust-metric{
  display:flex;
  flex-direction:column;
  gap:10px;
  flex:0 1 auto;
  min-width:160px;
  max-width:220px;
  transition:transform 0.2s ease;
  position:relative;
}
.trust-metric:hover{
  transform:translateY(-2px);
}
.trust-icon{
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:2px;
  opacity:0.95;
  transition:opacity 0.2s ease, transform 0.2s ease;
}
.trust-icon svg{
  width:100%;
  height:100%;
}
.trust-metric:hover .trust-icon{
  opacity:1;
  transform:scale(1.08);
}
.trust-value{
  font-size:clamp(24px, 2.5vw, 32px);
  font-weight:950;
  color:var(--text);
  line-height:1.1;
  letter-spacing:-.02em;
  margin-top:4px;
}
.trust-label-small{
  font-size:13px;
  color:rgba(148,163,184,.85);
  line-height:1.5;
  font-weight:600;
  margin-top:2px;
}

/* Footer */
.footer{
  margin-top:80px;
  border-top:1px solid rgba(148,163,184,.18);
  background:linear-gradient(180deg, rgba(11,18,32,.85) 0%, rgba(11,18,32,.95) 100%);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  position:relative;
  overflow:hidden;
}
.footer::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(96,165,250,.4), rgba(52,211,153,.4), transparent);
}
.footer .grid{
  padding:clamp(48px, 6vw, 64px) 0 clamp(32px, 4vw, 40px);
  display:grid;
  grid-template-columns:1.4fr .9fr .9fr;
  gap:clamp(32px, 5vw, 56px);
  position:relative;
  z-index:1;
}
.footer .brand{
  margin-bottom:20px;
  display:flex;
  align-items:center;
  gap:12px;
}
.footer .brand .logo-img{
  transition:transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer .brand:hover .logo-img{
  transform:scale(1.05) rotate(-2deg);
}
.footer .brand-name{
  font-size:20px;
  font-weight:950;
  background:linear-gradient(135deg, rgba(226,232,240,.98), rgba(203,213,225,.95));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  letter-spacing:-.01em;
}
.footer .lead{
  color:rgba(203,213,225,.88);
  font-size:15px;
  line-height:1.7;
  margin-top:0;
  max-width:48ch;
  transition:color 0.3s ease;
}
.footer .lead:hover{
  color:rgba(226,232,240,.95);
}
.footer h4{
  margin:0 0 20px;
  font-size:15px;
  font-weight:950;
  color:var(--text);
  letter-spacing:.02em;
  text-transform:uppercase;
  font-size:12px;
  position:relative;
  padding-bottom:12px;
}
.footer h4::after{
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  width:32px;
  height:2px;
  background:linear-gradient(90deg, rgba(96,165,250,.6), rgba(52,211,153,.4));
  border-radius:2px;
}
.footer > .container > div:last-child{
  position:relative;
}
.footer a{
  display:flex;
  align-items:center;
  color:rgba(203,213,225,.88);
  padding:10px 0;
  font-size:14px;
  transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position:relative;
  width:fit-content;
}
.footer a::before{
  content:'';
  position:absolute;
  left:-8px;
  top:50%;
  transform:translateY(-50%) scaleX(0);
  width:4px;
  height:4px;
  border-radius:50%;
  background:linear-gradient(135deg, rgba(96,165,250,.8), rgba(52,211,153,.6));
  transition:transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity:0;
}
.footer a:hover{
  color:#fff;
  transform:translateX(8px);
  text-decoration:none;
}
.footer a:hover::before{
  transform:translateY(-50%) scaleX(1);
  opacity:1;
}
.fine{
  padding:clamp(24px, 3vw, 32px) 0;
  border-top:1px solid rgba(148,163,184,.2);
  color:rgba(148,163,184,.85);
  font-size:13px;
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
  align-items:center;
  position:relative;
  z-index:1;
  text-align:center;
}
.fine span{
  transition:color 0.3s ease;
}
.fine:hover span{
  color:rgba(203,213,225,.95);
}
.fine-note{
  opacity:0.7;
  font-size:11px;
}

/* Calendar (Contact page) */
.calendar{
  margin-top:12px;
  border:1px solid rgba(148,163,184,.18);
  background:rgba(248,250,252,.04);
  border-radius:16px;
  overflow:hidden;
}
.cal-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:12px 12px;
  border-bottom:1px solid rgba(148,163,184,.14);
  background:rgba(248,250,252,.05);
}
.cal-month{
  font-size:13px;
  font-weight:950;
  letter-spacing:.01em;
}
.cal-nav{
  display:flex;
  gap:8px;
}
.icon-btn{
  width:40px;height:40px;
  border-radius:14px;
  border:1px solid rgba(148,163,184,.22);
  background:rgba(248,250,252,.06);
  color:var(--text);
  cursor:pointer;
}
.icon-btn:hover{background:rgba(248,250,252,.10)}
.cal-grid{
  padding:12px;
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:8px;
}
.cal-dow{
  font-size:11px;
  color:rgba(148,163,184,.95);
  font-weight:850;
  text-transform:uppercase;
  letter-spacing:.08em;
  text-align:center;
  padding:4px 0 6px;
}
.cal-day{
  height:42px;
  border-radius:14px;
  border:1px solid rgba(148,163,184,.16);
  background:rgba(248,250,252,.04);
  color:rgba(226,232,240,.95);
  font-weight:850;
  cursor:pointer;
}
.cal-day:hover{background:rgba(248,250,252,.08)}
.cal-day[disabled]{
  opacity:.35;
  cursor:not-allowed;
}
.cal-day.is-today{
  border-color:rgba(96,165,250,.45);
}
.cal-day.is-selected{
  background:linear-gradient(90deg, rgba(96,165,250,.28), rgba(52,211,153,.20));
  border-color:rgba(96,165,250,.55);
}
.cal-bottom{
  padding:12px;
  border-top:1px solid rgba(148,163,184,.14);
  display:grid;
  gap:10px;
}
.slots{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.slot{
  border-radius:999px;
  padding:10px 12px;
  border:1px solid rgba(148,163,184,.22);
  background:rgba(248,250,252,.06);
  color:rgba(226,232,240,.95);
  font-weight:900;
  font-size:12px;
  cursor:pointer;
}
.slot:hover{background:rgba(248,250,252,.10)}
.slot.is-selected{
  background:#F8FAFC;
  color:#06101E;
  border-color:rgba(248,250,252,.75);
}
.cal-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.cal-summary{
  color:rgba(203,213,225,.92);
  font-size:12px;
  font-weight:750;
}
#calendly-embed{
  border-radius:16px;
  overflow:hidden;
  background:rgba(248,250,252,.04);
  border:1px solid rgba(148,163,184,.18);
}
#calendly-embed .calendly-inline-widget{
  min-height:630px;
}
/* Hide Calendly branding if possible */
#calendly-embed .calendly-badge-widget{
  display:none !important;
}
#calendly-embed iframe{
  border:none;
}

/* Calendly time slots container */
#calendly-time-slots{
  border-radius:16px;
  overflow:hidden;
  background:rgba(248,250,252,.04);
  border:1px solid rgba(148,163,184,.18);
  padding:20px;
  margin-top:20px;
}
#calendly-time-slots .calendly-inline-widget{
  min-height:400px;
  background:transparent;
}
#calendly-time-slots iframe{
  border:none;
  background:transparent;
}
/* Try to hide Calendly's calendar picker - target the iframe content */
#calendly-time-slots .calendly-inline-widget iframe{
  border:none;
}

/* Animations */
@keyframes fadeIn{
  from{
    opacity:0;
  }
  to{
    opacity:1;
  }
}
@keyframes fadeInUp{
  from{
    opacity:0;
    transform:translateY(20px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}
.fade-in{
  animation:fadeIn 0.6s ease-out;
}
.fade-in-up{
  animation:fadeInUp 0.8s ease-out;
  animation-fill-mode:both;
}
@media (prefers-reduced-motion: reduce){
  .fade-in,
  .fade-in-up{
    animation:none;
  }
}
.section.fade-in-up{
  animation-delay:0.2s;
}

/* Responsive */
@media (max-width: 980px){
  .grid-hero{grid-template-columns:1fr;gap:16px}
  .row3{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .work-grid{grid-template-columns:1fr}
  .footer .grid{
    grid-template-columns:1fr;
    gap:clamp(32px, 4vw, 40px);
  }
}

@media (max-width: 860px){
  .nav-links{display:none}
  .nav-cta{display:none}
  .menu-btn{display:inline-flex;align-items:center;justify-content:center}
  .mobile-panel{display:block}
  .mobile-panel[hidden]{display:none}
  .footer{
    margin-top:60px;
  }
  .footer .grid{
    padding:40px 0 28px;
  }
  .footer a{
    padding:8px 0;
  }
}

/* Loading screen - first visit only: logo + typewriter (same as header), then fade to home */
.loading-screen{
  position:fixed;
  inset:0;
  background:linear-gradient(135deg, var(--bg), var(--bg2));
  z-index:10000;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:28px;
  opacity:1;
  transition:opacity 0.7s ease-out, visibility 0.7s ease-out;
}
.loading-screen--fade-out{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}
.loading-logo{
  width:100px;
  height:100px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.loading-logo img{
  width:100%;
  height:100%;
  object-fit:contain;
  filter:drop-shadow(0 0 24px rgba(96,165,250,.35));
}
.loading-brand{
  display:inline-flex;
  align-items:center;
  font-size:clamp(28px, 5vw, 36px);
  font-weight:950;
  letter-spacing:-.02em;
  min-height:1.2em;
  background:linear-gradient(135deg, rgba(96,165,250,.98), rgba(52,211,153,.98));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.loading-brand.typing-caret::after{
  content:"";
  display:inline-block;
  width:10px;
  height:1.05em;
  margin-left:8px;
  border-radius:999px;
  background:rgba(248,250,252,.9);
  opacity:.9;
  -webkit-text-fill-color:initial;
  animation:caretBlink 1s steps(2, end) infinite;
}
@media (prefers-reduced-motion: reduce){
  .loading-brand.typing-caret::after{
    animation:none;
    opacity:.7;
  }
}

/* Chat Widget */
.chat-widget{
  position:fixed;
  bottom:20px;
  right:20px;
  z-index:9999;
  font-family:inherit;
  display:none;
  opacity:0;
  transform:scale(0.8) translateY(20px);
  transition:opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.chat-logo-notification{
  position:absolute;
  bottom:72px;
  right:0;
  width:48px;
  height:48px;
  background:rgba(11,18,32,.9);
  backdrop-filter:blur(12px);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:8px;
  box-shadow:0 4px 16px rgba(0,0,0,.3), 0 0 0 0 rgba(96,165,250,.4);
  border:2px solid rgba(96,165,250,.3);
  opacity:0;
  transform:scale(0.5) translateY(-10px);
  transition:opacity 0.4s ease-out, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events:none;
  z-index:10001;
}
.chat-logo-notification.visible{
  animation:chatLogoGlow 2s ease-in-out infinite;
}
.chat-logo-notification.visible img{
  animation:chatLogoFloat 2.2s ease-in-out infinite;
}
@keyframes chatLogoGlow{
  0%, 100%{
    box-shadow:0 4px 16px rgba(0,0,0,.3), 0 0 0 0 rgba(96,165,250,.4);
    border-color:rgba(96,165,250,.4);
  }
  50%{
    box-shadow:0 6px 24px rgba(0,0,0,.2), 0 0 32px 6px rgba(96,165,250,.5), 0 0 0 6px rgba(96,165,250,.2);
    border-color:rgba(96,165,250,.85);
  }
}
@keyframes chatLogoFloat{
  0%, 100%{ transform:translateY(0) scale(1); }
  50%{ transform:translateY(-8px) scale(1.08); }
}
@media (prefers-reduced-motion: reduce){
  .chat-logo-notification.visible,
  .chat-logo-notification.visible img{ animation:none; }
}
.chat-logo-notification img{
  width:100%;
  height:100%;
  object-fit:contain;
  filter:drop-shadow(0 2px 4px rgba(0,0,0,.2));
}
.chat-button{
  width:56px;
  height:56px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--brand1), var(--brand2));
  border:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 16px rgba(96,165,250,.4), 0 0 0 0 rgba(96,165,250,.5);
  transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position:relative;
  overflow:hidden;
  pointer-events:auto;
  z-index:10000;
}
.chat-button:hover{
  transform:scale(1.08);
  box-shadow:0 6px 20px rgba(96,165,250,.5), 0 0 0 4px rgba(96,165,250,.1);
}
.chat-button:active{
  transform:scale(0.96);
}
.chat-button svg{
  width:24px;
  height:24px;
  color:#fff;
  transition:transform 0.3s ease;
}
.chat-button:hover svg{
  transform:scale(1.05);
}
.chat-button .notification-badge{
  position:absolute;
  top:2px;
  right:2px;
  width:10px;
  height:10px;
  background:#EF4444;
  border-radius:50%;
  border:2px solid var(--bg2);
  animation:chatPulse 2s ease-in-out infinite;
}
@keyframes chatPulse{
  0%, 100%{
    transform:scale(1);
    opacity:1;
  }
  50%{
    transform:scale(1.2);
    opacity:0.8;
  }
}
.chat-window{
  position:absolute;
  bottom:72px;
  right:0;
  width:320px;
  max-width:calc(100vw - 40px);
  height:500px;
  max-height:calc(100vh - 100px);
  background:rgba(11,18,32,.12);
  backdrop-filter:saturate(110%) blur(6px);
  border:1px solid rgba(148,163,184,.12);
  border-radius:16px;
  box-shadow:0 8px 32px rgba(0,0,0,.15);
  display:none;
  flex-direction:column;
  overflow:hidden;
  opacity:0;
  transform:translateY(10px) scale(0.98);
  transition:all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.chat-window.open{
  display:flex;
  opacity:1;
  transform:translateY(0) scale(1);
}
.chat-header{
  padding:14px 16px;
  border-bottom:1px solid rgba(148,163,184,.1);
  background:rgba(11,18,32,.15);
  backdrop-filter:blur(6px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-shrink:0;
}
.chat-header-content{
  display:flex;
  align-items:center;
  gap:10px;
  flex:1;
  min-width:0;
}
.chat-header-avatar{
  width:36px;
  height:36px;
  border-radius:50%;
  background:transparent;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  overflow:hidden;
}
.chat-header-avatar img{
  width:100%;
  height:100%;
  object-fit:contain;
  filter:drop-shadow(0 2px 4px rgba(0,0,0,.2));
}
.chat-header-info{
  min-width:0;
  flex:1;
}
.chat-header-info h3,
.chat-header-title{
  margin:0;
  font-size:14px;
  font-weight:700;
  color:var(--text);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.chat-header-info p{
  margin:0;
  font-size:11px;
  color:var(--muted);
  margin-top:2px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.chat-close{
  width:32px;
  height:32px;
  border-radius:8px;
  border:none;
  background:transparent;
  color:var(--muted);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all 0.2s ease;
  flex-shrink:0;
}
.chat-close:hover{
  background:var(--panel2);
  color:var(--text);
}
.chat-close svg{
  width:18px;
  height:18px;
}
.chat-messages{
  flex:1;
  overflow-y:auto;
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:12px;
  scroll-behavior:smooth;
  background:transparent;
}
.chat-messages::-webkit-scrollbar{
  width:6px;
}
.chat-messages::-webkit-scrollbar-track{
  background:transparent;
}
.chat-messages::-webkit-scrollbar-thumb{
  background:var(--border);
  border-radius:3px;
}
.chat-messages::-webkit-scrollbar-thumb:hover{
  background:rgba(148,163,184,.3);
}
.chat-message{
  display:flex;
  gap:12px;
  animation:chatMessageSlide 0.3s ease-out;
}
@keyframes chatMessageSlide{
  from{
    opacity:0;
    transform:translateY(10px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}
.chat-message.user{
  flex-direction:row-reverse;
}
.chat-message-avatar{
  width:28px;
  height:28px;
  border-radius:50%;
  background:var(--panel2);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--muted);
  font-size:11px;
  font-weight:600;
  flex-shrink:0;
  overflow:hidden;
}
.chat-message-avatar img{
  width:100%;
  height:100%;
  object-fit:contain;
  filter:drop-shadow(0 1px 2px rgba(0,0,0,.2));
}
.chat-message.user .chat-message-avatar{
  background:linear-gradient(135deg, var(--brand1), var(--brand2));
  color:#fff;
}
.chat-message-content{
  max-width:75%;
  background:rgba(248,250,252,.08);
  padding:10px 12px;
  border-radius:12px;
  font-size:13px;
  line-height:1.4;
  color:var(--text);
  border:1px solid rgba(148,163,184,.15);
  backdrop-filter:blur(6px);
}
.chat-message.user .chat-message-content{
  background:rgba(96,165,250,.15);
  border-color:rgba(96,165,250,.25);
  backdrop-filter:blur(6px);
}
.chat-message.typing .chat-message-content{
  background:rgba(148,163,184,.1);
  font-style:italic;
  color:rgba(148,163,184,.8);
  animation:chatTyping 1.5s ease-in-out infinite;
}
@keyframes chatTyping{
  0%, 100%{opacity:0.5}
  50%{opacity:1}
}
.chat-input-container{
  padding:12px 14px;
  border-top:1px solid rgba(148,163,184,.1);
  background:rgba(11,18,32,.15);
  backdrop-filter:blur(6px);
}
.chat-input-form{
  display:flex;
  gap:8px;
  align-items:flex-end;
}
.chat-input{
  flex:1;
  background:var(--panel2);
  border:1px solid var(--border);
  border-radius:12px;
  padding:10px 12px;
  color:var(--text);
  font-size:13px;
  font-family:inherit;
  resize:none;
  min-height:40px;
  max-height:100px;
  transition:all 0.2s ease;
}
.chat-input:focus{
  outline:none;
  border-color:var(--brand1);
  box-shadow:0 0 0 2px rgba(96,165,250,.1);
}
.chat-input::placeholder{
  color:var(--muted);
}
.chat-send{
  width:40px;
  height:40px;
  border-radius:12px;
  background:linear-gradient(135deg, var(--brand1), var(--brand2));
  border:none;
  color:#fff;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all 0.2s ease;
  flex-shrink:0;
}
.chat-send:hover{
  transform:scale(1.05);
  box-shadow:0 3px 10px rgba(96,165,250,.4);
}
.chat-send:active{
  transform:scale(0.95);
}
.chat-send:disabled{
  opacity:0.5;
  cursor:not-allowed;
  transform:none;
}
.chat-send svg{
  width:18px;
  height:18px;
}
.chat-empty{
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:32px 16px;
  color:var(--muted);
  background:transparent;
}
.chat-empty svg{
  width:48px;
  height:48px;
  margin-bottom:12px;
  opacity:0.5;
}
.chat-empty p{
  margin:0;
  font-size:12px;
  line-height:1.5;
}
@media (max-width: 640px){
  .chat-widget{
    bottom:16px;
    right:16px;
  }
  .chat-widget.is-open{
    transform:none;
  }
  .chat-button{
    width:52px;
    height:52px;
  }
  .chat-button svg{
    width:22px;
    height:22px;
  }
  .chat-window{
    position:fixed;
    z-index:10002;
    width:auto;
    max-width:none;
    left:16px;
    right:16px;
    top:max(16px, env(safe-area-inset-top, 16px));
    bottom:88px;
    height:auto;
    margin:0;
  }
}
@media (prefers-reduced-motion: reduce){
  .chat-button,
  .chat-window,
  .chat-message{
    transition:none;
    animation:none;
  }
  .chat-button .notification-badge{
    animation:none;
  }
}


