/* ============================================================
   Amaatra's Nature's Village — CSS
   Based on Samrajya Ayodhya structure
   Color palette: Forest green + earthy amber (not saffron)
   ============================================================ */

:root {
  --white: #ffffff;
  --black: #000000;
  --gray-100: #f5f5f2;
  --gray-200: #e8e8e3;
  --gray-400: #868680;
  --gray-600: #6e6e68;
  --gray-800: #1d1d18;

  /* Nature palette */
  --forest: #2D6A4F;
  --forest-dark: #1B4332;
  --forest-glow: rgba(45,106,79,0.35);
  --forest-light: #52B788;
  --sage: #74C69D;
  --gold: #C8963E;
  --gold-light: #F0DEB4;
  --earth: #8B6347;
  --cream: #F8F3E8;

  --radius: 18px;
  --radius-sm: 12px;
  --transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}
section[id], .dd[id] { scroll-margin-top: 92px; }
img { max-width: 100%; height: auto; display: block; filter: grayscale(100%); }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ========== NAV ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10, 18, 6, 0.7);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: none;
  border-bottom: 1px solid rgba(45, 106, 79, 0.2);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: all var(--transition);
}
.nav::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(45,106,79,0) 20%, rgba(45,106,79,0.55) 50%, rgba(45,106,79,0) 80%, transparent 100%);
  background-size: 200% 100%;
  animation: navStripe 9s ease-in-out infinite;
  pointer-events: none;
}
.nav.scrolled {
  background: rgba(10, 18, 6, 0.92) !important;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5) !important;
}
@keyframes navStripe {
  0%, 100% { background-position: -100% center; opacity: 0.4; }
  50% { background-position: 100% center; opacity: 1; }
}
@keyframes floatSubtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px; height: 64px;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; column-gap: 20px;
}
.nav-brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: #fff; flex-shrink: 0;
}
.nav-brand-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--forest-light);
  box-shadow: 0 0 14px rgba(82,183,136,0.85), 0 0 28px rgba(82,183,136,0.4);
  animation: brandDotBreath 2.2s ease-in-out infinite; flex-shrink: 0;
}
@keyframes brandDotBreath {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.82); }
}
.nav-brand-text {
  font-size: 14px; font-weight: 600; letter-spacing: -0.2px;
  color: #fff; white-space: nowrap; line-height: 1;
}
.nav-ask {
  display: inline-flex; align-items: center; gap: 10px; padding: 0 10px 0 8px;
  height: 40px; max-width: 500px; width: 100%; justify-self: center;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; cursor: pointer; font-family: inherit; color: #fff;
  transition: all 0.25s ease; position: relative; overflow: hidden;
}
.nav-ask:hover { background: rgba(255,255,255,0.07); border-color: rgba(82,183,136,0.35); box-shadow: 0 0 0 4px rgba(82,183,136,0.06); }
.nav-ask-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(82,183,136,0.15); color: var(--forest-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-ask:hover .nav-ask-icon { background: rgba(82,183,136,0.25); }
.nav-ask-label { font-size: 13px; font-weight: 600; color: #fff; letter-spacing: -0.1px; flex-shrink: 0; line-height: 1; }
.nav-ask-divider { width: 1px; height: 18px; background: rgba(255,255,255,0.15); flex-shrink: 0; }
.nav-ask-placeholder {
  font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.55);
  flex: 1; min-width: 0; text-align: left; overflow: hidden;
  text-overflow: ellipsis; white-space: nowrap; line-height: 1;
}
.nav-ask-placeholder::after {
  content: '▎'; margin-left: 1px; color: var(--forest-light);
  animation: askCaretBlink 1.1s steps(2) infinite; font-weight: 400;
}
@keyframes askCaretBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.nav-ask-chevron { color: rgba(255,255,255,0.4); display: flex; align-items: center; flex-shrink: 0; transition: transform 0.25s ease, color 0.25s ease; }
.nav-ask:hover .nav-ask-chevron { color: var(--forest-light); transform: translateY(1px); }
.nav-call {
  display: inline-flex; align-items: center; gap: 7px; padding: 0 14px; height: 36px;
  background: transparent; border: 1px solid rgba(255,255,255,0.12); border-radius: 10px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.8);
  transition: all 0.25s ease; flex-shrink: 0; font-family: inherit; cursor: pointer;
}
.nav-call:hover { background: rgba(255,255,255,0.08); border-color: rgba(82,183,136,0.45); color: #fff; }
.nav-call-label { line-height: 1; }
@media (max-width: 768px) {
  .nav-inner { padding: 0 12px; column-gap: 10px; height: 56px; }
  .nav-brand-text { display: none; }
  .nav-ask { padding: 0 8px 0 6px; height: 36px; max-width: none; }
  .nav-ask-label, .nav-ask-divider { display: none; }
  .nav-ask-icon { width: 26px; height: 26px; border-radius: 7px; }
  .nav-ask-placeholder { font-size: 12px; }
  .nav-call-label { display: none; }
  .nav-call { padding: 0; width: 36px; justify-content: center; border-radius: 10px; }
}

/* ========== HERO ========== */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; background: var(--forest-dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../assets/jim-corbet-villas.jpg') center center / cover no-repeat;
  opacity: 0.45;
  filter: grayscale(100%);
}
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,20,7,0.65) 0%, rgba(11,20,7,0.3) 40%, rgba(11,20,7,0.75) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 120px 24px 80px; max-width: 900px; }
.hero-logo {
  display: block; height: 88px; width: auto; margin: 0 auto 28px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5)) drop-shadow(0 0 30px rgba(82,183,136,0.15));
  animation: floatSubtle 4s ease-in-out infinite;
}
@media (max-width: 768px) { .hero-logo { height: 64px; margin-bottom: 20px; } }
@media (max-width: 480px) { .hero-logo { height: 56px; } }
.hero-tag {
  font-size: 15px; font-weight: 500; color: var(--sage);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(48px, 9vw, 88px); font-weight: 800; line-height: 1.02;
  letter-spacing: -2px; color: var(--white); margin-bottom: 16px;
}
.hero-lead {
  font-size: clamp(18px, 2.8vw, 26px); font-weight: 300;
  color: rgba(255,255,255,0.75); letter-spacing: 0.5px; margin-bottom: 28px;
}
.hero-pills {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  list-style: none; padding: 0; margin: 0 0 40px;
}
.hero-pill {
  font-size: 13px; font-weight: 600; letter-spacing: 0.3px;
  color: var(--white); background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 7px 16px; border-radius: 100px;
  backdrop-filter: blur(8px);
}
.hero-sub {
  font-size: clamp(17px, 2.5vw, 22px); font-weight: 300;
  color: rgba(255,255,255,0.8); line-height: 1.5; max-width: 600px; margin: 0 auto 40px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-hint { margin-top: 28px; font-size: 14px; color: rgba(255,255,255,0.5); font-weight: 300; }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-indicator { width: 24px; height: 40px; border: 2px solid rgba(255,255,255,0.3); border-radius: 12px; position: relative; }
.scroll-indicator::after {
  content: ''; position: absolute; top: 6px; left: 50%; width: 4px; height: 8px;
  background: rgba(255,255,255,0.6); border-radius: 2px;
  transform: translateX(-50%); animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 16px; font-weight: 600; color: var(--white);
  background: linear-gradient(135deg, #3a8f6b 0%, var(--forest-dark) 100%);
  padding: 14px 28px; border-radius: 8px;
  transition: all var(--transition);
  box-shadow: 0 4px 18px var(--forest-glow), inset 0 1px 0 rgba(255,255,255,0.25), inset 0 -1px 0 rgba(0,0,0,0.15);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #4aab80 0%, #2D6A4F 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(45,106,79,0.5), inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn-primary:active { transform: translateY(0) scale(0.97); }
.btn-primary.btn-white {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f2 100%);
  color: var(--gray-800);
  box-shadow: 0 4px 18px rgba(255,255,255,0.2), inset 0 1px 0 rgba(255,255,255,0.8), inset 0 -1px 0 rgba(0,0,0,0.08);
}
.btn-primary.btn-white:hover { background: linear-gradient(135deg, #ffffff 0%, #e8e8ed 100%); }
.btn-primary.btn-large { font-size: 19px; padding: 18px 36px; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 500; color: var(--white);
  padding: 14px 28px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  transition: all var(--transition);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 4px 14px rgba(0,0,0,0.15);
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.14); transform: translateY(-1px); }
.btn-secondary:active { transform: scale(0.97); }
.btn-glass-dark {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.08); backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.15); padding: 11px 20px; border-radius: 8px;
  cursor: pointer; transition: all var(--transition); box-shadow: inset 0 1px 0 rgba(255,255,255,0.1); font-family: inherit;
}
.btn-glass-dark:hover { background: rgba(255,255,255,0.15); border-color: rgba(82,183,136,0.5); color: var(--sage); transform: translateY(-1px); }
.btn-glass-dark:active { transform: scale(0.97); }
.btn-glass-light {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.08); backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.2); padding: 11px 20px; border-radius: 8px;
  cursor: pointer; transition: all var(--transition); box-shadow: inset 0 1px 0 rgba(255,255,255,0.15); font-family: inherit;
}
.btn-glass-light:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.45); transform: translateY(-1px); }
.btn-glass-light:active { transform: scale(0.97); }
.btn-compact { font-size: 14px !important; padding: 11px 20px !important; width: auto !important; }
.pulse-glow { position: relative; }
.pulse-glow::before {
  content: ''; position: absolute; inset: -4px; border-radius: 8px;
  background: var(--forest); opacity: 0; animation: pulseGlow 3s ease-in-out infinite; z-index: -1;
}
@keyframes pulseGlow { 0%, 100% { opacity: 0; transform: scale(1); } 50% { opacity: 0.25; transform: scale(1.08); } }

