@font-face{
  font-family:"Neue Montreal";
  src:url("../fonts/NeueMontreal-Regular.woff2") format("woff2");
  font-weight:400;
  font-style:normal;
  font-display:swap
}

@font-face{
  font-family:"Neue Montreal";
  src:url("../fonts/NeueMontreal-Medium.woff2") format("woff2");
  font-weight:500 600;
  font-style:normal;
  font-display:swap
}

@font-face{
  font-family:"Neue Montreal";
  src:url("../fonts/NeueMontreal-Bold.woff2") format("woff2");
  font-weight:700 900;
  font-style:normal;
  font-display:swap
}

:root{
  --navy:#09283a;
  --green:#78d600;
  --blue:#086091;
  --white:#fff;
  --hero-solid:#031924;
  --hero-text:#fff;
  --hero-muted:rgba(255,255,255,.72);
  --footer:#032b3d
}

*,*::before,*::after{
  box-sizing:border-box
}

html{
  scroll-behavior:smooth
}

html,body,button,input,textarea,select{
  font-family:"Neue Montreal",Arial,sans-serif
}

body{
  margin:0;
  overflow-x:hidden;
  background:var(--white);
  color:var(--navy);
  font-weight:400
}

button,input,textarea,select{
  font:inherit
}

a{
  color:inherit
}

.section{
  width:min(calc(100% - 48px),1440px);
  margin-inline:auto;
  padding-block:110px
}

/* HERO */

.hero-stage{
  position:relative;
  width:100%
}

.hero{
  position:relative;
  display:flex;
  flex-direction:column;
  width:min(calc(100% - 48px),1440px);
  min-height:calc(100svh - 30px);
  margin:15px auto;
  padding:28px 58px 54px;
  overflow:hidden;
  background:var(--hero-solid);
  border-radius:23px;
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden
}

.hero-network{
  position:absolute;
  z-index:0;
  inset:0;
  display:block;
  width:100%;
  height:100%;
  opacity:.78;
  pointer-events:none
}

.hero-particles{
  position:absolute;
  z-index:1;
  inset:0;
  overflow:hidden;
  pointer-events:none
}

.shield-feed{
  position:absolute;
  z-index:1;
  inset:0;
  display:block;
  width:100%;
  height:100%;
  opacity:1;
  pointer-events:none
}

.hero-particle{
  position:absolute;
  display:block;
  border-radius:50%;
  background:#fff;
  opacity:0;
  box-shadow:0 0 7px rgba(255,255,255,.28);
  animation:heroParticleFloat linear infinite
}

@keyframes heroParticleFloat{
  0%{
    transform:translate3d(0,50px,0) scale(.7);
    opacity:0
  }

  15%{
    opacity:.18
  }

  40%{
    opacity:.38
  }

  70%{
    opacity:.24
  }

  100%{
    transform:translate3d(var(--drift,0),-140px,0) scale(1);
    opacity:0
  }
}

/* NAVBAR */

.nav{
  position:relative;
  z-index:10;
  display:grid;
  grid-template-columns:190px minmax(330px,1fr) 138px;
  align-items:center;
  width:min(100%,850px);
  margin:0 auto;
  padding:10px 14px 10px 22px;
  background:rgba(255,255,255,.075);
  border:1px solid rgba(255,255,255,.14);
  border-radius:13px;
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  box-shadow:0 12px 35px rgba(0,0,0,.1),inset 0 1px 0 rgba(255,255,255,.025)
}

.brand{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  min-width:0;
  text-decoration:none
}

.brand-logo{
  display:block;
  width:auto;
  height:58px;
  transition:transform .3s ease,opacity .3s ease
}

.brand:hover .brand-logo{
  transform:scale(1.025);
  opacity:.95
}

.nav-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:40px;
  margin:0;
  padding:0;
  color:#fff;
  font-size:14px;
  font-weight:500;
  line-height:1
}

.nav-link{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:max-content;
  padding:10px 4px 17px;
  color:rgba(255,255,255,.88);
  text-decoration:none;
  white-space:nowrap
}

.nav-link-mask{
  position:relative;
  display:block;
  height:16px;
  overflow:hidden;
  line-height:16px
}

.nav-link-current,.nav-link-reveal{
  display:block;
  white-space:nowrap;
  transition:transform .45s cubic-bezier(.22,1,.36,1),color .3s ease
}

.nav-link-current{
  position:relative;
  color:rgba(255,255,255,.88);
  transform:translateY(0)
}

.nav-link-reveal{
  position:absolute;
  top:100%;
  left:0;
  color:var(--green);
  transform:translateY(0)
}

.nav-link::after{
  position:absolute;
  bottom:3px;
  left:50%;
  width:6px;
  height:6px;
  background:var(--green);
  border-radius:50%;
  opacity:0;
  content:"";
  transform:translateX(-50%) scale(0);
  transition:opacity .25s ease,transform .4s cubic-bezier(.34,1.56,.64,1)
}

.nav-link:hover .nav-link-current,.nav-link:hover .nav-link-reveal{
  transform:translateY(-100%)
}

.nav-link:hover::after{
  opacity:1;
  transform:translateX(-50%) scale(1)
}

.nav-link.active .nav-link-current{
  color:var(--green)
}

.nav-link.active::after{
  opacity:1;
  transform:translateX(-50%) scale(1)
}

.nav-contact{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-width:0;
  height:56px;
  padding:0 22px;
  overflow:hidden;
  background:var(--green);
  color:var(--navy);
  border:0;
  border-radius:11px;
  font-size:15px;
  font-weight:600;
  line-height:1;
  text-decoration:none;
  transition:transform .3s cubic-bezier(.2,.8,.2,1),box-shadow .3s ease,background-color .3s ease
}

.nav-contact span{
  pointer-events:none
}

.nav-contact:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 26px rgba(120,214,0,.18)
}

.menu-toggle{
  display:none;
  padding:0;
  border:0;
  background:transparent;
  color:#fff;
  font-size:28px;
  line-height:1;
  cursor:pointer
}

/* HERO CONTENT */

.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  flex:1;
  grid-template-columns:minmax(0,1.02fr) minmax(520px,.98fr);
  align-items:center;
  gap:22px;
  width:100%;
  padding-top:24px
}

