*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
  overflow-x:hidden;
}

body{
  font-family:Arial,Helvetica,sans-serif;
  background:#030303;
  color:#fff;
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
}

/* HEADER */

.site-header{
  width:min(1320px,calc(100% - 48px));
  margin:28px auto 0;
  padding:26px 28px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:28px;
  border:1px solid rgba(76,166,255,.22);
  border-radius:26px;
  position:relative;
  z-index:50;
  overflow:visible;
  background:
    radial-gradient(circle at 20% 50%,rgba(0,132,255,.18),transparent 26%),
    radial-gradient(circle at 80% 50%,rgba(0,132,255,.14),transparent 28%),
    linear-gradient(90deg,rgba(5,10,18,.98),rgba(2,2,2,.96));
  box-shadow:0 0 44px rgba(0,132,255,.12), inset 0 0 40px rgba(255,255,255,.025);
}

.site-header::before{
  content:"";
  position:absolute;
  inset:0;
  background:repeating-linear-gradient(90deg,transparent 0 18px,rgba(76,166,255,.09) 19px 20px);
  opacity:.22;
  animation:headerScan 9s linear infinite;
  pointer-events:none;
}

.site-header::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:3px;
  background:linear-gradient(90deg,transparent,#1c91ff,transparent);
  animation:headerPulse 2.4s ease-in-out infinite;
}

@keyframes headerScan{
  0%{transform:translateX(-120px);}
  100%{transform:translateX(120px);}
}

@keyframes headerPulse{
  0%,100%{opacity:.25;}
  50%{opacity:1;}
}

.brand{
  position:relative;
  z-index:2;
}

.brand img{
  width:340px;
  filter:drop-shadow(0 0 22px rgba(0,132,255,.22));
}

.nav{
  justify-self:center;
  display:flex;
  gap:8px;
  align-items:center;
  background:rgba(0,0,0,.42);
  border:1px solid rgba(255,255,255,.1);
  padding:10px;
  border-radius:18px;
  position:relative;
  z-index:2;
  backdrop-filter:blur(14px);
}

.nav a{
  text-decoration:none;
  color:#fff;
  font-weight:800;
  font-size:15px;
  padding:12px 18px;
  border-radius:12px;
  transition:all .25s ease;
}

.nav a:hover{
  color:#3ca7ff;
  background:rgba(60,167,255,.12);
}

.top-cta,
.button{
  display:inline-block;
  text-decoration:none;
  border:1px solid #168dff;
  color:#66bdff;
  padding:15px 22px;
  border-radius:14px;
  font-weight:900;
  background:rgba(0,102,255,.10);
  box-shadow:0 0 28px rgba(0,132,255,.22);
  transition:all .25s ease;
  position:relative;
  z-index:2;
}

.top-cta:hover,
.button:hover{
  transform:translateY(-2px);
  box-shadow:0 0 40px rgba(0,132,255,.38);
}

.menu-toggle{
  display:none;
}

/* HERO */

.hero,
.page-hero{
  min-height:320px;
  padding:70px 20px 80px;
  text-align:center;
  background:
    radial-gradient(circle at 50% 10%,rgba(25,122,255,.18),transparent 34%),
    radial-gradient(circle at 15% 70%,rgba(0,120,255,.14),transparent 30%),
    linear-gradient(180deg,#050505,#010101);
  position:relative;
  overflow:hidden;
}

.hero::before,
.page-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:repeating-radial-gradient(ellipse at center,rgba(0,145,255,.18) 0 1px,transparent 2px 9px);
  opacity:.18;
  transform:perspective(900px) rotateX(80deg);
  top:55%;
}

.audio-wave{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  height:76px;
  margin:0 auto 30px;
  position:relative;
  z-index:2;
}