/* ========== PROMO VIDEO ========== */
.promo-video-section {
  background: #070f05; padding: 72px 24px;
  border-top: 3px solid var(--forest);
}
.promo-video-inner { max-width: 600px; margin: 0 auto; }
.promo-video-wrap { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.5); }
.promo-video { width: 100%; display: block; border-radius: 16px; }
.promo-unmute-btn {
  position: absolute; bottom: 14px; right: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--forest); color: #fff; border: none; border-radius: 20px;
  padding: 6px 12px; font-size: 12px; font-weight: 600; cursor: pointer; transition: background .2s ease; z-index: 2;
}
.promo-unmute-btn:hover { background: var(--forest-dark); }
@media (max-width: 640px) { .promo-video-section { padding: 48px 16px; } }

/* ========== OFFERING ========== */
.offering {
  padding: 80px 24px 40px;
  background: radial-gradient(ellipse at top, rgba(45,106,79,0.08), transparent 55%), transparent;
  position: relative;
}
.offering-inner {
  max-width: 1100px; margin: 0 auto; padding: 56px 48px;
  background: rgba(255,255,255,0.04); backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.1);
  position: relative; overflow: hidden;
}
.offering-inner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(82,183,136,0.55), transparent);
  background-size: 200% 100%; animation: navStripe 10s ease-in-out infinite; z-index: 2;
}
.offering-bg-orb {
  position: absolute; top: -120px; right: -120px; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(45,106,79,0.14) 0%, transparent 65%);
  filter: blur(40px); pointer-events: none; z-index: 0; animation: offeringOrbDrift 14s ease-in-out infinite;
}
@keyframes offeringOrbDrift { 0%, 100% { transform: translate(0,0); opacity: 0.85; } 50% { transform: translate(-30px, 20px); opacity: 1; } }
.offering-content { position: relative; z-index: 1; text-align: center; }
.offering-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--sage); margin-bottom: 18px; line-height: 1; }
.offering-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 10px rgba(82,183,136,0.9), 0 0 20px rgba(82,183,136,0.4); animation: brandDotBreath 2s ease-in-out infinite; }
.offering-title { font-size: clamp(32px, 5vw, 52px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.08; color: #fff; margin: 0 0 18px; }
.offering-sub { font-size: 15px; font-weight: 400; color: rgba(255,255,255,0.7); line-height: 1.65; max-width: 620px; margin: 0 auto 28px; }
.offering-specs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 30px; }
.offering-spec {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 4px;
  transition: all 0.3s; box-shadow: inset 0 1px 0 rgba(255,255,255,0.06); text-align: left;
}
.offering-spec:hover { background: rgba(255,255,255,0.08); border-color: rgba(82,183,136,0.35); transform: translateY(-2px); }
.offering-spec-icon { width: 36px; height: 36px; border-radius: 4px; background: linear-gradient(135deg, rgba(82,183,136,0.14), rgba(82,183,136,0.04)); color: var(--sage); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.offering-spec-text { display: flex; flex-direction: column; min-width: 0; line-height: 1.2; }
.offering-spec-text strong { font-size: 13px; font-weight: 700; color: #fff; letter-spacing: -0.2px; white-space: nowrap; }
.offering-spec-text strong span { color: var(--sage); margin-left: 1px; }
.offering-spec-text > span { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 3px; font-weight: 500; }
.offering-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
@media (max-width: 900px) {
  .offering { padding: 56px 16px 24px; }
  .offering-inner { padding: 40px 28px 32px; }
  .offering-specs { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) { .offering-inner { padding: 32px 20px 28px; } .offering-specs { grid-template-columns: 1fr; } }

/* ========== STATS BANNER ========== */
.stats-banner { padding: 64px 20px 32px; background: transparent; }
.stats-banner-shell { max-width: 1200px; margin: 0 auto; text-align: center; }
.stats-banner-eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--forest-light); margin-bottom: 20px; }
.stats-banner-strip {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 26px 36px;
  background: rgba(255,255,255,0.04); backdrop-filter: blur(24px) saturate(180%); -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative; overflow: hidden;
}
.stats-banner-strip::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(82,183,136,0.6), transparent);
  background-size: 200% 100%; animation: navStripe 9s ease-in-out infinite;
}
.sb-item { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 0; }
.sb-icon { width: 46px; height: 46px; padding: 11px; background: linear-gradient(135deg, rgba(45,106,79,0.22), rgba(45,106,79,0.06)); border-radius: 4px; color: var(--sage); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.sb-body { min-width: 0; text-align: left; }
.sb-value { font-size: 28px; font-weight: 800; letter-spacing: -1.2px; color: var(--white); line-height: 1; display: inline-flex; align-items: baseline; gap: 1px; background: linear-gradient(180deg, #ffffff, #c9c9cd); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.sb-prefix { font-size: 19px; color: rgba(255,255,255,0.6); -webkit-text-fill-color: rgba(255,255,255,0.6); margin-right: 1px; }
.sb-suffix { font-size: 23px; color: var(--sage); -webkit-text-fill-color: var(--sage); margin-left: -2px; }
.sb-unit { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.6); -webkit-text-fill-color: rgba(255,255,255,0.6); margin-left: 4px; }
.sb-label { font-size: 12px; color: rgba(255,255,255,0.6); font-weight: 500; margin-top: 4px; white-space: nowrap; }
.sb-sep { width: 1px; height: 46px; background: linear-gradient(180deg, transparent, rgba(255,255,255,0.15), transparent); flex-shrink: 0; }
@media (max-width: 900px) {
  .stats-banner { padding: 40px 16px 20px; }
  .stats-banner-strip { flex-direction: column; padding: 22px; gap: 18px; }
  .sb-item { width: 100%; }
  .sb-sep { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent); }
}

/* ========== RHYTHM BANNER ========== */
.rhythm-banner {
  background: radial-gradient(ellipse at top, rgba(45,106,79,0.12), transparent 55%), radial-gradient(ellipse at bottom, rgba(27,77,46,0.06), transparent 55%), linear-gradient(180deg, #070f05 0%, #000 100%);
  padding: 100px 24px; text-align: center; position: relative; overflow: hidden;
}
.rhythm-banner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(82,183,136,0.55), transparent);
  background-size: 200% 100%; animation: navStripe 10s ease-in-out infinite;
}
.rhythm-banner-inner {
  max-width: 720px; margin: 0 auto; padding: 56px 40px;
  background: rgba(255,255,255,0.04); backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.12); position: relative;
}
.rhythm-banner-inner h2 { font-size: clamp(36px, 6vw, 56px); font-weight: 800; letter-spacing: -2px; color: var(--white); margin-bottom: 16px; line-height: 1.1; }
.rhythm-banner-inner p { font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 36px; }
.rhythm-icon-large { margin-bottom: 32px; }
.rhythm-wave, .rhythm-wave-large, .rhythm-wave-small { display: flex; align-items: center; justify-content: center; gap: 4px; margin-bottom: 8px; }
.rhythm-wave span, .rhythm-wave-large span { width: 4px; background: var(--forest-light); border-radius: 4px; animation: wave 1.2s ease-in-out infinite; }
.rhythm-wave span { height: 20px; }
.rhythm-wave-large span { height: 32px; }
.rhythm-wave span:nth-child(1) { animation-delay: 0s; } .rhythm-wave span:nth-child(2) { animation-delay: 0.1s; } .rhythm-wave span:nth-child(3) { animation-delay: 0.2s; } .rhythm-wave span:nth-child(4) { animation-delay: 0.3s; } .rhythm-wave span:nth-child(5) { animation-delay: 0.4s; }
.rhythm-wave-large span:nth-child(1) { animation-delay: 0s; } .rhythm-wave-large span:nth-child(2) { animation-delay: 0.08s; } .rhythm-wave-large span:nth-child(3) { animation-delay: 0.16s; } .rhythm-wave-large span:nth-child(4) { animation-delay: 0.24s; } .rhythm-wave-large span:nth-child(5) { animation-delay: 0.32s; } .rhythm-wave-large span:nth-child(6) { animation-delay: 0.4s; } .rhythm-wave-large span:nth-child(7) { animation-delay: 0.48s; }
@keyframes wave { 0%, 100% { transform: scaleY(0.5); } 50% { transform: scaleY(1.5); } }
@media (max-width: 768px) { .rhythm-banner { padding: 64px 16px; } .rhythm-banner-inner { padding: 40px 24px; } }

