:root{
  --bg:#03070d;
  --bg2:#07111c;
  --panel:#091725;
  --panel2:#0c1d2c;
  --line:rgba(255,255,255,.075);
  --text:#f6fbff;
  --muted:#8297aa;
  --blue:#00c8ff;
  --green:#55f39a;
  --purple:#9b73ff;
  --red:#ff6680;
  --shadow:0 22px 70px rgba(0,0,0,.35);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter,system-ui,sans-serif;
  background:
    radial-gradient(
      circle at 50% -10%,
      rgba(0,200,255,.09),
      transparent 35%
    ),
    linear-gradient(
      180deg,
      #03070d,
      #06111b 48%,
      #03070d
    );
  color:var(--text);
  min-height:100vh;
}

body:before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.22;
  background-image:
    linear-gradient(
      rgba(255,255,255,.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,.025) 1px,
      transparent 1px
    );
  background-size:60px 60px;
  mask-image:linear-gradient(
    to bottom,
    black,
    transparent 80%
  );
}

a{
  color:inherit;
  text-decoration:none;
}

.container{
  width:min(1180px,calc(100% - 32px));
  margin:auto;
}


/* =========================================================
   NAVBAR
   ========================================================= */

.navbar{
  height:78px;
  position:sticky;
  top:0;
  z-index:30;
  background:rgba(3,7,13,.78);
  backdrop-filter:blur(22px);
  border-bottom:1px solid var(--line);
}

.navin{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.logo{
  height:58px;
  width:122px;
  object-fit:contain;
}

.navlinks{
  display:flex;
  gap:26px;
  color:#91a6b8;
  font-size:13px;
  font-weight:700;
}

.navlinks a{
  position:relative;
  transition:.2s;
}

.navlinks a:hover,
.navlinks a.active{
  color:#fff;
}

.navlinks a.active:after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:2px;
  bottom:-11px;
  background:linear-gradient(
    90deg,
    var(--green),
    var(--blue)
  );
  border-radius:2px;
}

.navright{
  display:flex;
  gap:9px;
  align-items:center;
}

.btn{
  border:0;
  border-radius:12px;
  padding:12px 17px;
  font-weight:800;
  cursor:pointer;
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:9px;
  transition:
    transform .2s,
    box-shadow .2s,
    opacity .2s;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn:disabled{
  opacity:.65;
  cursor:wait;
  transform:none;
}

.btn-primary{
  color:#00131b;
  background:linear-gradient(
    135deg,
    #55f39a,
    #00c8ff
  );
  box-shadow:0 8px 28px rgba(0,200,255,.14);
}

.btn-primary:hover{
  box-shadow:0 12px 35px rgba(0,200,255,.22);
}

.btn-dark{
  background:rgba(10,24,36,.82);
  border:1px solid var(--line);
  color:#eaf7ff;
}

.account-connected{
  box-shadow:
    0 0 0 1px rgba(85,243,154,.2),
    0 8px 28px rgba(85,243,154,.08);
}

.menu{
  display:none;
  background:transparent;
  border:0;
  color:#fff;
  font-size:24px;
  cursor:pointer;
}


/* =========================================================
   HERO
   ========================================================= */

.hero{
  padding:92px 0 70px;
}

.vps-hero{
  text-align:center;
}

.eyebrow{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:8px 11px;
  border:1px solid rgba(85,243,154,.17);
  border-radius:999px;
  color:#aef8cc;
  background:rgba(85,243,154,.035);
  font-size:10px;
  font-weight:900;
  letter-spacing:.12em;
}

.dot{
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--green);
  box-shadow:0 0 15px var(--green);
}

.hero h1{
  font-size:clamp(42px,6vw,76px);
  line-height:.98;
  letter-spacing:-.06em;
  margin:20px 0 18px;
}

.gradient{
  background:linear-gradient(
    90deg,
    #fff 5%,
    #00c8ff 55%,
    #55f39a
  );
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.hero p{
  max-width:690px;
  margin:auto;
  color:var(--muted);
  line-height:1.75;
  font-size:15px;
}

.hero-trust{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
  margin-top:27px;
}

.hero-trust span{
  padding:9px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.02);
  font-size:11px;
  color:#a8bac8;
}


/* =========================================================
   SECTIONS
   ========================================================= */

.section{
  padding:72px 0;
}

.plans-section{
  padding-top:20px;
  width:min(1450px,calc(100% - 32px));
  max-width:1450px;
  margin-left:auto;
  margin-right:auto;
}

.section-title{
  text-align:center;
  max-width:760px;
  margin:0 auto 34px;
}

.section-title span,
.section-kicker{
  font-size:10px;
  color:var(--green);
  font-weight:900;
  letter-spacing:.16em;
}

.section-title h2,
.section-heading-row h2{
  font-size:clamp(30px,4vw,46px);
  margin:9px 0;
  letter-spacing:-.045em;
}

.section-title p,
.section-heading-row p{
  color:var(--muted);
  font-size:13px;
  line-height:1.7;
}