.hero-copy{
  position:relative;
  z-index:4;
  max-width:790px;
  padding:20px 0 15px
}

.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:28px;
  padding:9px 15px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.1);
  border-radius:999px;
  color:rgba(255,255,255,.68);
  font-size:12px;
  font-weight:500;
  line-height:1
}

.hero-eyebrow-dot{
  width:7px;
  height:7px;
  background:var(--green);
  border-radius:50%
}

.hero-copy h1{
  max-width:790px;
  margin:0 0 28px;
  color:var(--hero-text);
  font-size:clamp(58px,5.15vw,86px);
  font-weight:500;
  line-height:.96;
  letter-spacing:-3.7px
}

.hero-line-2{
  display:inline-block
}

.hero-green,.hero-copy h1 em{
  color:var(--green);
  font-style:normal
}

.hero-copy>p{
  max-width:680px;
  margin:0;
  color:rgba(255,255,255,.66);
  font-size:clamp(16px,1.2vw,20px);
  line-height:1.53;
  letter-spacing:-.15px
}

.hero-actions{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:25px;
  margin-top:36px
}

.hero-primary{
  display:inline-flex;
  align-items:center;
  gap:17px;
  padding:7px 7px 7px 22px;
  background:var(--green);
  color:var(--navy);
  border:1px solid var(--green);
  border-radius:13px;
  font-size:14px;
  font-weight:600;
  line-height:1;
  text-decoration:none;
  transition:transform .35s cubic-bezier(.2,.8,.2,1),box-shadow .35s ease
}

.hero-primary:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 32px rgba(120,214,0,.2)
}

.hero-primary-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:43px;
  height:43px;
  background:var(--navy);
  color:#fff;
  border-radius:9px;
  transition:transform .4s cubic-bezier(.2,.8,.2,1)
}

.hero-primary-icon svg{
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round
}

.hero-primary:hover .hero-primary-icon{
  transform:rotate(-45deg)
}

.hero-secondary{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 0;
  color:rgba(255,255,255,.68);
  font-size:14px;
  font-weight:500;
  text-decoration:none;
  transition:color .3s ease
}

.hero-secondary::after{
  position:absolute;
  right:0;
  bottom:5px;
  left:0;
  height:1px;
  background:rgba(255,255,255,.3);
  content:"";
  transform:scaleX(.3);
  transform-origin:left center;
  transition:transform .35s cubic-bezier(.2,.8,.2,1),background-color .35s ease
}

.hero-secondary svg{
  width:17px;
  height:17px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
  transition:transform .3s ease
}

.hero-secondary:hover{
  color:#fff
}

.hero-secondary:hover::after{
  background:var(--green);
  transform:scaleX(1)
}

.hero-secondary:hover svg{
  transform:translateX(4px)
}

.hero-art{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  width:100%;
  min-width:0;
  transform:translateX(-10px)
}

.hero-webgl{
  position:relative;
  width:min(100%,790px);
  aspect-ratio:1.08/1;
  cursor:grab;
  touch-action:none;
  transform:translateZ(0);
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
  contain:paint
}

.hero-webgl.dragging{
  cursor:grabbing
}

.hero-webgl canvas{
  display:block;
  width:100%!important;
  height:100%!important;
  background:transparent!important
}

/* PRIVACY IN NUMERI */

.stats-section{
  position:relative;
  width:min(calc(100% - 48px),1440px);
  margin:70px auto;
  padding:110px 72px 100px;
  overflow:hidden;
  background:#f8f8f8;
  border-radius:23px
}

.stats-inner{
  width:min(100%,1296px);
  margin:0 auto
}

.stats-intro{
  max-width:900px;
  margin-bottom:90px
}

.stats-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-bottom:25px;
  padding:8px 14px;
  background:rgba(120,214,0,.1);
  border:1px solid rgba(120,214,0,.25);
  border-radius:30px;
  color:#65ba00;
  font-size:13px;
  font-weight:500
}

.stats-intro h2{
  margin:0;
  color:var(--navy);
  font-size:clamp(52px,5vw,82px);
  font-weight:500;
  line-height:.98;
  letter-spacing:-2.8px
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  border-top:1px solid rgba(9,40,58,.14);
  border-bottom:1px solid rgba(9,40,58,.14)
}

.stat-item{
  min-height:260px;
  padding:50px 45px 45px 0
}

.stat-item:not(:first-child){
  padding-left:45px
}

.stat-item:not(:last-child){
  border-right:1px solid rgba(9,40,58,.14)
}

.stat-value{
  display:flex;
  align-items:baseline;
  flex-wrap:wrap;
  gap:10px
}

.stat-number{
  color:var(--green);
  font-size:clamp(76px,7vw,118px);
  font-weight:500;
  line-height:.85;
  letter-spacing:-5px;
  font-variant-numeric:tabular-nums
}

.stat-suffix{
  max-width:135px;
  color:var(--navy);
  font-size:20px;
  font-weight:500;
  line-height:1.1
}

.stat-item p{
  max-width:260px;
  margin:32px 0 0;
  color:#777;
  font-size:17px;
  line-height:1.45
}

.stat-year{
  color:var(--navy);
  font-weight:500
}

.section-head{
  max-width:900px;
  margin-inline:auto;
  text-align:center
}

/* FUNZIONALITÀ */

.features{
  position:relative;
  width:100%;
  margin:0;
  padding:105px 0 110px;
  overflow:hidden;
  background:radial-gradient(circle at 15% 25%,rgba(120,214,0,.055),transparent 28%),radial-gradient(circle at 85% 75%,rgba(0,221,255,.04),transparent 30%),var(--hero-solid)
}

.features .section-head{
  position:relative;
  z-index:5;
  width:min(calc(100% - 144px),1440px);
  max-width:none;
  margin:0 auto;
  text-align:left
}

.features .section-head h2{
  margin:0 0 20px;
  color:#fff;
  font-size:clamp(52px,5vw,82px);
  font-weight:500;
  line-height:.98;
  letter-spacing:-2.8px
}

.features .section-head p{
  max-width:760px;
  margin:0;
  color:rgba(255,255,255,.72);
  font-size:clamp(19px,1.65vw,28px);
  line-height:1.45
}

