@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root{
  --navy:#0f4c5c;
  --navy-2:#1c6a78;
  --red:#d94b63;
  --red-rgb:217, 75, 99;
  --bg:#eef1f4;
  --card:#ffffff;
  --line:rgba(18, 56, 64, .12);
  --text:#123840;
  --muted:rgba(18, 56, 64, .76);
  --radius:14px;
  --shadow:0 10px 22px rgba(8,31,37,.09);
  --font-ui:"Manrope","Avenir Next","Segoe UI","Helvetica Neue",Arial,sans-serif;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--text);
  background:var(--bg);
  font-family:var(--font-ui);
}
a{color:inherit;text-decoration:none}

.landing{
  min-height:100%;
  position:relative;
  overflow-x:hidden;
}

.landing-bg{
  position:fixed;
  inset:0;
  z-index:-1;
  background:
    radial-gradient(1200px 520px at 100% -100px, rgba(var(--red-rgb), .12), transparent 62%),
    radial-gradient(900px 460px at -120px 50px, rgba(18, 56, 64, .13), transparent 58%),
    linear-gradient(180deg, #f4f6f8 0%, #eceff3 100%);
}

.landing-top{
  width:100%;
  height:82px;
  background:linear-gradient(90deg, var(--navy), var(--navy-2));
  border-bottom:2px solid var(--red);
  box-shadow:0 6px 14px rgba(0,0,0,.10);
}

.landing-top__inner{
  max-width:1200px;
  margin:0 auto;
  height:100%;
  padding:0 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.landing-brand{
  display:flex;
  align-items:center;
  width:212px;
  min-width:212px;
  height:64px;
  overflow:hidden;
}

.landing-brand img{
  width:100%;
  height:auto;
  max-height:64px;
  max-width:212px;
  object-fit:contain;
  transform:translate(-10px, 12px) scale(2.3);
  transform-origin:center;
  display:block;
}

.landing-top__actions{
  display:flex;
  gap:10px;
  align-items:center;
}

.a2z-btn{
  appearance:none;
  border:1px solid transparent;
  border-radius:11px;
  padding:9px 14px;
  font-size:13px;
  font-weight:800;
  line-height:1;
  transition:all .18s ease;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.a2z-btn--primary{
  background:var(--red);
  color:#fff;
  border-color:var(--red);
  box-shadow:0 10px 22px rgba(var(--red-rgb), .22);
}
.a2z-btn--primary:hover{
  transform:translateY(-1px);
  filter:brightness(.97);
}

.a2z-btn--ghost{
  background:#fff;
  border-color:var(--line);
  color:var(--navy);
}
.a2z-btn--ghost:hover{
  border-color:rgba(var(--red-rgb), .5);
}

.landing-main{
  max-width:1080px;
  margin:0 auto;
  padding:10px 16px 14px;
}

.landing-subbrand{
  max-width:1200px;
  margin:8px auto 8px;
  padding:0 20px;
  display:grid;
  justify-items:center;
  align-items:center;
  gap:8px;
}

.landing-subbrand__logo{
  width:min(190px, 30vw);
  height:auto;
  display:block;
}

.hero{
  display:grid;
  max-width:980px;
  margin:0 auto;
  grid-template-columns:minmax(0, 1fr) clamp(220px, 23%, 255px);
  gap:12px;
  align-items:start;
}

.hero__left,
.hero__right{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--card);
  box-shadow:var(--shadow);
  height:auto;
  min-height:0;
}

.hero__left{
  grid-column:1;
  grid-row:1;
  padding:18px 16px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.hero__kicker{
  display:inline-flex;
  padding:6px 11px;
  border-radius:999px;
  background:rgba(var(--red-rgb), .1);
  color:var(--red);
  font-size:12px;
  font-weight:900;
  letter-spacing:.2px;
  text-transform:uppercase;
}

.hero h1{
  margin:8px 0 8px;
  font-size:clamp(20px, 2.2vw, 28px);
  line-height:1.08;
  letter-spacing:-.4px;
}

.hero p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.4;
  max-width:65ch;
}

.hero__ctas{
  margin-top:20px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.hero__chips{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.hero__chips span{
  background:rgba(18, 56, 64, .06);
  border:1px solid rgba(18, 56, 64, .14);
  border-radius:999px;
  padding:6px 10px;
  font-size:12px;
  font-weight:800;
}

.hero__right{
  grid-column:2;
  grid-row:1 / span 2;
  padding:14px 12px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  background:linear-gradient(165deg, var(--navy-2) 0%, var(--navy) 100%);
  color:#fff;
  align-self:stretch;
}

.hero__right h2{
  margin:0 0 6px;
  font-size:17px;
  letter-spacing:.2px;
}

.hero__right-sub{
  margin:0 0 8px;
  color:rgba(255,255,255,.86);
  font-size:11px;
  font-weight:700;
}

.hero-profile-stack{
  display:grid;
  grid-template-columns:1fr;
  gap:7px;
}

.hero-profile-card{
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.08);
  border-radius:12px;
  padding:9px;
  display:grid;
  gap:5px;
}

.hero-profile-card h3{
  margin:0;
  font-size:13px;
  line-height:1.25;
  color:#fff;
}

.hero-profile-card p{
  margin:0;
  color:rgba(255,255,255,.9);
  line-height:1.3;
  font-size:11px;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.hero-profile-card .a2z-btn{
  width:100%;
  justify-content:center;
  font-size:11px;
  padding:7px 9px;
}

.section{
  margin-top:10px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:var(--shadow);
  padding:14px 14px 14px;
}

.section h2{
  margin:0 0 8px;
  font-size:18px;
  line-height:1.15;
  letter-spacing:-.2px;
}

.info-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:8px;
}

.info-card{
  border:1px solid var(--line);
  border-radius:12px;
  padding:10px;
  background:rgba(255,255,255,.86);
}

.info-card h3{
  margin:0 0 4px;
  font-size:13px;
}

.info-card p{
  margin:0;
  color:var(--muted);
  line-height:1.35;
  font-size:12px;
}

.section--subtle{
  border-color:rgba(18, 56, 64, .12);
  background:rgba(255,255,255,.74);
  box-shadow:0 8px 20px rgba(9,20,41,.08);
}

.section--insights{
  max-width:980px;
  margin-left:auto;
  margin-right:auto;
}

.hero__insights.section--insights{
  grid-column:1 / 2;
  grid-row:2;
  max-width:none;
  margin:0;
}

.info-accordion{
  display:grid;
  gap:6px;
}

.info-accordion__item{
  border:1px solid var(--line);
  border-radius:10px;
  background:rgba(255,255,255,.9);
  padding:0;
  overflow:hidden;
}

.info-accordion__item summary{
  list-style:none;
  cursor:pointer;
  padding:10px 12px;
  font-size:13px;
  font-weight:800;
  color:var(--navy);
  display:flex;
  align-items:center;
  gap:8px;
}

.info-accordion__item summary::-webkit-details-marker{
  display:none;
}

.info-accordion__item summary::before{
  content:'▸';
  font-size:12px;
  color:var(--red);
  flex:0 0 auto;
}

.info-accordion__item[open] summary::before{
  content:'▾';
}

.info-accordion__item p{
  margin:0;
  padding:0 12px 10px;
  font-size:12px;
  line-height:1.35;
  color:var(--muted);
}

.section--sources ul{
  margin:10px 0 0;
  padding-left:18px;
  display:grid;
  gap:7px;
}

.section--sources a{
  color:var(--navy-2);
  text-decoration:underline;
  text-decoration-thickness:1px;
}

.section--sources-compact{
  max-width:980px;
  margin-left:auto;
  margin-right:auto;
  padding:8px 12px 10px;
}

.section--sources-compact h2{
  font-size:16px;
  margin-bottom:6px;
}

.section--sources-compact ul{
  margin-top:8px;
  gap:5px;
}

.section--sources-compact li{
  font-size:12px;
  line-height:1.3;
}

.legal-note{
  margin:0;
  color:var(--muted);
  font-size:12px;
}

.section--sources-collapsible details{
  display:grid;
  gap:6px;
}

.section--sources-collapsible summary{
  list-style:none;
  cursor:pointer;
  font-size:13px;
  font-weight:900;
  color:var(--navy);
  display:flex;
  align-items:center;
  gap:8px;
}

.section--sources-collapsible summary::-webkit-details-marker{
  display:none;
}

.section--sources-collapsible summary::before{
  content:'▸';
  font-size:12px;
  color:var(--red);
  transform:translateY(-1px);
}

.section--sources-collapsible details[open] summary::before{
  content:'▾';
}

.landing-footer{
  max-width:1200px;
  margin:0 auto;
  padding:0 16px 10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  color:var(--muted);
  font-size:12px;
  font-weight:700;
}

.landing-footer a{
  color:var(--navy);
}

@media (min-width: 1100px){
  html, body{
    height:100vh;
    overflow:hidden;
  }

  .landing{
    min-height:100vh;
    height:100vh;
    display:grid;
    grid-template-rows:74px auto auto auto;
    overflow:hidden;
  }

  .landing-top{
    height:74px;
  }

  .landing-top__inner{
    max-width:1080px;
    padding:0 14px;
  }

  .landing-brand{
    width:188px;
    min-width:188px;
    height:56px;
  }

  .landing-brand img{
    max-height:56px;
    max-width:188px;
    transform:translate(-10px, 10px) scale(2.2);
  }

  .landing-subbrand{
    margin:4px auto;
    padding:0 16px;
  }

  .landing-subbrand__logo{
    width:min(156px, 22vw);
  }

  .landing-main{
    width:min(1080px, 100%);
    padding:6px 12px;
    display:grid;
    grid-template-rows:auto auto auto;
    gap:8px;
    min-height:0;
    overflow:visible;
  }

  .hero{
    width:100%;
    max-width:none;
    margin:0;
    min-height:0;
    height:auto;
    gap:10px;
    align-items:start;
  }

  .hero__left,
  .hero__right{
    min-height:0;
    height:auto;
    align-self:stretch;
  }

  .hero__left{
    padding:14px 14px;
  }

  .hero h1{
    margin:6px 0;
    font-size:clamp(21px, 2.1vw, 27px);
  }

  .hero p{
    max-width:none;
    font-size:13.5px;
    line-height:1.36;
  }

  .hero__right{
    padding:10px 10px;
    justify-content:flex-start;
  }

  .hero__right h2{
    margin:0 0 4px;
    font-size:17px;
  }

  .hero__right-sub{
    margin:0 0 6px;
    font-size:11px;
  }

  .hero-profile-stack{
    gap:6px;
  }

  .hero-profile-card{
    padding:8px;
    gap:4px;
  }

  .hero-profile-card h3{
    font-size:13.5px;
  }

  .hero-profile-card p{
    font-size:12px;
    line-height:1.32;
    display:block;
    -webkit-line-clamp:unset;
    -webkit-box-orient:unset;
    overflow:visible;
  }

  .hero-profile-card .a2z-btn{
    padding:6px 8px;
    font-size:11px;
  }

  .section{
    margin-top:0;
    padding:9px 10px;
    border-radius:14px;
  }

  .section h2{
    margin:0 0 5px;
    font-size:16.5px;
  }

  .section--insights{
    max-width:none;
  }

  .hero__insights.section--insights{
    grid-column:1 / 2;
  }

  .info-grid{
    gap:6px;
  }

  .info-card{
    padding:8px;
  }

  .info-card h3{
    font-size:13.5px;
    margin:0 0 3px;
  }

  .info-card p{
    font-size:12px;
    line-height:1.34;
    display:block;
    -webkit-line-clamp:unset;
    -webkit-box-orient:unset;
    overflow:visible;
  }

  .section--sources-compact{
    max-width:none;
    padding:6px 10px;
  }

  .section--sources-collapsible summary{
    font-size:13px;
  }

  .section--sources-collapsible details{
    gap:4px;
  }

  .section--sources-compact ul{
    margin-top:6px;
    gap:4px;
  }

  .section--sources-compact li,
  .legal-note{
    font-size:12px;
    line-height:1.28;
  }

  .info-accordion{
    gap:5px;
  }

  .info-accordion__item summary{
    padding:8px 10px;
    font-size:12px;
  }

  .info-accordion__item p{
    padding:0 10px 8px;
    font-size:11px;
    line-height:1.3;
  }

  .landing-footer{
    max-width:1080px;
    width:100%;
    padding:0 12px 6px;
    font-size:11px;
  }
}

@media (max-width: 1080px){
  .hero{
    grid-template-columns:1fr;
    max-width:none;
    gap:10px;
  }
  .hero__left{
    grid-column:auto;
    grid-row:auto;
  }
  .hero__right{
    grid-column:auto;
    grid-row:auto;
  }
  .hero__insights.section--insights{
    grid-column:auto;
    grid-row:auto;
  }
  .info-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 760px){
  .landing-top{
    height:auto;
  }
  .landing-top__inner{
    flex-wrap:wrap;
    justify-content:center;
    padding:10px 16px;
  }
  .landing-brand{
    width:100%;
    justify-content:center;
    min-width:0;
    height:68px;
    overflow:hidden;
  }
  .landing-brand img{
    width:100%;
    height:auto;
    max-height:68px;
    max-width:min(240px, 86vw);
    transform:translate(-8px, 12px) scale(2.2);
  }
  .landing-top__actions{
    width:100%;
    justify-content:center;
  }
  .landing-subbrand{
    margin-top:12px;
    margin-bottom:10px;
    padding:0 16px;
  }
  .landing-subbrand__logo{
    width:min(208px, 56vw);
  }
  .hero__left,
  .hero__right{
    padding:22px 18px;
    min-height:0;
  }
  .hero-profile-stack{
    grid-template-columns:1fr;
  }
  .section{
    padding:18px 16px 20px;
  }
  .section h2{
    font-size:22px;
  }
  .info-grid{
    grid-template-columns:1fr;
  }
  .landing-footer{
    flex-direction:column;
    align-items:flex-start;
  }
}

/* ------------------------------
   Home (index.php) visual refresh
   Scoped to body.landing-home
--------------------------------- */
.landing-home{
  --home-ink:#102f39;
  --home-ink-soft:rgba(16, 47, 57, .78);
  --home-accent:#ff7d63;
  --home-accent-2:#f6c26b;
  --home-lagoon:#5ed7e2;
  --home-forest:#28584a;
  --home-surface:rgba(247, 250, 247, .88);
  --home-line:rgba(10, 63, 72, .12);
}

.landing-home .landing-bg{
  overflow:hidden;
  background:
    radial-gradient(960px 580px at 10% -8%, rgba(89, 212, 225, .30), transparent 64%),
    radial-gradient(920px 540px at 95% 8%, rgba(246, 194, 107, .24), transparent 58%),
    linear-gradient(180deg, #0f3947 0%, #124f61 32%, #165d6e 55%, #0d3440 100%);
}

.landing-home .landing-bg::before,
.landing-home .landing-bg::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
}

.landing-home .landing-bg::before{
  background:
    linear-gradient(180deg, rgba(4, 20, 28, .16) 0%, rgba(5, 24, 31, .56) 100%),
    url('/assets/img/home-polynesie-photo.webp') center 34% / cover no-repeat;
  opacity:.54;
  transform:scale(1.03);
}

.landing-home .landing-bg::after{
  background:
    radial-gradient(540px 220px at 22% 26%, rgba(255,255,255,.14), transparent 70%),
    linear-gradient(115deg, rgba(7, 32, 40, .16) 0%, rgba(7, 32, 40, .32) 100%);
  mix-blend-mode:screen;
}

.landing-home .topbar{
  height:114px;
  padding:18px 24px 0;
  background:linear-gradient(180deg, rgba(4, 20, 28, .22) 0%, rgba(4, 20, 28, .08) 70%, rgba(4, 20, 28, 0) 100%);
  border-bottom:none;
  box-shadow:none;
  backdrop-filter:none;
}

.landing-home .topbar__left{
  flex:0 1 auto;
  max-width:none;
  padding-left:0;
  padding-bottom:0;
  padding-top:4px;
  align-self:center;
}

.landing-home .topbar__right{
  gap:10px;
  flex-wrap:nowrap;
  padding-top:4px;
  align-self:center;
}

.landing-home .topbar.topbar--brand-v2 .topbar__left .brand{
  transform:none;
}

.landing-home .brand__logo-v2{
  width:min(300px, 36vw);
  height:76px;
  filter:drop-shadow(0 8px 14px rgba(4, 20, 28, .28));
}

.landing-home .topbar__greeting,
.landing-home .signature{
  color:rgba(241, 252, 251, .92);
}

.landing-home .topbar__login,
.landing-home .topbar__logout,
.landing-home .topbar__impersonation-stop{
  border-radius:999px !important;
}

.landing-home .topbar__login{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.2);
}

.landing-home .topbar__login:hover{
  background:rgba(255,255,255,.14);
}

.landing-home .topbar__quicklinks{
  display:flex;
  flex-wrap:nowrap;
  align-items:center;
  gap:8px;
  order:1;
}

.landing-home .topbar__quicklink{
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  color:#f2fbfa;
  font-size:12px;
  font-weight:900;
  letter-spacing:.16px;
  backdrop-filter:blur(10px);
  transition:background .2s ease, border-color .2s ease, transform .2s ease;
}

.landing-home .topbar__quicklink:hover{
  background:rgba(255,255,255,.12);
  border-color:rgba(245, 213, 155, .42);
  transform:translateY(-1px);
}

.landing-home .topbar__account{
  order:2;
}

.landing-home #btnLogin{
  order:3;
}

.landing-home .landing-main{
  max-width:1780px;
  padding:28px 14px 22px;
  display:grid;
  gap:28px;
  position:relative;
  z-index:1;
}

.landing-home #parcours-nav,
.landing-home #territoires,
.landing-home #dispositif{
  scroll-margin-top:120px;
}

