:root{
  --bg:#121214;
  --card:#17171b;
  --ink:#EAEAEA;
  --muted:#B8B8C0;
  --purple:#7A1FA2;
  --gold:#D6B25E;
  --stroke:rgba(255,255,255,.08);
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --radius: 18px;
  --heroH: 260px;
}


*{box-sizing:border-box}
html,body{
  margin:0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color:var(--ink);
  min-height: 100vh;
  background:
    radial-gradient(1200px 800px at 15% 10%, rgba(122,31,162,.18), transparent 55%),
    radial-gradient(900px 650px at 85% 25%, rgba(214,178,94,.12), transparent 55%),
    linear-gradient(180deg, rgba(15,15,18,.86) 0%, rgba(18,18,20,.90) 100%);
}

/* Full-page hero image behind everything */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  background: url("hero.jpg") center/cover no-repeat;
  opacity: .28;
  z-index: -2;
}

/* Luxury vignette for depth */
body::after{
  content:"";
  position: fixed;
  inset: 0;
  background: radial-gradient(1200px 900px at 50% 10%, rgba(0,0,0,0) 0%, rgba(0,0,0,.55) 70%, rgba(0,0,0,.72) 100%);
  z-index: -1;
  pointer-events: none;
}



.wrap{
  max-width: 860px;
  margin: 0 auto;
  padding: 28px 18px 44px;
}

/* =========================
   HERO BANNER + OVERLAY HEADER
   ========================= */

.hero{
  position: relative;
  margin-bottom: 18px;
  height: var(--heroH);
}



.hero-bg{
  z-index: 0;
  position:absolute;
  inset: 0;
  height: 100%;
  border-radius: var(--radius);
  overflow:hidden;
  background: #0f0f12;
  border: 1px solid var(--stroke);
}

.hero-bg::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg,
    rgba(10,10,12,.18) 0%,
    rgba(10,10,12,.82) 68%,
    rgba(10,10,12,1) 100%);
  z-index: 2;
}

.hero-bg img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  z-index: 1;
  filter: contrast(1.05) saturate(1.05);
}

/* =========================
   TOP HEADER BAR
   ========================= */

.top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 14px 16px;
  border:1px solid var(--stroke);
  background: rgba(23,23,27,.65);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.top-overlay{
  position: absolute;
  left: 14px;
  right: 14px;
  top: 14px;
  z-index: 3;
  background: rgba(23,23,27,.55);
  backdrop-filter: blur(12px);
}


.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width: 0;
}

/* square badge (replaces old GEEZ square) */
.mark{
  width:60px;
  height:60px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background:
    radial-gradient(70% 70% at 30% 30%, rgba(122,31,162,.35), transparent 60%),
    radial-gradient(70% 70% at 70% 70%, rgba(214,178,94,.18), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  display:grid;
  place-items:center;
  overflow:hidden;
}

/* BRANDWT inside the square */
.mark.mark-logo{
  background: rgba(18,18,20,.35);
}

.mark.mark-logo img{
  width: 36px;
  height: 36px;
  object-fit: contain;
  opacity: .95;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.45));
}

.titles{min-width:0}
.titles h1{
  margin:0;
  font-size: 28px;
  letter-spacing: .6px;
  line-height: 1.05;
}

.titles .sub{
  margin-top:6px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.25;
}

.pill{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(18,18,20,.7);
  color: rgba(255,255,255,.9);
  font-size: 12px;
  white-space: nowrap;
}

.dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(214,178,94,.12);
}

/* =========================
   GRID + CARDS
   ========================= */

.grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
}

.card{
  border:1px solid var(--stroke);
  background: rgba(23,23,27,.6);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.card .hd{
  padding: 14px 16px 10px;
  border-bottom:1px solid var(--stroke);
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 10px;
}

.card .hd h2{
  margin:0;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
}

.card .bd{padding: 14px 16px 16px}

.lead{
  margin:0;
  color: rgba(255,255,255,.9);
  font-size: 15px;
  line-height: 1.45;
}

.lead strong{color: var(--gold)}

.buttons{
  margin-top: 14px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

a.btn{
  text-decoration:none;
  color: rgba(255,255,255,.92);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}

a.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(214,178,94,.35);
  background: linear-gradient(180deg, rgba(122,31,162,.10), rgba(255,255,255,.02));
}

.btn .l{
  display:flex;
  flex-direction:column;
  gap: 2px;
  min-width:0;
}

.btn .t{
  font-weight: 700;
  letter-spacing: .2px;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}

.btn .d{
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}

.btn .r{
  flex: 0 0 auto;
  color: rgba(255,255,255,.55);
  font-weight: 700;
}

.mini{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 12px;
}

.chip{
  border:1px solid var(--stroke);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 12px;
  color: rgba(255,255,255,.86);
  background: rgba(18,18,20,.55);
}

.chip strong{color: var(--gold)}

.footer{
  margin-top: 16px;
  padding: 14px 16px;
  border-top: 1px solid var(--stroke);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  display:flex;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
}

.footer a{color: rgba(234,234,234,.92)}

/* =========================
   LINKS (no blue defaults)
   ========================= */

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

.mail-link{
  color: rgba(255,255,255,.92);
  font-weight: 700;
  letter-spacing: .02em;
}

.mail-link:hover{ color: var(--gold); }

.pill a.mail-link{ color: rgba(255,255,255,.92); }
.pill a.mail-link:hover{ color: var(--gold); }

/* =========================
   MOBILE
   ========================= */

@media (max-width: 760px){
  :root{ --heroH: 210px; }

  .grid{grid-template-columns: 1fr}
  .pill{display:none}

  .titles h1{ font-size: 24px; }

  .mark{ width:56px; height:56px; }
  .mark.mark-logo img{ width: 32px; height: 32px; }

  .top-overlay{ left: 10px; right: 10px; top: 10px; }
}
