/* ── Landing Page Styles ── */

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

.lp-body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #f5f0e8;
  color: #2c2c2c;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Nav ── */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3rem;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.3s, box-shadow 0.4s;
}

.lp-nav-scrolled {
  background: rgba(10, 31, 18, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.85rem 3rem;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.lp-logo {
  font-size: 1.45rem;
  font-weight: 900;
  color: white;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.lp-nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lp-nav-link {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  padding: 0.4rem 0;
}
.lp-nav-link:hover { color: white; }

.lp-btn-nav {
  background: #d4a017;
  color: #0a1f12;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.lp-btn-nav:hover {
  background: #e6b822;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(212,160,23,0.4);
}

/* ── Hero ── */
.lp-hero {
  min-height: 100vh;
  background: linear-gradient(145deg, #0a1f12 0%, #0f2d1c 30%, #1b4332 65%, #2d6a4f 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-hero::before {
  content: '';
  position: absolute;
  width: 65vw; height: 65vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.06) 0%, transparent 65%);
  top: -15%; left: -10%;
  pointer-events: none;
}
.lp-hero::after {
  content: '';
  position: absolute;
  width: 45vw; height: 45vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82,183,136,0.1) 0%, transparent 70%);
  bottom: -10%; right: -5%;
  pointer-events: none;
}

/* Floating leaves */
.lp-hero-leaves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.lp-leaf {
  position: absolute;
  border-radius: 50% 0;
  animation: lp-leaf-fall linear infinite;
  top: -20px;
}
.lp-leaf-1 { left: 12%; width: 9px;  height: 9px;  animation-duration: 13s; animation-delay: 0s;   background: rgba(82,183,136,0.3); }
.lp-leaf-2 { left: 33%; width: 7px;  height: 7px;  animation-duration: 9s;  animation-delay: -3s;  background: rgba(212,160,23,0.22); }
.lp-leaf-3 { left: 60%; width: 10px; height: 10px; animation-duration: 15s; animation-delay: -7s;  background: rgba(82,183,136,0.28); }
.lp-leaf-4 { left: 78%; width: 6px;  height: 6px;  animation-duration: 10s; animation-delay: -2s;  background: rgba(212,160,23,0.18); }
.lp-leaf-5 { left: 48%; width: 8px;  height: 8px;  animation-duration: 12s; animation-delay: -5s;  background: rgba(82,183,136,0.25); }

@keyframes lp-leaf-fall {
  0%   { transform: translateY(-20px) rotate(0deg) translateX(0);    opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(105vh) rotate(400deg) translateX(60px); opacity: 0; }
}

/* Hero inner grid */
.lp-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 110px 3rem 80px;
  width: 100%;
}

.lp-hero-text {
  animation: lp-slide-up 0.8s ease-out both;
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(212,160,23,0.12);
  color: #d4a017;
  border: 1px solid rgba(212,160,23,0.3);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}

.lp-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #d4a017;
  flex-shrink: 0;
  animation: lp-pulse 2.2s ease-in-out infinite;
}

@keyframes lp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.75); }
}

.lp-headline {
  font-size: clamp(2.6rem, 4.5vw, 4.6rem);
  font-weight: 900;
  color: white;
  line-height: 1.06;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
}

.lp-headline-em {
  font-style: normal;
  color: #d4a017;
}

.lp-subline {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 460px;
}

.lp-hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.lp-btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #d4a017;
  color: #0a1f12;
  padding: 0.9rem 1.8rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.98rem;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(212,160,23,0.38);
  transition: background 0.2s, transform 0.25s, box-shadow 0.25s;
}
.lp-btn-hero:hover {
  background: #e6b822;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(212,160,23,0.5);
}

.lp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.22);
  padding: 0.9rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.lp-btn-ghost:hover {
  border-color: rgba(255,255,255,0.55);
  color: white;
  background: rgba(255,255,255,0.05);
}

.lp-hero-note {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.2px;
}

/* Hero visual — tree + cards */
.lp-hero-visual {
  position: relative;
  height: 480px;
  animation: lp-fade-in 1.2s ease-out 0.4s both;
}

.lp-tree-svg {
  width: 100%;
  height: 100%;
}

/* Floating note cards */
.lp-note {
  position: absolute;
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  font-size: 0.8rem;
  color: #1a1a1a;
  box-shadow: 0 6px 22px rgba(0,0,0,0.22), 0 2px 6px rgba(0,0,0,0.14);
  max-width: 148px;
  line-height: 1.45;
  animation: lp-float 5s ease-in-out infinite;
}
.lp-note::before {
  content: '';
  position: absolute;
  top: -22px;
  left: 50%;
  width: 1.5px;
  height: 22px;
  background: rgba(255,255,255,0.35);
  transform: translateX(-50%);
}

