:root {
  --green: #00c853;
  --green-dark: #009624;
  --green-light: #e8f5e9;
  --white: #ffffff;
  --text: #111111;
  --text-soft: #666666;
  --border: rgba(17, 17, 17, 0.08);
  --panel: rgba(255, 255, 255, 0.82);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 18px 44px rgba(0, 200, 83, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1340px;
  --yt-brand: #ff0000;
  --yt-brand-soft: rgba(255, 0, 0, 0.1);
  --ig-brand: #d62976;
  --ig-brand-soft: rgba(214, 41, 118, 0.1);
  --live-brand: #9b51e0;
  --live-brand-soft: rgba(155, 81, 224, 0.1);
  --custom-brand: #111111;
  --custom-brand-soft: rgba(17, 17, 17, 0.05);
  --cursor-color: #00c853;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(0, 200, 83, 0.18), transparent 32%),
    linear-gradient(180deg, #fbfffc 0%, #f4fbf6 42%, #ffffff 100%);
  overflow-x: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  min-height: 100vh;
}

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.ambient-one {
  top: 100px;
  right: -100px;
  width: 320px;
  height: 320px;
  background: rgba(0, 200, 83, 0.18);
}

.ambient-two {
  bottom: 10%;
  left: -120px;
  width: 360px;
  height: 360px;
  background: rgba(0, 150, 36, 0.12);
}

.grid-overlay {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(0, 150, 36, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 150, 36, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.7), transparent 90%);
  pointer-events: none;
  z-index: 0;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 20px 0;
}

.navbar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease, transform 220ms ease;
  border: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(17, 17, 17, 0.08);
  border-color: rgba(17, 17, 17, 0.06);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-badge {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(0, 200, 83, 0.2);
}

.brand-badge img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand-copy {
  display: grid;
}

.brand-copy strong {
  font-size: 1.5rem;
}

.brand-copy span {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.nav-right-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.nav-menu a {
  font-size: 0.95rem;
  color: var(--text-soft);
  transition: color 180ms ease, transform 180ms ease;
  position: relative;
}

.nav-menu a:hover, .nav-menu a.active-section {
  color: var(--text);
  transform: translateY(-1px);
}
.nav-menu a.active-section {
  font-weight: 700;
  color: var(--green);
}

.nav-cta {
  margin-left: 8px;
  color: var(--white) !important;
}

.burger-toggle {
  display: inline-flex; /* Visible on desktop */
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 12px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.82);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.burger-toggle:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.burger-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: all 0.3s ease;
}

/* Global Sidebar Styles */
.global-sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

body.sidebar-open .global-sidebar-overlay {
  opacity: 1;
  visibility: visible;
}

.global-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 80vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  z-index: 9999;
  transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

body.sidebar-open .global-sidebar {
  right: 0;
}

body.sidebar-open {
  overflow: hidden;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.sidebar-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}

.sidebar-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-soft);
  cursor: pointer;
  transition: color 0.2s ease;
}

.sidebar-close:hover {
  color: var(--text);
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  padding: 24px 30px;
  gap: 10px;
}

.sidebar-nav a {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-soft);
  padding: 12px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
  transition: color 0.2s ease, transform 0.2s ease;
}

.sidebar-nav a:hover, .sidebar-nav a.active-page {
  color: var(--text);
  transform: translateX(6px);
}

.sidebar-nav a.active-page {
  color: var(--green);
}