.landing-home .a2z-btn{
  min-height:46px;
  padding:0 18px;
  border-radius:999px;
  font-size:13px;
  font-weight:900;
  letter-spacing:.15px;
}

.landing-home .a2z-btn--primary{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(245, 213, 155, .42);
  color:#fff3d2;
  box-shadow:0 10px 20px rgba(5, 17, 20, .12);
}

.landing-home .a2z-btn--primary:hover{
  filter:none;
  transform:translateY(-2px);
  background:rgba(255,255,255,.12);
  border-color:rgba(245, 213, 155, .72);
  box-shadow:0 16px 26px rgba(5, 17, 20, .18);
}

.landing-home .a2z-btn--ghost{
  background:rgba(255,255,255,.1);
  border-color:rgba(226, 252, 248, .22);
  color:#f3fffc;
}

.landing-home .a2z-btn--ghost:hover{
  border-color:rgba(255,255,255,.4);
  background:rgba(255,255,255,.16);
}

.landing-home .home-hero{
  position:relative;
  display:block;
  min-height:640px;
  padding:78px 18px 42px;
  border:none;
  border-radius:0;
  overflow:visible;
  isolation:isolate;
  background:transparent;
  box-shadow:none;
  animation:home-rise .75s cubic-bezier(.2, .7, .2, 1) both;
}

