﻿html,body{margin:0;padding:0}
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap');

:root{
  --hsn-primary:#0f5bd8;
  --hsn-primary-strong:#0a47ac;
  --hsn-secondary:#0b1b3a;
  --hsn-accent:#14c2a3;
  --hsn-surface:#ffffff;
  --hsn-surface-soft:#eef4fb;
  --hsn-bg:#f4f7fb;
  --hsn-border:rgba(15,23,40,.09);
  --hsn-text:#0f1728;
  --hsn-muted:#5b667d;
  --hsn-white:#ffffff;
  --hsn-shadow:0 30px 70px rgba(9,24,51,.10);
  --hsn-radius-xl:34px;
  --hsn-radius-lg:24px;
  --hsn-heading:'Sora',system-ui,sans-serif;
  --hsn-body:'Manrope',system-ui,sans-serif;
}

body{
  background:
    radial-gradient(circle at top right, rgba(20,194,163,.10), transparent 22%),
    radial-gradient(circle at left top, rgba(15,91,216,.10), transparent 28%),
    var(--hsn-bg);
  color:var(--hsn-text);
  font-family:var(--hsn-body);
}

.hsn-topbar{
  background:linear-gradient(90deg,#071224,#123a84 58%,#14c2a3);
  color:#eaf1fb;
  font-size:.82rem;
  padding:.45rem 0;
}

.hsn-topbar .container{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  align-items:center;
}

.hsn-topbar__locs{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:.5rem 1rem;
  font-weight:700;
}

.hsn-topbar__locs span{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  white-space:nowrap;
}

.hsn-topbar__tools{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:.65rem;
}

.hsn-lang-group{
  display:flex;
  align-items:center;
  gap:.5rem;
}

.hsn-navbar{
  position:sticky;
  top:0;
  z-index:90;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(15,23,40,.06);
}

.hsn-navbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:1rem 0;
}

.hsn-logo{
  display:flex;
  align-items:center;
  gap:.9rem;
  color:var(--hsn-text);
  text-decoration:none;
}

.hsn-logo img{
  height:52px;
  width:auto;
}

.hsn-logo__name{
  font-family:var(--hsn-heading);
  font-size:1.08rem;
  font-weight:700;
  line-height:1.1;
}

.hsn-nav{
  display:flex;
  align-items:center;
  gap:1.35rem;
}

.hsn-nav a{
  color:var(--hsn-text);
  text-decoration:none;
  font-size:.94rem;
  font-weight:700;
  position:relative;
}

.hsn-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-.35rem;
  width:100%;
  height:2px;
  transform:scaleX(0);
  transform-origin:left;
  background:var(--hsn-primary);
  transition:transform .2s ease;
}

.hsn-nav a:hover::after,
.hsn-nav a.active::after{
  transform:scaleX(1);
}

.hsn-header-actions{
  display:flex;
  align-items:center;
  gap:.75rem;
}

.hsn-btn,
.hsn-btn:hover{
  text-decoration:none;
}

.hsn-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.55rem;
  border-radius:999px;
  padding:.92rem 1.35rem;
  font-weight:800;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

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

.hsn-btn-primary{
  background:linear-gradient(135deg,var(--hsn-primary),#1b7cf2);
  color:#fff;
  box-shadow:0 14px 32px rgba(15,91,216,.25);
}

.hsn-btn-outline{
  border:1px solid rgba(255,255,255,.45);
  background:rgba(255,255,255,.08);
  color:#fff;
}

.hsn-btn-light{
  background:#fff;
  color:var(--hsn-secondary);
  box-shadow:0 18px 36px rgba(7,18,36,.15);
}

.hsn-lang{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.55rem;
  border:1px solid var(--hsn-border);
  border-radius:999px;
  background:#fff;
  color:var(--hsn-secondary);
  min-width:52px;
  padding:.78rem .95rem;
  font-size:.88rem;
  font-weight:800;
}

.hsn-lang.on{
  color:var(--hsn-primary);
  box-shadow:0 10px 24px rgba(15,91,216,.12);
}

.hsn-theme-toggle{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border:1px solid rgba(255,255,255,.26);
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:#fff;
  cursor:pointer;
  transition:transform .2s ease, background .2s ease, border-color .2s ease;
}

.hsn-theme-toggle:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.14);
}

