:root{
  --navy:#213450;
  --pink:#E481A8;
  --blue:#B0C9F5;
  --lav:#C7B3F5;
  --mint:#B8E3D1;
  --bg:#F4F6F9;
  --text:#213450;
  --muted:#667388;
  --line:rgba(33,52,80,.10);
  --page-max:1480px;
  --content-max:1320px;
  --case-pad-x:clamp(72px,7.6vw,118px);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
button{font:inherit}

.serif{
  font-family:Georgia,"Times New Roman",serif;
  font-weight:400;
  letter-spacing:-.035em;
}

.kicker{
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:.16em;
  font-weight:800;
  color:#8792A2;
  margin-bottom:16px;
}

.nav-wrap{
  position:sticky;
  top:14px;
  z-index:120;
  width:min(calc(100% - 28px),var(--page-max));
  margin:14px auto 0;
}
.main-nav{
  min-height:86px;
  padding:18px 22px 18px 26px;
  border-radius:22px;
  background:rgba(255,255,255,.80);
  backdrop-filter:blur(22px);
  -webkit-backdrop-filter:blur(22px);
  border:1px solid rgba(255,255,255,.86);
  box-shadow:0 18px 45px rgba(33,52,80,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.logo img{width:188px;height:auto}
.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
  font-size:14px;
}
.nav-links a{color:#4F5D73}
.nav-links a.active{color:var(--navy);font-weight:700}
.nav-pill{
  padding:14px 22px;
  border-radius:999px;
  background:var(--navy);
  color:#fff!important;
  font-weight:700;
}
.lang-switch{
  display:inline-flex;
  align-items:center;
  gap:4px;
  min-height:34px;
  padding:0 9px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.60);
}
.lang-btn{
  border:0;
  background:transparent;
  padding:0;
  color:#8A94A4;
  font-size:11px;
  font-weight:700;
  letter-spacing:.08em;
}
.lang-btn.is-active{color:var(--navy)}
.lang-divider{color:#B1B8C3;font-size:11px}

.mobile-nav{display:none;position:relative}
.mobile-nav summary{
  list-style:none;
  cursor:pointer;
  width:48px;
  height:48px;
  border-radius:999px;
  background:var(--navy);
  display:grid;
  place-content:center;
  gap:6px;
}
.mobile-nav summary::-webkit-details-marker{display:none}
.mobile-nav summary span{
  display:block;
  width:18px;
  height:2px;
  border-radius:2px;
  background:#fff;
}
.mobile-nav-panel{
  position:absolute;
  right:0;
  top:58px;
  width:min(320px,calc(100vw - 40px));
  padding:14px;
  border-radius:20px;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(22px);
  -webkit-backdrop-filter:blur(22px);
  border:1px solid var(--line);
  box-shadow:0 18px 45px rgba(33,52,80,.10);
  display:grid;
  gap:4px;
}
.mobile-nav-panel>a{
  padding:13px 14px;
  border-radius:14px;
  color:#4F5D73;
  font-size:14px;
}
.mobile-nav-panel>a.active{
  background:#F3F6FB;
  color:var(--navy);
  font-weight:700;
}
.mobile-nav-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:8px;
  padding-top:12px;
  border-top:1px solid var(--line);
}

main{
  width:min(calc(100% - 72px),var(--content-max));
  margin:18px auto 28px;
  display:grid;
  gap:18px;
}
section{
  background:#fff;
  border-radius:34px;
  overflow:hidden;
}



.agents-page{
  min-height:720px;
  padding:96px var(--case-pad-x) 88px;
  display:grid;
  grid-template-columns:minmax(0,1.02fr) minmax(380px,.78fr);
  gap:72px;
  align-items:center;
  background:
    radial-gradient(circle at 84% 16%,rgba(228,129,168,.18),transparent 28%),
    radial-gradient(circle at 12% 84%,rgba(176,201,245,.22),transparent 28%),
    #fff;
}

.agents-intro{
  max-width:820px;
}

.agents-page h1{
  margin:0 0 24px;
  font-size:clamp(48px,5.15vw,80px);
  line-height:1.02;
  letter-spacing:-.05em;
}

.agents-lead{
  margin:0;
  max-width:720px;
  color:#59677B;
  font-size:18px;
  line-height:1.62;
}

.agents-status{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:30px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.74);
  color:#5C6980;
  font-size:13px;
  font-weight:700;
}

.status-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--pink);
  box-shadow:0 0 0 5px rgba(228,129,168,.12);
}

