:root {
  --black: #1a1a1a;
  --sage: #8a9e85;
  --purple: #6b5fb5;
  --white: #ffffff;
  --lime: #7fff00;
  --teal: #00e5c8;
  --yellow: #f5c842;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --nav-h: 64px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--black); color: var(--white); overflow-x: hidden; }

nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h); background: var(--black); display: flex; align-items: center; justify-content: space-between; padding: 0 40px; }
.nav-logo { font-family: var(--font-body); font-weight: 500; font-size: 14px; letter-spacing: 0.15em; color: var(--white); text-decoration: none; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; color: var(--white); text-decoration: none; opacity: 0.85; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; }
.nav-cta { border: 1.5px solid var(--white) !important; border-radius: 999px; padding: 8px 20px !important; opacity: 1 !important; }
.nav-cta:hover { background: var(--white) !important; color: var(--black) !important; }
.hamburger { display: none; background: none; border: none; color: var(--white); font-size: 22px; cursor: pointer; }

.hero { position: relative; min-height: 100vh; background: #a8b5a0; display: flex; align-items: center; justify-content: center; overflow: hidden; padding-top: var(--nav-h); }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 40px 20px; display: flex; flex-direction: column; align-items: center; }
.hero-logo { width: min(480px, 72vw); height: auto; display: block; margin: 0 auto 16px auto; }
.hero-sub { font-size: clamp(16px, 2vw, 20px); font-weight: 500; color: #1a1a1a; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-outline-dark { display: inline-block; padding: 12px 28px; border: 1.5px solid #1a1a1a; border-radius: 999px; color: #1a1a1a; text-decoration: none; font-size: 15px; font-weight: 500; transition: background 0.2s, color 0.2s; }
.btn-outline-dark:hover { background: #1a1a1a; color: var(--white); }

.intro-band { position: relative; background: var(--black); padding: 80px 60px; overflow: hidden; }
.intro-band h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 52px); font-weight: 900; color: var(--white); max-width: 820px; line-height: 1.15; }
.intro-blob { position: absolute; right: 60px; top: 50%; transform: translateY(-50%); width: 180px; height: 220px; background: linear-gradient(160deg, #6b78d4, #00e5c8); border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }

.approach { background: var(--sage); padding: 100px 60px; }
.section-label { font-size: 13px; font-weight: 500; letter-spacing: 0.08em; color: rgba(0,0,0,0.55); margin-bottom: 20px; text-align: center; }
.section-label-light { font-size: 13px; font-weight: 500; letter-spacing: 0.08em; color: rgba(255,255,255,0.7); margin-bottom: 20px; text-align: center; }
.section-title { font-family: var(--font-display); font-size: clamp(28px, 4vw, 52px); font-weight: 900; color: var(--white); text-align: center; line-height: 1.15; margin-bottom: 72px; }
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1200px; margin: 0 auto; }
.approach-card { padding: 0 48px 0 0; border-right: 1px solid rgba(255,255,255,0.2); margin-right: 48px; }
.approach-card:first-child { padding-left: 0; }
.approach-card:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.approach-tag { font-family: var(--font-display); font-size: 40px; font-weight: 900; color: var(--white); margin-bottom: 12px; }
.approach-sub { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.approach-card p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.85); }
.examples-label { font-size: 13px !important; font-weight: 500 !important; margin-top: 20px !important; margin-bottom: 8px !important; color: rgba(255,255,255,0.7) !important; }
.approach-card ul { list-style: disc; padding-left: 18px; }
.approach-card ul li { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.85); }

.benefits { background: var(--purple); padding: 100px 60px; text-align: center; }
.benefits-title { font-family: var(--font-display); font-size: clamp(28px, 4vw, 52px); font-weight: 900; color: var(--white); line-height: 1.2; margin-bottom: 64px; }
.accent-yellow { color: var(--yellow); }
.accent-teal { color: var(--teal); }
.bubbles-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; max-width: 900px; margin: 0 auto; }
.bubble { border-radius: 50%; width: 155px; height: 155px; display: flex; align-items: center; justify-content: center; text-align: center; font-size: 13px; line-height: 1.4; padding: 20px; transition: transform 0.2s; }
.bubble:hover { transform: scale(1.05); }
.bubble-white { border: 1.5px solid var(--white); color: var(--white); }
.bubble-yellow { border: 1.5px solid var(--yellow); color: var(--yellow); }
.bubble-teal { border: 1.5px solid var(--teal); color: var(--teal); }