.section-heading-row{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:30px;
}

.billing-note{
  padding:9px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  color:#91a6b8;
  font-size:11px;
  background:rgba(255,255,255,.02);
}


/* =========================================================
   VPS — 5 OFFRES SUR UNE LIGNE
   ========================================================= */

.plans-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:14px;
  width:100%;
  align-items:stretch;
}


/* =========================================================
   CARDS VPS
   ========================================================= */

.card{
  background:
    linear-gradient(
      180deg,
      rgba(10,25,38,.96),
      rgba(5,13,21,.98)
    );
  border:1px solid var(--line);
  border-radius:22px;
  padding:25px;
  box-shadow:0 18px 55px rgba(0,0,0,.16);
}

.plan-card{
  position:relative;
  overflow:hidden;
  min-width:0;
  width:100%;
  padding:24px 18px;
  display:flex;
  flex-direction:column;
  transition:.25s;
}

.plan-card:hover{
  transform:translateY(-5px);
  border-color:rgba(0,200,255,.2);
  box-shadow:var(--shadow);
}

.plan-card.featured{
  position:relative;
  border-color:rgba(155,115,255,.38);
  box-shadow:
    0 22px 70px rgba(98,63,190,.12);
}

.featured-label{
  position:absolute;
  right:16px;
  top:16px;
  padding:6px 9px;
  border-radius:999px;
  background:rgba(155,115,255,.12);
  border:1px solid rgba(155,115,255,.18);
  color:#d6c7ff;
  font-size:10px;
  font-weight:900;
  letter-spacing:.08em;
  white-space:nowrap;
}

.plan-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.status-pill{
  font-size:10px;
  font-weight:900;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(85,243,154,.08);
  color:#aef8cc;
  letter-spacing:.05em;
}

.status-pill.purple{
  color:#d6c7ff;
  background:rgba(155,115,255,.1);
}

.status-pill.red{
  color:#ffabb8;
  background:rgba(255,85,113,.08);
}

.plan-icon{
  font-size:10px;
  color:#506a7e;
  font-weight:900;
}

.card h3,
.plan-card h3{
  margin:14px 0 8px;
  font-size:20px;
}

.plan-desc{
  min-height:58px;
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
  margin:0;
}

.price{
  font-size:40px;
  font-weight:900;
  letter-spacing:-.055em;
  margin-top:20px;
}

.plan-card .price{
  font-size:28px;
  margin-top:14px;
}

.price span{
  font-size:12px;
  font-weight:600;
  color:var(--muted);
  letter-spacing:0;
}

.plan-card .price span{
  font-size:13px;
  font-weight:500;
}

.divider{
  height:1px;
  background:var(--line);
  margin:20px 0;
}

.plan-card .divider{
  margin:18px 0;
}

.plan-list{
  list-style:none;
  padding:0;
  display:grid;
  gap:11px;
  margin:0 0 24px;
}

.plan-card .plan-list{
  margin:0;
  padding:0;
  list-style:none;
  font-size:13px;
}

.plan-list li{
  font-size:12px;
  color:#b9c9d5;
}

.plan-card .plan-list li{
  padding:8px 0;
}

.plan-list li:before{
  content:"✓";
  color:var(--green);
  font-weight:900;
  margin-right:9px;
}

.plan-btn{
  width:100%;
}

.plan-card .plan-btn{
  width:100%;
  margin-top:auto;
}

.plan-btn span{
  font-size:18px;
}

.plan-btn.loading span{
  animation:pulse 1s infinite;
}

@keyframes pulse{
  50%{
    opacity:.35;
  }
}

.checkout-msg{
  min-height:20px;
  text-align:center;
  color:#8fa5b8;
  font-size:12px;
  margin-top:18px;
}

.checkout-msg.error{
  color:#ff9eae;
}


/* =========================================================
   TABLE
   ========================================================= */

.tablewrap{
  overflow:auto;
  border:1px solid var(--line);
  border-radius:20px;
  background:rgba(5,13,21,.65);
  box-shadow:var(--shadow);
}

.table{
  width:100%;
  border-collapse:collapse;
  min-width:720px;
}

.table th,
.table td{
  text-align:left;
  padding:16px 18px;
  border-bottom:1px solid var(--line);
  font-size:12px;
}

.table th{
  color:#6f8498;
  text-transform:uppercase;
  font-size:10px;
  letter-spacing:.08em;
}

.table td:first-child{
  font-weight:800;
}

.table tbody tr:hover{
  background:rgba(255,255,255,.018);
}

.check{
  color:var(--green);
  font-weight:900;
}


/* =========================================================
   CTA
   ========================================================= */

.cta-strip{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
  padding:28px 30px;
  margin-bottom:70px;
  border:1px solid var(--line);
  border-radius:22px;
  background:
    linear-gradient(
      120deg,
      rgba(0,200,255,.06),
      rgba(85,243,154,.035),
      rgba(155,115,255,.05)
    );
}

