:root{
  --bg:#050505;
  --bg-soft:#0d0d10;
  --card:rgba(255,255,255,0.035);
  --line:rgba(255,255,255,0.08);
  --text:#f5f5f7;
  --muted:#a7a7ad;
  --gold:#d6a861;
  --gold-soft:rgba(214,168,97,0.16);
  --shadow:0 10px 30px rgba(0,0,0,0.22);
  --radius:26px;
}

*{box-sizing:border-box}

html,body{
  margin:0;
  padding:0;
  background:
    radial-gradient(circle at 82% 12%, rgba(214,168,97,0.08), transparent 20%),
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.04), transparent 18%),
    linear-gradient(180deg,#040404 0%,#080808 100%);
  color:var(--text);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
}

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

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 18px;
  background:rgba(5,5,5,0.82);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,0.05);
}

.brand{
  font-size:20px;
  font-weight:800;
  letter-spacing:.20em;
  text-transform:uppercase;
  background:linear-gradient(90deg,#fff3d6,#e0b873,#fff3d6);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  text-shadow:
    0 0 10px rgba(255,210,150,0.18),
    0 0 22px rgba(214,168,97,0.12);
}

.top-links{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.top-link{
  min-height:38px;
  padding:0 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.07);
  background:rgba(255,255,255,0.03);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:14px;
  transition:.2s ease;
}

.top-link:hover{
  transform:translateY(-1px);
  border-color:rgba(214,168,97,0.24);
  box-shadow:0 0 18px rgba(214,168,97,0.08);
}

.wrapper{
  max-width:1180px;
  margin:0 auto;
  padding:20px 16px 44px;
}

.hero{
  position:relative;
  min-height:260px;
  border-radius:30px;
  border:1px solid rgba(255,255,255,0.08);
  overflow:hidden;
  box-shadow:var(--shadow);
  background:
    radial-gradient(circle at 78% 36%, rgba(214,168,97,0.12), transparent 18%),
    radial-gradient(circle at 70% 20%, rgba(255,255,255,0.04), transparent 18%),
    linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
    linear-gradient(180deg, #121318 0%, #0b0c0f 100%);
  padding:28px;
  display:flex;
  align-items:flex-end;
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:720px;
}

.kicker{
  font-size:12px;
  letter-spacing:.16em;
  color:var(--muted);
  margin-bottom:10px;
}

.hero h1{
  margin:0;
  font-size:clamp(34px,5vw,58px);
  line-height:1.02;
}

.hero p{
  margin:14px 0 0;
  color:#d3d3d8;
  font-size:18px;
  line-height:1.5;
  max-width:650px;
}

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

.card{
  border-radius:24px;
  border:1px solid rgba(255,255,255,0.08);
  background:linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.02));
  box-shadow:var(--shadow);
  padding:18px;
  transition:.22s ease;
}

.card:hover{
  transform:translateY(-2px);
  border-color:rgba(214,168,97,0.24);
  box-shadow:0 0 22px rgba(214,168,97,0.08);
}

.card-label{
  color:var(--muted);
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:10px;
}

.card-title{
  font-size:24px;
  font-weight:700;
  margin-bottom:10px;
}

.card-text{
  color:#d3d3d8;
  font-size:15px;
  line-height:1.55;
  min-height:70px;
}

.card-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 14px;
  border-radius:14px;
  border:1px solid rgba(214,168,97,0.24);
  background:
    radial-gradient(circle at 50% 0%, rgba(214,168,97,0.16), transparent 60%),
    rgba(255,255,255,0.04);
  margin-top:14px;
}

.stub{
  max-width:980px;
  margin:30px auto;
  padding:28px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,0.08);
  background:linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.02));
  box-shadow:var(--shadow);
}

.stub h1{
  margin:0 0 12px;
  font-size:40px;
}

.stub p{
  margin:0;
  color:#d3d3d8;
  font-size:17px;
  line-height:1.6;
}

@media (max-width: 980px){
  .grid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 760px){
  .topbar{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }

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

  .wrapper{
    padding:14px 12px 30px;
  }

  .hero{
    min-height:220px;
    padding:22px;
  }

  .stub h1{
    font-size:32px;
  }
}