.features-carousel{
  position:relative;
  width:100vw;
  height:620px;
  margin-top:55px;
  margin-left:calc(50% - 50vw);
  overflow:hidden;
  user-select:none;
  -webkit-user-select:none;
  isolation:isolate
}

.features-carousel::before,.features-carousel::after{
  display:none!important;
  content:none!important
}

.features-track{
  counter-reset:feature-card;
  position:absolute;
  top:46%;
  left:50%;
  width:420px;
  height:440px;
  margin:0;
  padding:0;
  transform:translate(-50%,-50%);
  isolation:isolate
}

.feature-card{
  --card-from:#b9ff55;
  --card-mid:#91eb19;
  --card-to:#70cc00;
  counter-increment:feature-card;
  position:absolute;
  inset:0;
  isolation:isolate;
  width:420px;
  height:440px;
  margin:0;
  padding:38px 40px 34px;
  overflow:hidden;
  background:linear-gradient(145deg,var(--card-from) 0%,var(--card-mid) 48%,var(--card-to) 100%);
  border:1px solid rgba(255,255,255,.24);
  border-radius:30px;
  box-shadow:0 12px 25px rgba(0,0,0,.06),inset 0 1px 0 rgba(255,255,255,.35);
  transform-origin:50% 50%;
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
  will-change:transform,opacity;
  pointer-events:none
}

.feature-card:nth-child(2){
  --card-from:#b3ff43;
  --card-mid:#83e608;
  --card-to:#5dbb00
}

.feature-card:nth-child(3){
  --card-from:#c3ff67;
  --card-mid:#97eb20;
  --card-to:#72c900
}

.feature-card:nth-child(4){
  --card-from:#a9f73a;
  --card-mid:#82dd09;
  --card-to:#59b500
}

.feature-card:nth-child(5){
  --card-from:#c6ff72;
  --card-mid:#9aed26;
  --card-to:#75ca00
}

.feature-card:nth-child(6){
  --card-from:#b8ff4f;
  --card-mid:#8be715;
  --card-to:#64bd00
}

.feature-card:nth-child(7){
  --card-from:#c0ff61;
  --card-mid:#91e91d;
  --card-to:#69c400
}

.feature-card.is-active{
  pointer-events:auto
}

.feature-card::before{
  display:none;
  content:none
}

.feature-card::after{
  position:absolute;
  z-index:1;
  top:30px;
  right:34px;
  color:rgba(9,40,58,.2);
  font-size:46px;
  font-weight:600;
  line-height:1;
  content:"0" counter(feature-card)
}

.feature-card>*{
  position:relative;
  z-index:2
}

.feature-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:112px;
  height:72px;
  margin-bottom:37px;
  color:#baff54;
  background:linear-gradient(145deg,#0d3b52,var(--navy) 55%,#041b27);
  border-radius:20px 20px 32px 20px
}

.feature-icon svg{
  width:44px;
  height:44px
}

.feature-icon img {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(85%) sepia(97%) saturate(1217%) hue-rotate(33deg) brightness(105%) contrast(103%);
}

.feature-card h3{
  position:relative;
  display:inline-block;
  max-width:90%;
  margin:0 0 22px;
  padding-bottom:14px;
  color:var(--navy);
  font-size:19px;
  font-weight:600;
  line-height:1.28;
  text-transform:uppercase
}

.feature-card h3::after{
  position:absolute;
  left:0;
  bottom:0;
  width:58px;
  height:4px;
  background:var(--navy);
  border-radius:8px;
  content:""
}

.feature-card p{
  max-width:330px;
  margin:0;
  color:rgba(9,40,58,.78);
  font-size:16px;
  line-height:1.55
}

.feature-card.is-active:hover{
  border-color:rgba(255,255,255,.38);
  box-shadow:0 24px 50px rgba(0,0,0,.16),inset 0 1px 0 rgba(255,255,255,.32)
}

.features-controls{
  position:absolute;
  z-index:1200;
  left:50%;
  bottom:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  transform:translateX(-50%)
}

.features-control{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:110px;
  height:54px;
  padding:0 24px;
  background:rgba(3,25,36,.92);
  color:#fff;
  border:1px solid rgba(255,255,255,.9);
  border-radius:999px;
  font-size:16px;
  font-weight:500;
  line-height:1;
  cursor:pointer;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  transition:background-color .25s ease,color .25s ease,border-color .25s ease,translate .25s ease
}

.features-control:hover{
  translate:0 -3px;
  background:var(--green);
  color:var(--navy);
  border-color:var(--green)
}

/* PERCHÉ SCEGLIERE */

.why{
  position:relative;
  margin-top:50px;
  padding:110px 40px 90px;
  overflow:hidden;
  background:#f8f8f8;
  border-radius:23px
}

.why-layout{
  display:flex;
  flex-direction:column;
  align-items:center;
  width:100%;
  max-width:1400px;
  margin:0 auto;
  gap:70px
}

.why-copy{
  display:flex;
  flex-direction:column;
  align-items:center;
  width:100%;
  text-align:center
}

.why-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin:0 0 28px;
  padding:8px 18px;
  background:rgba(120,214,0,.1);
  border:1px solid rgba(120,214,0,.25);
  border-radius:30px;
  color:#65ba00;
  font-size:13px;
  font-weight:500
}

.why-copy h2{
  width:max-content;
  max-width:none;
  margin:0 0 28px;
  color:var(--navy);
  font-size:clamp(48px,4.2vw,72px);
  font-weight:500;
  line-height:1;
  letter-spacing:-2.8px;
  white-space:nowrap
}

.why-copy p{
  max-width:1100px;
  margin:0 auto;
  color:#777;
  font-size:18px;
  line-height:1.6
}

.why-cards{
  position:relative;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
  width:100%;
  isolation:isolate
}

.why-card{
  position:relative;
  display:flex;
  flex-direction:column;
  min-height:300px;
  padding:36px 30px 34px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(9,40,58,.08);
  border-radius:18px;
  box-shadow:0 8px 26px rgba(9,40,58,.045);
  translate:0 0;
  transition:translate .32s cubic-bezier(.2,.8,.2,1),background-color .35s ease,border-color .35s ease,box-shadow .35s ease
}

