/* ═══════ LOP SHARED STYLES ═══════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #050505;
  --green: #2a7a5e;
  --green-bright: #3ecf8e;
  --green-glow: rgba(62, 207, 142, 0.15);
  --glass-bg: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
  --glass-border: rgba(255,255,255,0.08);
  --text-100: rgba(255,255,255,1);
  --text-70: rgba(255,255,255,0.7);
  --text-50: rgba(255,255,255,0.5);
  --text-40: rgba(255,255,255,0.4);
  --text-25: rgba(255,255,255,0.25);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════ NAVBAR ═══════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5,5,5,0.88);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom-color: rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 22px; font-weight: 800; letter-spacing: -0.02em;
}
.nav-logo-bars { display: flex; gap: 2px; align-items: flex-end; }
.nav-logo-bar {
  width: 5px; border-radius: 2px; background: var(--green);
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-link {
  font-size: 14px; font-weight: 500; color: var(--text-50);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--text-100); }
.nav-link.active { color: var(--text-100); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 110;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-70);
  border-radius: 1px;
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(5,5,5,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-70);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--text-100); }

/* ═══════ BUTTONS ═══════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 999px;
  background: var(--green); color: #fff;
  font-size: 14px; font-weight: 600;
  border: none; cursor: pointer;
  transition: all 0.3s ease;
  position: relative; overflow: hidden;
  font-family: inherit;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  border-radius: 999px;
}
.btn-primary:hover { background: #34956f; transform: scale(1.03); }
.btn-primary.large { padding: 16px 36px; font-size: 16px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-70); font-size: 14px; font-weight: 500;
  cursor: pointer; transition: all 0.3s ease;
  font-family: inherit;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  color: var(--text-100);
}
.btn-ghost.large { padding: 16px 36px; font-size: 16px; }

.btn-login {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 22px; border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-70); font-size: 14px; font-weight: 500;
  cursor: pointer; transition: all 0.3s ease;
  font-family: inherit;
}
.btn-login:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.25);
  color: var(--text-100);
}

/* ═══════ SECTIONS ═══════ */
.section {
  padding: clamp(64px, 8vw, 128px) clamp(20px, 4vw, 48px);
}
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 999px;
  background: rgba(42,122,94,0.12);
  border: 1px solid rgba(42,122,94,0.25);
  margin-bottom: 20px;
}
.section-label-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-bright);
}
.section-label-text {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green-bright);
}
.section-title {
  font-size: clamp(28px, 3.5vw, 54px);
  font-weight: 800; letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: clamp(14px, 1.1vw, 17px);
  color: var(--text-50); margin-top: 16px;
  max-width: 520px;
}
.section-header-center {
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}

/* ═══════ GLASS CARD ═══════ */
.glass-card {
  position: relative; overflow: hidden;
  border-radius: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.glass-card:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 100%);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}
.glass-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 75%; height: 50%; pointer-events: none;
  background: radial-gradient(ellipse at 20% 0%, rgba(255,255,255,0.07) 0%, transparent 70%);
}

/* ═══════ FEATURE CARDS ═══════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.feature-card { padding: clamp(28px, 3vw, 40px); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(42,122,94,0.15);
  border: 1px solid rgba(42,122,94,0.25);
  margin-bottom: 20px;
}
.feature-icon svg { width: 24px; height: 24px; stroke: var(--green-bright); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature-title {
  font-size: 19px; font-weight: 700; margin-bottom: 12px;
}
.feature-desc {
  font-size: 14px; line-height: 1.7; color: var(--text-50);
}

/* ═══════ CTA SECTION ═══════ */
.cta-section {
  position: relative; overflow: hidden;
  text-align: center;
}
.cta-glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(42,122,94,0.18) 0%, transparent 70%);
  filter: blur(100px); pointer-events: none;
}

/* ═══════ FOOTER ═══════ */
.footer {
  padding: 48px clamp(20px, 4vw, 48px) 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--text-40);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-50);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-40);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-100); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 12px; color: var(--text-25); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  font-size: 12px;
  color: var(--text-25);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--text-70); }

/* ═══════ PAGE HERO (subpages) ═══════ */
.page-hero {
  position: relative;
  padding: 160px clamp(20px, 4vw, 48px) 80px;
  text-align: center;
  overflow: hidden;
}
.page-hero-glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(circle, rgba(42,122,94,0.12) 0%, transparent 70%);
  filter: blur(80px); pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}
.page-hero p {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--text-50);
  max-width: 600px;
  margin: 24px auto 0;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, var(--green-bright) 60%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-actions .btn-login,
  .nav-actions .btn-primary { display: none; }
  .nav-hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}