.landing-home .home-hero::before,
.landing-home .home-hero::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
}

.landing-home .home-hero::before{
  background:
    linear-gradient(108deg, rgba(5, 20, 27, .76) 0%, rgba(5, 28, 36, .46) 42%, rgba(7, 52, 61, .06) 78%),
    url('/assets/img/home-polynesie-photo.webp') center 34% / cover no-repeat;
  z-index:-2;
}

.landing-home .home-hero::after{
  background:
    radial-gradient(680px 320px at 18% 18%, rgba(255,255,255,.14), transparent 72%),
    linear-gradient(180deg, rgba(4, 16, 22, .04) 0%, rgba(4, 16, 22, .26) 100%);
  z-index:-1;
}

.landing-home .home-hero__content{
  position:relative;
  z-index:1;
}

.landing-home .home-hero__content{
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap:22px;
  max-width:1380px;
  padding-top:12px;
}

.landing-home .home-hero__kicker,
.landing-home .home-section__eyebrow,
.landing-home .territory-card__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  width:max-content;
  padding:8px 14px;
  border-radius:999px;
  font-size:11px;
  font-weight:900;
  letter-spacing:.28px;
  text-transform:uppercase;
}

.landing-home .home-hero__kicker{
  background:rgba(201, 255, 247, .12);
  border:1px solid rgba(220, 251, 247, .2);
  color:#ecfffd;
}