/* ========== ACCORDION ========== */
.accordion-wrap { padding: 72px 20px 96px; background: transparent; }
.accordion-container { max-width: 900px; margin: 0 auto; }
.accordion-intro { text-align: center; font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 28px; letter-spacing: 0.3px; }
.dd {
  background: rgba(255,255,255,0.04); backdrop-filter: blur(24px) saturate(180%); -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; margin-bottom: 14px; overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1); scroll-margin-top: 72px;
}
.dd:hover:not(.open) { background: rgba(255,255,255,0.06); border-color: rgba(82,183,136,0.3); transform: translateY(-1px); }
.dd.open { background: rgba(255,255,255,0.06); border-color: rgba(82,183,136,0.4); box-shadow: 0 24px 56px rgba(45,106,79,0.15), inset 0 1px 0 rgba(255,255,255,0.12); }
.dd-head { width: 100%; display: flex; align-items: center; gap: 16px; padding: 22px 26px; background: transparent; border: none; cursor: pointer; text-align: left; }
.dd-head-icon {
  width: 44px; height: 44px; border-radius: 4px;
  background: linear-gradient(135deg, rgba(82,183,136,0.14), rgba(82,183,136,0.04));
  color: var(--sage); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.4s;
}
.dd.open .dd-head-icon { background: linear-gradient(135deg, #3a8f6b 0%, var(--forest-dark) 100%); color: var(--white); box-shadow: 0 6px 18px var(--forest-glow); }
.dd-head-text { flex: 1; min-width: 0; }
.dd-eyebrow { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: var(--sage); margin-bottom: 4px; }
.dd-title { font-size: 19px; font-weight: 700; letter-spacing: -0.3px; color: var(--white); margin: 0; line-height: 1.3; }
.dd-lock {
  width: 30px; height: 30px; border-radius: 4px;
  background: rgba(82,183,136,0.1); border: 1px solid rgba(82,183,136,0.2);
  color: var(--sage); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dd-chevron {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(82,183,136,0.08); border: 1px solid rgba(82,183,136,0.2);
  display: flex; align-items: center; justify-content: center; color: var(--sage);
  transition: all 0.4s; flex-shrink: 0;
}
.dd.open .dd-chevron { transform: rotate(180deg); background: linear-gradient(135deg, #3a8f6b 0%, var(--forest-dark) 100%); color: var(--white); border-color: transparent; box-shadow: 0 4px 14px var(--forest-glow); }
.dd-body { max-height: 0; overflow: hidden; transition: max-height 0.6s cubic-bezier(0.4,0,0.2,1); }
.dd.open .dd-body { max-height: 5000px; }
.dd-body-inner { padding: 8px 26px 30px; border-top: 1px solid rgba(82,183,136,0.12); margin-top: 4px; padding-top: 26px; }
.dd-body-inner.dd-body-dark {
  background: radial-gradient(ellipse at top left, rgba(45,106,79,0.1), transparent 50%), rgba(0,0,0,0.3);
  margin: 4px -26px -30px; padding: 28px 32px 40px;
  border-top: 1px solid rgba(82,183,136,0.25);
}
.dd-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }

/* About grid inside accordion */
.dd-body-inner .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.dd-body-inner .about-image { border-radius: 4px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.1); }
.dd-body-inner .about-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.dd-body-inner .about-text .section-desc { font-size: 15px; font-weight: 400; color: rgba(255,255,255,0.72); line-height: 1.65; margin-bottom: 14px; }

/* Property types */
.types-v2-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.type-v2-card {
  padding: 22px; background: rgba(255,255,255,0.05); backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 4px;
  transition: all 0.4s; box-shadow: 0 8px 24px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.08); display: flex; flex-direction: column;
}
.type-v2-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(82,183,136,0.4); box-shadow: 0 24px 48px rgba(45,106,79,0.15), inset 0 1px 0 rgba(255,255,255,0.12); transform: translateY(-4px); }
.type-v2-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.type-v2-icon { width: 44px; height: 44px; border-radius: 4px; background: linear-gradient(135deg, rgba(82,183,136,0.14), rgba(82,183,136,0.04)); color: var(--sage); display: flex; align-items: center; justify-content: center; transition: transform 0.4s; }
.type-v2-card:hover .type-v2-icon { transform: scale(1.1) rotate(-5deg); }
.type-v2-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: var(--sage); background: rgba(82,183,136,0.1); border: 1px solid rgba(82,183,136,0.22); padding: 4px 10px; border-radius: 4px; }
.type-v2-tag.featured-tag { color: var(--gold); background: rgba(200,150,62,0.12); border-color: rgba(200,150,62,0.3); }
.type-v2-card h4 { font-size: 18px; font-weight: 700; color: var(--white); margin: 0 0 8px; letter-spacing: -0.3px; }
.type-v2-card p { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.65); line-height: 1.55; margin: 0 0 18px; flex: 1; }
.type-v2-stats { display: flex; gap: 8px; padding: 12px; background: rgba(82,183,136,0.08); border: 1px solid rgba(82,183,136,0.2); border-radius: 4px; margin-bottom: 16px; }
.type-v2-stats > div { flex: 1; text-align: center; display: flex; flex-direction: column; gap: 2px; }
.type-v2-stats strong { font-size: 14px; font-weight: 800; color: var(--sage); letter-spacing: -0.3px; }
.type-v2-stats span { font-size: 10px; color: rgba(255,255,255,0.5); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.type-v2-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--sage);
  background: rgba(82,183,136,0.08); border: 1px solid rgba(82,183,136,0.25); padding: 11px 16px; border-radius: 4px;
  cursor: pointer; transition: all 0.4s; font-family: inherit;
}
.type-v2-cta:hover { background: linear-gradient(135deg, #3a8f6b 0%, var(--forest-dark) 100%); color: var(--white); border-color: transparent; box-shadow: 0 6px 18px var(--forest-glow); }
@media (max-width: 900px) { .types-v2-grid { grid-template-columns: 1fr; } }

/* Location */
.dd-body-inner .location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.dd-body-inner .location-list { display: flex; flex-direction: column; gap: 10px; margin: 0; }
.dd-body-inner .location-item {
  display: flex; align-items: center; gap: 14px; padding: 14px 18px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 4px;
  transition: all 0.4s; box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.dd-body-inner .location-item:hover { background: rgba(255,255,255,0.08); border-color: rgba(82,183,136,0.35); transform: translateX(4px); }
.dd-body-inner .location-item strong { font-size: 14px; font-weight: 600; color: var(--white); display: block; }
.dd-body-inner .location-item span { font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.5); }
.location-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--forest-light); flex-shrink: 0; position: relative; box-shadow: 0 0 0 3px rgba(82,183,136,0.15); }
.dd-body-inner .location-map { border-radius: 4px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.1); }
.dd-body-inner .location-map img { width: 100%; object-fit: cover; }
@media (max-width: 900px) { .dd-body-inner .location-grid { grid-template-columns: 1fr; gap: 20px; } .dd-body-inner .about-grid { grid-template-columns: 1fr; gap: 20px; } }