.why-card:hover{
  translate:0 -10px;
  background:#baff54;
  border-color:#baff54;
  box-shadow:0 22px 42px rgba(120,214,0,.22),0 0 35px rgba(186,255,84,.18)
}

.why-card-icon{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  width:44px;
  height:44px;
  margin-bottom:34px
}

.why-card-icon img{
  display:block;
  width:34px;
  height:34px;
  object-fit:contain;
  filter:brightness(0) saturate(100%) invert(68%) sepia(99%) saturate(1125%) hue-rotate(38deg) brightness(101%) contrast(101%);
  transition:filter .35s ease,transform .35s cubic-bezier(.2,.8,.2,1)
}

.why-card:hover .why-card-icon img{
  filter:brightness(0) saturate(100%) invert(13%) sepia(25%) saturate(1839%) hue-rotate(156deg) brightness(91%) contrast(98%);
  transform:scale(1.08)
}

.why-card h3{
  margin:0 0 17px;
  color:var(--navy);
  font-size:20px;
  font-weight:600;
  line-height:1.25
}

.why-card p{
  margin:0;
  color:#777;
  font-size:16px;
  line-height:1.6;
  transition:color .35s ease
}

.why-card:hover p{
  color:rgba(9,40,58,.76)
}

/* A CHI SI RIVOLGE */

.audience{
  position:relative;
  padding-top:120px;
  padding-bottom:120px;
  overflow:hidden
}

.audience::before{
  position:absolute;
  top:70px;
  left:50%;
  width:680px;
  height:400px;
  background:radial-gradient(circle,rgba(120,214,0,.065),transparent 68%);
  transform:translateX(-50%);
  pointer-events:none;
  content:""
}

.audience-head{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:center;
  width:min(100%,1180px);
  margin:0 auto;
  text-align:center
}

.audience-kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-bottom:27px;
  padding:9px 18px;
  background:rgba(120,214,0,.1);
  border:1px solid rgba(120,214,0,.25);
  border-radius:999px;
  color:#63b900;
  font-size:13px;
  font-weight:500;
  line-height:1
}

.audience-head h2{
  margin:0;
  color:var(--navy);
  font-size:clamp(52px,5vw,82px);
  font-weight:500;
  line-height:.98;
  letter-spacing:-3px
}

.audience-head p{
  max-width:1080px;
  margin:29px auto 0;
  color:#777;
  font-size:clamp(19px,1.65vw,27px);
  line-height:1.48;
  letter-spacing:-.25px
}

.audience-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
  width:min(100%,1380px);
  margin:78px auto 0
}

.audience-card{
  position:relative;
  min-width:0;
  height:470px;
  overflow:hidden;
  background:#dce4e7;
  border:1px solid rgba(9,40,58,.08);
  border-radius:26px;
  box-shadow:0 14px 35px rgba(9,40,58,.07);
  isolation:isolate;
  translate:0 0;
  transition:translate .45s cubic-bezier(.2,.8,.2,1),box-shadow .45s ease,border-color .45s ease
}

.audience-card::before{
  display:none;
  content:none
}

.audience-card:hover{
  translate:0 -10px;
  border-color:rgba(9,40,58,.14);
  box-shadow:0 28px 58px rgba(9,40,58,.16)
}

.audience-media{
  position:absolute;
  inset:0;
  overflow:hidden
}

.audience-media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.015);
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
  transition:transform .9s cubic-bezier(.2,.7,.2,1)
}

.audience-card:hover .audience-media img{
  transform:scale(1.075)
}

.audience-overlay{
  position:absolute;
  z-index:1;
  inset:0;
  background:linear-gradient(180deg,rgba(3,25,36,.04) 15%,rgba(3,25,36,.16) 43%,rgba(3,25,36,.88) 100%)
}

.audience-content{
  position:absolute;
  z-index:4;
  right:28px;
  bottom:28px;
  left:28px;
  display:block
}

.audience-index{
  position:absolute;
  bottom:calc(100% + 20px);
  left:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:46px;
  height:30px;
  padding:0 11px;
  background:rgba(3,25,36,.56);
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  color:#caff82;
  font-size:11px;
  font-weight:600;
  letter-spacing:.5px
}

.audience-text{
  min-width:0
}

.audience-text h3{
  margin:0 0 11px;
  color:#fff;
  font-size:clamp(26px,2vw,34px);
  font-weight:500;
  line-height:1.05;
  letter-spacing:-1px
}

.audience-text p{
  max-width:350px;
  margin:0;
  color:rgba(255,255,255,.76);
  font-size:14.5px;
  line-height:1.5
}

/* PROFILI */

.profiles{
  position:relative;
  padding:120px 55px 110px;
  overflow:hidden;
  background:#f6f7f6;
  border-radius:23px
}

.profiles::before{
  position:absolute;
  top:-260px;
  left:50%;
  width:700px;
  height:700px;
  background:radial-gradient(circle,rgba(120,214,0,.09),transparent 68%);
  border-radius:50%;
  transform:translateX(-50%);
  pointer-events:none;
  content:""
}

.profiles-head{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:center;
  width:min(100%,1200px);
  margin:0 auto;
  text-align:center
}

.profiles-kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-bottom:28px;
  padding:9px 18px;
  background:rgba(120,214,0,.1);
  border:1px solid rgba(120,214,0,.28);
  border-radius:999px;
  color:#63b900;
  font-size:13px;
  font-weight:500;
  line-height:1
}

.profiles-head h2{
  max-width:1150px;
  margin:0;
  color:var(--navy);
  font-size:clamp(52px,5vw,82px);
  font-weight:500;
  line-height:.98;
  letter-spacing:-3px
}

.profiles-head p{
  max-width:840px;
  margin:30px auto 0;
  color:#777;
  font-size:19px;
  line-height:1.55
}

.profile-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:28px;
  width:min(100%,1180px);
  margin:85px auto 0;
  perspective:1400px
}

.profile-card{
  position:relative;
  min-width:0;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(9,40,58,.07);
  border-radius:28px;
  box-shadow:0 14px 38px rgba(9,40,58,.06);
  translate:0 0;
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
  isolation:isolate;
  transition:translate .4s cubic-bezier(.2,.8,.2,1),border-color .4s ease,box-shadow .4s ease
}

