:root{
  --bg:#0b0b0f; --muted:#9aa0aa; --text:#f3f5f7;
  --line:rgba(255,255,255,.08);
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius: 18px;
  --max: 1100px;
}
*{box-sizing:border-box}
body{
  margin:0; font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: radial-gradient(1200px 800px at 10% 0%, rgba(124,92,255,.25), transparent 55%),
              radial-gradient(1200px 800px at 90% 10%, rgba(56,189,248,.18), transparent 55%),
              var(--bg);
  color:var(--text);
}
a{color:inherit; text-decoration:none}
.wrap{max-width:var(--max); margin:0 auto; padding:28px 18px 70px;}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:8px 0;
  min-height:72px;
}

.brand{
  display:flex;
  align-items:center;
  line-height:0;
  font-weight:700;
  letter-spacing:.2px;
}

.site-logo{
  height:64px;
  width:auto;
  display:block;
  transform: scale(4.5);
  object-fit: contain;
  object-position: left center;
  margin-left:60px;
}

@media (max-width: 900px){
  .site-logo{ height:48px; }
}
@media (max-width: 600px){
  .site-logo{ height:40px; }
}
@media (max-width: 420px){
  .site-logo{ height:34px; }
}

.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px; border:1px solid var(--line); border-radius:999px;
  background: rgba(255,255,255,.02);
}
.pill small{color:var(--muted)}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px; border-radius:14px; border:1px solid var(--line);
  background: linear-gradient(135deg, rgba(124,92,255,.22), rgba(56,189,248,.14));
  box-shadow: 0 10px 30px rgba(124,92,255,.14);
  font-weight:650;
}
.btn:hover{transform: translateY(-1px)}
.btn-wine{ color:#FFFFFF; }

.grid{display:grid; gap:18px}
.card{
  border:1px solid var(--line); background: rgba(255,255,255,.03);
  border-radius:var(--radius); box-shadow: var(--shadow);
  overflow:hidden;
}

/* HERO responsive */
.hero{
  display:grid; grid-template-columns: 1.1fr .9fr; gap:18px; align-items:stretch;
  margin-top:6px;
}
@media (max-width: 920px){ .hero{grid-template-columns:1fr} }

.heroText{padding:26px 26px 24px}
.kicker{color:var(--muted); font-weight:600; letter-spacing:.2px}
h1{margin:10px 0 10px; font-size:40px; line-height:1.05}
@media (max-width: 480px){ h1{font-size:34px} }

.lead{color:#d6d9de; font-size:16px; line-height:1.6; margin:0 0 18px}
.ctaRow{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px}
.ghost{
  padding:12px 14px; border-radius:14px; border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  font-weight:650;
}

/* responsive image */
.heroImg{position:relative; min-height:360px; background: #0f0f16;}
@media (max-width: 920px){ .heroImg{min-height:320px} }
@media (max-width: 480px){ .heroImg{min-height:260px} }

.heroImg img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
  filter: saturate(1.02) contrast(1.03);
}

.badge{
  position:absolute; left:16px; bottom:16px;
  display:flex; gap:10px; align-items:center;
  padding:10px 12px; border-radius:14px;
  background: rgba(0,0,0,.45); border:1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
}
.badge b{font-size:14px}
.badge span{color:var(--muted); font-size:12px}

.section{margin-top:22px}
.section h2{margin:0 0 12px; font-size:18px}

.cards3{grid-template-columns: repeat(3, 1fr)}
@media (max-width: 920px){ .cards3{grid-template-columns:1fr} }

.stat{padding:18px}
.stat .n{font-size:28px; font-weight:800; letter-spacing:.2px}
.stat .l{color:var(--muted); margin-top:6px}

.twoCol{grid-template-columns: 1.1fr .9fr}
@media (max-width: 920px){ .twoCol{grid-template-columns:1fr} }

table{width:100%; border-collapse:separate; border-spacing:0; overflow:hidden; border-radius:16px; border:1px solid var(--line)}
th, td{padding:12px 12px; text-align:left; border-bottom:1px solid var(--line)}
th{background: rgba(255,255,255,.03); color:#e9ecf0; font-size:13px}
td{color:#d7dbe2}
tr:last-child td{border-bottom:none}
.muted{color:var(--muted)}
.note{font-size:12px; color:var(--muted); margin-top:10px; line-height:1.5}

.form{padding:18px}
label{display:block; font-size:13px; color:#dfe3ea; margin:10px 0 6px}
input, textarea{
  width:100%; padding:12px 12px; border-radius:14px; border:1px solid var(--line);
  background: rgba(0,0,0,.25); color:var(--text); outline:none;
}
textarea{min-height:110px; resize:vertical}
.row2{display:grid; grid-template-columns:1fr 1fr; gap:12px}
@media (max-width: 560px){ .row2{grid-template-columns:1fr} }
.submitRow{display:flex; gap:12px; align-items:center; justify-content:space-between; margin-top:14px; flex-wrap:wrap}
.mini{font-size:12px; color:var(--muted)}
footer{margin-top:26px; color:var(--muted); font-size:12px; display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap}

/* platform link */
.platform-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#f3f5f7;
  font-weight:650;
}
.platform-link:hover{ text-decoration: underline; }
.platform-icon{
  width:18px;
  height:18px;
  display:inline-block;
  flex:0 0 18px;
  opacity:.95;
}
.platform-link:hover .platform-icon{
  opacity:1;
  transform: translateY(-1px);
}

/* HERO GALLERY */
.heroGallery{ position:relative; overflow:hidden; }
.heroGallery .slides{ position:relative; width:100%; height:100%; min-height:inherit; }
.heroGallery .slide{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover; object-position:center;
  opacity:0; transition: opacity .35s ease;
  display:block;
}
.heroGallery .slide.is-active{ opacity:1; }

.heroGallery .nav{
  position:absolute; top:50%; transform: translateY(-50%);
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.35);
  color:#fff;
  width:42px; height:42px;
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  font-size:26px; line-height:1;
  cursor:pointer;
  opacity:0;
  transition: opacity .2s ease, transform .2s ease;
  backdrop-filter: blur(10px);
}
.heroGallery .nav.prev{ left:12px; }
.heroGallery .nav.next{ right:12px; }
.heroGallery:hover .nav{ opacity:1; }
.heroGallery .nav:hover{ transform: translateY(-50%) scale(1.03); }

.heroGallery .dots{
  position:absolute; left:50%; transform: translateX(-50%);
  bottom:12px;
  display:flex; gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
  opacity:0;
  transition: opacity .2s ease;
}
.heroGallery:hover .dots{ opacity:1; }
.heroGallery .dot{
  width:8px; height:8px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.18);
  cursor:pointer;
}
.heroGallery .dot.is-active{
  background: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.9);
}
@media (max-width: 920px){
  .heroGallery .nav,
  .heroGallery .dots{ opacity:1; }
}

/* WORD SPHERE */
.word-sphere{
  position: relative;
  width: 100%;
  height: 300px;
  margin-top: 10px;
  perspective: 1000px;
  overflow: hidden;
}
.word-sphere span{
  position: absolute;
  left: 50%;
  top: 50%;
  cursor: default;
  backdrop-filter: blur(8px);

  font-size: 14px;
  font-weight: 600;
  color: #f3f5f7;

  padding: 4px 8px;
  border-radius: 999px;

  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);

  white-space: nowrap;
  user-select: none;

  will-change: transform, opacity;
}