.hsn-theme-toggle__sun{
  display:none;
}

html[data-theme="dark"] .hsn-theme-toggle__moon{
  display:none;
}

html[data-theme="dark"] .hsn-theme-toggle__sun{
  display:block;
}

.hsn-menu-toggle{
  display:none;
}

.hsn-mobile-nav{
  display:none;
  padding:0 0 1rem;
}

.hsn-mobile-nav a{
  display:block;
  padding:.65rem 0;
  color:var(--hsn-text);
  font-weight:700;
  text-decoration:none;
}

.hsn-hero{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(20,194,163,.26), transparent 18%),
    radial-gradient(circle at 10% 0%, rgba(26,124,242,.20), transparent 22%),
    linear-gradient(135deg,#071224 0%,#0c2248 48%,#0f2f68 100%);
  color:#fff;
}

.hsn-hero::before{
  content:"";
  position:absolute;
  right:-8%;
  top:10%;
  width:42vw;
  height:42vw;
  min-width:320px;
  min-height:320px;
  border-radius:34% 66% 58% 42% / 45% 38% 62% 55%;
  background:linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.12);
}

.hsn-hero::after{
  content:"";
  position:absolute;
  left:-6%;
  bottom:-18%;
  width:30vw;
  height:30vw;
  min-width:280px;
  min-height:280px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(20,194,163,.22), transparent 62%);
}

.hsn-hero__inner{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(280px,.82fr);
  gap:1.5rem;
  align-items:center;
  padding:5rem 0 4.25rem;
}

.hsn-kicker{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  text-transform:uppercase;
  letter-spacing:.2em;
  font-size:.84rem;
  font-weight:800;
  color:#9fd8ff;
  margin-bottom:1.2rem;
}

.hsn-kicker::before{
  content:"";
  width:42px;
  height:2px;
  background:#14c2a3;
}

.hsn-hero h1,
.hsn-section-title{
  font-family:var(--hsn-heading);
}

.hsn-hero h1{
  max-width:11ch;
  font-size:clamp(2.5rem,5vw,4.65rem);
  line-height:1.02;
  margin:0 0 1.25rem;
  font-weight:800;
}

.hsn-hero p{
  max-width:640px;
  font-size:1.04rem;
  color:rgba(255,255,255,.86);
  margin:0 0 1.6rem;
}

.hsn-hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:.9rem;
  margin-bottom:1.8rem;
}

.hsn-hero__support{
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
  color:rgba(255,255,255,.78);
  font-size:.88rem;
  font-weight:700;
}

.hsn-hero__support span::before{
  content:none;
}

.hsn-hero__visual{
  position:relative;
  min-height:440px;
}

.hsn-hero__frame{
  position:absolute;
  inset:0;
  border-radius:42px;
  background:linear-gradient(160deg, rgba(255,255,255,.16), rgba(255,255,255,.04));
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 30px 80px rgba(0,0,0,.24);
  overflow:hidden;
}

.hsn-hero__frame--no-image{
  display:flex;
  align-items:flex-end;
  justify-content:flex-start;
  padding:2rem;
  background:
    linear-gradient(180deg,rgba(255,255,255,.10),rgba(255,255,255,.02)),
    radial-gradient(circle at top right, rgba(20,194,163,.22), transparent 26%),
    radial-gradient(circle at left center, rgba(159,216,255,.16), transparent 24%);
}

.hsn-hero__frame img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hsn-hero__badge{
  position:absolute;
  left:-1.25rem;
  bottom:2rem;
  max-width:220px;
  background:#fff;
  color:var(--hsn-secondary);
  border-radius:22px;
  padding:1rem 1.1rem;
  box-shadow:var(--hsn-shadow);
}

.hsn-hero__badge strong{
  display:block;
  font-family:var(--hsn-heading);
  font-size:1.05rem;
  margin-bottom:.3rem;
}

.hsn-hero__stat{
  position:absolute;
  right:-1rem;
  top:2rem;
  background:#14c2a3;
  color:#05263a;
  border-radius:24px;
  padding:1rem 1.15rem;
  min-width:180px;
  box-shadow:0 20px 50px rgba(20,194,163,.28);
}

.hsn-hero__stat strong{
  display:block;
  font-family:var(--hsn-heading);
  font-size:2rem;
  line-height:1;
}

.hsn-section{
  padding:5.5rem 0;
}

