/* VicSisa.co shared site system */
:root {
  --bg: #0B0B0C;
  --bg-2: #111827;
  --bg-3: #161B22;
  --blue: #2563EB;
  --blue-dark: #1D4ED8;
  --green: #16A34A;
  --green-light: #22C55E;
  --gold: #D4AF37;
  --gold-dim: #B88917;
  --text: #F9FAFB;
  --text-muted: #A1A1AA;
  --border: #2A2A2E;
  --radius: 8px;
  --max-w: 1160px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --sp-1: 32px;
  --sp-2: 56px;
  --sp-3: 80px;
  --sp-4: 112px;
  --sp-5: 160px;
  --bp-md: 768px;
  --bp-lg: 1024px;
  --border-2: #34343A;
  --red: #EF4444;
  --muted: var(--text-muted);
  --panel: var(--bg-2);
  --panel-2: var(--bg-3);
  --good: var(--green-light);
  --gold-soft: rgba(212, 175, 55, 0.16);
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}

section[id],
main[id],
div[id] {
  scroll-margin-top: 120px;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--sp-4) 0;
}

.section-sm {
  padding: var(--sp-2) 0;
}

.section-alt {
  background: var(--bg-2);
}

.section-label,
.eyebrow {
  color: var(--gold);
}

.text-gold,
.gold {
  color: var(--gold);
}

.text-blue {
  color: var(--blue);
}

.text-green {
  color: var(--green);
}

.divider {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 0;
}

.btn,
.btn-primary,
.btn-submit,
.submit-btn,
.cta-btn,
.featured-cta {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  padding: 12px 28px;
  border: 0;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn:hover,
.btn-primary:hover,
.btn-submit:hover,
.submit-btn:hover,
.cta-btn:hover,
.featured-cta:hover {
  transform: translateY(-1px);
}

.btn-gold,
.btn-primary,
.btn-submit,
.submit-btn,
.cta-btn,
.featured-cta {
  background: var(--gold);
  color: #0a0a0a;
}

.btn-gold:hover,
.btn-primary:hover,
.btn-submit:hover,
.submit-btn:hover,
.cta-btn:hover,
.featured-cta:hover {
  background: var(--gold-dim);
  color: #0a0a0a;
}

.btn-blue {
  background: var(--blue);
  color: #ffffff;
}

.btn-blue:hover {
  background: var(--blue-dark);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: #ffffff;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 16px;
}

.site-header,
.checkout-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,11,12,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.nav-inner,
.checkout-nav-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.checkout-nav-inner {
  min-height: 64px;
}

.nav-logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--gold);
  white-space: nowrap;
}

.nav-logo span {
  color: var(--text-muted);
  font-weight: 400;
}

.nav-links,
.nav-user {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a,
.nav-back {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s;
}

.nav-links a:hover,
.nav-links a.active,
.nav-back:hover {
  color: var(--blue);
}

.nav-logout {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 12px;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

.nav-logout:hover {
  color: var(--text);
  border-color: var(--text-muted);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 20px;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  padding: 12px 0;
  min-height: 44px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.nav-mobile a:last-child {
  border-bottom: 0;
}

.nav-mobile .btn {
  width: 100%;
  margin-top: 14px;
}

.site-footer,
.simple-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: var(--sp-2) 0 48px;
}

.footer-brand-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-tagline {
  max-width: 260px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.footer-col h4 {
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a,
.footer-bottom a,
.simple-footer a {
  color: var(--text-muted);
  transition: color 0.15s;
}

.footer-col a:hover,
.footer-bottom a:hover,
.simple-footer a:hover {
  color: var(--text);
}

.footer-bottom,
.simple-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 24px 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-brand {
  color: var(--gold);
  font-size: 16px;
  font-weight: 800;
}

.footer-nav,
.footer-links,
.footer-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav a,
.footer-links a,
.footer-row a {
  color: var(--text-muted);
  font-size: 13px;
}

.footer-nav a:hover,
.footer-links a:hover,
.footer-row a:hover {
  color: var(--text);
}

.footer-copy {
  color: var(--text-muted);
  font-size: 12px;
}

.footer-bottom p,
.simple-footer p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
}

.pricing-card,
.cred-item,
.cta-panel-inner,
.start-here-card {
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.card-link,
.fc-link,
.read-link,
.post-card .read-link {
  display: inline-block;
  padding: 10px 0;
}

input,
textarea,
select {
  font-family: var(--font);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.25);
}

@media (max-width: 768px) {
  .nav-links,
  .nav-user,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .section {
    padding: var(--sp-3) 0;
  }
}

@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 24px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom,
  .simple-footer .container {
    align-items: flex-start;
    flex-direction: column;
  }
}
