/* ===============================
   Base theme (required)
   =============================== */

:root{
  --bg: #070a12;
  --bg2:#0b1020;
  --text:#e9f1ff;
  --muted: rgba(233,241,255,0.72);
  --neon:#00f7ff;
  --card: rgba(255,255,255,0.05);
  --border: rgba(255,255,255,0.14);
  --shadow: 0 10px 30px rgba(0,0,0,0.35);
  --radius: 14px;
}

*{ 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(0,247,255,0.10), transparent 55%),
    radial-gradient(900px 700px at 80% 30%, rgba(0,247,255,0.07), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

a{ color: var(--neon); text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7,10,18,0.68);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 14px 0;
}

.logo{
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text);
  text-decoration:none;
}

.menu{
  display:flex;
  align-items:center;
  gap: 14px;
}

.navlink{
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px;
}
.navlink:hover{
  color: var(--text);
  background: rgba(255,255,255,0.04);
  text-decoration:none;
}

.btn-neon{
  display:inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(0,247,255,0.40);
  background: rgba(0,247,255,0.08);
  color: var(--text);
  box-shadow: 0 0 16px rgba(0,247,255,0.12);
  transition: 0.2s ease;
}
.btn-neon:hover{
  transform: translateY(-1px);
  box-shadow: 0 0 22px rgba(0,247,255,0.20);
  text-decoration:none;
}

.section{ padding: 64px 0; }
.section.dark{
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero{ padding: 70px 0 50px; }
.hero-content{ text-align:center; }
.hero h1{
  margin: 14px 0 10px;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.03em;
}

/* Responsive basics */
@media (max-width: 900px){
  .cards{ grid-template-columns: 1fr; }
}

/* ClubLinkTag base UI stylesheet (restores missing foundations) */

:root{
  --bg: #070a12;
  --bg2:#0b1020;
  --card: rgba(255,255,255,0.05);
  --card2: rgba(255,255,255,0.03);
  --border: rgba(255,255,255,0.14);
  --text: #e9f1ff;
  --muted: rgba(233,241,255,0.70);
  --neon: #00f7ff;
  --danger: #ff3860;
  --shadow: 0 10px 30px rgba(0,0,0,0.35);
  --radius: 14px;
}

*{ 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(0,247,255,0.10), transparent 55%),
    radial-gradient(900px 700px at 80% 30%, rgba(0,247,255,0.07), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

a{ color: var(--neon); text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

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

/* Header / Nav */
.header{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(7,10,18,0.68);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 14px 0;
}
.logo{
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text);
  text-decoration:none;
}
.menu-toggle{
  display:none;
  border:1px solid rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-radius: 10px;
  padding: 8px 12px;
  cursor:pointer;
}
.menu{
  display:flex;
  align-items:center;
  gap: 14px;
}
.navlink{
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px;
}
.navlink:hover{
  color: var(--text);
  background: rgba(255,255,255,0.04);
  text-decoration:none;
}
.navlink.active{
  color: var(--neon);
  background: rgba(0,247,255,0.06);
  border: 1px solid rgba(0,247,255,0.20);
}
.nav-user a{ color: var(--text); }

/* Buttons */
.btn-neon{
  display:inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(0,247,255,0.40);
  background: rgba(0,247,255,0.08);
  color: var(--text);
  box-shadow: 0 0 16px rgba(0,247,255,0.12);
  transition: 0.2s ease;
}
.btn-neon:hover{
  transform: translateY(-1px);
  box-shadow: 0 0 22px rgba(0,247,255,0.20);
  text-decoration:none;
}
.btn-neon.small{ padding: 9px 12px; border-radius: 10px; font-size: 12px; }

.btn-ghost{
  display:inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  transition: 0.2s ease;
}
.btn-ghost:hover{
  border-color: rgba(0,247,255,0.55);
  box-shadow: 0 0 14px rgba(0,247,255,0.15);
  text-decoration:none;
}
.btn-ghost.small{ padding: 9px 12px; border-radius: 10px; font-size: 12px; }

/* Sections / layout */
.section{ padding: 64px 0; }
.section.dark{
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.section-title{
  margin: 0 0 10px;
  font-size: 32px;
  letter-spacing: -0.02em;
  text-align:center;
}
.section-subtitle{
  margin: 0 auto 26px;
  max-width: 820px;
  text-align:center;
  color: var(--muted);
}

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.card h3{ margin: 0 0 8px; }
.card p{ margin: 0 0 10px; }
.card.highlight{
  border-color: rgba(0,247,255,0.35);
  background: rgba(0,247,255,0.06);
}

/* Hero */
.hero{
  padding: 70px 0 50px;
}
.hero-content{
  text-align:center;
}
.hero h1{
  margin: 14px 0 10px;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.03em;
}
.lead{
  max-width: 820px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}

/* Lists / split */
.feature-list{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.feature-list li{ margin: 8px 0; }

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Callouts */
.callout{
  margin-top: 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 18px;
}
.callout-title{
  font-weight: 700;
  margin-bottom: 8px;
}

/* Footer */
.footer{
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.18);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 16px;
}
.footer h4{ margin: 0 0 10px; }
.footer a{
  display:block;
  margin: 8px 0;
  color: var(--muted);
}
.footer a:hover{ color: var(--text); text-decoration:none; }

.badge-soon{
  display:inline-block;
  margin-top: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,247,255,0.35);
  color: var(--neon);
  background: rgba(0,247,255,0.08);
  font-size: 12px;
}

/* Polished homepage add-ons (your existing chunk, kept) */
.hero-polished { position: relative; overflow: hidden; }

.hero-polished::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 30%, rgba(0,247,255,0.12), transparent 40%),
              radial-gradient(circle at 70% 60%, rgba(0,247,255,0.08), transparent 45%);
  filter: blur(10px);
  animation: floatGlow 10s ease-in-out infinite;
  pointer-events: none;
}