.people-section { background: var(--black); }
.people-hero { position: relative; background: var(--black); padding: 120px 60px 80px; overflow: hidden; min-height: 55vh; display: flex; align-items: center; }
.people-blob { position: absolute; pointer-events: none; }
.people-blob-1 { width: 300px; height: 380px; background: radial-gradient(circle at 50% 40%, #c850ff, #7b2fff); border-radius: 45% 55% 40% 60% / 55% 45% 55% 45%; top: -20px; right: 32%; opacity: 0.9; filter: blur(1px); animation: float 9s ease-in-out infinite; }
.people-blob-2 { width: 340px; height: 400px; background: radial-gradient(circle at 50% 50%, #ff4d8f, #ff8c00); border-radius: 55% 45% 60% 40% / 45% 55% 45% 55%; top: -10px; right: 8%; opacity: 0.9; filter: blur(1px); animation: float 11s ease-in-out infinite 1s; }
.people-title { font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 48px); font-weight: 900; color: var(--white); line-height: 1.2; max-width: 720px; position: relative; z-index: 2; }
.people-cards { background: #3d3d52; padding: 60px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.person-card { background: var(--white); border-radius: 20px; padding: 32px; display: flex; flex-direction: column; gap: 8px; }
.person-card h3 { font-size: 18px; font-weight: 700; color: #1a1a1a; }
.person-email { font-size: 13px; color: #999; text-decoration: none; transition: opacity 0.2s; }
.person-email:hover { opacity: 0.7; }
.person-card p { font-size: 14px; line-height: 1.75; color: #555; margin-top: 8px; }

.planet-section { position: relative; background: #6b35c8; padding: 120px 60px; text-align: center; overflow: hidden; min-height: 80vh; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.planet-blob { position: absolute; pointer-events: none; }
.planet-blob-1 { width: 400px; height: 500px; background: radial-gradient(circle at 50% 50%, #ff6b9d, #ff4500); border-radius: 55% 45% 60% 40% / 45% 55% 45% 55%; top: -60px; right: 5%; opacity: 0.85; filter: blur(2px); animation: float 10s ease-in-out infinite; }
.planet-blob-2 { width: 280px; height: 360px; background: radial-gradient(circle at 50% 50%, #4da6ff, #7b5ea7); border-radius: 40% 60% 50% 50% / 55% 45% 55% 45%; top: 20px; left: 2%; opacity: 0.8; filter: blur(2px); animation: float 12s ease-in-out infinite 2s; }
.planet-section .section-label { color: rgba(255,255,255,0.8); }
.planet-section .section-title { position: relative; z-index: 2; }
.planet-content { max-width: 680px; position: relative; z-index: 2; }
.planet-lead { font-size: clamp(16px, 2vw, 20px); line-height: 1.7; color: var(--white); margin-bottom: 40px; }
.planet-highlights { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.planet-highlight { font-size: 16px; font-weight: 700; color: var(--white); line-height: 1.5; }
.planet-cta-text { font-size: 18px; color: rgba(255,255,255,0.85); }

.contact { background: var(--sage); padding: 120px 60px; text-align: center; }
.contact h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 52px); font-weight: 900; color: var(--white); line-height: 1.2; margin-bottom: 60px; }
.contact-block { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.contact-label { font-family: var(--font-body); font-size: 28px; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; }
.contact-item { font-size: 18px; color: #1a1a1a; text-decoration: none; display: flex; align-items: center; gap: 10px; transition: opacity 0.2s; }
.contact-item:hover { opacity: 0.7; }
.contact-icon { font-size: 18px; opacity: 0.7; }

footer { background: var(--black); padding: 20px 40px; }
footer p { font-size: 12px; color: rgba(255,255,255,0.4); }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content { animation: fadeUp 0.9s ease both; }

@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--black); padding: 32px 24px; gap: 24px; z-index: 99; }
  .hamburger { display: block; }
  .intro-band { padding: 60px 24px; }
  .intro-blob { display: none; }
  .approach { padding: 60px 24px; }
  .approach-grid { grid-template-columns: 1fr; gap: 48px; }
  .approach-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding: 0 0 48px 0 !important; margin-right: 0 !important; }
  .approach-card:last-child { border-bottom: none; padding-bottom: 0 !important; }
  .benefits { padding: 60px 24px; }
  .bubble { width: 130px; height: 130px; font-size: 12px; }
  .people-hero { padding: 100px 24px 60px; }
  .people-blob-1, .people-blob-2 { opacity: 0.4; }
  .people-cards { padding: 40px 24px; grid-template-columns: 1fr; }
  .planet-section { padding: 80px 24px; }
  .contact { padding: 80px 24px; }
}