/* Attractions */
.dd-body-inner .attractions-scroll {
  display: flex; overflow-x: auto; gap: 14px; padding: 4px 4px 16px; margin: 0;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.dd-body-inner .attractions-scroll::-webkit-scrollbar { display: none; }
.dd-body-inner .attraction-card {
  flex: 0 0 240px; scroll-snap-align: start; border-radius: 4px;
  overflow: hidden; position: relative; aspect-ratio: 3/4;
  border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.dd-body-inner .attraction-card:last-child { display: block; }
.attraction-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.attraction-card:hover img { transform: scale(1.06); }
.attraction-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 16px; background: linear-gradient(transparent, rgba(0,0,0,0.75)); }
.attraction-info h3 { font-size: 15px; font-weight: 600; color: var(--white); }

/* Amenities */
.amenities-v2-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-auto-rows: 1fr; gap: 12px; }
.amenity-v2 {
  display: flex; align-items: center; gap: 14px; padding: 18px 20px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 4px;
  transition: all 0.4s; box-shadow: 0 2px 12px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.08);
}
.amenity-v2:hover { background: rgba(255,255,255,0.1); border-color: rgba(82,183,136,0.4); transform: translateY(-2px); }
.amenity-v2-feature {
  grid-column: 1; grid-row: 1 / span 2; padding: 28px 26px; flex-direction: column; align-items: flex-start; justify-content: flex-end;
  background: radial-gradient(ellipse at top left, rgba(82,183,136,0.15), transparent 60%), linear-gradient(135deg, rgba(82,183,136,0.1), rgba(82,183,136,0.04));
  border-color: rgba(82,183,136,0.3); min-height: 180px;
}
.amenity-v2-icon { width: 40px; height: 40px; border-radius: 4px; background: rgba(82,183,136,0.12); color: var(--sage); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.4s; }
.amenity-v2:hover .amenity-v2-icon { transform: scale(1.12) rotate(-6deg); }
.amenity-v2-feature .amenity-v2-icon { width: 52px; height: 52px; background: rgba(255,255,255,0.1); margin-bottom: 16px; box-shadow: 0 6px 18px rgba(45,106,79,0.3); }
.amenity-v2-text h4 { font-size: 14px; font-weight: 700; color: var(--white); margin: 0; letter-spacing: -0.2px; }
.amenity-v2-feature .amenity-v2-text h4 { font-size: 22px; margin-bottom: 4px; letter-spacing: -0.5px; }
.amenity-v2-text span { display: block; font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.5); margin-top: 2px; }
.amenity-v2-feature .amenity-v2-text span { font-size: 13px; color: var(--sage); font-weight: 600; }
@media (max-width: 900px) { .amenities-v2-grid { grid-template-columns: 1fr 1fr; } .amenity-v2-feature { grid-column: 1 / -1; grid-row: auto; min-height: 140px; } }
@media (max-width: 480px) { .amenities-v2-grid { grid-template-columns: 1fr; } .amenity-v2-feature { grid-column: 1; } }