.cta-strip h2{
  font-size:24px;
  letter-spacing:-.03em;
  margin:8px 0;
}

.cta-strip p{
  color:var(--muted);
  font-size:12px;
  margin:0;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer{
  margin-top:20px;
  padding:50px 0 22px;
  border-top:1px solid var(--line);
  background:rgba(2,6,11,.82);
}

.footergrid{
  display:grid;
  grid-template-columns:1.5fr repeat(3,1fr);
  gap:35px;
}

.footer img{
  width:135px;
}

.footer a,
.footer p{
  display:block;
  color:#70869a;
  font-size:12px;
  line-height:1.9;
}

.footer a:hover{
  color:#fff;
}

.footer h4{
  font-size:12px;
  margin:0 0 12px;
}

.copyright{
  margin-top:30px;
  padding-top:18px;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  color:#53697c;
  font-size:10px;
}


/* =========================================================
   TABLETTE — 5 OFFRES COMPACTES
   ========================================================= */

@media(max-width:1200px){

  .plans-section{
    width:calc(100% - 20px);
  }

  .plans-grid{
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:10px;
  }

  .plan-card{
    padding:20px 12px;
  }

  .plan-card h3{
    font-size:17px;
  }

  .plan-card .plan-desc{
    font-size:11px;
  }

  .plan-card .price{
    font-size:24px;
  }

  .plan-card .plan-list{
    font-size:11px;
  }

  .plan-card .plan-list li{
    font-size:11px;
  }

  .featured-label{
    right:10px;
    top:10px;
    padding:5px 7px;
    font-size:8px;
  }
}


/* =========================================================
   PETITE TABLETTE — 2 OFFRES
   ========================================================= */

@media(max-width:850px){

  .plans-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
  }

  .plan-card{
    padding:22px 18px;
  }

  .plan-card h3{
    font-size:19px;
  }

  .plan-card .price{
    font-size:28px;
  }

  .plan-card .plan-list,
  .plan-card .plan-list li{
    font-size:12px;
  }
}


/* =========================================================
   NAVBAR MOBILE
   ========================================================= */

@media(max-width:900px){

  .navlinks{
    display:none;
  }

  .navlinks.mobile-open{
    display:flex;
    position:absolute;
    top:78px;
    left:0;
    right:0;
    padding:18px 20px;
    background:#050b12;
    border-bottom:1px solid var(--line);
    flex-direction:column;
    gap:16px;
  }

  .navright{
    display:none;
  }

  .menu{
    display:block;
  }

  .footergrid{
    grid-template-columns:1fr 1fr;
  }

  .section-heading-row{
    align-items:flex-start;
    flex-direction:column;
  }
}


/* =========================================================
   MOBILE — 1 OFFRE
   ========================================================= */

@media(max-width:560px){

  .container{
    width:calc(100% - 22px);
  }

  .hero{
    padding-top:65px;
  }

  .hero h1{
    font-size:43px;
  }

  .hero-trust{
    align-items:center;
  }

  .plans-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .plan-card{
    padding:24px;
  }

  .plan-card h3{
    font-size:20px;
  }

  .plan-card .price{
    font-size:30px;
  }

  .plan-card .plan-list,
  .plan-card .plan-list li{
    font-size:13px;
  }

  .cta-strip{
    align-items:flex-start;
    flex-direction:column;
    padding:24px;
  }

  .footergrid{
    grid-template-columns:1fr;
  }

  .copyright{
    flex-direction:column;
    gap:8px;
  }
}

/* =========================================================
   ML-HOST — 5 OFFRES HÉBERGEMENT WEB
========================================================= */

.web-plans-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.web-plans-grid .plan-card {
    min-width: 0;
}

.web-plans-grid .plan-card h3 {
    font-size: 20px;
}

.web-plans-grid .plan-card .plan-desc {
    min-height: 72px;
}

.web-plans-grid .plan-list {
    font-size: 13px;
}

.web-plans-grid .price {
    font-size: 27px;
}

/* Écrans plus petits */
@media (max-width: 1200px) {
    .web-plans-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Tablette */
@media (max-width: 800px) {
    .web-plans-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile */
@media (max-width: 560px) {
    .web-plans-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   ML-HOST — STATUS PAGE
========================================================= */

.status-hero {
    padding-bottom: 55px;
}

.status-section {
    padding-top: 20px;
}


/* GLOBAL STATUS */

.status-overview {
    position: relative;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 28px 30px;
    margin-bottom: 80px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,.045),
        rgba(255,255,255,.018)
    );
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
    overflow: hidden;
}

.status-overview::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        circle at 0% 50%,
        rgba(80,220,150,.08),
        transparent 35%
    );
}

.status-overview-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    border-radius: 16px;
    background: rgba(80,220,150,.10);
    border: 1px solid rgba(80,220,150,.18);
}

.status-pulse {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #4fd18a;
    box-shadow: 0 0 0 7px rgba(79,209,138,.10);
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0%, 100% {
        box-shadow: 0 0 0 7px rgba(79,209,138,.10);
    }

    50% {
        box-shadow: 0 0 0 13px rgba(79,209,138,.02);
    }
}