.landing-home .home-hero h1{
  margin:0;
  font-size:clamp(40px, 5.4vw, 72px);
  line-height:.94;
  letter-spacing:-1.8px;
  color:#fbfffd;
  text-wrap:balance;
}

.landing-home .home-hero__lead{
  margin:0;
  max-width:70ch;
  font-size:18px;
  line-height:1.62;
  color:rgba(240, 250, 248, .88);
}

.landing-home .home-hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.landing-home .home-hero__territories{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:auto;
}

.landing-home .home-hero__territories span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:0;
  border-radius:0;
  background:transparent;
  border:none;
  color:#f1fbfa;
  font-size:12px;
  font-weight:800;
  text-shadow:0 2px 10px rgba(4, 20, 28, .28);
}

.landing-home .home-hero__territories span::before{
  content:"";
  width:7px;
  height:7px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--home-accent) 0%, var(--home-accent-2) 100%);
  box-shadow:0 0 0 5px rgba(255,255,255,.04);
}

.landing-home .home-section{
  padding:28px 24px;
  border-radius:30px;
  background:rgba(247, 250, 247, .08);
  border:1px solid rgba(219, 252, 247, .1);
  box-shadow:none;
  backdrop-filter:blur(12px);
  animation:home-rise .8s cubic-bezier(.2, .7, .2, 1) both;
}