/* Investment dark */
.dd-body-dark .invest-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 0 0 20px; }
.dd-body-dark .invest-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; padding: 24px 22px;
  transition: all 0.4s; position: relative; overflow: hidden;
  backdrop-filter: blur(14px) saturate(180%); -webkit-backdrop-filter: blur(14px) saturate(180%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.dd-body-dark .invest-card::before { content: ''; position: absolute; top: -40px; left: -40px; width: 120px; height: 120px; background: radial-gradient(circle, var(--forest-glow) 0%, transparent 65%); opacity: 0.5; pointer-events: none; }
.dd-body-dark .invest-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(82,183,136,0.4); transform: translateY(-3px); }
.dd-body-dark .invest-number { font-size: 36px; font-weight: 800; letter-spacing: -1.5px; display: block; margin-bottom: 10px; line-height: 1; background: linear-gradient(180deg, #74C69D 0%, var(--forest-light) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; position: relative; }
.dd-body-dark .invest-card h3 { position: relative; font-size: 15px; font-weight: 600; color: var(--white); margin: 0 0 6px; }
.dd-body-dark .invest-card p { position: relative; font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.55; margin: 0; }
.dd-body-dark .invest-cta { text-align: center; padding: 20px 0 0; margin-top: 0; border-top: 1px solid rgba(255,255,255,0.1); }
.dd-body-dark .invest-cta p { font-size: 14px; color: rgba(255,255,255,0.7); margin: 0 0 14px; }
.dd-body-dark .dd-actions { justify-content: center; }
@media (max-width: 900px) { .dd-body-dark .invest-grid { grid-template-columns: 1fr; } }

/* Floor plans */
.floor-note { text-align: center; font-size: 13px; color: rgba(255,255,255,0.72); margin: 0 0 20px; padding: 14px 18px; background: rgba(82,183,136,0.06); border: 1px solid rgba(82,183,136,0.18); border-radius: 4px; }
.dd-body-inner .floor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 0 0 22px; }
.dd-body-inner .floor-card { position: relative; background: rgba(255,255,255,0.04); border-radius: 4px; overflow: hidden; padding: 14px; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 8px 24px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.08); aspect-ratio: 3/4; }
.dd-body-inner .floor-card img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; transition: filter 0.6s; }
.floor-card.locked img { filter: grayscale(100%) blur(28px) brightness(0.7); }
.floor-lock-overlay { position: absolute; inset: 14px; border-radius: 4px; background: linear-gradient(180deg, rgba(10,18,6,0.35), rgba(10,18,6,0.7)); backdrop-filter: blur(8px) saturate(160%); -webkit-backdrop-filter: blur(8px) saturate(160%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; transition: opacity 0.4s ease; }
.floor-card.unlocked .floor-lock-overlay { opacity: 0; pointer-events: none; }
.floor-lock-icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.28); display: flex; align-items: center; justify-content: center; color: var(--white); }
.floor-lock-overlay p { font-size: 12px; font-weight: 600; color: var(--white); letter-spacing: 0.3px; margin: 0; }
.floor-lock-label { font-size: 13px !important; font-weight: 400 !important; color: rgba(255,255,255,0.85) !important; text-align: center; line-height: 1.4; letter-spacing: 0.2px; }
.floor-lock-label strong { display: block; font-size: 17px; font-weight: 700; color: var(--white); letter-spacing: -0.2px; margin-top: 2px; }
.floor-unlock-cta { text-align: center; padding: 24px 20px; background: radial-gradient(ellipse at top, rgba(82,183,136,0.1), transparent 60%), rgba(255,255,255,0.05); backdrop-filter: blur(14px) saturate(180%); -webkit-backdrop-filter: blur(14px) saturate(180%); border: 1px solid rgba(82,183,136,0.22); border-radius: 4px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.08); }
.floor-unlock-cta h4 { font-size: 16px; font-weight: 700; color: var(--white); margin: 0 0 12px; }
.floor-unlock-cta .dd-actions { justify-content: center; margin-top: 0; }
@media (max-width: 900px) { .dd-body-inner .floor-grid { grid-template-columns: 1fr; gap: 12px; } }
@media (max-width: 768px) {
  .accordion-wrap { padding: 48px 14px 72px; }
  .dd-head { padding: 18px; gap: 12px; }
  .dd-head-icon { width: 38px; height: 38px; }
  .dd-title { font-size: 15px; }
  .dd-body-inner { padding: 6px 18px 24px; padding-top: 22px; }
  .dd-body-inner.dd-body-dark { margin: 4px -18px -24px; padding: 22px 20px 32px; }
}

/* ========== FINAL CTA ========== */
.final-cta {
  padding: 120px 24px;
  background: radial-gradient(ellipse at bottom, rgba(45,106,79,0.1), transparent 55%), linear-gradient(180deg, #0d1a09 0%, #000 100%);
  text-align: center; position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(82,183,136,0.55), transparent);
  background-size: 200% 100%; animation: navStripe 11s ease-in-out infinite; animation-delay: -3s;
}
.final-cta-inner {
  max-width: 680px; margin: 0 auto; padding: 56px 40px;
  background: rgba(255,255,255,0.04); backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.12); position: relative;
}
.final-cta h2 { font-size: clamp(40px, 7vw, 64px); font-weight: 800; letter-spacing: -2px; color: var(--white); line-height: 1.08; margin-bottom: 20px; }
.final-cta p { font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.65); line-height: 1.6; margin-bottom: 40px; }
.final-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.final-cta-actions .btn-primary, .final-cta-actions .btn-glass-light { padding: 14px 26px !important; font-size: 15px !important; }
@media (max-width: 768px) { .final-cta { padding: 72px 16px; } .final-cta-inner { padding: 40px 24px; } }
@media (max-width: 600px) { .final-cta-actions { flex-direction: column; align-items: stretch; gap: 10px; } .final-cta-actions .btn-primary, .final-cta-actions .btn-glass-light { width: 100% !important; justify-content: center; } }

/* ========== FOOTER ========== */
.footer { background: #000; border-top: 1px solid rgba(255,255,255,0.08); padding: 48px 24px 32px; position: relative; }
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(82,183,136,0) 20%, rgba(82,183,136,0.55) 50%, rgba(82,183,136,0) 80%, transparent 100%);
  background-size: 200% 100%; animation: navStripe 11s ease-in-out infinite; animation-delay: -5s;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo-img { height: 40px; width: auto; margin-bottom: 8px; }
.footer-brand p { font-size: 13px; color: var(--gray-400); }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: var(--gray-400); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.footer-cta { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); border-radius: 4px; font-family: inherit; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.9); cursor: pointer; transition: all 0.25s; white-space: nowrap; }
.footer-cta:hover { background: rgba(82,183,136,0.12); border-color: rgba(82,183,136,0.4); color: var(--white); }
.footer-cta-link { background: transparent; border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); }
.footer-cta-link:hover { background: rgba(255,255,255,0.06); border-color: rgba(82,183,136,0.3); }
.footer-bottom { padding-top: 24px; text-align: center; }
.footer-bottom p { font-size: 12px; color: var(--gray-400); line-height: 1.5; }
.footer-disclaimer { margin-top: 8px; opacity: 0.6; }
@media (max-width: 900px) { .footer-contact { align-items: center; } }
@media (max-width: 768px) { .footer { padding: 36px 20px 24px; } .footer-top { grid-template-columns: 1fr; text-align: center; gap: 24px; } .footer-brand { display: flex; flex-direction: column; align-items: center; } .footer-links { align-items: center; } .footer-contact { text-align: center; align-items: center; } .footer-logo-img { margin: 0 auto 8px; display: block; } }

