:root{
  --bg:#151222;
  --bg2:#110f1a;
  --card:#1d1830;
  --card2:#231d38;
  --text:#f2eef6;
  --muted:#c9c2d4;
  --line:rgba(255,255,255,.10);
  --gold:#c9a24a;
  --red:#d63043;
  --shadow: 0 20px 60px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background: radial-gradient(1200px 800px at 20% 10%, rgba(201,162,74,.10), transparent 60%),
              radial-gradient(900px 700px at 80% 20%, rgba(214,48,67,.10), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  line-height:1.45;
}

a{color:inherit}
.container{width:min(1100px, calc(100% - 48px)); margin:0 auto}

.skip{
  position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{left:16px; top:16px; width:auto; height:auto; padding:10px 12px; background:var(--card); border:1px solid var(--line); border-radius:12px; z-index:9999}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(21,18,34,.65);
  border-bottom:1px solid var(--line);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{display:flex; align-items:center; gap:10px; font-weight:800; letter-spacing:.2px}
.brand__dot{
  width:12px; height:12px; border-radius:999px;
  background: linear-gradient(135deg, var(--gold), var(--red));
  box-shadow: 0 0 0 4px rgba(201,162,74,.12);
}
.brand__name{font-size:16px}

.nav{display:flex; align-items:center; gap:16px; font-weight:600; color:var(--muted)}
.nav a{ text-decoration:none; padding:10px 8px; border-radius:10px }
.nav a:hover{ background: rgba(255,255,255,.06); color:var(--text) }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:14px;
  background: linear-gradient(135deg, rgba(201,162,74,.95), rgba(214,48,67,.95));
  color:#1b1422; text-decoration:none; font-weight:800;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}
.btn:hover{ transform: translateY(-1px) }
.btn--ghost{
  background: transparent;
  color: var(--text);
  border:1px solid var(--line);
  box-shadow:none;
}
.btn--ghost:hover{ background: rgba(255,255,255,.06) }
.btn--small{ padding:10px 12px; border-radius:12px; font-weight:800 }

.hero{ position:relative; padding:0 0 36px 0; border-bottom:1px solid var(--line) }
.hero__image{
  height: 320px;
  background-image: url("/assets/header.png");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line);
}
.hero__content{ padding-top: 28px }
.hero h1{ margin: 0 0 12px 0; font-size: clamp(28px, 4vw, 46px); letter-spacing:.2px }
.lead{ color: var(--muted); font-size: 18px; max-width: 70ch; margin: 0 0 18px 0 }

.hero__cta{ display:flex; gap:12px; flex-wrap:wrap; margin: 10px 0 18px 0 }

.hero__badges{ display:flex; gap:10px; flex-wrap:wrap }
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-weight:700;
}

.section{ padding: 56px 0 }
.section--alt{ background: rgba(255,255,255,.02); border-top:1px solid var(--line); border-bottom:1px solid var(--line) }
.section__head{ display:flex; align-items:flex-end; justify-content:space-between; gap:16px; margin-bottom:18px; flex-wrap:wrap }
.section__head h2{ margin:0; font-size: 28px }
.section__head p{ margin:0; color: var(--muted) }

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.grid{ display:grid; grid-template-columns: 1.2fr .8fr }
.card__body{ padding: 22px }
.card__aside{
  padding: 22px;
  background: rgba(0,0,0,.12);
  border-left:1px solid var(--line);
}
.card h3{ margin:0 0 8px 0; font-size: 22px }
.card p{ margin:0 0 12px 0; color: var(--muted) }
.card__actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px }

.stat{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  padding: 12px 12px;
  border-radius: 16px;
  margin-bottom: 12px;
}
.stat__value{ font-weight:900; font-size: 16px }
.stat__label{ color: var(--muted); font-weight:600; font-size: 13px; margin-top:2px }

.muted{ color: var(--muted) }
.small{ font-size: 13px }

.cards{ display:grid; grid-template-columns: repeat(4, 1fr); gap:14px }
.mini{
  padding:16px;
  background: rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius: 18px;
}
.mini h3{ margin:0 0 6px 0; font-size: 16px }
.mini p{ margin:0; color: var(--muted) }

.callout{
  margin-top: 18px;
  display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap;
  padding:16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(201,162,74,.14), rgba(214,48,67,.10));
  border:1px solid var(--line);
}

.two{ display:grid; grid-template-columns: 1fr 1fr; gap:14px }
.panel{
  padding:18px;
  border-radius:18px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.steps{ margin:10px 0 0 18px; color: var(--muted) }
.steps li{ margin-bottom:8px }
.bullets{ margin:10px 0 0 18px; color: var(--muted) }
.bullets li{ margin-bottom:6px }

.contact{
  display:grid; grid-template-columns: 1fr 1fr; gap:14px;
}
.contact__card{
  padding:18px;
  border-radius:18px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.contact__card--form{ background: rgba(0,0,0,.10) }
.email a{ font-weight:900; text-decoration:none }
.email a:hover{ text-decoration:underline }

label{ display:block; font-weight:700; margin: 12px 0 6px 0 }
input, textarea{
  width:100%;
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  padding: 12px 12px;
  font: inherit;
}
input::placeholder, textarea::placeholder{ color: rgba(201,194,212,.65) }
textarea{ resize: vertical }

.details{ margin-top: 10px; border-top:1px solid var(--line); padding-top:10px }
.details summary{ cursor:pointer; font-weight:800 }

.footer{
  margin-top: 22px;
  display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap;
  padding-top: 16px;
  border-top:1px solid var(--line);
  color: var(--muted);
}
.footer a{ text-decoration:none }
.footer a:hover{ text-decoration:underline }
.footer__left{ display:flex; align-items:center; gap:10px }

.social-bar{
  text-align:center;
  padding:2rem 0 1rem;
  border-top:1px solid var(--line);
  margin-top:2rem;
}
.social-links{
  display:flex;
  justify-content:center;
  gap:1rem;
  flex-wrap:wrap;
}
.social-link{
  display:inline-flex;
  align-items:center;
  gap:0.5rem;
  padding:10px 16px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color:var(--muted);
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  transition:background 0.15s, border-color 0.15s, color 0.15s;
}
.social-link:hover{
  background: rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.25);
  color:var(--text);
}

@media (max-width: 900px){
  .cards{ grid-template-columns: 1fr 1fr }
  .grid{ grid-template-columns: 1fr }
  .card__aside{ border-left:0; border-top:1px solid var(--line) }
  .contact{ grid-template-columns: 1fr }
  .two{ grid-template-columns: 1fr }
  .hero__image{ height: 240px }
}
@media (max-width: 520px){
  .nav{ gap:8px }
  .nav a{ padding:10px 6px }
  .cards{ grid-template-columns: 1fr }
}