.landing-home .home-section__intro{
  display:grid;
  gap:12px;
  margin-bottom:22px;
  max-width:980px;
}

.landing-home .home-section__intro--compact{
  max-width:880px;
}

.landing-home .home-section__eyebrow{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(219, 252, 247, .14);
  color:#f0fbfa;
}

.landing-home .home-section h2{
  margin:0;
  color:#fbfffd;
  font-size:36px;
  line-height:1.02;
  letter-spacing:-1px;
}

.landing-home .home-section__intro p{
  margin:0;
  color:rgba(240, 250, 248, .84);
  font-size:15px;
  line-height:1.6;
}

.landing-home .territory-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:16px;
}

.landing-home .territory-card{
  min-height:380px;
  overflow:hidden;
  border-radius:24px;
  border:1px solid rgba(8, 54, 62, .12);
  background:#102f39;
  box-shadow:0 18px 34px rgba(6, 18, 22, .14);
  transition:transform .24s ease, box-shadow .24s ease;
  animation:home-rise .8s cubic-bezier(.2, .7, .2, 1) both;
}

.landing-home .territory-card:hover{
  transform:translateY(-5px);
  box-shadow:0 22px 40px rgba(6, 18, 22, .18);
}

.landing-home .territory-card__media{
  height:214px;
  background-position:center;
  background-repeat:no-repeat;
  background-size:cover;
}