.agents-preview{
  padding:24px;
  border-radius:28px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.78);
  box-shadow:0 22px 50px rgba(33,52,80,.06);
}

.preview-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:4px 2px 18px;
  color:#8290A3;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.12em;
}

.preview-star{
  color:var(--pink);
  font-size:22px;
}

.preview-stack{
  display:grid;
  gap:12px;
}

.agent-ghost{
  min-height:118px;
  padding:20px;
  border-radius:20px;
  border:1px solid var(--line);
  background:
    linear-gradient(135deg,rgba(176,201,245,.10),rgba(255,255,255,.94));
  display:grid;
  grid-template-columns:48px 1fr;
  gap:16px;
  align-items:center;
}

.agent-ghost:nth-child(2){
  background:
    linear-gradient(135deg,rgba(199,179,245,.12),rgba(255,255,255,.94));
}

.agent-ghost.is-muted{
  background:
    linear-gradient(135deg,rgba(184,227,209,.12),rgba(255,255,255,.94));
}

.ghost-icon{
  width:48px;
  height:48px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:var(--navy);
  color:#fff;
  font-size:12px;
  font-weight:800;
}

.ghost-label{
  display:block;
  margin-bottom:6px;
  color:#909AAA;
  font-size:10px;
  font-weight:800;
  letter-spacing:.13em;
}

.agent-ghost p{
  margin:0;
  color:var(--navy);
  font-size:15px;
  line-height:1.5;
  font-weight:600;
}

@media(max-width:1050px){
  .agents-page{
    grid-template-columns:1fr;
    min-height:auto;
    gap:48px;
    padding-top:76px;
    padding-bottom:82px;
  }
}

@media(max-width:760px){
  .agents-page{
    padding:58px var(--case-pad-x) 64px;
    gap:38px;
  }

  .agents-page h1{
    font-size:48px;
  }

  .agents-preview{
    padding:18px;
    border-radius:24px;
  }

  .agent-ghost{
    min-height:106px;
    padding:18px;
    grid-template-columns:44px 1fr;
  }

  .ghost-icon{
    width:44px;
    height:44px;
    border-radius:14px;
  }
}

.site-footer{
  width:min(calc(100% - 72px),var(--content-max));
  margin:0 auto 28px;
  padding:24px 8px;
  background:transparent;
  color:#7A8596;
  text-align:center;
  font-size:13px;
  line-height:1.5;
}

@media(max-width:1050px){
  :root{--case-pad-x:clamp(38px,5.5vw,64px)}
  main{width:min(calc(100% - 44px),var(--content-max))}
}

@media(max-width:760px){
  :root{--case-pad-x:24px}
  .nav-wrap{top:10px;width:calc(100% - 20px);margin-top:10px}
  .main-nav{min-height:68px;padding:12px 14px 12px 18px;border-radius:20px}
  .logo img{width:150px}
  .nav-links{display:none}
  .mobile-nav{display:block}
  main{width:calc(100% - 20px);gap:14px}
  section{border-radius:26px}
.site-footer{width:calc(100% - 20px);font-size:12px}
}


/* v1.2 — English version coming soon */
.lang-btn:disabled,.lang-btn[aria-disabled="true"]{color:#AAB2BE !important;opacity:.55;cursor:not-allowed}