.lp-note-from {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 0.3rem;
  opacity: 0.55;
}
.lp-note p { margin: 0; font-size: 0.8rem; font-weight: 500; }

.lp-note-yellow { background: #fffbea; border-top: 3px solid #d4a017; }
.lp-note-blue   { background: #eef4ff; border-top: 3px solid #4a90d9; }

.lp-note-1 { top: 53%; left:  1%; animation-delay: 0s;    animation-duration: 5.5s; }
.lp-note-2 { top: 40%; right: 0%;  animation-delay: -1.8s; animation-duration: 6.2s; }
.lp-note-3 { top: 30%; left: 14%; animation-delay: -3.5s; animation-duration: 5s;   }
.lp-note-4 { top: 20%; right: 5%;  animation-delay: -0.7s; animation-duration: 7s;   }

@keyframes lp-float {
  0%,100% { transform: translateY(0px)   rotate(-1.5deg); }
  50%      { transform: translateY(-10px) rotate(1.5deg);  }
}

/* Scroll hint */
.lp-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.lp-scroll-arrow {
  width: 22px; height: 22px;
  border-right: 2px solid rgba(255,255,255,0.35);
  border-bottom: 2px solid rgba(255,255,255,0.35);
  transform: rotate(45deg);
  animation: lp-bounce 2s ease-in-out infinite;
}
@keyframes lp-bounce {
  0%,100% { transform: rotate(45deg) translateY(0);  opacity: 0.5; }
  50%      { transform: rotate(45deg) translateY(6px); opacity: 0.9; }
}

/* ── Shared ── */
.lp-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 3rem;
}

.lp-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.lp-section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #0f2d1c;
  letter-spacing: -1px;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.lp-section-sub {
  font-size: 1.02rem;
  color: #6b6b6b;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Features ── */
.lp-features {
  background: #f5f0e8;
  padding: 6.5rem 0;
}

.lp-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.lp-feat-card {
  background: white;
  border-radius: 18px;
  padding: 2rem 1.75rem;
  border: 1px solid #e0d8cc;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  min-height: 230px;
}
.lp-feat-card::before {
  display: none;
}
.lp-feat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.09);
}