.landing-home .territory-card--polynesie .territory-card__media{
  background-image:
    linear-gradient(180deg, rgba(7, 49, 61, .02) 0%, rgba(7, 49, 61, .28) 100%),
    url('/assets/img/home-polynesie-photo.webp');
}

.landing-home .territory-card--reunion .territory-card__media{
  background-image:
    linear-gradient(180deg, rgba(16, 36, 29, .06) 0%, rgba(16, 36, 29, .34) 100%),
    url('/assets/img/home-reunion-photo.webp');
}

.landing-home .territory-card--guadeloupe .territory-card__media{
  background-image:
    linear-gradient(180deg, rgba(8, 36, 51, .05) 0%, rgba(8, 36, 51, .24) 100%),
    url('/assets/img/home-guadeloupe-photo.webp');
}

.landing-home .territory-card--martinique .territory-card__media{
  background-image:
    linear-gradient(180deg, rgba(34, 20, 24, .04) 0%, rgba(34, 20, 24, .24) 100%),
    url('/assets/img/home-martinique-photo.webp');
}

.landing-home .territory-card__body{
  display:grid;
  gap:12px;
  padding:20px 20px 22px;
  color:#f8fdfc;
  background:linear-gradient(180deg, rgba(11, 38, 47, .92) 0%, rgba(11, 38, 47, .98) 100%);
  min-height:166px;
}

.landing-home .territory-card--reunion .territory-card__body{
  background:linear-gradient(180deg, rgba(20, 45, 38, .92) 0%, rgba(20, 45, 38, .98) 100%);
}

.landing-home .territory-card--guadeloupe .territory-card__body{
  background:linear-gradient(180deg, rgba(12, 53, 66, .92) 0%, rgba(12, 53, 66, .98) 100%);
}

.landing-home .territory-card--martinique .territory-card__body{
  background:linear-gradient(180deg, rgba(56, 33, 44, .92) 0%, rgba(56, 33, 44, .98) 100%);
}