.profile-card::before{
  display:none;
  content:none
}

.profile-card:hover{
  translate:0 -10px;
  border-color:rgba(9,40,58,.13);
  box-shadow:0 28px 60px rgba(9,40,58,.12)
}

.profile-visual{
  position:relative;
  height:350px;
  margin:12px 12px 0;
  overflow:hidden;
  background:#dfe5e2;
  border-radius:20px
}

.profile-image{
  display:block;
  width:100%;
  height:100%;
  padding:0;
  object-fit:cover;
  border-radius:0;
  transform:scale(1);
  transition:transform .8s cubic-bezier(.2,.7,.2,1)
}

.profile-card:hover .profile-image{
  transform:scale(1.045)
}

.profile-visual::after{
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(3,25,36,.48),rgba(3,25,36,.04) 48%,transparent 72%);
  pointer-events:none;
  content:""
}

.profile-number{
  position:absolute;
  z-index:3;
  top:24px;
  right:25px;
  color:rgba(255,255,255,.88);
  font-size:54px;
  font-weight:500;
  line-height:1;
  letter-spacing:-2px
}

.profile-role{
  position:absolute;
  z-index:3;
  left:22px;
  bottom:20px;
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:10px 14px;
  background:rgba(3,25,36,.72);
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  color:#fff;
  font-size:12px;
  font-weight:500;
  line-height:1
}

.profile-role>span{
  width:7px;
  height:7px;
  background:var(--green);
  border-radius:50%
}

.profile-content{
  position:relative;
  z-index:2;
  padding:34px 34px 38px
}

.profile-title-row{
  display:block;
  margin-bottom:28px
}

.profile-card h3{
  margin:0;
  padding:0;
  color:var(--navy);
  font-size:clamp(23px,1.7vw,29px);
  font-weight:500;
  line-height:1.15;
  letter-spacing:-.8px
}

.profile-card h3::after{
  display:none
}

.profile-duties{
  display:flex;
  flex-direction:column;
  border-top:1px solid rgba(9,40,58,.09)
}

.profile-duties p{
  position:relative;
  margin:0;
  padding:18px 0 18px 26px;
  color:#68747a;
  border-bottom:1px solid rgba(9,40,58,.07);
  font-size:15px;
  line-height:1.5
}

.profile-duties p::before{
  position:absolute;
  top:25px;
  left:2px;
  width:7px;
  height:7px;
  background:var(--green);
  border-radius:50%;
  content:""
}

.profile-duties p:last-child{
  border-bottom:0
}

/* FOOTER */

.site-footer{
  position:relative;
  isolation:isolate;
  width:min(calc(100% - 48px),1440px);
  margin:24px auto 28px;
  padding:86px 82px 42px;
  overflow:hidden;
  background:var(--footer);
  color:#fff;
  border-radius:34px
}

.site-footer::before{
  position:absolute;
  z-index:-3;
  inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,.025),transparent 38%);
  pointer-events:none;
  content:""
}

.footer-glow{
  display:none
}

.footer-watermark{
  position:absolute;
  z-index:-1;
  right:-18px;
  bottom:-55px;
  color:rgba(255,255,255,.018);
  font-size:clamp(110px,13vw,210px);
  font-weight:600;
  line-height:.8;
  letter-spacing:-9px;
  white-space:nowrap;
  pointer-events:none;
  user-select:none
}

.footer-main{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(480px,.9fr);
  align-items:start;
  gap:100px
}

.footer-cta{
  max-width:690px
}

.footer-kicker{
  display:inline-flex;
  align-items:center;
  gap:9px;
  margin-bottom:28px;
  padding:9px 15px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.1);
  border-radius:999px;
  color:rgba(255,255,255,.72);
  font-size:12px;
  font-weight:500;
  line-height:1
}

.footer-kicker-dot{
  width:7px;
  height:7px;
  background:var(--green);
  border-radius:50%
}

.footer-cta h2{
  max-width:680px;
  margin:0;
  color:#fff;
  font-size:clamp(46px,4.15vw,68px);
  font-weight:500;
  line-height:.98;
  letter-spacing:-2.7px
}

.footer-cta h2 span{
  color:var(--green)
}

.footer-cta>p{
  max-width:585px;
  margin:28px 0 0;
  color:rgba(255,255,255,.58);
  font-size:16px;
  line-height:1.58
}

.footer-cta-button{
  display:inline-flex;
  align-items:center;
  gap:20px;
  margin-top:35px;
  padding:7px 7px 7px 22px;
  background:var(--green);
  color:var(--navy);
  border:1px solid var(--green);
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  line-height:1;
  text-decoration:none;
  transition:transform .35s cubic-bezier(.2,.8,.2,1),box-shadow .35s ease
}

.footer-cta-button:hover{
  transform:translateY(-4px);
  box-shadow:0 15px 35px rgba(120,214,0,.22)
}

.footer-cta-arrow{
  display:flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  background:var(--navy);
  color:#fff;
  border-radius:50%;
  transition:transform .4s cubic-bezier(.2,.8,.2,1)
}

.footer-cta-arrow svg{
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round
}

.footer-cta-button:hover .footer-cta-arrow{
  transform:rotate(-45deg)
}

.footer-side{
  display:grid;
  grid-template-columns:minmax(150px,.7fr) minmax(260px,1.3fr);
  gap:48px;
  padding-top:8px
}

.footer-column{
  min-width:0
}

.footer-column-label{
  display:block;
  margin-bottom:24px;
  color:rgba(255,255,255,.4);
  font-size:11px;
  font-weight:600;
  line-height:1;
  letter-spacing:1.4px;
  text-transform:uppercase
}

.footer-navigation{
  display:flex;
  flex-direction:column
}

.footer-navigation a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 0;
  color:rgba(255,255,255,.82);
  border-bottom:1px solid rgba(255,255,255,.08);
  font-size:14px;
  font-weight:500;
  text-decoration:none;
  transition:color .3s ease,padding-left .3s cubic-bezier(.2,.8,.2,1)
}

.footer-navigation a:first-child{
  padding-top:0
}

.footer-navigation a:hover{
  padding-left:6px;
  color:var(--green)
}

.footer-navigation a>span:last-child{
  color:rgba(255,255,255,.3);
  font-size:13px;
  transition:color .3s ease,transform .3s ease
}