.hsn-section-head{
  max-width:820px;
  margin:0 auto 2.4rem;
  text-align:center;
}

.hsn-section-label{
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size:.82rem;
  font-weight:800;
  color:var(--hsn-primary);
  margin-bottom:.85rem;
}

.hsn-section-title{
  font-size:clamp(2rem,4vw,3.45rem);
  line-height:1;
  margin:0 0 1rem;
  font-weight:800;
  color:var(--hsn-text);
}

.hsn-section-copy,
.hsn-card p,
.hsn-story p,
.hsn-footer p{
  color:var(--hsn-muted);
}

.hsn-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1.15rem;
}

.hsn-card{
  background:var(--hsn-surface);
  border:1px solid var(--hsn-border);
  border-radius:var(--hsn-radius-lg);
  padding:1.65rem;
  box-shadow:var(--hsn-shadow);
  height:100%;
}

.hsn-card__icon{
  width:58px;
  height:58px;
  border-radius:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,rgba(15,91,216,.12),rgba(20,194,163,.12));
  color:var(--hsn-primary);
  font-size:1.4rem;
  margin-bottom:1rem;
}

.hsn-card h3{
  font-family:var(--hsn-heading);
  font-size:1.16rem;
  margin-bottom:.7rem;
}

.hsn-story{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(280px,.9fr);
  gap:1.5rem;
  align-items:stretch;
}

.hsn-story__content,
.hsn-story__panel{
  background:var(--hsn-surface);
  border:1px solid var(--hsn-border);
  border-radius:var(--hsn-radius-xl);
  box-shadow:var(--hsn-shadow);
}

.hsn-story__content{
  padding:2rem;
}

.hsn-story__panel{
  padding:2rem;
  background:
    linear-gradient(180deg,rgba(15,91,216,.05),rgba(20,194,163,.08)),
    #fff;
}

.hsn-story__list{
  display:grid;
  gap:1rem;
  margin:1.5rem 0 0;
}

.hsn-story__list li{
  list-style:none;
  margin:0;
  padding-left:1.7rem;
  position:relative;
  color:var(--hsn-text);
  font-weight:700;
}

.hsn-story__list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.55rem;
  width:.65rem;
  height:.65rem;
  border-radius:50%;
  background:var(--hsn-accent);
}

.hsn-metrics{
  background:linear-gradient(135deg,#09172d,#0f2f68 65%,#14489b);
  color:#fff;
}

.hsn-metrics__grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1rem;
}

.hsn-metric{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:24px;
  padding:1.5rem;
  backdrop-filter:blur(6px);
}

.hsn-metric strong{
  display:block;
  font-family:var(--hsn-heading);
  font-size:2.3rem;
  line-height:1;
  margin-bottom:.45rem;
}

.hsn-proof{
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);
  gap:1.25rem;
}

.hsn-proof__box,
.hsn-proof__logos{
  background:#fff;
  border:1px solid var(--hsn-border);
  border-radius:var(--hsn-radius-xl);
  box-shadow:var(--hsn-shadow);
  padding:2rem;
}

.hsn-logos{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1rem;
}

.hsn-logo-chip{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:92px;
  border-radius:20px;
  background:var(--hsn-surface-soft);
  color:var(--hsn-secondary);
  font-weight:800;
  text-align:center;
  padding:1rem;
}

.hsn-redees{
  background:
    linear-gradient(135deg,rgba(11,27,58,.98),rgba(13,61,118,.96)),
    #071224;
  color:#fff;
  overflow:hidden;
  position:relative;
}

.hsn-redees::after{
  content:"";
  position:absolute;
  right:-6rem;
  top:-5rem;
  width:22rem;
  height:22rem;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.10);
  background:radial-gradient(circle, rgba(20,194,163,.20), transparent 58%);
}

.hsn-redees__inner{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(260px,.78fr);
  gap:1.5rem;
  align-items:center;
}

.hsn-redees__card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:30px;
  padding:1.8rem;
  backdrop-filter:blur(8px);
}

.hsn-businesses__head{
  max-width:760px;
  margin-bottom:1.6rem;
}

.hsn-business-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1rem;
}

.hsn-business-card{
  display:flex;
  flex-direction:column;
  width:100%;
  padding:0;
  border:1px solid var(--hsn-border);
  border-radius:24px;
  overflow:hidden;
  background:#fff;
  text-align:left;
  box-shadow:var(--hsn-shadow);
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease;
}

