/* The UGC Club – Premium MVP Styles */

:root{
  --bg: #0f0f0f;
  --panel: #121212;
  --text: #ffffff;
  --muted: #d1d1d1;
  --border: #222;
  --border-soft: #2a2a2a;

  /* Accent (subtle). Later we can align with brand colors. */
  --accent: #ffffff;
  --accent-soft: rgba(255,255,255,0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: 'Inder', sans-serif;
  background: radial-gradient(1200px 800px at 20% -10%, rgba(255,255,255,0.06), transparent 55%),
              radial-gradient(900px 600px at 80% 0%, rgba(255,255,255,0.04), transparent 60%),
              var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; }

.container{
  max-width: 1120px;
  margin: 0 auto;
  padding: 84px 24px;
}

.topbar{
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(15,15,15,0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.topbar-inner{
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark{
  width: 28px;
  height: 28px;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

.brand-name{
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 14px;
  color: rgba(255,255,255,0.92);
}

.top-actions{
  display: flex;
  align-items: center;
  gap: 10px;
}

.small-link{
  font-size: 13px;
  color: rgba(255,255,255,0.70);
  text-decoration: none;
  border: 1px solid transparent;
  padding: 8px 10px;
  border-radius: 10px;
}

.small-link:hover{
  border-color: var(--border-soft);
  color: rgba(255,255,255,0.92);
}

.hero{
  padding-top: 104px;
  padding-bottom: 96px;
}

.badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 26px;
  background: rgba(255,255,255,0.03);
}

.badge-dot{
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
}

h1,h2,h3{ margin: 0 0 16px 0; font-weight: 700; letter-spacing: -0.03em; }
h1{ font-size: 52px; line-height: 1.08; }
h2{ font-size: 34px; margin-top: 76px; }
h3{ font-size: 20px; }

.lead{
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 18px 0;
  max-width: 780px;
}

.slogan{
  font-size: 18px;
  color: rgba(255,255,255,0.92);
  margin: 0 0 18px 0;
}

.slogan strong{
  font-weight: 700;
}

.accent-line{
  width: 92px;
  height: 2px;
  background: var(--accent);
  opacity: 0.8;
  margin: 26px 0 34px 0;
}

.cta-row{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--accent);
  color: #000;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 650;
  border: 1px solid rgba(255,255,255,0.0);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.cta:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.35);
}

.cta.secondary{
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.92);
  border: 1px solid var(--border-soft);
  box-shadow: none;
}

.cta.secondary:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.06);
}

.section{
  border-top: 1px solid var(--border);
}

.grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.card{
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  min-height: 140px;
}

.card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.18);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}

.card p{
  margin: 10px 0 0 0;
  color: rgba(255,255,255,0.70);
  font-size: 16px;
}

.panel{
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 26px;
  background: rgba(255,255,255,0.02);
}

/* ===============================
   WHO IT'S FOR — CLEAN LAYOUT
================================ */

.container.compact-section{
  padding-top: 48px;
  padding-bottom: 48px;
}

.container.compact-section h2{
  margin-top: 0;
  margin-bottom: 48px;
}

/* Grid */
.split.split-qualify{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

/* Left text */
.qualify-list-large{
  list-style: none;
  padding: 0;
  margin: 0;
}

.qualify-list-large li{
  position: relative;
  padding-left: 40px;
  margin-bottom: 28px;
  font-size: 1.15rem;
  line-height: 1.55;
  color: #cfcfcf;
}

.qualify-list-large li strong{
  display: block;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.qualify-list-large li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #27ae60;
}

/* Right card */
.panel.best-fit{
  background-color: #050505;
  border: 1px solid #2a2a2a;
  border-radius: 18px;
  padding: 36px 40px;
}

.panel.best-fit h3{
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.3rem;
  color: #ffffff;
}

.panel.best-fit ul{
  margin: 0;
  padding-left: 20px;
}

.panel.best-fit li{
  margin-bottom: 10px;
  color: #bdbdbd;
}

/* Footer */
footer{
  border-top: 1px solid var(--border);
  padding: 44px 24px;
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

footer a{
  color: rgba(255,255,255,0.62);
  text-decoration: none;
}

footer a:hover{
  color: rgba(255,255,255,0.9);
}

/* Responsive */
@media (max-width: 900px){
  .split.split-qualify{
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 820px){
  h1{ font-size: 40px; }
  .container{ padding: 70px 18px; }
  .topbar-inner{ padding: 12px 18px; }
}