.footer-navigation a:hover>span:last-child{
  color:var(--green);
  transform:translate(2px,-2px)
}

.footer-contact-list{
  display:flex;
  flex-direction:column;
  gap:10px
}

.footer-contact-item{
  display:flex;
  align-items:center;
  gap:13px;
  min-width:0;
  padding:12px 13px;
  background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.07);
  border-radius:13px;
  color:rgba(255,255,255,.82);
  font-size:13px;
  line-height:1.35;
  text-decoration:none;
  transition:background-color .3s ease,border-color .3s ease,transform .3s cubic-bezier(.2,.8,.2,1)
}

.footer-contact-item:hover{
  background:rgba(255,255,255,.055);
  border-color:rgba(255,255,255,.13);
  transform:translateX(5px)
}

.footer-contact-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 37px;
  width:37px;
  height:37px;
  background:rgba(120,214,0,.08);
  border:1px solid rgba(120,214,0,.15);
  border-radius:10px
}

.footer-contact-icon img{
  display:block;
  width:19px;
  height:19px;
  object-fit:contain;
  filter:brightness(0) saturate(100%) invert(68%) sepia(99%) saturate(1125%) hue-rotate(38deg) brightness(101%) contrast(101%)
}

.footer-contact-item>span:last-child{
  min-width:0
}

.footer-contact-item small{
  display:block;
  margin-bottom:2px;
  color:rgba(255,255,255,.36);
  font-size:10px;
  font-weight:500;
  line-height:1;
  letter-spacing:.45px;
  text-transform:uppercase
}

.footer-divider{
  position:relative;
  z-index:2;
  width:100%;
  height:1px;
  margin-top:76px;
  background:rgba(255,255,255,.11);
  transform-origin:left center
}

.footer-bottom{
  position:relative;
  z-index:2;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:55px;
  padding-top:33px
}

.footer-company{
  max-width:500px
}

.footer-company-name{
  display:inline-block;
  margin-bottom:9px;
  color:#fff;
  font-size:15px;
  font-weight:600;
  text-decoration:none;
  transition:color .25s ease
}

.footer-company-name:hover{
  color:var(--green)
}

.footer-company p{
  max-width:460px;
  margin:0;
  color:rgba(255,255,255,.42);
  font-size:12px;
  line-height:1.5
}

.footer-bottom-right{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:17px
}

.footer-legal{
  display:flex;
  align-items:center;
  gap:25px;
  white-space:nowrap
}

.footer-legal a{
  position:relative;
  color:rgba(255,255,255,.65);
  font-size:12px;
  text-decoration:none;
  transition:color .25s ease
}

.footer-legal a::after{
  position:absolute;
  right:0;
  bottom:-4px;
  left:0;
  height:1px;
  background:var(--green);
  content:"";
  transform:scaleX(0);
  transform-origin:right center;
  transition:transform .3s cubic-bezier(.2,.8,.2,1)
}

.footer-legal a:hover{
  color:#fff
}

.footer-legal a:hover::after{
  transform:scaleX(1);
  transform-origin:left center
}

.footer-copyright{
  color:rgba(255,255,255,.3);
  font-size:11px;
  line-height:1
}

/* RESPONSIVE */

@media(min-width:801px){
  .hero-stage{
    height:calc(100svh + 950px)
  }

  .hero{
    position:sticky;
    top:0
  }
}

@media(max-width:1200px){
  .hero{
    padding-inline:44px
  }

  .nav{
    grid-template-columns:175px minmax(310px,1fr) 128px;
    width:min(100%,800px)
  }

  .nav-links{
    gap:32px
  }

  .hero-grid{
    grid-template-columns:minmax(0,1fr) minmax(470px,.95fr)
  }

  .hero-copy h1{
    font-size:clamp(54px,5.4vw,76px)
  }

  .hero-webgl{
    width:min(100%,700px)
  }
}

@media(max-width:1100px){
  .site-footer{
    padding:72px 55px 40px
  }

  .footer-main{
    grid-template-columns:1fr;
    gap:65px
  }

  .footer-cta{
    max-width:780px
  }

  .footer-side{
    grid-template-columns:minmax(180px,.65fr) minmax(300px,1.35fr);
    max-width:700px;
    gap:60px
  }

  .footer-divider{
    margin-top:65px
  }
}

@media(max-width:1050px){
  .stats-section{
    width:calc(100% - 32px);
    padding:90px 48px 85px
  }

  .features .section-head{
    width:calc(100% - 80px)
  }

  .features-carousel{
    height:570px
  }

  .features-track{
    width:360px;
    height:405px
  }

  .feature-card{
    width:360px;
    height:405px;
    padding:31px 34px 28px
  }

  .why{
    padding:90px 30px 80px
  }

  .why-copy h2{
    font-size:clamp(42px,5.4vw,58px)
  }

  .why-cards{
    grid-template-columns:repeat(2,minmax(0,1fr))
  }

  .audience-card{
    height:420px
  }

  .profiles{
    padding:95px 35px 90px
  }

  .profiles-head h2{
    font-size:clamp(48px,6vw,64px)
  }

  .profiles-head p{
    font-size:17px
  }

  .profile-grid{
    gap:22px;
    margin-top:68px
  }

  .profile-visual{
    height:290px
  }

  .profile-content{
    padding:29px 28px 33px
  }

  .profile-card h3{
    font-size:23px
  }
}

@media(max-width:950px){
  .hero{
    padding-inline:34px
  }

  .nav{
    grid-template-columns:160px minmax(285px,1fr) 118px;
    width:min(100%,730px);
    padding-left:18px
  }

  .brand-logo{
    height:52px
  }

  .nav-links{
    gap:23px;
    font-size:13px
  }

  .nav-link-mask{
    height:15px;
    line-height:15px
  }

  .nav-contact{
    height:51px;
    font-size:14px
  }

  .hero-grid{
    grid-template-columns:minmax(0,1fr) minmax(420px,.9fr);
    gap:8px
  }

  .hero-copy h1{
    font-size:clamp(48px,5.4vw,66px);
    letter-spacing:-2.8px
  }

  .hero-copy>p{
    font-size:16px
  }
}