.audio-wave span{
  width:7px;
  height:24px;
  border-radius:999px;
  background:linear-gradient(180deg,#ffffff,#1c91ff);
  box-shadow:0 0 10px rgba(255,255,255,.35),0 0 24px rgba(28,145,255,.75);
  animation:waveMove 1.1s ease-in-out infinite;
}

.audio-wave span:nth-child(1){animation-delay:0s;height:18px;}
.audio-wave span:nth-child(2){animation-delay:.1s;height:30px;}
.audio-wave span:nth-child(3){animation-delay:.2s;height:44px;}
.audio-wave span:nth-child(4){animation-delay:.3s;height:58px;}
.audio-wave span:nth-child(5){animation-delay:.4s;height:36px;}
.audio-wave span:nth-child(6){animation-delay:.5s;height:68px;}
.audio-wave span:nth-child(7){animation-delay:.6s;height:42px;}
.audio-wave span:nth-child(8){animation-delay:.7s;height:58px;}
.audio-wave span:nth-child(9){animation-delay:.8s;height:30px;}
.audio-wave span:nth-child(10){animation-delay:.9s;height:48px;}
.audio-wave span:nth-child(11){animation-delay:1s;height:26px;}
.audio-wave span:nth-child(12){animation-delay:1.1s;height:38px;}

@keyframes waveMove{
  0%,100%{transform:scaleY(.45);opacity:.55;}
  50%{transform:scaleY(1.25);opacity:1;}
}

/* TYPE */

.section-label{
  color:#168dff;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:13px;
  font-weight:900;
  margin-bottom:18px;
  position:relative;
  z-index:2;
}

h1{
  font-size:clamp(52px,8vw,104px);
  line-height:.95;
  margin-bottom:26px;
  position:relative;
  z-index:2;
}

h1 span{
  color:#2d96ff;
}

h2{
  font-size:clamp(30px,4.4vw,54px);
  line-height:1.05;
  margin-bottom:18px;
}

h3{
  font-size:24px;
  margin-bottom:14px;
}

p{
  font-size:18px;
  line-height:1.65;
  color:#cfd7e3;
}

.hero p,
.page-hero p{
  max-width:820px;
  margin:0 auto 18px;
  position:relative;
  z-index:2;
}

.badges{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
  margin:34px auto;
  position:relative;
  z-index:2;
}

.badges span{
  border:1px solid #164f84;
  background:#07111c;
  border-radius:999px;
  padding:11px 18px;
  color:#dcecff;
  font-weight:800;
}

.small-button{
  margin-top:34px;
}

/* SECTIONS */

.section{
  width:min(1320px,calc(100% - 48px));
  margin:0 auto;
  padding:86px 0;
  text-align:center;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.section-intro{
  max-width:780px;
  margin:0 auto 42px;
}

/* CARDS */

.card-grid,
.tier-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  margin-top:50px;
}

.card,
.tier-card,
.text-card,
.contact-card{
  background:linear-gradient(180deg,#171717,#101010);
  border:1px solid rgba(76,166,255,.18);
  border-radius:22px;
  box-shadow:0 12px 40px rgba(0,0,0,.45);
}

.card,
.tier-card,
.contact-card{
  padding:42px 28px;
}

.card:hover,
.tier-card:hover,
.contact-card:hover{
  transform:translateY(-8px);
  border-color:rgba(76,166,255,.45);
  box-shadow:0 18px 50px rgba(0,120,255,.18);
}

.card-icon,
.tier-icon{
  margin:0 auto 24px;
  display:grid;
  place-items:center;
}

.card-icon{
  width:82px;
  height:82px;
  border-radius:50%;
  font-size:32px;
  background:radial-gradient(circle,rgba(0,170,255,.6),rgba(0,80,140,.12));
}

.tier-icon{
  width:88px;
  height:88px;
  border-radius:50%;
  font-size:32px;
  font-weight:900;
  background:radial-gradient(circle,rgba(0,170,255,.7),rgba(0,80,140,.12));
}

/* PROCESS */

.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:42px;
}

.steps div{
  background:#111;
  border:1px solid rgba(76,166,255,.15);
  border-radius:18px;
  padding:28px 18px;
}

.steps span{
  display:inline-grid;
  place-items:center;
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid #1c91ff;
  color:#8fd0ff;
  margin-bottom:14px;
}

.steps strong{
  display:block;
  margin-bottom:8px;
}

/* ABOUT */

.content-section{
  width:min(1120px,calc(100% - 48px));
  margin:80px auto;
  display:grid;
  gap:26px;
}

.text-card{
  padding:42px;
}

.text-card ul{
  padding-left:22px;
}

.text-card li{
  line-height:1.8;
  margin-bottom:10px;
  color:#d5dbe4;
}

/* RESULTS PAGE FIX */

.results-section{
  width:min(1180px,calc(100% - 48px));
  margin:80px auto;
  display:grid;
  gap:72px;
}

.result{
  display:grid;
  grid-template-columns:1fr;
  gap:24px;
  align-items:start;
}

.result-copy{
  background:linear-gradient(180deg,#171717,#101010);
  border:1px solid rgba(76,166,255,.18);
  border-radius:22px;
  padding:36px 34px;
  text-align:center;
  box-shadow:0 12px 40px rgba(0,0,0,.45);
}

.result-copy h2{
  font-size:clamp(32px,4vw,52px);
  line-height:1.05;
  margin-bottom:16px;
}

.result-copy p{
  max-width:900px;
  margin:0 auto;
}

.video-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  margin-top:50px;
}

.video-card{
  background:#070707;
  border:1px solid rgba(76,166,255,.25);
  border-radius:22px;
  padding:14px;
  box-shadow:0 14px 45px rgba(0,0,0,.5);
  overflow:hidden;
}

.video-card.large{
  width:100%;
}

iframe{
  width:100%;
  aspect-ratio:16/9;
  border:0;
  border-radius:16px;
  display:block;
}

/* CONTACT */

.contact-cards{
  width:min(1120px,calc(100% - 48px));
  margin:90px auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.contact-card{
  text-decoration:none;
  text-align:center;
  transition:all .3s ease;
}

.contact-card strong{
  display:block;
  font-size:32px;
  margin-bottom:14px;
}

.contact-card span{
  color:#55b4ff;
  font-size:18px;
  overflow-wrap:anywhere;
}

.contact-icon{
  width:78px;
  height:78px;
  border-radius:22px;
  margin:0 auto 24px;
  display:grid;
  place-items:center;
  font-size:36px;
  font-weight:900;
}

.gmail-icon{
  background:linear-gradient(135deg,#202020,#2d2d2d);
}

.instagram-icon{
  background:linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045);
}

.linkedin-icon{
  background:#0077b5;
}

.youtube-icon{
  background:linear-gradient(135deg,#ff0000,#b30000);
}

/* CONTACT STRIP */

.contact-strip{
  width:min(1320px,calc(100% - 48px));
  margin:60px auto;
  padding:46px;
  border:1px solid rgba(76,166,255,.25);
  border-radius:18px;
  display:flex;
  justify-content:space-between;
  gap:30px;
  align-items:center;
  background:linear-gradient(90deg,rgba(6,18,32,.95),rgba(4,4,4,.95));
}

/* FOOTER */

.footer{
  border-top:1px solid rgba(255,255,255,.08);
  padding:28px 24px 22px;
  text-align:center;
  background:
    radial-gradient(circle at center,rgba(17,74,140,.18),transparent 38%),
    #030303;
}

.footer img{
  width:240px;
  margin:0 auto 10px;
  filter:drop-shadow(0 0 18px rgba(0,132,255,.22));
}

.footer p{
  font-size:15px;
  line-height:1.35;
  margin:3px 0;
  color:#d4deeb;
}

/* MOBILE */

@media(max-width:1100px){

  .site-header{
    grid-template-columns:auto auto;
    margin-top:18px;
  }

  .brand img{
    width:220px;
  }

  .top-cta{
    display:none;
  }

  .menu-toggle{
    display:block;
    justify-self:end;
    background:#07111c;
    color:#fff;
    border:1px solid #164b7a;
    border-radius:12px;
    padding:10px 14px;
    font-size:24px;
    position:relative;
    z-index:1000;
  }

  .nav{
    display:none;
    position:absolute;
    top:100px;
    left:20px;
    right:20px;
    flex-direction:column;
    align-items:center;
    background:#080b10;
    border:1px solid rgba(76,166,255,.25);
    border-radius:18px;
    padding:24px 20px;
    z-index:999;
    gap:18px;
    max-height:none;
    overflow:visible;
    box-shadow:0 20px 60px rgba(0,0,0,.6);
  }

  .nav.open{
    display:flex;
  }

  .nav a{
    display:block;
    width:100%;
    text-align:center;
    padding:16px 18px;
    font-size:18px;
  }

  .card-grid,
  .tier-grid,
  .video-grid,
  .contact-cards,
  .steps{
    grid-template-columns:1fr;
  }

  .results-section{
    width:min(100%,calc(100% - 28px));
    margin:50px auto;
    gap:48px;
  }

  .result-copy{
    padding:28px 22px;
  }

  .contact-strip{
    flex-direction:column;
    text-align:center;
    padding:32px 20px;
  }

  .hero,
  .page-hero{
    min-height:auto;
    padding:82px 20px 100px;
  }

  h1{
    font-size:56px;
  }

  .footer img{
    width:320px;
  }

}