:root{
  --bg:#0b0914;
  --bg-2:#151024;
  --surface:rgba(255,255,255,0.06);
  --surface-2:rgba(255,255,255,0.09);
  --line:rgba(255,255,255,0.09);
  --text:#f8f7fc;
  --muted:#c9bfdc;
  --accent:#c084fc;
  --accent-2:#a855f7;
  --accent-soft:rgba(192,132,252,0.14);
  --shadow:0 24px 70px rgba(0,0,0,0.30);
  --radius:26px;
  --radius-lg:34px;
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, Arial, Helvetica, sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,var(--bg),var(--bg-2));
  line-height:1.6;
  overflow-x:hidden;
  position:relative;
}
a{text-decoration:none;color:inherit}

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

.bg-blur{
  position:fixed;
  border-radius:50%;
  filter:blur(90px);
  pointer-events:none;
  z-index:0;
}
.blur-1{
  width:320px;
  height:320px;
  top:80px;
  left:-80px;
  background:rgba(192,132,252,.16);
}
.blur-2{
  width:360px;
  height:360px;
  right:-80px;
  top:160px;
  background:rgba(167,139,250,.12);
}

.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(14px);
  background:rgba(11,9,20,.65);
  border-bottom:1px solid rgba(255,255,255,.05);
}
.header-inner{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.brand-badge{
  width:50px;
  height:50px;
  border-radius:18px;
  display:grid;
  place-items:center;
  font-size:22px;
  font-weight:800;
  color:#fff;
  background:linear-gradient(135deg, rgba(192,132,252,.28), rgba(192,132,252,.08));
  border:1px solid rgba(192,132,252,.22);
}
.brand-text small{
  display:block;
  font-size:12px;
  color:var(--muted);
}
.brand-text strong{
  display:block;
  font-size:18px;
}

.nav{
  display:flex;
  align-items:center;
  gap:22px;
  color:var(--muted);
}
.nav a:hover{color:#fff}
.nav-button{
  padding:10px 16px;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
}
.menu-btn{
  display:none;
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  color:#fff;
  padding:10px 14px;
  border-radius:14px;
  cursor:pointer;
}

.hero{
  position:relative;
  z-index:1;
  padding:56px 0 60px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:34px;
  align-items:center;
  min-height:calc(100vh - 120px);
}

.tag,
.eyebrow{
  display:inline-block;
  font-size:13px;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--accent);
}
.tag{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(192,132,252,.10);
  border:1px solid rgba(192,132,252,.18);
  margin-bottom:20px;
}

.hero h1{
  margin:0;
  font-size:clamp(42px, 5vw, 72px);
  line-height:1.02;
  letter-spacing:-.05em;
  max-width:760px;
}
.hero h1 span{
  color:var(--accent);
  display:block;
}
.hero-text{
  margin:22px 0 0;
  max-width:630px;
  font-size:18px;
  color:var(--muted);
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:30px;
}

.btn{
  min-height:52px;
  padding:0 22px;
  border-radius:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  transition:.25s ease;
  border:1px solid transparent;
}
.btn-primary{
  background:var(--accent);
  color:#251036;
  box-shadow:0 12px 30px rgba(192,132,252,.18);
}
.btn-primary:hover{background:var(--accent-2)}
.btn-secondary{
  background:rgba(255,255,255,.05);
  border-color:var(--line);
  color:#fff;
}
.btn-secondary:hover{background:rgba(255,255,255,.08)}

.hero-info{
  margin-top:30px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.info-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:22px;
  padding:18px;
  box-shadow:var(--shadow);
}
.info-card strong{
  display:block;
  margin-bottom:6px;
  font-size:15px;
}
.info-card span{
  color:var(--muted);
  font-size:14px;
}

.panel{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:34px;
  padding:18px;
  box-shadow:var(--shadow);
  backdrop-filter:blur(12px);
}
.panel-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding:6px 6px 18px;
}
.panel-top small{
  display:block;
  color:var(--muted);
  margin-bottom:4px;
}
.panel-top h2{
  margin:0;
  font-size:26px;
  line-height:1.1;
}
.status{
  padding:8px 12px;
  border-radius:999px;
  background:rgba(192,132,252,.12);
  border:1px solid rgba(192,132,252,.18);
  color:#f0ddff;
  font-weight:700;
  font-size:13px;
  white-space:nowrap;
}