.status-overview-content {
    position: relative;
    flex: 1;
}

.status-overview-content h2 {
    margin: 4px 0 5px;
    font-size: 22px;
}

.status-overview-content p {
    margin: 0;
    color: rgba(255,255,255,.58);
}

.status-updated {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    color: rgba(255,255,255,.42);
    font-size: 12px;
}

.status-updated strong {
    color: rgba(255,255,255,.8);
    font-size: 14px;
}


/* GLOBAL STATES */

.status-overview.operational {
    border-color: rgba(79,209,138,.18);
}

.status-overview.degraded {
    border-color: rgba(245,180,70,.22);
}

.status-overview.outage {
    border-color: rgba(240,90,90,.25);
}

.status-overview.degraded .status-pulse {
    background: #f5b446;
}

.status-overview.outage .status-pulse {
    background: #ef6464;
}


/* TITLE */

.status-title {
    margin-bottom: 28px;
}


/* SERVICE GRID */

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


/* SERVICE CARD */

.status-card {
    position: relative;
    padding: 24px;
    min-height: 205px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.07);
    background: rgba(255,255,255,.025);
    transition:
        transform .2s ease,
        border-color .2s ease,
        background .2s ease;
    overflow: hidden;
}

.status-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,.13);
    background: rgba(255,255,255,.04);
}

.status-card.operational {
    border-color: rgba(79,209,138,.12);
}

.status-card.degraded {
    border-color: rgba(245,180,70,.15);
}

.status-card.outage {
    border-color: rgba(240,90,90,.18);
}


.status-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 22px;
}

.status-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,.05);
    color: rgba(255,255,255,.5);
    font-weight: 800;
}

.service-status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #4fd18a;
    box-shadow: 0 0 12px rgba(79,209,138,.45);
}

.status-card.degraded .service-status-dot {
    background: #f5b446;
    box-shadow: 0 0 12px rgba(245,180,70,.4);
}

.status-card.outage .service-status-dot {
    background: #ef6464;
    box-shadow: 0 0 12px rgba(239,100,100,.4);
}


.status-card h3 {
    margin: 0 0 9px;
    font-size: 18px;
}

.status-card p {
    margin: 0;
    min-height: 42px;
    color: rgba(255,255,255,.55);
    line-height: 1.6;
}


/* BADGES */

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .02em;
}

.status-badge.operational {
    color: #4fd18a;
    background: rgba(79,209,138,.09);
    border: 1px solid rgba(79,209,138,.14);
}

.status-badge.degraded {
    color: #f5b446;
    background: rgba(245,180,70,.09);
    border: 1px solid rgba(245,180,70,.14);
}

.status-badge.outage {
    color: #ef6464;
    background: rgba(239,100,100,.09);
    border: 1px solid rgba(239,100,100,.14);
}

.status-badge.loading {
    color: rgba(255,255,255,.55);
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
}


/* CARD FOOTER */

.status-card-line {
    height: 1px;
    margin: 20px 0 12px;
    background: rgba(255,255,255,.06);
}

.status-small {
    color: rgba(255,255,255,.32);
    font-size: 11px;
}


/* LEGEND */

.status-legend {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    margin-top: 30px;
    color: rgba(255,255,255,.42);
    font-size: 12px;
}

.status-legend > div {
    display: flex;
    align-items: center;
    gap: 7px;
}

.legend-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.legend-dot.operational {
    background: #4fd18a;
}

.legend-dot.degraded {
    background: #f5b446;
}

.legend-dot.outage {
    background: #ef6464;
}


/* INFO */

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

.status-info-card {
    min-height: 200px;
}

.status-info-card .icon {
    margin-bottom: 18px;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

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

    .status-info-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 700px) {

    .status-overview {
        align-items: flex-start;
        flex-wrap: wrap;
        padding: 22px;
    }

    .status-updated {
        width: 100%;
        align-items: flex-start;
        padding-left: 80px;
    }

    .status-grid {
        grid-template-columns: 1fr;
    }

    .status-legend {
        flex-wrap: wrap;
        gap: 15px;
    }

}

@media (max-width: 500px) {

    .status-overview {
        gap: 15px;
    }

    .status-overview-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

    .status-overview-content h2 {
        font-size: 18px;
    }

    .status-overview-content p {
        font-size: 13px;
    }

    .status-card {
        padding: 20px;
    }

}

/* =========================================================
   ML-HOST — AVANTAGES
========================================================= */

.advantages-hero {
    padding-bottom: 65px;
}


/* =========================================================
   HIGHLIGHT
========================================================= */

.advantage-highlight {
    position: relative;
    display: grid;
    grid-template-columns: 1.5fr .8fr;
    gap: 50px;
    align-items: center;
    padding: 45px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.08);
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(79,209,138,.10),
            transparent 38%
        ),
        rgba(255,255,255,.025);
    overflow: hidden;
}