@media(max-width:800px){
  .section{
    width:calc(100% - 32px)
  }

  .hero-stage{
    height:auto
  }

  .hero{
    position:relative;
    width:calc(100% - 20px);
    min-height:auto;
    margin:10px auto;
    padding:20px 22px 45px
  }

  .nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    max-width:none;
    padding:9px 11px 9px 14px;
    gap:10px
  }

  .brand-logo{
    height:47px
  }

  .nav-links{
    display:none
  }

  .nav-links.open{
    position:absolute;
    z-index:30;
    top:calc(100% + 12px);
    right:0;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:3px;
    min-width:220px;
    padding:15px 20px;
    background:rgba(3,25,36,.97);
    border:1px solid rgba(255,255,255,.12);
    border-radius:12px;
    box-shadow:0 18px 35px rgba(0,0,0,.22)
  }

  .nav-links.open .nav-link{
    justify-content:flex-start;
    width:100%;
    padding:12px 22px 12px 3px
  }

  .nav-link-mask{
    height:auto;
    overflow:visible;
    line-height:1
  }

  .nav-link-current{
    transform:none!important
  }

  .nav-link-reveal{
    display:none
  }

  .nav-links.open .nav-link::after{
    top:50%;
    right:3px;
    bottom:auto;
    left:auto;
    transform:translateY(-50%) scale(0)
  }

  .nav-links.open .nav-link.active::after,.nav-links.open .nav-link:hover::after{
    opacity:1;
    transform:translateY(-50%) scale(1)
  }

  .nav-links.open .nav-link:hover .nav-link-current{
    color:var(--green)
  }

  .nav-contact{
    width:auto;
    height:45px;
    margin-left:auto;
    padding:0 17px;
    font-size:12px
  }

  .menu-toggle{
    display:block
  }

  .hero-grid{
    grid-template-columns:1fr;
    gap:15px;
    padding-top:65px
  }

  .hero-copy{
    max-width:650px;
    padding:0
  }

  .hero-eyebrow{
    margin-bottom:22px;
    font-size:11px
  }

  .hero-copy h1{
    max-width:650px;
    margin-bottom:23px;
    font-size:clamp(45px,11.5vw,62px);
    line-height:.98;
    letter-spacing:-2.3px
  }

  .hero-copy>p{
    max-width:610px;
    font-size:17px
  }

  .hero-actions{
    gap:18px;
    margin-top:30px
  }

  .hero-art{
    justify-content:center;
    margin-top:12px;
    transform:none
  }

  .hero-webgl{
    width:min(100%,570px);
    aspect-ratio:1.08/1
  }

  .stats-section{
    width:calc(100% - 20px);
    padding:72px 28px
  }

  .stats-intro{
    margin-bottom:60px
  }

  .stats-grid{
    grid-template-columns:1fr
  }

  .stat-item,.stat-item:not(:first-child){
    min-height:auto;
    padding:42px 0
  }

  .stat-item:not(:last-child){
    border-right:0;
    border-bottom:1px solid rgba(9,40,58,.14)
  }

  .features{
    padding:72px 0 80px
  }

  .features .section-head{
    width:calc(100% - 48px)
  }

  .features .section-head h2{
    font-size:clamp(42px,11vw,58px)
  }

  .features .section-head p{
    font-size:18px
  }

  .features-carousel{
    height:520px
  }

  .features-track{
    top:45%;
    width:315px;
    height:370px
  }

  .feature-card{
    width:315px;
    height:370px;
    padding:25px 28px 23px
  }

  .feature-icon{
    width:92px;
    height:62px;
    margin-bottom:27px
  }

  .feature-icon svg{
    width:36px;
    height:36px
  }

  .feature-card h3{
    margin-bottom:18px;
    font-size:17px
  }

  .feature-card p{
    font-size:14px
  }

  .features-controls{
    bottom:5px
  }

  .why{
    padding:72px 28px
  }

  .why-layout{
    gap:55px
  }

  .why-copy h2{
    width:auto;
    max-width:620px;
    white-space:normal
  }

  .why-copy p{
    font-size:17px
  }

  .why-cards{
    grid-template-columns:repeat(2,minmax(0,1fr))
  }

  .audience{
    padding-top:85px;
    padding-bottom:90px
  }

  .audience-head{
    max-width:650px
  }

  .audience-kicker{
    margin-bottom:22px;
    font-size:12px
  }

  .audience-head h2,.profiles-head h2{
    font-size:clamp(42px,11vw,58px);
    line-height:1;
    letter-spacing:-1.8px
  }

  .audience-head p,.profiles-head p{
    max-width:560px;
    margin-top:24px;
    font-size:18px
  }

  .audience-grid{
    grid-template-columns:1fr;
    max-width:520px;
    gap:20px;
    margin-top:55px
  }

  .audience-card{
    height:410px;
    border-radius:20px
  }

  .audience-content{
    right:20px;
    bottom:20px;
    left:20px
  }

  .audience-text h3{
    font-size:28px
  }

  .audience-text p{
    max-width:360px;
    font-size:14px
  }

  .profiles{
    padding:78px 22px 72px
  }

  .profiles-head{
    max-width:650px
  }

  .profiles-kicker{
    margin-bottom:22px;
    font-size:12px
  }

  .profile-grid{
    grid-template-columns:1fr;
    max-width:520px;
    gap:24px;
    margin-top:58px;
    perspective:none
  }

  .profile-card{
    border-radius:23px
  }

  .profile-visual{
    height:auto;
    aspect-ratio:1.45/1
  }

  .profile-number{
    font-size:42px
  }

  .profile-role{
    left:17px;
    bottom:16px
  }

  .profile-content{
    padding:27px 25px 30px
  }

  .profile-card h3{
    font-size:22px
  }

  .profile-duties p{
    font-size:14px
  }

  .site-footer{
    width:calc(100% - 28px);
    margin-top:20px;
    padding:60px 32px 34px;
    border-radius:28px
  }

  .footer-watermark{
    right:-5px;
    bottom:-25px;
    font-size:110px;
    letter-spacing:-5px
  }

  .footer-cta h2{
    max-width:600px;
    font-size:clamp(42px,9vw,58px);
    letter-spacing:-2px
  }

  .footer-cta>p{
    max-width:560px;
    font-size:15px
  }

  .footer-side{
    grid-template-columns:1fr 1.45fr;
    max-width:none;
    gap:40px
  }

  .footer-bottom{
    align-items:flex-start;
    flex-direction:column;
    gap:28px
  }

  .footer-bottom-right{
    align-items:flex-start
  }
}