.hsn-business-card:hover{
  transform:translateY(-3px);
  box-shadow:0 28px 60px rgba(9,24,51,.16);
}

.hsn-business-card__media{
  display:block;
  min-height:180px;
  background:linear-gradient(135deg,#dbe8fb,#8ab5ef);
  background-size:cover;
  background-position:center;
}

.hsn-business-card__body{
  display:grid;
  gap:.45rem;
  padding:1.15rem 1.15rem 1.25rem;
}

.hsn-business-card__body strong{
  font-size:1rem;
  color:var(--hsn-secondary);
}

.hsn-business-card__body span:last-child{
  color:var(--hsn-muted);
  line-height:1.55;
}

.hsn-business-card__status{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:max-content;
  border-radius:999px;
  background:rgba(15,91,216,.10);
  color:var(--hsn-primary);
  padding:.32rem .7rem;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.02em;
}

.hsn-modal-open{
  overflow:hidden;
}

.hsn-business-modal[hidden]{
  display:none;
}

.hsn-business-modal{
  position:fixed;
  inset:0;
  z-index:9999;
}

.hsn-business-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(4,15,30,.68);
  backdrop-filter:blur(6px);
}

.hsn-business-modal__dialog{
  position:relative;
  z-index:1;
  width:min(980px, calc(100vw - 2rem));
  max-height:calc(100vh - 2rem);
  overflow:auto;
  margin:1rem auto;
  display:grid;
  grid-template-columns:minmax(280px,.95fr) minmax(0,1.05fr);
  background:#fff;
  border-radius:32px;
  box-shadow:0 40px 120px rgba(0,0,0,.30);
}

.hsn-business-modal__close{
  position:absolute;
  top:1rem;
  right:1rem;
  width:44px;
  height:44px;
  border:0;
  border-radius:14px;
  background:rgba(11,27,58,.08);
  color:var(--hsn-secondary);
  font-size:1.7rem;
  line-height:1;
}

.hsn-business-modal__media{
  min-height:340px;
  background:linear-gradient(135deg,#dbe8fb,#8ab5ef);
  background-size:cover;
  background-position:center;
}

.hsn-business-modal__content{
  padding:2rem;
  display:grid;
  align-content:start;
  gap:1rem;
}

.hsn-business-modal__meta .hsn-section-title{
  margin-bottom:0;
}

.hsn-business-modal__services{
  display:flex;
  flex-wrap:wrap;
  gap:.65rem;
}

.hsn-business-modal__chip{
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  background:var(--hsn-surface-soft);
  color:var(--hsn-secondary);
  padding:.55rem .9rem;
  font-weight:700;
  font-size:.88rem;
}

.hsn-business-modal__footer{
  padding-top:.25rem;
}

.hsn-cases{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1.15rem;
}

.hsn-case{
  background:#fff;
  border:1px solid var(--hsn-border);
  border-radius:26px;
  overflow:hidden;
  box-shadow:var(--hsn-shadow);
}

.hsn-case__image{
  min-height:220px;
  background:linear-gradient(135deg,#c7d8f4,#8cb6ef);
  background-size:cover;
  background-position:center;
}

.hsn-case__body{
  padding:1.5rem;
}

.hsn-contact{
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);
  gap:1.25rem;
}

.hsn-contact__panel,
.hsn-contact__info{
  background:#fff;
  border:1px solid var(--hsn-border);
  border-radius:30px;
  box-shadow:var(--hsn-shadow);
  padding:2rem;
}

.hsn-contact__info ul{
  padding-left:0;
  margin:1.2rem 0 0;
}

.hsn-contact__info li{
  list-style:none;
  margin-bottom:.95rem;
  color:var(--hsn-text);
}

.hsn-contact__meta{
  display:grid;
  gap:1rem;
  margin-top:1.25rem;
}

.hsn-contact__meta strong{
  display:block;
  margin-bottom:.25rem;
}

.hsn-footer{
  background:#061326;
  color:#d5def0;
  padding:3.4rem 0 2rem;
}

.hsn-footer__grid{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) repeat(3,minmax(0,.7fr));
  gap:1.25rem;
}

.hsn-footer__logo{
  height:54px;
  width:auto;
  margin-bottom:1rem;
}