.advantage-highlight-content h2 {
    max-width: 700px;
    margin: 10px 0 18px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
}

.advantage-highlight-content p {
    max-width: 720px;
    margin: 0;
    color: rgba(255,255,255,.55);
    line-height: 1.8;
}

.advantage-highlight-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.advantage-highlight-stats > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 17px 20px;
    border-radius: 13px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.06);
}

.advantage-highlight-stats strong {
    font-size: 22px;
}

.advantage-highlight-stats span {
    color: rgba(255,255,255,.4);
    font-size: 12px;
}


/* =========================================================
   ADVANTAGE GRID
========================================================= */

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

.advantage-card {
    position: relative;
    min-height: 245px;
    overflow: hidden;
    transition:
        transform .2s ease,
        border-color .2s ease,
        background .2s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    border-color: rgba(79,209,138,.16);
    background: rgba(255,255,255,.035);
}

.advantage-card .icon {
    margin-bottom: 20px;
}

.advantage-card h3 {
    margin-bottom: 10px;
}

.advantage-card p {
    max-width: 430px;
    color: rgba(255,255,255,.52);
    line-height: 1.7;
}

.advantage-number {
    position: absolute;
    right: 22px;
    bottom: 17px;
    color: rgba(255,255,255,.07);
    font-size: 45px;
    font-weight: 900;
    line-height: 1;
}


/* =========================================================
   INFRASTRUCTURE
========================================================= */

.infrastructure-card {
    position: relative;
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    gap: 40px;
    align-items: center;
    padding: 45px;
    min-height: 330px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.08);
    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(79,209,138,.09),
            transparent 35%
        ),
        rgba(255,255,255,.025);
    overflow: hidden;
}

.infrastructure-content h2 {
    margin: 10px 0 15px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
}

.infrastructure-content > p {
    max-width: 650px;
    color: rgba(255,255,255,.52);
    line-height: 1.7;
}

.infrastructure-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.infrastructure-points div {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 9px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    font-size: 12px;
}

.infrastructure-points span {
    color: #4fd18a;
}

.infrastructure-location {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    border-radius: 18px;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.07);
    overflow: hidden;
}

.location-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(79,209,138,.08);
    filter: blur(30px);
}

.location-icon {
    position: relative;
    z-index: 1;
    font-size: 55px;
    margin-bottom: 12px;
}

.infrastructure-location strong {
    position: relative;
    z-index: 1;
    font-size: 20px;
    letter-spacing: .08em;
}

.infrastructure-location > span {
    position: relative;
    z-index: 1;
    margin-top: 5px;
    color: rgba(255,255,255,.38);
    font-size: 11px;
    letter-spacing: .18em;
}


/* =========================================================
   SUPPORT
========================================================= */

.support-highlight {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px 35px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.07);
    background: rgba(255,255,255,.025);
}

.support-highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    border-radius: 15px;
    background: rgba(79,209,138,.09);
    border: 1px solid rgba(79,209,138,.13);
    font-size: 25px;
}

.support-highlight > div:nth-child(2) {
    flex: 1;
}

.support-highlight h2 {
    margin: 5px 0 7px;
    font-size: 22px;
}

.support-highlight p {
    margin: 0;
    color: rgba(255,255,255,.48);
    line-height: 1.6;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

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

    .advantage-highlight {
        grid-template-columns: 1fr;
    }

    .infrastructure-card {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 700px) {

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .advantage-highlight,
    .infrastructure-card {
        padding: 28px;
    }

    .support-highlight {
        flex-wrap: wrap;
        padding: 25px;
    }

    .support-highlight .btn {
        width: 100%;
    }

}


@media (max-width: 500px) {

    .advantage-highlight-stats > div {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .infrastructure-points {
        flex-direction: column;
    }

    .infrastructure-points div {
        width: 100%;
    }

}

/* =========================================================
   ML-HOST — SUPPORT
========================================================= */

.support-hero {
    padding-bottom: 60px;
}


/* =========================================================
   CONTACT METHODS
========================================================= */

.support-methods {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.support-method {
    display: flex;
    gap: 22px;
    padding: 30px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.07);
    background: rgba(255,255,255,.025);
    transition:
        transform .2s ease,
        border-color .2s ease,
        background .2s ease;
}

.support-method:hover {
    transform: translateY(-4px);
    border-color: rgba(79,209,138,.16);
    background: rgba(255,255,255,.035);
}

.support-method-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    border-radius: 15px;
    background: rgba(79,209,138,.08);
    border: 1px solid rgba(79,209,138,.13);
    font-size: 25px;
}

.support-method-content {
    flex: 1;
}

.support-method-label {
    color: #4fd18a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
}

.support-method h3 {
    margin: 7px 0 9px;
    font-size: 21px;
}

.support-method p {
    margin: 0 0 20px;
    color: rgba(255,255,255,.5);
    line-height: 1.7;
}


/* =========================================================
   FAQ
========================================================= */

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

.faq-card {
    position: relative;
    min-height: 220px;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.07);
    background: rgba(255,255,255,.025);
    overflow: hidden;
    transition:
        transform .2s ease,
        border-color .2s ease;
}