.landing-home .territory-card__eyebrow{
  padding:6px 11px;
  font-size:10px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:#d6fffb;
}

.landing-home .territory-card h3{
  margin:0;
  font-size:24px;
  line-height:1;
  letter-spacing:-.5px;
}

.landing-home .territory-card p{
  margin:0;
  color:rgba(239, 249, 248, .84);
  line-height:1.5;
  font-size:14px;
}

.landing-home .pedagogy-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
}

.landing-home .pedagogy-card{
  display:grid;
  gap:14px;
  min-height:220px;
  padding:22px;
  border-radius:24px;
  border:1px solid rgba(219, 252, 247, .14);
  background:
    radial-gradient(220px 120px at 100% 0, rgba(94, 215, 226, .18), transparent 72%),
    linear-gradient(180deg, rgba(9, 42, 52, .22) 0%, rgba(9, 42, 52, .12) 100%);
  box-shadow:none;
  backdrop-filter:blur(12px);
}

.landing-home .pedagogy-card__index{
  color:rgba(219, 252, 247, .26);
  font-size:38px;
  font-weight:900;
  line-height:1;
}

.landing-home .pedagogy-card h3{
  margin:0;
  color:#fbfffd;
  font-size:22px;
  line-height:1.08;
  letter-spacing:-.5px;
}

.landing-home .pedagogy-card p{
  margin:0;
  color:rgba(240, 250, 248, .82);
  line-height:1.58;
  font-size:14px;
}

.landing-home .reassurance-band{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:14px;
  padding:18px;
  border-radius:28px;
  border:1px solid rgba(214, 250, 246, .1);
  background:
    radial-gradient(420px 200px at 10% 0, rgba(94, 215, 226, .08), transparent 72%),
    linear-gradient(135deg, rgba(6, 35, 43, .24) 0%, rgba(11, 75, 80, .16) 100%);
  box-shadow:none;
  backdrop-filter:blur(12px);
  animation:home-rise .9s cubic-bezier(.2, .7, .2, 1) both;
}

.landing-home .reassurance-item{
  display:grid;
  gap:8px;
  padding:18px;
  border-radius:22px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}

.landing-home .reassurance-item strong{
  color:#f6fffe;
  font-size:15px;
  line-height:1.2;
}

.landing-home .reassurance-item p{
  margin:0;
  color:rgba(231, 248, 245, .78);
  font-size:13px;
  line-height:1.5;
}

.landing-home .landing-footer{
  max-width:1680px;
  padding:0 18px 18px;
  display:flex;
  align-items:flex-start;
  justify-content:flex-start;
  gap:18px;
  color:rgba(235, 250, 247, .82);
  font-size:12px;
}

.landing-home .landing-footer__meta{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
}

.landing-home .landing-footer a{
  color:#f5d59b;
  text-decoration:none;
}

.landing-home .home-section--territories{
  animation-delay:.05s;
}

.landing-home .home-section--pedagogy{
  animation-delay:.1s;
}

.landing-home .territory-card:nth-child(2){
  animation-delay:.06s;
}

.landing-home .territory-card:nth-child(3){
  animation-delay:.12s;
}

.landing-home .territory-card:nth-child(4){
  animation-delay:.18s;
}