.hsn-footer a{
  color:#d5def0;
  text-decoration:none;
}

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

.hsn-footer__links{
  display:grid;
  gap:.6rem;
}

.hsn-footer__copy{
  margin-top:2rem;
  padding-top:1.25rem;
  border-top:1px solid rgba(255,255,255,.10);
  font-size:.92rem;
  display:flex;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
}

@media (max-width: 991px){
  .hsn-nav,
  .hsn-lang--desktop{
    display:none;
  }

  .hsn-menu-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:46px;
    height:46px;
    border-radius:14px;
    border:1px solid var(--hsn-border);
    background:#fff;
    color:var(--hsn-secondary);
    font-size:1.3rem;
  }

  .hsn-mobile-nav.open{
    display:block;
  }

  .hsn-hero__inner,
  .hsn-story,
  .hsn-proof,
  .hsn-redees__inner,
  .hsn-contact,
  .hsn-footer__grid{
    grid-template-columns:1fr;
  }

  .hsn-grid,
  .hsn-cases,
  .hsn-metrics__grid,
  .hsn-logos,
  .hsn-business-grid{
    grid-template-columns:1fr 1fr;
  }

  .hsn-business-modal__dialog{
    grid-template-columns:1fr;
  }

  .hsn-topbar__tools{
    width:100%;
    justify-content:flex-start;
  }
}

@media (max-width: 767px){
  .hsn-topbar .container{
    flex-direction:column;
    align-items:flex-start;
  }

  .hsn-topbar__locs{
    width:100%;
  }

  .hsn-navbar__inner{
    align-items:flex-start;
  }

  .hsn-header-actions{
    flex-wrap:wrap;
    justify-content:flex-end;
  }

  .hsn-hero__inner{
    padding:5rem 0 4rem;
  }

  .hsn-hero__visual{
    min-height:360px;
  }

  .hsn-grid,
  .hsn-cases,
  .hsn-metrics__grid,
  .hsn-logos,
  .hsn-business-grid{
    grid-template-columns:1fr;
  }

  .hsn-hero__badge,
  .hsn-hero__stat{
    position:static;
    margin-top:1rem;
  }
}

/* =========================================================
   REDEES ECOSYSTEM HERO
   ========================================================= */