.faq-card:hover {
    transform: translateY(-3px);
    border-color: rgba(79,209,138,.14);
}

.faq-number {
    margin-bottom: 25px;
    color: rgba(79,209,138,.65);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
}

.faq-card h3 {
    margin-bottom: 10px;
    font-size: 17px;
}

.faq-card p {
    margin: 0;
    color: rgba(255,255,255,.48);
    line-height: 1.7;
}


/* =========================================================
   STATUS
========================================================= */

.support-status {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 28px 30px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.07);
    background:
        radial-gradient(
            circle at 0% 50%,
            rgba(79,209,138,.07),
            transparent 35%
        ),
        rgba(255,255,255,.025);
}

.support-status-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 14px;
    color: #4fd18a;
    background: rgba(79,209,138,.08);
    border: 1px solid rgba(79,209,138,.13);
    font-size: 18px;
    box-shadow: 0 0 20px rgba(79,209,138,.08);
}

.support-status-content {
    flex: 1;
}

.support-status-content h2 {
    margin: 5px 0 7px;
    font-size: 21px;
}

.support-status-content p {
    margin: 0;
    color: rgba(255,255,255,.48);
    line-height: 1.6;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

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

}

@media (max-width: 700px) {

    .support-methods,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .support-method {
        padding: 24px;
    }

    .support-status {
        flex-wrap: wrap;
        padding: 24px;
    }

    .support-status .btn {
        width: 100%;
    }

}

@media (max-width: 500px) {

    .support-method {
        flex-direction: column;
    }

    .support-method-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
    }

}

/* =========================================================
   ML-HOST — ACCUEIL
========================================================= */

.home-hero {
    padding-bottom: 55px;
}


/* =========================================================
   STATS
========================================================= */

.home-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 40px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 18px;
    background: rgba(255,255,255,.02);
    overflow: hidden;
}

.home-stat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 115px;
    padding: 22px 25px;
    border-right: 1px solid rgba(255,255,255,.06);
}

.home-stat:last-child {
    border-right: 0;
}

.home-stat strong {
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -.03em;
}

.home-stat span {
    margin-top: 5px;
    color: rgba(255,255,255,.4);
    font-size: 12px;
}


/* =========================================================
   SERVICES
========================================================= */

.home-services {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 18px;
}

.home-service {
    position: relative;
    min-height: 400px;
    padding: 32px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 20px;
    background: rgba(255,255,255,.025);
    overflow: hidden;
    transition:
        transform .2s ease,
        border-color .2s ease;
}

.home-service:hover {
    transform: translateY(-4px);
    border-color: rgba(79,209,138,.16);
}

.home-service-main {
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(79,209,138,.10),
            transparent 40%
        ),
        rgba(255,255,255,.025);
}

.home-service-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.home-service-top .icon {
    margin: 0;
}

.home-service-badge {
    padding: 7px 10px;
    border-radius: 7px;
    color: #4fd18a;
    background: rgba(79,209,138,.08);
    border: 1px solid rgba(79,209,138,.12);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
}

.home-service h3 {
    margin-bottom: 12px;
    font-size: 25px;
}

.home-service p {
    max-width: 620px;
    color: rgba(255,255,255,.5);
    line-height: 1.75;
}

.home-service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
    margin: 25px 0;
}

.home-service-features span {
    padding: 10px 12px;
    border-radius: 9px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.05);
    color: rgba(255,255,255,.62);
    font-size: 11px;
}


/* =========================================================
   ABOUT
========================================================= */

.home-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
    padding: 45px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.07);
    background:
        radial-gradient(
            circle at 0% 100%,
            rgba(79,209,138,.07),
            transparent 38%
        ),
        rgba(255,255,255,.02);
}

.home-about-content h2 {
    margin: 10px 0 16px;
    font-size: clamp(29px, 4vw, 43px);
    line-height: 1.08;
}

.home-about-content > p {
    max-width: 600px;
    margin-bottom: 25px;
    color: rgba(255,255,255,.5);
    line-height: 1.8;
}

.home-about-list {
    display: grid;
    gap: 10px;
}

.home-about-list > div {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.05);
}

.home-about-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 11px;
    background: rgba(79,209,138,.07);
}

.home-about-list strong {
    display: block;
    font-size: 13px;
}

.home-about-list p {
    margin: 3px 0 0;
    color: rgba(255,255,255,.4);
    font-size: 11px;
}


/* =========================================================
   INFRASTRUCTURE
========================================================= */

.home-infrastructure {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 18px;
}

.home-infrastructure-main {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 32px;
    min-height: 220px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.07);
    background:
        radial-gradient(
            circle at 0% 50%,
            rgba(79,209,138,.08),
            transparent 45%
        ),
        rgba(255,255,255,.025);
}

