:root{
  --bg:#05070c;
  --panel:rgba(18,22,32,.62);
  --panel2:rgba(255,255,255,.06);
  --stroke:rgba(255,255,255,.12);
  --text:#eaf0ff;
  --muted:rgba(234,240,255,.72);
  --gold:#f3b11b;
  --gold2:#d39a13;
  --shadow:0 30px 90px rgba(0,0,0,.55);
  --radius:24px;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 15% 10%, rgba(243,177,27,.10), transparent 55%),
    radial-gradient(1000px 700px at 85% 20%, rgba(70,140,255,.08), transparent 55%),
    var(--bg);
  font-family:ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  overflow-x:hidden;
}

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

.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 22px;
}

/* ===== HEADER ===== */
.mainHeader{
  position:fixed;
  top:16px;
  left:0;
  right:0;
  z-index:1000;
  padding:0 18px;
}

.headerInner{
  max-width:1500px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 20px;
  border-radius:22px;
  background:rgba(8,10,18,.58);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 18px 55px rgba(0,0,0,.45);
  backdrop-filter:blur(14px);
}

.brandBlock{
  display:flex;
  align-items:center;
  flex:0 0 auto;
  text-decoration:none;
}

.logoHeader{
  width:auto;
  height:54px;
  max-width:260px;
  object-fit:contain;
  display:block;
}

.mainMenu{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  flex:1 1 auto;
  flex-wrap:wrap;
}

.mainMenu a{
  color:#eaf0ff;
  text-decoration:none;
  font-weight:600;
  font-size:16px;
  transition:.2s ease;
}

.mainMenu a:hover{
  color:#f3b11b;
}

.headerLang{
  flex:0 0 auto;
}

.headerLang select{
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.25);
  color:#eaf0ff;
  padding:10px 12px;
  font-weight:800;
  outline:none;
}

/* ===== HERO ===== */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  padding:150px 0 70px;
}

.heroVideo{
  position:fixed;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:-3;
  filter:saturate(1.05) contrast(1.08) brightness(.78);
  transform:scale(1.02);
}

.heroOverlay{
  position:fixed;
  inset:0;
  z-index:-2;
  background:
    radial-gradient(900px 600px at 20% 20%, rgba(243,177,27,.10), transparent 60%),
    radial-gradient(1000px 700px at 80% 30%, rgba(70,140,255,.10), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.62), rgba(0,0,0,.55));
  backdrop-filter:blur(2px);
}

.heroNoise{
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  opacity:.10;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.heroGrid{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:22px;
  align-items:center;
}

.heroLeft{
  max-width:760px;
}

.heroRight{
  max-width:640px;
  justify-self:end;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 18px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:#f5f7ff;
  font-size:13px;
  line-height:1.25;
  font-weight:700;
  letter-spacing:.2px;
  width:fit-content;
  max-width:100%;
  box-shadow:0 8px 24px rgba(0,0,0,.22);
  text-shadow:0 0 1px rgba(0,0,0,.2);
}

.dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--gold);
  box-shadow:0 0 0 6px rgba(243,177,27,.14);
}

.h1{
  margin:16px 0 12px;
  font-size:72px;
  line-height:1.02;
  letter-spacing:-.6px;
}

.heroGoldTitle{
  color:#f3b11b;
  text-shadow:
    0 0 10px rgba(243,177,27,.18),
    0 0 22px rgba(243,177,27,.08);
}

.goldText{
  color:#f3b11b;
  text-shadow:
    0 0 10px rgba(243,177,27,.18),
    0 0 22px rgba(243,177,27,.08);
}

.sub{
  margin:0;
  color:rgba(234,240,255,.92);
  font-size:16px;
  line-height:1.55;
  max-width:62ch;
}

.heroCtas{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

.pills{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}

.pill{
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.18);
  color:rgba(234,240,255,.90);
  font-weight:700;
  font-size:13px;
}

/* ===== BUTTONS ===== */
.btn{
  cursor:pointer;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:#eaf0ff;
  font-weight:800;
}

.btn:hover{
  background:rgba(255,255,255,.10);
}

.btnGold{
  background:linear-gradient(180deg, var(--gold), var(--gold2));
  border:none;
  color:#151515;
}

.btnGold:hover{
  filter:brightness(1.04);
}

/* ===== GLASS CARD ===== */
.card{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  box-shadow:var(--shadow);
  backdrop-filter:blur(18px);
  overflow:hidden;
}

.cardInner{
  padding:20px;
}

.cardTitle{
  margin:0 0 10px;
  font-size:18px;
  letter-spacing:.2px;
  color:#eaf0ff;
}

.cardText{
  margin:0 0 14px;
  color:rgba(234,240,255,.85);
  line-height:1.5;
  font-size:14px;
}

.grid2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.feature{
  padding:14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.18);
  color:#eaf0ff;
}

.feature b{
  display:block;
  margin-bottom:6px;
  color:#eaf0ff;
}

.feature span{
  color:rgba(234,240,255,.85);
  font-size:13px;
  line-height:1.45;
}

/* ===== SECTIONS ===== */
.section{
  padding:70px 0;
}

.section h2{
  margin:0 0 14px;
  font-size:34px;
  letter-spacing:-.2px;
}

.sectionGoldTitle{
  color:#f3b11b;
  text-shadow:
    0 0 10px rgba(243,177,27,.12),
    0 0 20px rgba(243,177,27,.06);
}

.section p{
  margin-top:12px;
  color:#eaf0ff;
  font-size:16px;
  line-height:1.65;
  max-width:900px;
  text-shadow:0 0 1px rgba(0,0,0,.2);
}

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

.smallCard{
  border-radius:20px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.22);
  padding:18px;
}

.smallCard h3{
  margin:0 0 8px;
  font-size:16px;
  color:#eaf0ff;
}

.smallCard p{
  margin:0;
  font-size:13px;
  color:rgba(234,240,255,.85);
}

/* ===== FOOTER ===== */
.rt-footer{
  padding:22px 18px;
  border-top:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.35);
  backdrop-filter:blur(10px);
  margin-top:60px;
}

.rt-footer-links{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  justify-content:center;
  margin-bottom:10px;
}

.rt-footer-links a{
  color:rgba(255,255,255,.85);
  text-decoration:none;
  border-bottom:1px dashed rgba(243,177,27,.35);
  padding-bottom:2px;
}

.rt-footer-links a:hover{
  color:#fff;
  border-bottom-color:rgba(243,177,27,.85);
}

.rt-footer-copy{
  text-align:center;
  font-size:12px;
  color:rgba(255,255,255,.65);
}

/* ===== REVEAL ===== */
.reveal{
  opacity:0;
  transform:translateY(10px);
  transition:.75s ease;
}

.reveal.show{
  opacity:1;
  transform:none;
}

@media (max-width:1200px){
  .headerInner{
    flex-direction:column;
    align-items:center;
  }

  .mainMenu{
    gap:14px;
  }

  .logoHeader{
    height:48px;
    max-width:220px;
  }

  .h1,
  .heroGoldTitle{
    font-size:56px;
  }
}

@media (max-width:980px){
  .hero{
    padding-top:180px;
  }

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

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

@media (max-width:900px){
  .heroRight{
    justify-self:stretch;
    max-width:100%;
  }

  .h1,
  .heroGoldTitle{
    font-size:44px;
  }
}

@media (max-width:560px){
  .h1{
    font-size:40px;
  }

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

@media (prefers-reduced-motion: reduce){
  .reveal{
    opacity:1;
    transform:none;
  }

  .heroVideo{
    display:none;
  }
}
CSS