@media(max-width:560px){
  .why-cards{
    grid-template-columns:1fr
  }

  .site-footer{
    width:calc(100% - 20px);
    padding:52px 22px 30px;
    border-radius:22px
  }

  .footer-main{
    gap:52px
  }

  .footer-kicker{
    margin-bottom:22px;
    padding:8px 12px;
    font-size:10px
  }

  .footer-cta h2{
    font-size:40px;
    line-height:1;
    letter-spacing:-1.6px
  }

  .footer-cta>p{
    margin-top:22px;
    font-size:14px
  }

  .footer-cta-button{
    margin-top:29px
  }

  .footer-side{
    grid-template-columns:1fr;
    gap:42px
  }

  .footer-column-label{
    margin-bottom:18px
  }

  .footer-navigation a{
    padding:13px 0
  }

  .footer-contact-item{
    padding:11px 12px
  }

  .footer-divider{
    margin-top:52px
  }

  .footer-bottom{
    padding-top:28px
  }

  .footer-legal{
    align-items:flex-start;
    flex-direction:column;
    gap:14px;
    white-space:normal
  }

  .footer-watermark{
    display:none
  }
}

@media(max-width:520px){
  .hero{
    padding:16px 18px 36px
  }

  .brand-logo{
    height:43px
  }

  .nav-contact{
    display:none
  }

  .hero-grid{
    padding-top:52px
  }

  .hero-eyebrow{
    margin-bottom:20px;
    padding:8px 12px;
    font-size:10px
  }

  .hero-copy h1{
    font-size:clamp(40px,12.5vw,54px);
    letter-spacing:-1.9px
  }

  .hero-copy>p{
    font-size:15px;
    line-height:1.55
  }

  .hero-actions{
    align-items:flex-start;
    flex-direction:column;
    gap:12px
  }

  .hero-primary{
    padding-left:18px;
    font-size:13px
  }

  .hero-primary-icon{
    width:40px;
    height:40px
  }

  .hero-secondary{
    font-size:13px
  }
}

@media(max-width:420px){
  .hero-copy h1{
    font-size:40px
  }

  .stat-number{
    font-size:72px
  }

  .features-carousel{
    height:470px
  }

  .features-track{
    width:285px;
    height:345px
  }

  .feature-card{
    width:285px;
    height:345px;
    padding:22px 24px 20px
  }

  .feature-card::after{
    top:22px;
    right:24px;
    font-size:38px
  }

  .features-control{
    min-width:88px;
    height:46px;
    padding:0 19px;
    font-size:14px
  }

  .why{
    padding:60px 20px
  }

  .why-copy h2{
    font-size:40px
  }

  .why-card-icon{
    width:40px;
    height:40px;
    margin-bottom:28px
  }

  .why-card-icon img{
    width:31px;
    height:31px
  }

  .audience{
    padding-top:70px;
    padding-bottom:75px
  }

  .audience-head h2{
    font-size:40px
  }

  .audience-head p{
    font-size:16px
  }

  .audience-grid{
    margin-top:45px
  }

  .audience-card{
    height:370px;
    border-radius:19px
  }

  .audience-content{
    right:18px;
    bottom:18px;
    left:18px
  }

  .audience-index{
    bottom:calc(100% + 15px)
  }

  .audience-text h3{
    margin-bottom:8px;
    font-size:25px
  }

  .audience-text p{
    font-size:13px;
    line-height:1.45
  }

  .profiles{
    padding:65px 16px 60px
  }

  .profiles-head h2{
    font-size:40px
  }

  .profiles-head p{
    font-size:16px
  }

  .profile-grid{
    margin-top:48px
  }

  .profile-number{
    font-size:36px
  }

  .profile-role{
    padding:8px 11px;
    font-size:10px
  }

  .profile-content{
    padding:24px 21px 27px
  }

  .profile-card h3{
    font-size:20px
  }

  .profile-duties p{
    font-size:13.5px
  }

  .footer-contact-icon img{
    width:18px;
    height:18px
  }
}

@media(hover:none){
  .nav-link:hover .nav-link-current,.nav-link:hover .nav-link-reveal{
    transform:none
  }

  .nav-link:hover::after{
    opacity:0;
    transform:translateX(-50%) scale(0)
  }

  .nav-link.active::after{
    opacity:1;
    transform:translateX(-50%) scale(1)
  }

  .nav-contact:hover,.hero-primary:hover,.why-card:hover,.audience-card:hover,.profile-card:hover,.footer-cta-button:hover,.footer-contact-item:hover{
    transform:none;
    translate:0 0
  }

  .hero-primary:hover .hero-primary-icon{
    transform:none
  }

  .hero-secondary:hover svg{
    transform:none
  }

  .why-card:hover .why-card-icon img{
    filter:brightness(0) saturate(100%) invert(68%) sepia(99%) saturate(1125%) hue-rotate(38deg) brightness(101%) contrast(101%);
    transform:none
  }

  .audience-card:hover .audience-media img{
    transform:scale(1.015)
  }

  .profile-card:hover .profile-image{
    transform:scale(1)
  }

  .footer-navigation a:hover{
    padding-left:0
  }

  .footer-cta-button:hover .footer-cta-arrow{
    transform:none
  }
}

@media(prefers-reduced-motion:reduce){
  html{
    scroll-behavior:auto
  }

  .hero-network,.shield-feed{
    display:none
  }

  .hero-particle{
    animation:none
  }

  .nav-link-current,.nav-link-reveal,.nav-link::after,.nav-contact,.hero-primary,.hero-primary-icon,.hero-secondary,.hero-secondary svg,.why-card,.why-card-icon img,.audience-card,.audience-media img,.profile-card,.profile-image,.footer-cta-button,.footer-cta-arrow,.footer-navigation a,.footer-navigation a>span:last-child,.footer-contact-item,.footer-legal a::after{
    transition:none
  }

  .audience-card,.profile-card{
    transform:none!important
  }
}