.home-france-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 85px;
    flex: 0 0 85px;
    border-radius: 20px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.06);
    font-size: 42px;
}

.home-infrastructure-main h3 {
    margin: 7px 0 9px;
    font-size: 22px;
}

.home-infrastructure-main p {
    margin: 0;
    color: rgba(255,255,255,.45);
    line-height: 1.65;
}

.home-infrastructure-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.home-infrastructure-items > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 18px 20px;
    border-radius: 13px;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.06);
}

.home-infrastructure-items strong {
    font-size: 18px;
}

.home-infrastructure-items span {
    color: rgba(255,255,255,.38);
    font-size: 11px;
}


/* =========================================================
   SUPPORT
========================================================= */

.home-support {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 30px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.07);
    background: rgba(255,255,255,.025);
}

.home-support-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    flex: 0 0 55px;
    border-radius: 14px;
    background: rgba(79,209,138,.08);
    border: 1px solid rgba(79,209,138,.12);
    font-size: 24px;
}

.home-support > div:nth-child(2) {
    flex: 1;
}

.home-support h2 {
    margin: 5px 0 7px;
    font-size: 21px;
}

.home-support p {
    margin: 0;
    color: rgba(255,255,255,.45);
    line-height: 1.6;
}


/* =========================================================
   CTA
========================================================= */

.home-cta {
    margin-top: 10px;
}

.home-cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .home-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-stat:nth-child(2) {
        border-right: 0;
    }

    .home-stat:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.06);
    }

    .home-services,
    .home-about,
    .home-infrastructure {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 700px) {

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

    .home-stat {
        min-height: 95px;
        padding: 17px;
    }

    .home-service {
        min-height: auto;
        padding: 25px;
    }

    .home-service-features {
        grid-template-columns: 1fr;
    }

    .home-about {
        padding: 28px;
    }

    .home-infrastructure-main {
        align-items: flex-start;
        flex-direction: column;
        padding: 27px;
    }

    .home-support {
        flex-wrap: wrap;
        padding: 25px;
    }

    .home-support .btn {
        width: 100%;
    }

}


@media (max-width: 500px) {

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

    .home-stat,
    .home-stat:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.06);
    }

    .home-stat:last-child {
        border-bottom: 0;
    }

    .home-cta-actions {
        width: 100%;
    }

    .home-cta-actions .btn {
        width: 100%;
    }

}

/* =========================================================
   ML-HOST — HEADER
   ========================================================= */

.site-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(3, 7, 13, .88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav {
  width: min(1400px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

/* Logo */
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 145px;
  height: auto;
  max-height: 42px;
  object-fit: contain;
}

/* Navigation */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
}

.nav-links a {
  position: relative;

  display: inline-flex;
  align-items: center;

  padding: 10px 13px;

  color: var(--muted);
  font-size: 14px;
  font-weight: 600;

  text-decoration: none;
  border-radius: 9px;

  transition:
    color .2s ease,
    background .2s ease;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255,255,255,.045);
}

.nav-links a.active {
  color: var(--text);
  background: rgba(0,200,255,.08);
}

/* Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 40px;
  padding: 0 15px;

  border-radius: 9px;

  font-size: 13px;
  font-weight: 700;

  text-decoration: none;
  white-space: nowrap;

  transition:
    transform .2s ease,
    background .2s ease,
    border-color .2s ease,
    box-shadow .2s ease;
}

.nav-actions .btn:hover {
  transform: translateY(-1px);
}

/* Discord */
.btn-discord {
  color: var(--text);
  background: rgba(255,255,255,.045);
  border: 1px solid var(--line);
}

.btn-discord:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.13);
}

/* Connexion */
.nav-actions .btn-primary {
  color: #031017;
  background: var(--blue);
  border: 1px solid var(--blue);
  box-shadow: 0 8px 24px rgba(0,200,255,.12);
}

.nav-actions .btn-primary:hover {
  background: #26d0ff;
  border-color: #26d0ff;
  box-shadow: 0 10px 28px rgba(0,200,255,.18);
}


/* =========================================================
   PAGES LÉGALES
   ========================================================= */

.legal-page {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 100px;
}

/* Hero */
.legal-hero {
  text-align: center;
  margin-bottom: 45px;
}

.legal-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 7px 13px;
  margin-bottom: 18px;

  border-radius: 999px;

  color: var(--blue);
  background: rgba(0,200,255,.07);
  border: 1px solid rgba(0,200,255,.18);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.legal-hero h1 {
  margin: 0;

  color: var(--text);

  font-size: clamp(32px, 5vw, 50px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1.8px;
}

.legal-hero p {
  width: min(720px, 100%);
  margin: 18px auto 0;

  color: var(--muted);

  font-size: 15px;
  line-height: 1.75;
}


/* Conteneur principal */
.legal-card {
  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      rgba(9,23,37,.97),
      rgba(7,17,28,.97)
    );

  border: 1px solid var(--line);
  border-radius: 20px;

  box-shadow: var(--shadow);
}