.hsn-hero--ecosystem .hsn-hero__inner--ecosystem{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,.92fr) minmax(420px,1.08fr);
  gap:2rem;
  align-items:center;
  padding:5.5rem 0 4.8rem;
}
.hsn-hero__visual--ecosystem{
  position:relative;
  min-height:560px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hsn-hero--ecosystem .hsn-hero__content{max-width:640px;position:relative;z-index:2}
.hsn-hero--ecosystem .hsn-hero__content .hsn-hero__title{max-width:8ch}
.hsn-hero--ecosystem .hsn-hero__badge{left:1rem;bottom:1rem;z-index:3}
.hsn-hero--ecosystem .hsn-hero__stat{top:auto;right:1rem;bottom:1rem;z-index:3}

.redees-ecosystem{
  --redees-bg:rgba(7,18,36,.74);
  --redees-surface:rgba(255,255,255,.08);
  --redees-line:rgba(255,255,255,.12);
  --redees-line-strong:rgba(255,255,255,.22);
  --redees-text:#f8fbff;
  --redees-muted:rgba(232,239,249,.72);
  --redees-shadow:0 28px 80px rgba(0,0,0,.28);
  position:relative;
  width:100%;
  color:var(--redees-text);
}
.redees-ecosystem--full{max-width:680px;margin-left:auto}
.redees-ecosystem__stage{
  position:relative;
  width:100%;
  overflow:hidden;
  border-radius:0;
  background:none;
  border:none;
  box-shadow:none;
  touch-action:none;
}
.redees-ecosystem__links,
.redees-ecosystem__rings,
.redees-ecosystem__nodes{
  position:absolute;
  inset:0;
}
.redees-ecosystem__stage::before{
  content:none;
}
.redees-ecosystem--full .redees-ecosystem__stage{min-height:540px}
.redees-ecosystem--compact .redees-ecosystem__stage{min-height:360px}
.redees-ecosystem__rings{pointer-events:none}
.redees-ecosystem__ring{
  position:absolute;
  left:50%;
  top:50%;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.08);
  transform:translate(-50%, -50%) perspective(700px) rotateX(70deg);
  box-shadow:0 0 0 1px rgba(255,255,255,.02) inset;
}
.redees-ecosystem__ring--1{width:28%;height:28%}
.redees-ecosystem__ring--2{width:40%;height:40%}
.redees-ecosystem__ring--3{width:54%;height:54%}
.redees-ecosystem__ring--4{width:68%;height:68%}
.redees-ecosystem__core{
  position:absolute;
  left:50%;
  top:50%;
  width:125px;
  height:125px;
  transform:translate(-50%, -50%);
  display:grid;
  place-items:center;
  gap:.5rem;
  border:1px solid rgba(255,255,255,.18);
  border-radius:50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255,255,255,.82) 0%, rgba(176,226,255,.4) 18%, rgba(29,89,180,.78) 44%, rgba(6,22,52,.96) 74%, rgba(3,10,24,1) 100%);
  box-shadow:
    0 16px 56px rgba(0,0,0,.34),
    inset -20px -26px 40px rgba(0,0,0,.34),
    inset 12px 12px 24px rgba(255,255,255,.18);
  color:#fff;
  z-index:3;
}
.redees-ecosystem__core-mark{
  display:grid;
  place-items:center;
  width:58px;
  height:58px;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  font-size:1.9rem;
  font-weight:800;
}
.redees-ecosystem__core-copy{display:grid;gap:.15rem;text-align:center}
.redees-ecosystem__core-copy strong{font-size:1.15rem;line-height:1.05}
.redees-ecosystem__core-copy small{font-size:.78rem;color:var(--redees-muted);letter-spacing:.08em;text-transform:uppercase}
.redees-ecosystem__nodes{z-index:2}
.redees-ecosystem__node{
  position:absolute;
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding:.48rem .72rem;
  border:1px solid color-mix(in srgb, var(--redees-node-color) 38%, rgba(255,255,255,.16));
  border-radius:999px;
  background:rgba(8,13,24,.88);
  color:#fff;
  box-shadow:0 14px 36px rgba(0,0,0,.22);
  transform-origin:center;
  transition:box-shadow .18s ease, border-color .18s ease, opacity .18s ease;
}
.redees-ecosystem__node:hover,
.redees-ecosystem__node:focus-visible,
.redees-ecosystem__node.is-active{
  outline:0;
  border-color:var(--redees-node-color);
  box-shadow:0 18px 42px rgba(0,0,0,.30), 0 0 0 1px color-mix(in srgb, var(--redees-node-color) 48%, transparent);
}
.redees-ecosystem__node.is-current{
  background:linear-gradient(135deg, color-mix(in srgb, var(--redees-node-color) 40%, rgba(255,255,255,.16)), rgba(8,13,24,.92));
}
.redees-ecosystem__node-dot{
  display:grid;
  place-items:center;
  width:28px;
  height:28px;
  border-radius:50%;
  background:color-mix(in srgb, var(--redees-node-color) 22%, rgba(255,255,255,.08));
  color:#fff;
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.06em;
}
.redees-ecosystem__node-label{font-size:.76rem;line-height:1.1;font-weight:700;white-space:nowrap}
.redees-ecosystem__legend{
  display:flex;
  flex-wrap:wrap;
  gap:.65rem 1rem;
  margin-top:1rem;
  color:var(--redees-muted);
  font-size:.82rem;
}
.redees-ecosystem__legend-item{display:inline-flex;align-items:center;gap:.45rem}
.redees-ecosystem__legend-item i{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--redees-category-color);
  box-shadow:0 0 18px color-mix(in srgb, var(--redees-category-color) 54%, transparent);
}
.redees-ecosystem__panel{
  display:grid;
  gap:.75rem;
  margin-top:1rem;
  padding:1.15rem 1.15rem 1.2rem;
  border:1px solid var(--redees-line);
  border-radius:24px;
  background:var(--redees-bg);
  box-shadow:var(--redees-shadow);
}
.redees-ecosystem__panel-kicker{
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#f1c46b;
}
.redees-ecosystem__panel-title{font-size:1.08rem;line-height:1.2}
.redees-ecosystem__panel-text{margin:0;color:var(--redees-muted);line-height:1.55;font-size:.92rem}
.redees-ecosystem__panel-meta{display:flex;flex-wrap:wrap;gap:.55rem}
.redees-ecosystem__panel-category,
.redees-ecosystem__panel-domain{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:.42rem .8rem;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  color:var(--redees-muted);
  font-size:.78rem;
  font-weight:700;
}
.redees-ecosystem__panel-link{
  display:inline-flex;
  width:max-content;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:.78rem 1rem;
  border-radius:999px;
  background:linear-gradient(135deg, #f1c46b, #d7a940);
  color:#071224;
  font-weight:800;
  text-decoration:none;
}
@media (max-width: 991px){
  .hsn-hero--ecosystem .hsn-hero__inner--ecosystem{grid-template-columns:1fr;padding:4.25rem 0 4rem}
  .hsn-hero__visual--ecosystem{min-height:auto}
  .redees-ecosystem--full{max-width:none}
  .redees-ecosystem--full .redees-ecosystem__stage{min-height:440px}
}
@media (max-width: 767px){
  .redees-ecosystem__core{width:125px;height:125px}
  .redees-ecosystem__core-mark{width:46px;height:46px;font-size:1.5rem}
  .redees-ecosystem__node{padding:.4rem .58rem}
  .redees-ecosystem__node-dot{width:24px;height:24px}
  .redees-ecosystem__node-label{font-size:.68rem}
  .redees-ecosystem--full .redees-ecosystem__stage,
  .redees-ecosystem--compact .redees-ecosystem__stage{min-height:340px}
}

/* =========================================================
   REDEES ECOSYSTEM OVERRIDES V2
   ========================================================= */
.redees-ecosystem__legend--inside{
  position:absolute;
  left:50%;
  bottom:1.1rem;
  z-index:4;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:.5rem .85rem;
  width:min(92%, 520px);
  transform:translateX(-50%);
  pointer-events:none;
}
.redees-ecosystem__legend-item{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  padding:.32rem .6rem;
  border-radius:999px;
  background:rgba(7,18,36,.44);
  backdrop-filter:blur(8px);
  color:var(--redees-muted);
  font-size:.72rem;
  line-height:1.1;
}
.redees-ecosystem__popover{
  position:absolute;
  z-index:8;
  width:min(260px, calc(100% - 24px));
  display:grid;
  gap:.55rem;
  padding:.9rem .95rem .95rem;
  border-radius:18px;
  border:1px solid var(--redees-line-strong);
  background:rgba(7,18,36,.92);
  box-shadow:0 24px 60px rgba(0,0,0,.34);
  transform-origin:top left;
}
.redees-ecosystem__popover-title{font-size:.98rem;line-height:1.15;color:var(--redees-text)}
.redees-ecosystem__popover-text{margin:0;font-size:.82rem;line-height:1.45;color:var(--redees-muted)}
.redees-ecosystem__popover-link{display:inline-flex;align-items:center;width:max-content;min-height:34px;padding:.4rem .7rem;border-radius:999px;background:#f1c46b;color:#071224;text-decoration:none;font-size:.78rem;font-weight:800}
.redees-ecosystem__popover-close{position:absolute;right:.45rem;top:.35rem;width:24px;height:24px;border:0;border-radius:999px;background:rgba(255,255,255,.08);color:#fff;font-size:1rem;line-height:1;cursor:pointer}
.redees-ecosystem__panel{display:none !important}
@media (max-width: 767px){
  .redees-ecosystem__legend--inside{bottom:.6rem;width:94%;gap:.4rem .5rem}
  .redees-ecosystem__legend-item{font-size:.64rem;padding:.26rem .5rem}
  .redees-ecosystem__popover{width:min(220px, calc(100% - 16px));padding:.78rem .82rem .85rem}
}

/* =========================================================
   REDEES ECOSYSTEM FULL LOGO TUNE V3
   ========================================================= */
.redees-ecosystem__core-logo{width:125px;height:125px;object-fit:contain;filter:drop-shadow(0 6px 14px rgba(0,0,0,.28))}

/* =========================================================
   REDEES ECOSYSTEM V4
   ========================================================= */
.redees-ecosystem__header{
  position:absolute;
  left:.8rem;
  right:.8rem;
  top:.8rem;
  z-index:20;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:.85rem;
  padding:.55rem .7rem;
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  background:rgba(7,18,36,.42);
  backdrop-filter:blur(10px);
}
.redees-ecosystem__title-copy{display:grid;gap:.12rem}
.redees-ecosystem__title-copy strong{font-size:.95rem;line-height:1;color:#fff}
.redees-ecosystem__title-copy span{font-size:.62rem;letter-spacing:.16em;text-transform:uppercase;color:rgba(232,239,249,.72)}
.redees-ecosystem__stage-tabs{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:.35rem;max-width:65%}
.redees-ecosystem__tab{
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
  color:rgba(255,255,255,.82);
  border-radius:999px;
  padding:.34rem .62rem;
  font-size:.62rem;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  cursor:pointer;
}
.redees-ecosystem__tab.is-active{
  background:linear-gradient(135deg, rgba(88,196,255,.22), rgba(63,208,163,.18));
  color:#fff;
  border-color:rgba(255,255,255,.16);
}
.redees-ecosystem__core-logo{width:125px;height:125px;object-fit:contain;filter:drop-shadow(0 6px 14px rgba(0,0,0,.24))}
.redees-ecosystem--full .redees-ecosystem__stage{padding-top:6rem;min-height:520px}
.redees-ecosystem--full .redees-ecosystem__title-copy strong{font-size:1rem}
.redees-ecosystem--full .redees-ecosystem__title-copy span{font-size:.64rem}
.redees-ecosystem--full .redees-ecosystem__tab{font-size:.64rem}
@media (max-width: 767px){
  .redees-ecosystem__header{left:.55rem;right:.55rem;top:.55rem;padding:.45rem .55rem;gap:.5rem;z-index:20}
  .redees-ecosystem__title-copy strong{font-size:.82rem}
  .redees-ecosystem__title-copy span{font-size:.52rem}
  .redees-ecosystem__tab{padding:.28rem .48rem;font-size:.52rem}
}

/* =========================================================
   REDEES ECOSYSTEM COMPACT MAP V5
   ========================================================= */
.redees-ecosystem__header{z-index:90}
.redees-ecosystem__core{z-index:12}
.redees-ecosystem__popover{z-index:100}
.redees-ecosystem__node{
  gap:.28rem;
  max-width:118px;
  padding:.24rem .42rem;
  border-radius:999px;
  backdrop-filter:blur(10px);
}
.redees-ecosystem__node-dot{
  width:28px;
  height:28px;
  overflow:hidden;
  background:linear-gradient(145deg,rgba(255,255,255,.18),rgba(255,255,255,.04));
  border:1px solid color-mix(in srgb, var(--redees-node-color) 50%, rgba(255,255,255,.26));
  box-shadow:0 0 18px color-mix(in srgb, var(--redees-node-color) 38%, transparent);
}
.redees-ecosystem__node-dot img{
  width:82%;
  height:82%;
  display:block;
  object-fit:contain;
  filter:drop-shadow(0 2px 5px rgba(0,0,0,.28));
}
.redees-ecosystem__node-label{
  max-width:72px;
  overflow:hidden;
  text-overflow:ellipsis;
  font-size:.58rem;
  line-height:1.05;
}
.redees-ecosystem__link{filter:drop-shadow(0 0 4px rgba(88,196,255,.18))}
@media (max-width: 767px){
  .redees-ecosystem__node{padding:.18rem .32rem;max-width:92px}
  .redees-ecosystem__node-dot{width:23px;height:23px}
  .redees-ecosystem__node-label{font-size:.5rem;max-width:54px}
}

/* REDEES ECOSYSTEM FILTER FIX V6 */
.redees-ecosystem--full .redees-ecosystem__stage{padding-top:0 !important;min-height:520px}
.redees-ecosystem__header{top:.45rem !important}
.redees-ecosystem__popover{width:min(230px, calc(100% - 16px));padding:.75rem .8rem .82rem}
.redees-ecosystem__popover-title{font-size:.9rem}
.redees-ecosystem__popover-text{font-size:.74rem;line-height:1.35}
.redees-ecosystem__popover-link{min-height:28px;padding:.3rem .58rem;font-size:.68rem}


/* REDEES DESKTOP AND GAP FIX V7 */
.hsn-hero--ecosystem{margin-top:0 !important}
.redees-ecosystem--full .redees-ecosystem__stage{padding-top:0 !important;min-height:520px !important}
.redees-ecosystem__header{top:.32rem !important}