@keyframes floatGlow {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(20px, -10px, 0) scale(1.03); }
}

.pill-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.pill {
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
}

.pill-soon {
  border-color: rgba(0,247,255,0.6);
  color: var(--neon);
}

.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 22px;
}

.hero-card {
  max-width: 520px;
  margin: 35px auto 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 18px 18px;
  backdrop-filter: blur(10px);
}

.hero-card-title {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.status-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
}

.dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0,247,255,0.9);
  box-shadow: 0 0 14px rgba(0,247,255,0.35);
}

.logo-strip{
  margin-top: 22px;
  display:flex;
  gap: 14px;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
}
.logo-link{
  color: var(--muted);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  padding: 8px 12px;
  border-radius: 999px;
}
.logo-link:hover{ color: var(--text); text-decoration:none; border-color: rgba(0,247,255,0.35); }

/* Responsive */
@media (max-width: 900px){
  .cards{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .split{ grid-template-columns: 1fr; }
}
@media (max-width: 720px){
  .menu-toggle{ display:inline-block; }
  .menu{
    display:none;
    width: 100%;
    margin-top: 12px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(0,0,0,0.28);
    flex-direction: column;
    align-items: flex-start;
  }
  .menu.active{ display:flex; }
  .nav{ flex-wrap: wrap; }
}
.footer-payments-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  opacity: 0.85;
}

.footer-payments-icons img {
  height: 22px;
  width: auto;
  transition: 0.2s ease;
}

.footer-payments-icons img:hover {
  opacity: 0.7;
}
/* Footer: subtle “payments accepted” SaaS style */
.footer-payments{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  align-items:center;
  margin-top:10px;
  opacity:.85;
}

.footer-payments .pay-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  height:16px;              /* requested size */
  padding:0 6px;

  font-size:10px;
  line-height:1;
  font-weight:700;
  letter-spacing:.6px;
  text-transform:uppercase;

  border:1px solid rgba(255,255,255,.16);
  border-radius:999px;

  background:rgba(255,255,255,.04);
  color:rgba(255,255,255,.72);

  user-select:none;
}

.footer-payments .pay-pill:hover{
  color:rgba(255,255,255,.92);
  border-color:rgba(255,255,255,.28);
  background:rgba(255,255,255,.06);
}

/* blog buttons CTA */

.wall-cta {
  margin: 60px 0;
  padding: 60px 20px;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  text-align: center;
  border-radius: 16px;
  color: #fff;
}

.wall-cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

.wall-cta h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.wall-cta p {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 30px;
}

.wall-cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 26px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  display: inline-block;
}

.btn-demo {
  background: #ffffff;
  color: #111;
}

.btn-demo:hover {
  background: #e6e6e6;
}

.btn-free {
  background: #ffcc00;
  color: #111;
}

.btn-free:hover {
  background: #e6b800;
}

/* === Base Layout === */

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.muted {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
}

code {
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  font-family: monospace;
}

/* === Buttons === */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 14px;
  border-radius: 10px;
  color: white;
  text-decoration: none;
  cursor: pointer;
  transition: 0.15s ease;
}

.btn:hover {
  background: #2a2a2a;
}

.btn.active {
  background: #333;
  border-color: #555;
}

/* === Inputs === */

.input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #0e0e0e;
  color: white;
  font-size: 14px;
  margin-top: 4px;
}

.input:focus {
  outline: none;
  border-color: #666;
}

/* === Grid helper === */

.grid {
  display: grid;
  gap: 12px;
}

/* === Headings === */

h2 {
  margin-bottom: 4px;
}

h3 {
  margin-bottom: 8px;
}