@keyframes home-rise{
  from{
    opacity:0;
    transform:translateY(16px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@media (max-width: 1180px){
  .landing-home .topbar__right,
  .landing-home .topbar__quicklinks{
    flex-wrap:wrap;
  }

  .landing-home .landing-main{
    padding:28px 20px 18px;
    gap:22px;
  }

  .landing-home .home-hero{
    min-height:0;
    padding:32px;
  }

  .landing-home .home-hero__content{
    max-width:none;
  }

  .landing-home .territory-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .landing-home .pedagogy-grid{
    grid-template-columns:1fr;
  }

  .landing-home .reassurance-band{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px){
  .landing-home .topbar{
    height:auto;
    padding:16px 18px 0;
  }

  .landing-home .topbar__left{
    flex:1 1 auto;
  }

  .landing-home .topbar__right{
    width:100%;
    justify-content:flex-start;
  }

  .landing-home .brand__logo-v2{
    width:min(250px, 52vw);
    height:68px;
  }

  .landing-home .topbar__quicklinks{
    width:100%;
  }

  .landing-home .landing-main{
    padding:20px 16px 16px;
  }

  .landing-home .home-hero{
    padding:28px 18px;
    border-radius:26px;
  }

  .landing-home .home-hero h1{
    font-size:clamp(34px, 8vw, 52px);
  }

  .landing-home .home-section,
  .landing-home .reassurance-band{
    border-radius:24px;
  }
}

@media (max-width: 640px){
  .landing-home .topbar{
    padding:14px 14px 0;
  }

  .landing-home .topbar__right{
    width:100%;
  }

  .landing-home .brand__logo-v2{
    width:min(220px, 56vw);
    height:60px;
  }

  .landing-home .topbar__quicklink{
    min-height:36px;
    padding:0 12px;
    font-size:11px;
  }

  .landing-home .home-hero{
    gap:18px;
    padding:22px 14px 18px;
  }

  .landing-home .home-hero__lead{
    font-size:15px;
  }

  .landing-home .home-hero__actions{
    flex-direction:column;
  }

  .landing-home .home-hero__actions .a2z-btn{
    width:100%;
  }

  .landing-home .home-section{
    padding:20px 14px;
  }

  .landing-home .home-section h2{
    font-size:28px;
  }

  .landing-home .territory-grid,
  .landing-home .reassurance-band{
    grid-template-columns:1fr;
  }

  .landing-home .territory-card{
    min-height:0;
  }

  .landing-home .territory-card__media{
    height:190px;
  }

  .landing-home .pedagogy-card{
    min-height:0;
  }

  .landing-home .landing-footer{
    padding:0 14px 16px;
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (prefers-reduced-motion: reduce){
  .landing-home .home-hero,
  .landing-home .home-section,
  .landing-home .reassurance-band{
    animation:none;
  }

  .landing-home .territory-card,
  .landing-home .a2z-btn,
  .landing-home .topbar__quicklink{
    transition:none;
  }
}

html.landing-home-root,
html:has(body.landing-home){
  height:auto;
  min-height:100%;
  overflow-x:hidden;
  overflow-y:auto;
  scrollbar-gutter:stable;
  scrollbar-width:thin;
  scrollbar-color:rgba(130, 214, 208, .55) transparent;
}

body.landing-home{
  height:auto;
  min-height:100vh;
  overflow-x:hidden;
  overflow-y:auto;
  scrollbar-width:thin;
  scrollbar-color:rgba(130, 214, 208, .55) transparent;
}

body.landing-home.landing{
  display:block;
  height:auto;
  min-height:100vh;
  overflow:visible;
}

body.landing-home::-webkit-scrollbar,
html.landing-home-root::-webkit-scrollbar,
html:has(body.landing-home)::-webkit-scrollbar{
  width:12px;
}

body.landing-home::-webkit-scrollbar-track,
html.landing-home-root::-webkit-scrollbar-track,
html:has(body.landing-home)::-webkit-scrollbar-track{
  background:transparent;
}

body.landing-home::-webkit-scrollbar-thumb,
html.landing-home-root::-webkit-scrollbar-thumb,
html:has(body.landing-home)::-webkit-scrollbar-thumb{
  background:rgba(130, 214, 208, .22);
  border:3px solid transparent;
  border-radius:999px;
  background-clip:padding-box;
}

body.landing-home:hover::-webkit-scrollbar-thumb,
html.landing-home-root:hover::-webkit-scrollbar-thumb,
html:has(body.landing-home):hover::-webkit-scrollbar-thumb{
  background:rgba(130, 214, 208, .5);
  background-clip:padding-box;
}

body.landing-home::-webkit-scrollbar-thumb:hover,
html.landing-home-root::-webkit-scrollbar-thumb:hover,
html:has(body.landing-home)::-webkit-scrollbar-thumb:hover{
  background:rgba(245, 213, 155, .78);
  background-clip:padding-box;
}

@media (min-width: 1100px){
  html:has(body.landing-home),
  html.landing-home-root,
  body.landing-home{
    height:auto;
    min-height:100%;
    overflow-x:hidden;
    overflow-y:auto;
  }

  body.landing-home.landing{
    min-height:100vh;
    height:auto;
    display:block;
    overflow:visible;
  }
}