.lp-feat-card-green::before  { background: #2d6a4f; }
.lp-feat-card-blue::before   { background: #2563eb; }
.lp-feat-card-amber::before  { background: #d97706; }
.lp-feat-card-purple::before { background: #7c3aed; }
.lp-feat-card-teal::before   { background: #0891b2; }
.lp-feat-card-rose::before   { background: #e11d48; }

.lp-feat-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.lp-feat-icon-green  { background: #d8f3dc; color: #2d6a4f; }
.lp-feat-icon-blue   { background: #dbeafe; color: #2563eb; }
.lp-feat-icon-amber  { background: #fef3c7; color: #d97706; }
.lp-feat-icon-purple { background: #ede9fe; color: #7c3aed; }
.lp-feat-icon-teal   { background: #cffafe; color: #0891b2; }
.lp-feat-icon-rose   { background: #ffe4e6; color: #e11d48; }

.lp-feat-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f2d1c;
  margin-bottom: 0.6rem;
  letter-spacing: -0.3px;
}
.lp-feat-card > p {
  font-size: 0.875rem;
  color: #6b6b6b;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.lp-feat-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  border-top: 1px solid #f0ebe3;
  padding-top: 1rem;
}
.lp-feat-list li {
  font-size: 0.8rem;
  color: #2d6a4f;
  font-weight: 600;
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.4;
}
.lp-feat-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 0.65;
}

/* ── Bento wide cards ── */
.lp-feat-wide { grid-column: span 2; }

/* ── Light card backgrounds ── */
.lp-feat-card-rose  { background: #fff; }
.lp-feat-card-blue  { background: #fff; }
.lp-feat-card-teal  { background: #fff; }

/* ── Pill tags ── */
.lp-feat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 1rem;
}
.lp-feat-tag {
  background: rgba(0,0,0,0.07);
  border-radius: 20px;
  padding: 0.22rem 0.7rem;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.55;
}
@media (max-width: 1060px) {
  .lp-feat-wide { grid-column: span 1; }
}

/* ── How it works ── */
.lp-how {
  background: white;
  padding: 6.5rem 0;
}
.lp-how .lp-section-title { color: #0f2d1c; }

.lp-steps {
  display: flex;
  align-items: flex-start;
  max-width: 860px;
  margin: 0 auto;
}

.lp-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
}

.lp-step-num {
  font-size: 4rem;
  font-weight: 900;
  color: #e8e1d5;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -3px;
  font-variant-numeric: tabular-nums;
}

.lp-step-content h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f2d1c;
  margin-bottom: 0.5rem;
  letter-spacing: -0.3px;
}
.lp-step-content p {
  font-size: 0.875rem;
  color: #6b6b6b;
  line-height: 1.65;
}

.lp-step-divider {
  flex: 0 0 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2d6a4f, transparent);
  margin-top: 2.2rem;
  border-radius: 2px;
  opacity: 0.3;
}

/* ── Privacy strip ── */
.lp-privacy-strip {
  background: linear-gradient(140deg, #0a1f12 0%, #0f2d1c 40%, #1b4332 100%);
  padding: 5.5rem 0;
  color: white;
}
.lp-privacy-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.lp-privacy-text h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 0.7rem;
}
.lp-privacy-text p {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  line-height: 1.6;
}
.lp-privacy-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.lp-privacy-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
}
.lp-privacy-item svg { color: #52b788; flex-shrink: 0; }

/* ── Final CTA ── */
.lp-final-cta {
  background: #f5f0e8;
  padding: 8rem 0;
}
.lp-final-cta-inner {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}
.lp-final-cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #0f2d1c;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 0.9rem;
}
.lp-final-cta-inner > p {
  font-size: 1rem;
  color: #6b6b6b;
  margin-bottom: 2.5rem;
}
.lp-btn-hero-large {
  padding: 1.05rem 2.4rem;
  font-size: 1.05rem;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(212,160,23,0.42);
}
.lp-already-member {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: #6b6b6b;
}
.lp-already-member a {
  color: #2d6a4f;
  font-weight: 700;
  text-decoration: none;
}
.lp-already-member a:hover { text-decoration: underline; }

/* ── Footer ── */
.lp-footer {
  background: #080e0a;
  padding: 2rem 0;
}
.lp-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-footer-brand {
  font-size: 1.1rem;
  font-weight: 900;
  color: white;
  letter-spacing: -0.5px;
}
.lp-footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.28);
}
.lp-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1rem;
  justify-content: center;
}
.lp-footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color .15s;
}
.lp-footer-legal a:hover { color: #d4a017; }

/* ── Scroll reveal ── */
.lp-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.lp-revealed {
  opacity: 1;
  transform: translateY(0);
}
.lp-feat-grid .lp-feat-card:nth-child(2) { transition-delay: 0.08s; }
.lp-feat-grid .lp-feat-card:nth-child(3) { transition-delay: 0.16s; }
.lp-feat-grid .lp-feat-card:nth-child(4) { transition-delay: 0.24s; }
.lp-feat-grid .lp-feat-card:nth-child(5) { transition-delay: 0.32s; }
.lp-feat-grid .lp-feat-card:nth-child(6) { transition-delay: 0.40s; }
.lp-steps .lp-step:nth-child(3) { transition-delay: 0.15s; }
.lp-steps .lp-step:nth-child(5) { transition-delay: 0.3s; }

/* ── Page load animations ── */
@keyframes lp-slide-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lp-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Responsive ── */
@media (max-width: 1060px) {
  .lp-feat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1060px) and (max-width: 1300px) {
  .lp-feat-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 880px) {
  .lp-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 120px 2rem 60px;
    gap: 2.5rem;
  }
  .lp-hero-visual {
    height: 340px;
    max-width: 380px;
    margin: 0 auto;
  }
  .lp-subline { margin: 0 auto 2.5rem; }
  .lp-hero-cta { justify-content: center; }
  .lp-badge { display: inline-flex; }
  .lp-note-4 { display: none; }

  .lp-privacy-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .lp-steps {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .lp-step-divider {
    width: 2px;
    height: 36px;
    flex: 0 0 36px;
    background: linear-gradient(180deg, transparent, #2d6a4f, transparent);
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .lp-nav  { padding: 1rem 1.5rem; }
  .lp-nav-scrolled { padding: 0.75rem 1.5rem; }
  .lp-container { padding: 0 1.5rem; }
  .lp-features  { padding: 4.5rem 0; }
  .lp-how       { padding: 4.5rem 0; }
  .lp-privacy-strip { padding: 4rem 0; }
  .lp-final-cta { padding: 5rem 0; }
  .lp-feat-grid { grid-template-columns: 1fr; }
  .lp-note-3, .lp-note-4 { display: none; }
}