/* Sections */
.legal-section {
  margin: 0;
  padding: 30px 38px;

  border-bottom: 1px solid var(--line);
}

.legal-section:first-child {
  padding-top: 38px;
}

.legal-section:last-of-type {
  border-bottom: 0;
}

.legal-section h2 {
  margin: 0 0 14px;

  color: var(--text);

  font-size: 20px;
  line-height: 1.3;
  font-weight: 750;
  letter-spacing: -.3px;
}

.legal-section h3 {
  margin: 22px 0 10px;

  color: var(--text);

  font-size: 15px;
  font-weight: 700;
}

.legal-section p {
  margin: 0 0 12px;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.8;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section strong {
  color: var(--text);
  font-weight: 650;
}


/* Listes */
.legal-section ul {
  margin: 14px 0 0;
  padding-left: 22px;

  color: var(--muted);
}

.legal-section li {
  margin: 8px 0;

  font-size: 14px;
  line-height: 1.7;
}

.legal-section li::marker {
  color: var(--blue);
}


/* Liens */
.legal-section a {
  color: var(--blue);
  text-decoration: none;
  transition: color .2s ease;
}

.legal-section a:hover {
  color: #55dcff;
  text-decoration: underline;
}


/* Encadré information */
.legal-note {
  margin-top: 18px;
  padding: 16px 18px;

  color: var(--muted);

  background: rgba(0,200,255,.045);
  border: 1px solid rgba(0,200,255,.12);
  border-left: 3px solid var(--blue);

  border-radius: 10px;

  font-size: 13px;
  line-height: 1.7;
}

.legal-note a {
  color: var(--blue);
}


/* Date */
.legal-date {
  padding: 25px 38px;

  color: var(--muted);

  border-top: 1px solid var(--line);

  font-size: 12px;
  text-align: center;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  width: 100%;
  border-top: 1px solid var(--line);
  background: #02060b;
}

.footer-grid {
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto;
  padding: 55px 0 40px;

  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 45px;
}

.footer-logo {
  display: block;
  width: 135px;
  height: auto;
  margin-bottom: 16px;
}

.site-footer p {
  max-width: 300px;
  margin: 0;

  color: var(--muted);

  font-size: 13px;
  line-height: 1.7;
}

.site-footer h3 {
  margin: 0 0 15px;

  color: var(--text);

  font-size: 14px;
  font-weight: 700;
}

.site-footer a {
  display: block;

  margin: 9px 0;

  color: var(--muted);

  font-size: 13px;
  text-decoration: none;

  transition: color .2s ease;
}

.site-footer a:hover {
  color: var(--blue);
}

.footer-bottom {
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto;

  padding: 20px 0;

  border-top: 1px solid var(--line);

  color: var(--muted);

  font-size: 12px;
  text-align: center;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

  .nav {
    gap: 15px;
  }

  .nav-links {
    gap: 2px;
  }

  .nav-links a {
    padding: 9px 8px;
    font-size: 13px;
  }

  .brand img {
    width: 125px;
  }

  .nav-actions .btn {
    padding: 0 12px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}


@media (max-width: 760px) {

  .site-header {
    position: relative;
  }

  .nav {
    width: min(100% - 28px, 600px);

    min-height: auto;
    padding: 15px 0;

    flex-wrap: wrap;
  }

  .brand {
    margin-right: auto;
  }

  .brand img {
    width: 120px;
    max-height: 36px;
  }

  .nav-actions {
    gap: 7px;
  }

  .nav-actions .btn {
    min-height: 37px;
    padding: 0 11px;
    font-size: 12px;
  }

  .nav-links {
    order: 3;

    width: 100%;

    justify-content: flex-start;

    overflow-x: auto;
    scrollbar-width: none;

    padding-bottom: 2px;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex-shrink: 0;
    font-size: 12px;
  }


  .legal-page {
    width: min(100% - 28px, 650px);
    padding: 45px 0 65px;
  }

  .legal-hero {
    margin-bottom: 30px;
  }

  .legal-hero h1 {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .legal-hero p {
    font-size: 14px;
  }

  .legal-card {
    border-radius: 15px;
  }

  .legal-section {
    padding: 25px 21px;
  }

  .legal-section:first-child {
    padding-top: 28px;
  }

  .legal-section h2 {
    font-size: 18px;
  }

  .legal-section p,
  .legal-section li {
    font-size: 13px;
  }

  .legal-date {
    padding: 20px;
  }


  .footer-grid {
    width: min(100% - 28px, 600px);

    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;

    padding: 45px 0 30px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    width: min(100% - 28px, 600px);
  }
}


@media (max-width: 480px) {

  .nav-actions .btn-discord {
    display: none;
  }

  .brand img {
    width: 110px;
  }

  .nav-links {
    gap: 0;
  }

  .nav-links a {
    padding: 8px 7px;
    font-size: 11px;
  }

  .legal-hero h1 {
    font-size: 29px;
  }

  .legal-badge {
    font-size: 10px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }
}