:root{
  --ea-bg:#f4f7fb;
  --ea-surface:#ffffff;
  --ea-surface-2:#f7fbff;
  --ea-line:#dfe8f3;
  --ea-navy:#193155;
  --ea-blue:#245fbe;
  --ea-teal:#16a085;
  --ea-cyan:#00aeef;
  --ea-text:#223449;
  --ea-soft:#6f839c;
  --ea-shadow:0 24px 56px rgba(24,49,85,.10);
  --ea-shadow-sm:0 12px 28px rgba(24,49,85,.08);
  --ea-radius:30px;
  --ea-radius-md:22px;
  --ea-radius-sm:16px;
  --ea-max:1240px;
  --ea-gradient:linear-gradient(135deg,#ffffff 0%,#f7fbff 42%,#e7f4ff 100%);
  --ea-dark:linear-gradient(135deg,#193155 0%,#1d426c 55%,#256490 100%);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:
    radial-gradient(circle at top left, rgba(0,174,239,.10), transparent 28%),
    radial-gradient(circle at top right, rgba(22,160,133,.08), transparent 25%),
    var(--ea-bg);
  color:var(--ea-text);
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
button,input{font:inherit}
button{background:none;border:0}

.ea-app{min-height:100vh;overflow-x:hidden}
.ea-container{width:min(var(--ea-max), calc(100% - 34px));margin-inline:auto}
.ea-section{padding:28px 0}
.ea-hidden{display:none !important}

.ea-pill,
.ea-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:42px;
  padding:10px 16px;
  border-radius:999px;
  font-weight:800;
  font-size:.92rem;
}
.ea-pill{
  background:rgba(22,160,133,.10);
  color:var(--ea-teal);
}
.ea-badge{
  background:rgba(255,255,255,.14);
  color:#d7f9f1;
}

.ea-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:48px;
  padding:12px 20px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:800;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  box-shadow:var(--ea-shadow-sm);
}
.ea-btn:hover{transform:translateY(-1px)}
.ea-btn--primary{background:var(--ea-navy);color:#fff}
.ea-btn--teal{background:var(--ea-teal);color:#fff}
.ea-btn--soft{background:#fff;color:var(--ea-navy);border-color:var(--ea-line)}
.ea-btn--ghost{background:rgba(255,255,255,.12);color:#fff;border-color:rgba(255,255,255,.12);box-shadow:none}

.ea-header{
  position:sticky;
  top:0;
  z-index:1200;
  backdrop-filter:blur(16px) saturate(150%);
  background:rgba(255,255,255,.84);
  border-bottom:1px solid rgba(223,232,243,.9);
}
.ea-nav{
  min-height:78px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:18px;
}
.ea-brand{display:flex;align-items:center;gap:14px;min-width:0}
.ea-brand img{width:50px;height:50px;object-fit:contain;border-radius:16px;background:#eef5fb;padding:7px}
.ea-brand-copy{min-width:0}
.ea-brand-copy strong{
  display:block;
  color:var(--ea-navy);
  font-size:1rem;
  font-weight:900;
  line-height:1.1;
}
.ea-brand-copy span{
  display:block;
  color:var(--ea-soft);
  font-size:.82rem;
  margin-top:4px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.ea-nav-links{display:flex;justify-content:center;align-items:center;gap:18px}
.ea-nav-link{
  padding:10px 4px;
  color:#4c617c;
  font-weight:800;
  border-bottom:2px solid transparent;
}
.ea-nav-link:hover,.ea-nav-link.is-active{color:var(--ea-navy);border-color:var(--ea-teal)}
.ea-nav-actions{display:flex;align-items:center;gap:10px}
.ea-menu-btn,
.ea-close-btn{
  display:none;
  width:46px;
  height:46px;
  border-radius:15px;
  border:1px solid var(--ea-line);
  background:#fff;
  color:var(--ea-navy);
  cursor:pointer;
  box-shadow:var(--ea-shadow-sm);
}

.ea-overlay{
  position:fixed;
  inset:0;
  background:rgba(9,17,28,.35);
  opacity:0;
  pointer-events:none;
  transition:.2s ease;
  z-index:1180;
}
.ea-drawer{
  position:fixed;
  top:0;
  right:0;
  width:min(380px, 92vw);
  height:100vh;
  background:#fff;
  transform:translateX(100%);
  transition:transform .24s ease;
  z-index:1190;
  border-left:1px solid var(--ea-line);
  box-shadow:-24px 0 48px rgba(9,17,28,.18);
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:18px;
}
.ea-drawer-head{display:flex;align-items:center;justify-content:space-between;gap:12px}
.ea-drawer nav{display:grid;gap:8px}
.ea-drawer nav a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:52px;
  padding:0 16px;
  border-radius:18px;
  color:var(--ea-navy);
  font-weight:800;
  background:#f8fbff;
  border:1px solid var(--ea-line);
}
html.ea-menu-open .ea-overlay{opacity:1;pointer-events:auto}
html.ea-menu-open .ea-drawer{transform:translateX(0)}

.ea-hero{padding:30px 0 20px}
.ea-hero-shell{
  display:grid;
  grid-template-columns:1.16fr .84fr;
  gap:20px;
  align-items:stretch;
}
.ea-hero-slider-card,
.ea-side-card,
.ea-globale-banner,
.ea-register-strip,
.ea-panel,
.ea-footer,
.ea-download-band,
.ea-news-hero,
.ea-news-feed,
.ea-empty,
.ea-cta-card,
.ea-dashboard-welcome,
.ea-dashboard-grid,
.ea-resource-panel,
.ea-quick-grid,
.ea-mini-surface{
  background:var(--ea-surface);
  border:1px solid var(--ea-line);
  box-shadow:var(--ea-shadow);
}
.ea-hero-slider-card{
  padding:18px;
  border-radius:34px;
}
.ea-slider{
  position:relative;
  min-height:520px;
  border-radius:30px;
  overflow:hidden;
}
.ea-slide{
  position:absolute;
  inset:0;
  display:grid;
  align-items:flex-end;
  padding:30px;
  opacity:0;
  visibility:hidden;
  transition:opacity .35s ease, visibility .35s ease;
  background-size:cover;
  background-position:center;
}
.ea-slide.is-active{opacity:1;visibility:visible}
.ea-slide::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(12,23,38,.08) 0%, rgba(12,23,38,.24) 35%, rgba(12,23,38,.78) 100%);
}
.ea-slide-body{position:relative;z-index:1;max-width:560px;color:#fff}
.ea-slide-title{
  margin:14px 0 10px;
  font-size:clamp(2rem, 4vw, 3.3rem);
  line-height:1.02;
  font-weight:950;
}
.ea-slide-copy{margin:0 0 20px;color:rgba(255,255,255,.86);line-height:1.7;max-width:50ch}
.ea-slider-dots{
  position:absolute;
  left:24px;
  bottom:24px;
  display:flex;
  gap:10px;
  z-index:2;
}
.ea-slider-dots button{
  width:12px;
  height:12px;
  border-radius:999px;
  background:rgba(255,255,255,.35);
  cursor:pointer;
}
.ea-slider-dots button.is-active{background:#fff}

.ea-side-card{
  padding:28px;
  border-radius:34px;
  background:var(--ea-gradient);
  position:relative;
  overflow:hidden;
}
.ea-side-card::before{
  content:"";
  position:absolute;
  width:260px;
  height:260px;
  right:-110px;
  bottom:-110px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(0,174,239,.22), transparent 70%);
}
.ea-section-title{
  margin:0;
  color:var(--ea-navy);
  font-size:clamp(1.45rem, 2vw, 2.15rem);
  line-height:1.08;
  font-weight:950;
}
.ea-section-copy{
  margin:12px 0 0;
  color:var(--ea-soft);
  line-height:1.7;
  max-width:62ch;
}
.ea-highlight-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
  margin-top:22px;
}
.ea-mini-surface{
  padding:18px;
  border-radius:22px;
  background:rgba(255,255,255,.78);
  backdrop-filter:blur(10px);
}
.ea-mini-surface strong{display:block;color:var(--ea-navy);font-size:1rem;margin-bottom:8px}
.ea-mini-surface span{display:block;color:var(--ea-soft);line-height:1.6;font-size:.95rem}

.ea-register-strip{
  margin-top:18px;
  padding:18px 22px;
  border-radius:28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.ea-register-strip__copy strong{display:block;color:var(--ea-navy);font-size:1.06rem;font-weight:900}
.ea-register-strip__copy span{display:block;color:var(--ea-soft);margin-top:6px}

.ea-globale-banner{
  padding:18px;
  border-radius:34px;
}
.ea-globale-banner__inner{
  background:var(--ea-dark);
  border-radius:28px;
  overflow:hidden;
  display:grid;
  grid-template-columns:1.04fr .96fr;
  min-height:310px;
}
.ea-globale-banner__copy{padding:30px;color:#fff;display:flex;flex-direction:column;justify-content:center}
.ea-globale-banner__copy h2{margin:14px 0 10px;font-size:clamp(1.8rem, 3vw, 2.65rem);line-height:1.06}
.ea-globale-banner__copy p{margin:0 0 22px;color:rgba(255,255,255,.82);line-height:1.75}
.ea-globale-banner__media{min-height:100%}
.ea-globale-banner__media img{width:100%;height:100%;object-fit:cover}

.ea-panel{
  padding:24px;
  border-radius:32px;
}
.ea-panel-head{display:flex;align-items:end;justify-content:space-between;gap:18px;flex-wrap:wrap;margin-bottom:18px}
.ea-panel-head p{margin:10px 0 0;color:var(--ea-soft);line-height:1.7;max-width:62ch}

.ea-grid{display:grid;gap:16px}
.ea-grid--4{grid-template-columns:repeat(4, minmax(0, 1fr))}
.ea-grid--3{grid-template-columns:repeat(3, minmax(0, 1fr))}
.ea-grid--2{grid-template-columns:repeat(2, minmax(0, 1fr))}

.ea-card{
  display:flex;
  flex-direction:column;
  min-height:100%;
  border-radius:24px;
  overflow:hidden;
  background:#fff;
  border:1px solid var(--ea-line);
  box-shadow:var(--ea-shadow-sm);
  transition:transform .18s ease, box-shadow .18s ease;
}
.ea-card:hover{transform:translateY(-3px);box-shadow:var(--ea-shadow)}
.ea-card-media{aspect-ratio:16/10;background:#ebf3fa;overflow:hidden}
.ea-card-media img{width:100%;height:100%;object-fit:cover}
.ea-card-body{padding:18px;display:flex;flex-direction:column;gap:12px;flex:1}
.ea-card-body h3{margin:0;color:var(--ea-navy);font-size:1.05rem;line-height:1.35}
.ea-card-body p{margin:0;color:var(--ea-soft);line-height:1.65;font-size:.95rem}
.ea-card-meta{margin-top:auto;display:flex;align-items:center;justify-content:space-between;color:#627892;font-size:.9rem;font-weight:800}

.ea-resource-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:18px;
}
.ea-resource-tabs button{
  min-height:46px;
  padding:0 18px;
  border-radius:999px;
  cursor:pointer;
  font-weight:900;
  color:#49637f;
  background:#fff;
  border:1px solid var(--ea-line);
  box-shadow:var(--ea-shadow-sm);
}
.ea-resource-tabs button.is-active{
  color:#fff;
  background:var(--ea-navy);
  border-color:transparent;
}
.ea-resource-panel{
  padding:18px;
  border-radius:28px;
  background:linear-gradient(180deg,#ffffff 0%,#fbfdff 100%);
}
.ea-resource-panel__header{margin-bottom:18px}
.ea-resource-panel__header h3{margin:0;color:var(--ea-navy);font-size:1.38rem;font-weight:900}
.ea-resource-panel__header p{margin:10px 0 0;color:var(--ea-soft);line-height:1.7;max-width:74ch}

.ea-quick-grid .ea-card,
.ea-dashboard-grid .ea-card{height:100%}

.ea-news-hero,
.ea-dashboard-welcome{
  padding:28px;
  border-radius:34px;
  background:var(--ea-gradient);
}
.ea-dashboard-stats,
.ea-news-stats{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
  margin-top:22px;
}
.ea-stat-card{
  padding:16px;
  border-radius:22px;
  background:#fff;
  border:1px solid var(--ea-line);
  box-shadow:var(--ea-shadow-sm);
}
.ea-stat-card strong{display:block;color:var(--ea-navy);font-size:1.24rem}
.ea-stat-card span{display:block;color:var(--ea-soft);margin-top:6px;line-height:1.45}

.ea-news-feed{padding:22px;border-radius:32px}
.ea-news-featured{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:18px;
  background:#fff;
  border:1px solid var(--ea-line);
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--ea-shadow-sm);
  margin-bottom:18px;
}
.ea-news-featured__media{min-height:100%;background:#edf4fb}
.ea-news-featured__media img{width:100%;height:100%;object-fit:cover}
.ea-news-featured__body{padding:22px;display:flex;flex-direction:column;gap:12px}
.ea-news-date{
  width:max-content;
  padding:6px 12px;
  border-radius:999px;
  background:#eff6ff;
  color:var(--ea-blue);
  font-size:.8rem;
  font-weight:900;
}
.ea-news-featured__body h2{margin:0;color:var(--ea-navy);font-size:1.55rem;line-height:1.15}
.ea-news-featured__body p{margin:0;color:var(--ea-soft);line-height:1.75}

.ea-empty{padding:24px;border-radius:28px;color:var(--ea-soft);border-style:dashed}
.ea-alert{padding:14px 16px;border-radius:18px;background:#fff5e8;color:#8d5b00;border:1px solid #f3d6aa}

.ea-download-band{
  padding:22px 24px;
  border-radius:32px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:20px;
  align-items:center;
  background:linear-gradient(135deg,#ffffff 0%,#eef8fd 100%);
}
.ea-download-band h2{margin:10px 0 8px;color:var(--ea-navy);font-size:clamp(1.55rem, 2.8vw, 2.3rem);line-height:1.08}
.ea-download-band p{margin:0;color:var(--ea-soft);line-height:1.75;max-width:58ch}
.ea-store-actions{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:12px}

.ea-footer{
  margin:36px auto 22px;
  padding:22px 24px;
  border-radius:28px;
}
.ea-footer__wrap{display:flex;justify-content:space-between;align-items:center;gap:18px;flex-wrap:wrap}
.ea-footer__copy strong{display:block;color:var(--ea-navy);font-size:1rem}
.ea-footer__copy span{display:block;color:var(--ea-soft);margin-top:6px;line-height:1.6}
.ea-footer__links{display:flex;align-items:center;gap:12px;flex-wrap:wrap}

.ea-user-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:48px;
  padding:0 16px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--ea-line);
  box-shadow:var(--ea-shadow-sm);
  color:var(--ea-navy);
  font-weight:800;
}

@media (max-width:1120px){
  .ea-hero-shell,
  .ea-globale-banner__inner,
  .ea-news-featured,
  .ea-download-band{grid-template-columns:1fr}
  .ea-grid--4{grid-template-columns:repeat(2, minmax(0, 1fr))}
}

@media (max-width:920px){
  .ea-nav{grid-template-columns:auto 1fr auto}
  .ea-nav-links,.ea-nav-actions{display:none}
  .ea-menu-btn,.ea-close-btn{display:grid;place-items:center}
  .ea-highlight-grid,.ea-dashboard-stats,.ea-news-stats{grid-template-columns:1fr}
}

@media (max-width:760px){
  .ea-container{width:min(var(--ea-max), calc(100% - 22px))}
  .ea-slider{min-height:460px}
  .ea-grid--4,.ea-grid--3,.ea-grid--2{grid-template-columns:1fr}
  .ea-panel,.ea-news-feed,.ea-news-hero,.ea-dashboard-welcome,.ea-side-card,.ea-hero-slider-card{padding:18px}
  .ea-slide{padding:22px}
  .ea-register-strip,.ea-footer__wrap{align-items:flex-start;flex-direction:column}
  .ea-store-actions{justify-content:flex-start}
}

@media (max-width:560px){
  .ea-nav{min-height:70px}
  .ea-brand img{width:44px;height:44px}
  .ea-brand-copy strong{font-size:.95rem}
  .ea-slider{min-height:420px}
  .ea-slide-title{font-size:1.8rem}
  .ea-globale-banner__copy{padding:22px}
  .ea-section{padding:22px 0}
}