/* ========== FLOATING RHYTHM BUTTON ========== */
.rhythm-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: auto; height: 56px; padding: 0 24px 0 20px; border-radius: 8px;
  background: linear-gradient(135deg, #3a8f6b 0%, var(--forest-dark) 100%);
  color: var(--white); display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px var(--forest-glow), inset 0 1px 0 rgba(255,255,255,0.3), inset 0 -1px 0 rgba(0,0,0,0.15);
  transition: all var(--transition); animation: floatSubtle 3.5s ease-in-out infinite;
}
.rhythm-float:hover { transform: translateY(-3px) scale(1.04); background: linear-gradient(135deg, #4aab80 0%, #1B4332 100%); box-shadow: 0 14px 42px rgba(45,106,79,0.55); }
.rhythm-float-waves { display: flex; align-items: center; gap: 2px; }
.rhythm-float-waves span { width: 3px; height: 16px; background: var(--white); border-radius: 3px; animation: wave 1.2s ease-in-out infinite; }
.rhythm-float-waves span:nth-child(1) { animation-delay: 0s; } .rhythm-float-waves span:nth-child(2) { animation-delay: 0.15s; } .rhythm-float-waves span:nth-child(3) { animation-delay: 0.3s; }
.rhythm-float-label { font-size: 15px; font-weight: 600; }
@media (max-width: 768px) { .rhythm-float { bottom: 16px; right: 12px; height: 48px; padding: 0 18px 0 14px; } .rhythm-float-label { font-size: 13px; } }

/* ========== FORM MODAL ========== */
.form-modal { position: fixed; inset: 0; z-index: 2500; display: none; align-items: center; justify-content: center; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.4s ease, visibility 0.4s ease; }
.form-modal.active { display: flex; opacity: 1; visibility: visible; pointer-events: all; }
.form-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.82); backdrop-filter: blur(28px) saturate(160%); -webkit-backdrop-filter: blur(28px) saturate(160%); }
.form-modal-content {
  position: relative; width: 460px; max-width: calc(100vw - 24px); max-height: calc(100vh - 48px);
  background: radial-gradient(ellipse at top right, rgba(45,106,79,0.08), transparent 60%), #070f05;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; overflow-y: auto;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6), 0 0 80px rgba(45,106,79,0.1), inset 0 1px 0 rgba(255,255,255,0.08);
  transform: translateY(30px) scale(0.96); transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1); padding: 36px 32px 28px; -webkit-overflow-scrolling: touch;
}
.form-modal.active .form-modal-content { transform: translateY(0) scale(1); }
.form-modal-close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 22px; color: rgba(255,255,255,0.7); transition: all 0.3s; z-index: 2; font-family: inherit; font-weight: 300; line-height: 1; cursor: pointer; }
.form-modal-close:hover { background: rgba(255,255,255,0.12); border-color: rgba(82,183,136,0.4); color: #fff; transform: rotate(90deg); }
.form-header { text-align: center; margin: 0 0 26px; padding-top: 6px; }
.form-logo { height: 40px; width: auto; margin: 0 auto 18px; display: block; }
.form-header h3 { font-size: 22px; font-weight: 700; color: #fff; letter-spacing: -0.4px; margin: 0 0 6px; line-height: 1.2; }
.form-header p { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.55); line-height: 1.5; margin: 0; }
.form-field { margin: 0 0 16px; }
.form-field label, .form-field-label { display: block; font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.55); margin: 0 0 8px; letter-spacing: 1px; text-transform: uppercase; }
.form-field input { width: 100%; padding: 13px 16px; font-size: 15px; font-family: inherit; border: 1px solid rgba(255,255,255,0.12); border-radius: 4px; background: rgba(255,255,255,0.04); color: #fff; transition: all 0.25s; outline: none; -webkit-appearance: none; appearance: none; line-height: 1.2; }
.form-field input:focus { border-color: var(--forest-light); background: rgba(255,255,255,0.07); box-shadow: 0 0 0 3px rgba(82,183,136,0.15); }
.form-field input::placeholder { color: rgba(255,255,255,0.3); }
.phone-input-wrap { display: flex; align-items: stretch; border: 1px solid rgba(255,255,255,0.12); border-radius: 4px; background: rgba(255,255,255,0.04); overflow: hidden; transition: all 0.25s; }
.phone-input-wrap:focus-within { border-color: var(--forest-light); background: rgba(255,255,255,0.07); box-shadow: 0 0 0 3px rgba(82,183,136,0.15); }
.phone-prefix { display: flex; align-items: center; padding: 0 12px 0 16px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.72); border-right: 1px solid rgba(255,255,255,0.1); flex-shrink: 0; line-height: 1; }
.phone-input-wrap input { border: none; background: transparent; border-radius: 0; padding: 13px 16px; flex: 1; min-width: 0; }
.phone-input-wrap input:focus { border: none; background: transparent; box-shadow: none; }
.form-options { display: flex; flex-direction: column; gap: 8px; margin: 0; }
.form-option { cursor: pointer; display: block; margin: 0; position: relative; }
.form-option input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0; }
.form-option-box { display: flex; align-items: center; gap: 12px; padding: 13px 44px 13px 13px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: 4px; transition: all 0.25s; position: relative; min-height: 58px; }
.form-option-box::after { content: ''; position: absolute; top: 50%; right: 14px; transform: translateY(-50%); width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.28); background: transparent; transition: all 0.25s; }
.form-option:hover .form-option-box { background: rgba(255,255,255,0.07); border-color: rgba(82,183,136,0.35); }
.form-option input[type="radio"]:checked + .form-option-box { background: rgba(82,183,136,0.1); border-color: rgba(82,183,136,0.55); }
.form-option input[type="radio"]:checked + .form-option-box::after { border-color: var(--forest-light); background: radial-gradient(circle, var(--forest-light) 38%, transparent 42%); box-shadow: 0 0 10px rgba(82,183,136,0.5); }
.form-option-icon { width: 36px; height: 36px; border-radius: 4px; background: rgba(82,183,136,0.12); color: var(--sage); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.25s; }
.form-option input[type="radio"]:checked + .form-option-box .form-option-icon { background: var(--forest-light); color: var(--white); box-shadow: 0 4px 14px rgba(82,183,136,0.35); }
.form-option-text { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.92); line-height: 1.35; flex: 1; min-width: 0; }
.form-submit { width: 100%; padding: 15px; font-size: 15px; font-weight: 700; color: #fff; background: linear-gradient(135deg, #3a8f6b 0%, #1B4332 100%); border: none; border-radius: 4px; cursor: pointer; transition: all 0.3s; margin: 20px 0 0; letter-spacing: 0.2px; box-shadow: 0 8px 28px rgba(45,106,79,0.35), inset 0 1px 0 rgba(255,255,255,0.3), inset 0 -1px 0 rgba(0,0,0,0.15); font-family: inherit; line-height: 1; }
.form-submit:hover { background: linear-gradient(135deg, #4aab80 0%, #2D6A4F 100%); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(45,106,79,0.45); }
.form-submit:active { transform: translateY(0) scale(0.98); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-footer-text { text-align: center; font-size: 12px; color: rgba(255,255,255,0.45); margin: 18px 0 0; line-height: 1.5; }
.form-rhythm-link { color: var(--sage); font-weight: 600; font-size: 12px; cursor: pointer; background: none; border: none; font-family: inherit; text-decoration: underline; padding: 0; transition: color 0.2s; }
.form-rhythm-link:hover { color: var(--forest-light); }
.form-success { text-align: center; padding: 12px 0 8px; }
.success-icon { display: inline-flex; width: 72px; height: 72px; border-radius: 50%; background: rgba(82,183,136,0.12); border: 1px solid rgba(82,183,136,0.35); align-items: center; justify-content: center; margin: 0 auto 22px; box-shadow: 0 0 40px rgba(82,183,136,0.25), inset 0 1px 0 rgba(255,255,255,0.1); }
.success-icon svg { width: 32px; height: 32px; }
.form-success h3 { font-size: 22px; font-weight: 700; color: #fff; letter-spacing: -0.3px; margin: 0 0 8px; }
.form-success p { font-size: 14px; color: rgba(255,255,255,0.6); margin: 0 0 26px; line-height: 1.55; }
.form-consent-note { margin: 12px 0 0; font-size: 11px; line-height: 1.55; color: rgba(255,255,255,0.5); text-align: center; }
.form-consent-note a { color: rgba(82,183,136,0.85); text-decoration: none; border-bottom: 1px solid rgba(82,183,136,0.3); transition: color 0.2s; }
.form-consent-note a:hover { color: var(--sage); border-bottom-color: var(--sage); }
@media (max-width: 600px) { .form-modal.active { align-items: flex-end; } .form-modal-content { width: 100%; max-width: 100vw; max-height: 92vh; border-radius: 4px; padding: 28px 20px 24px; transform: translateY(100%); } .form-modal.active .form-modal-content { transform: translateY(0); } }

/* ========== RHYTHM MODAL ========== */
.rhythm-modal { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.4s ease, visibility 0.4s ease; }
.rhythm-modal.active { display: flex; opacity: 1; visibility: visible; pointer-events: all; }
.rhythm-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.88); backdrop-filter: blur(40px) saturate(150%); -webkit-backdrop-filter: blur(40px) saturate(150%); }
.rhythm-modal-content {
  position: relative; width: 540px; max-width: 95vw; height: 720px; max-height: 92vh;
  background: #070f05; border: 1px solid rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.7), 0 0 100px rgba(45,106,79,0.08), inset 0 1px 0 rgba(255,255,255,0.04);
  transform: translateY(40px) scale(0.94); transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease; display: flex; flex-direction: column;
}
.rhythm-modal.active .rhythm-modal-content { transform: translateY(0) scale(1); }
.rhythm-ambient { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.rhythm-aurora { position: absolute; border-radius: 50%; filter: blur(90px); mix-blend-mode: screen; will-change: transform, opacity; }
.rhythm-aurora-1 { width: 600px; height: 600px; top: -220px; left: -220px; background: radial-gradient(circle, #2D6A4F 0%, transparent 70%); opacity: 0.35; animation: auroraFloat1 22s ease-in-out infinite; }
.rhythm-aurora-2 { width: 520px; height: 520px; bottom: -160px; right: -180px; background: radial-gradient(circle, #52B788 0%, transparent 70%); opacity: 0.28; animation: auroraFloat2 26s ease-in-out infinite; }
.rhythm-aurora-3 { width: 400px; height: 400px; top: 50%; left: 50%; transform: translate(-50%, -50%); background: radial-gradient(circle, #C8963E 0%, transparent 70%); opacity: 0.1; animation: auroraFloat3 18s ease-in-out infinite; }
@keyframes auroraFloat1 { 0%, 100% { transform: translate(0,0) scale(1); } 33% { transform: translate(60px,-40px) scale(1.12); } 66% { transform: translate(-40px,50px) scale(0.92); } }
@keyframes auroraFloat2 { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-70px,-40px) scale(1.08); } }
@keyframes auroraFloat3 { 0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.1; } 50% { transform: translate(-45%,-55%) scale(1.2); opacity: 0.18; } }
.rhythm-grain { position: absolute; inset: 0; opacity: 0.035; mix-blend-mode: overlay; pointer-events: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>"); }
.rhythm-modal-header { position: relative; z-index: 5; display: flex; align-items: center; justify-content: space-between; padding: 24px 28px; background: transparent; border: none; }
.rhythm-modal-title { display: flex; align-items: center; gap: 10px; }
.rhythm-mini-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--forest-light); box-shadow: 0 0 12px var(--forest-light), 0 0 24px rgba(82,183,136,0.4); animation: miniDotBreath 2s ease-in-out infinite; }
@keyframes miniDotBreath { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.55; transform: scale(0.8); } }
.rhythm-modal-title h3 { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.95); letter-spacing: -0.2px; margin: 0; }
.rhythm-ai-badge { font-size: 10px; font-weight: 700; letter-spacing: 1.4px; color: var(--sage); background: rgba(82,183,136,0.12); border: 1px solid rgba(82,183,136,0.25); padding: 3px 8px; border-radius: 4px; text-transform: uppercase; }
.rhythm-modal-close { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); display: flex; align-items: center; justify-content: center; transition: all 0.35s; }
.rhythm-modal-close:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.18); color: #fff; transform: rotate(90deg); }
.rhythm-modal-body { position: relative; z-index: 5; flex: 1; padding: 0 40px 48px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
#rhythmUI { width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px; text-align: center; }
/* Orb — green palette */
.rhythm-orb { position: relative; width: 260px; height: 260px; display: flex; align-items: center; justify-content: center; }
.orb-halo { position: absolute; inset: -60px; border-radius: 50%; background: radial-gradient(circle, rgba(45,106,79,0.22) 0%, rgba(45,106,79,0.08) 30%, transparent 70%); filter: blur(16px); animation: orbHaloBreath 5s ease-in-out infinite; }
@keyframes orbHaloBreath { 0%, 100% { opacity: 0.6; transform: scale(0.95); } 50% { opacity: 1; transform: scale(1.08); } }
.orb-glow { position: absolute; inset: -10px; border-radius: 50%; background: radial-gradient(circle, rgba(45,106,79,0.5) 0%, rgba(45,106,79,0.15) 40%, transparent 70%); filter: blur(12px); animation: orbGlowBreath 3.5s ease-in-out infinite; }
@keyframes orbGlowBreath { 0%, 100% { opacity: 0.7; transform: scale(1); } 50% { opacity: 1; transform: scale(1.1); } }
.orb-blob { position: absolute; border-radius: 50%; filter: blur(28px); mix-blend-mode: screen; will-change: transform, opacity; }
.orb-blob-1 { width: 220px; height: 220px; background: radial-gradient(circle, #1B4332 0%, transparent 70%); animation: blobMorph1 6s ease-in-out infinite; }
.orb-blob-2 { width: 190px; height: 190px; background: radial-gradient(circle, #2D6A4F 0%, transparent 70%); animation: blobMorph2 7s ease-in-out infinite; }
.orb-blob-3 { width: 160px; height: 160px; background: radial-gradient(circle, #52B788 0%, transparent 70%); animation: blobMorph3 5s ease-in-out infinite; }
@keyframes blobMorph1 { 0%, 100% { transform: translate(0,0) scale(1); opacity: 0.85; } 33% { transform: translate(-18px,12px) scale(1.08); opacity: 0.95; } 66% { transform: translate(14px,-10px) scale(0.94); opacity: 0.8; } }
@keyframes blobMorph2 { 0%, 100% { transform: translate(0,0) scale(1); opacity: 0.8; } 50% { transform: translate(16px,14px) scale(1.06); opacity: 0.95; } }
@keyframes blobMorph3 { 0%, 100% { transform: translate(0,0) scale(1); opacity: 0.75; } 40% { transform: translate(-14px,-12px) scale(1.1); opacity: 0.9; } 80% { transform: translate(10px,16px) scale(0.92); opacity: 0.85; } }
.orb-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(82,183,136,0.28); pointer-events: none; will-change: transform, opacity; }
.orb-ring-1 { width: 200px; height: 200px; animation: ringEcho 4s ease-out infinite; }
.orb-ring-2 { width: 240px; height: 240px; animation: ringEcho 4s ease-out infinite; animation-delay: -2s; }
@keyframes ringEcho { 0% { transform: scale(0.88); opacity: 0; } 20% { opacity: 0.6; } 100% { transform: scale(1.15); opacity: 0; } }
.orb-core {
  position: relative; width: 130px; height: 130px; border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #a8d8bf 0%, #52B788 28%, #2D6A4F 55%, #1B4332 88%);
  box-shadow: 0 0 60px rgba(45,106,79,0.6), 0 10px 40px rgba(45,106,79,0.4), inset 0 -25px 45px rgba(0,0,0,0.35), inset 0 14px 35px rgba(255,255,255,0.2);
  z-index: 3; animation: coreBreath 3s ease-in-out infinite;
}
@keyframes coreBreath { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } }
.orb-core-highlight { position: absolute; top: 14px; left: 22px; width: 42px; height: 26px; border-radius: 50%; background: radial-gradient(ellipse at center, rgba(255,255,255,0.55) 0%, transparent 70%); filter: blur(3px); }
.rhythm-orb.speaking .orb-core { animation: coreBreathFast 0.7s ease-in-out infinite; box-shadow: 0 0 80px rgba(45,106,79,0.8), 0 10px 50px rgba(45,106,79,0.5), inset 0 -25px 45px rgba(0,0,0,0.35), inset 0 14px 35px rgba(255,255,255,0.3); }
@keyframes coreBreathFast { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
.rhythm-orb.speaking .orb-halo { animation-duration: 1.2s; }
.rhythm-orb.speaking .orb-glow { animation-duration: 0.9s; }
.rhythm-orb.listening .orb-halo { animation-duration: 6s; opacity: 0.8; }
/* Text pad */
.rhythm-pad { width: 100%; max-width: 460px; display: flex; flex-direction: column; align-items: center; animation: rhythmPadRise 0.6s cubic-bezier(0.22,1,0.36,1) both; }
.rhythm-pad-msg { position: relative; width: 100%; display: flex; align-items: center; padding: 6px 6px 6px 18px; background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(45,106,79,0.04) 100%); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%); box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.08); transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s; }
.rhythm-pad-msg:focus-within { border-color: rgba(82,183,136,0.45); box-shadow: 0 8px 36px rgba(0,0,0,0.4), 0 0 0 4px rgba(82,183,136,0.08), 0 0 24px rgba(82,183,136,0.18); transform: translateY(-1px); }
.rhythm-pad-icon { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; color: var(--sage); opacity: 0.75; margin-right: 10px; transition: opacity 0.3s, transform 0.3s; }
.rhythm-pad-msg:focus-within .rhythm-pad-icon { opacity: 1; transform: scale(1.06); }
.rhythm-pad-input { flex: 1; min-width: 0; font-size: 14.5px; font-family: inherit; font-weight: 400; color: #fff; background: transparent; border: 0; padding: 12px 8px 12px 0; outline: none; }
.rhythm-pad-input::placeholder { color: rgba(255,255,255,0.42); }
.rhythm-pad-send { flex-shrink: 0; width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; color: #fff; background: linear-gradient(135deg, var(--forest-light) 0%, #3a8f6b 100%); border: 0; border-radius: 50%; cursor: pointer; transition: all 0.3s; box-shadow: 0 4px 14px rgba(82,183,136,0.4); }
.rhythm-pad-send:hover { transform: scale(1.08) rotate(-4deg); box-shadow: 0 6px 20px rgba(82,183,136,0.55); }
.rhythm-pad-send:active { transform: scale(0.94); }
.rhythm-pad.shake .rhythm-pad-msg { animation: rhythmPadShake 0.42s cubic-bezier(0.36,0.07,0.19,0.97); border-color: rgba(255,80,80,0.5); }
@keyframes rhythmPadRise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes rhythmPadShake { 10%, 90% { transform: translateX(-2px); } 20%, 80% { transform: translateX(3px); } 30%, 50%, 70% { transform: translateX(-5px); } 40%, 60% { transform: translateX(5px); } }
.rhythm-end-btn { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); padding: 13px 26px; border-radius: 8px; cursor: pointer; transition: all 0.35s; }
.rhythm-end-btn:hover { background: rgba(229,57,53,0.18); border-color: rgba(229,57,53,0.5); color: #ff8a85; }
.rhythm-end-btn:active { transform: scale(0.97); }
@media (max-width: 768px) { .rhythm-modal-content { max-width: 100vw; max-height: 100vh; width: 100%; height: 100%; border-radius: 0; border: none; } .rhythm-modal-header { padding: 18px 22px; } .rhythm-modal-body { padding: 0 24px 36px; } #rhythmUI { gap: 32px; } .rhythm-orb { width: 220px; height: 220px; } .orb-core { width: 110px; height: 110px; } }

/* ========== STICKY BAR ========== */
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(7,15,5,0.97); border-top: 2px solid var(--forest); padding: 0 24px; height: 64px; display: flex; align-items: center; justify-content: center; z-index: 97; transform: translateY(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.sticky-cta.show { transform: translateY(0); }
.sticky-cta-btn { display: inline-flex; align-items: center; gap: 8px; height: 40px; padding: 0 20px; background: var(--forest); color: #fff; border: none; border-radius: 4px; font-family: inherit; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; cursor: pointer; transition: background .15s ease; }
.sticky-cta-btn:hover { background: var(--forest-dark); }
body.sticky-bar-on { padding-bottom: 64px; }
@media (max-width: 480px) { .sticky-cta { padding: 0 14px; } .sticky-cta-btn { font-size: 12px; padding: 0 14px; } }

/* ========== FADE UP ========== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ========== GLOBAL BODY ========== */
body {
  background: radial-gradient(ellipse 80% 50% at top right, rgba(45,106,79,0.08), transparent 55%),
              radial-gradient(ellipse 80% 50% at bottom left, rgba(45,106,79,0.05), transparent 55%),
              #070f05 !important;
  color: rgba(255,255,255,0.9);
}

/* ========== SELECTION ========== */
::selection { background: var(--forest); color: var(--white); }

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0d1a09; }
::-webkit-scrollbar-thumb { background: var(--forest); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--forest-light); }

/* ========== SAFE AREA ========== */
@supports (padding: env(safe-area-inset-bottom)) {
  .rhythm-float { bottom: calc(16px + env(safe-area-inset-bottom)); }
  .footer { padding-bottom: calc(24px + env(safe-area-inset-bottom)); }
  .rhythm-modal-content { padding-bottom: env(safe-area-inset-bottom); }
}