.panel-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}
.panel-card,
.service-card,
.benefit-card{
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  padding:22px;
}
.icon{
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:rgba(192,132,252,.12);
  border:1px solid rgba(192,132,252,.14);
  font-size:22px;
  margin-bottom:14px;
}
.panel-card strong,
.service-card h3,
.benefit-card h3{
  display:block;
  margin:0 0 10px;
  font-size:20px;
}
.panel-card p,
.service-card p,
.benefit-card p,
.cta-content p,
.section-head p,
.structure-content p{
  margin:0;
  color:var(--muted);
}

.panel-highlight{
  margin-top:16px;
  padding:14px 16px;
  background:rgba(192,132,252,.10);
  border:1px solid rgba(192,132,252,.14);
  border-radius:18px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.panel-highlight span{
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  font-size:13px;
  color:#f3e8ff;
}

.section{
  position:relative;
  z-index:1;
  padding:92px 0;
}
.section-head{
  max-width:760px;
  margin-bottom:32px;
}
.section-head h2,
.structure-content h2,
.cta-content h2{
  margin:12px 0;
  font-size:clamp(30px,4vw,46px);
  line-height:1.08;
  letter-spacing:-.03em;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.service-card{
  box-shadow:var(--shadow);
  transition:.25s ease;
}
.service-card:hover,
.benefit-card:hover{
  transform:translateY(-4px);
  background:var(--surface-2);
  border-color:rgba(192,132,252,.22);
}
.service-card.featured{
  grid-column:span 3;
  background:linear-gradient(135deg, rgba(192,132,252,.12), rgba(255,255,255,.04));
}

.alt-section{
  background:rgba(255,255,255,.03);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.structure-grid{
  display:grid;
  grid-template-columns:1fr .9fr;
  gap:26px;
  align-items:center;
}
.structure-list{
  margin-top:24px;
  display:grid;
  gap:14px;
}
.structure-item{
  padding:18px;
  border-radius:20px;
  background:rgba(255,255,255,.05);
  border:1px solid var(--line);
}
.structure-item strong{
  display:block;
  margin-bottom:6px;
}
.structure-item span{
  color:var(--muted);
}

.structure-box{
  padding:16px;
  border-radius:30px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
  backdrop-filter:blur(12px);
}
.box-line{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:center;
  padding:18px;
  border-radius:20px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.07);
}
.box-line + .box-line{margin-top:12px}
.box-line span{color:var(--muted)}
.box-line strong{font-size:16px}

.benefits-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.benefit-card{
  box-shadow:var(--shadow);
}

.cta-box{
  display:grid;
  grid-template-columns:1fr auto;
  gap:24px;
  align-items:center;
  padding:38px;
  border-radius:34px;
  background:
    radial-gradient(circle at top right, rgba(192,132,252,.18), transparent 26%),
    linear-gradient(135deg, rgba(192,132,252,.10), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
}
.cta-actions{
  display:flex;
  flex-direction:column;
  gap:12px;
  min-width:220px;
}

.footer{
  position:relative;
  z-index:1;
  padding:28px 0 42px;
  color:var(--muted);
}
.footer-inner{
  border-top:1px solid rgba(255,255,255,.07);
  padding-top:20px;
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

@media (max-width:1080px){
  .hero-grid,
  .structure-grid,
  .cta-box{
    grid-template-columns:1fr;
  }

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

  .service-card.featured{
    grid-column:span 2;
  }

  .hero-grid{
    min-height:auto;
  }
}

@media (max-width:820px){
  .menu-btn{display:inline-flex}

  .nav{
    display:none;
    position:absolute;
    top:78px;
    left:16px;
    right:16px;
    background:rgba(12,10,22,.98);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:14px;
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
    box-shadow:var(--shadow);
  }
  .nav.open{display:flex}

  .hero-info,
  .panel-grid,
  .services-grid,
  .benefits-grid{
    grid-template-columns:1fr;
  }

  .service-card.featured{
    grid-column:auto;
  }
}

@media (max-width:560px){
  .container{
    width:min(calc(100% - 22px), var(--max));
  }
  .header-inner{
    min-height:72px;
  }
  .hero h1{
    font-size:36px;
  }
  .hero-text{
    font-size:16px;
  }
  .section{
    padding:76px 0;
  }
  .panel,
  .service-card,
  .benefit-card,
  .cta-box,
  .info-card,
  .structure-box{
    border-radius:24px;
  }
}