@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
body {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.w-nav-brand .nav-logo {
  max-width: 180px;
}

/* Variables */
:root {
  --primary: #6bbf59;
}

a:hover {
  color: var(--brand-color-01);
}

h1 {
  font-size: 56px !important;
  line-height: 1.12;
  margin-bottom: 20px !important;
  color: var(--text-color-01);
  text-shadow: 0 12px 30px rgba(16, 40, 27, 0.12);
}
h1 .gradient-text {
  background: linear-gradient(90deg, #2f7a45, #7ecb7a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  h1 {
    font-size: 36px !important;
  }
}

/* Hero Section */
.hero {
  padding: 70px 0;
  padding-top: 170px;
  background: radial-gradient(800px 400px at 10% 10%, rgba(107, 191, 89, 0.18), transparent 60%), radial-gradient(700px 360px at 90% 20%, rgba(15, 45, 30, 0.12), transparent 55%), linear-gradient(180deg, #eef7f0 0%, #f7fcf8 100%);
  position: relative;
  overflow: hidden;
  /* LEFT CONTENT */
  /* RIGHT SIDE */
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 40%), radial-gradient(circle at 20% 30%, rgba(107, 191, 89, 0.12), transparent 40%);
  pointer-events: none;
}
.hero .hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.hero .hero-content {
  flex: 1;
}
.hero .hero-content .badge {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(107, 191, 89, 0.18), rgba(107, 191, 89, 0.05));
  color: #1b5a36;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.6px;
  border: 1px solid rgba(107, 191, 89, 0.25);
  margin-bottom: 20px;
}
.hero .hero-content p {
  color: #4c5f55;
  margin-bottom: 30px;
  max-width: 520px;
}
.hero .hero-content .hero-feature-rotator {
  position: relative;
  margin-top: 18px;
  max-width: 380px;
  height: 52px;
  padding: 12px 18px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid #cfe9d8;
  background: linear-gradient(90deg, rgba(200, 243, 214, 0.95) 0%, rgba(242, 252, 246, 0.98) 45%, #ffffff 100%), repeating-linear-gradient(135deg, rgba(180, 227, 197, 0.35) 0 10px, rgba(255, 255, 255, 0) 10px 20px);
  box-shadow: 0 18px 40px rgba(16, 40, 27, 0.12), inset 0 0 0 1px rgba(180, 224, 195, 0.6);
}
.hero .hero-content .hero-feature-rotator::after {
  content: "";
  position: absolute;
  left: -30%;
  top: -70%;
  width: 160%;
  height: 180%;
  background: radial-gradient(circle, rgba(98, 204, 140, 0.35) 0%, rgba(255, 255, 255, 0) 62%);
  filter: blur(12px);
  opacity: 0.8;
  z-index: 0;
}
.hero .hero-content .hero-feature-rotator::before {
  content: "";
  position: absolute;
  left: -40%;
  top: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.7) 40%, transparent 70%);
  animation: rotatorSweep 6s ease-in-out infinite;
  opacity: 0.9;
  z-index: 0;
}
.hero .hero-content .hero-feature-rotator .feature-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #163527;
  z-index: 1;
  opacity: 0;
  transform: translateY(10px);
  animation: featureCycle 24.3s ease-in-out infinite;
  animation-fill-mode: both;
  padding: 12px;
}
.hero .hero-content .hero-feature-rotator .feature-item .feature-icon {
  font-size: 18px;
  color: #12673a;
  background: linear-gradient(135deg, #d2f4dd, #f6fffa);
  border-radius: 999px;
  padding: 6px;
  box-shadow: inset 0 0 0 1px #bfe7cd, 0 6px 16px rgba(14, 62, 36, 0.12);
}
.hero .hero-content .hero-feature-rotator .feature-item:nth-child(1) {
  animation-delay: 0s;
}
.hero .hero-content .hero-feature-rotator .feature-item:nth-child(2) {
  animation-delay: 2.7s;
}
.hero .hero-content .hero-feature-rotator .feature-item:nth-child(3) {
  animation-delay: 5.4s;
}
.hero .hero-content .hero-feature-rotator .feature-item:nth-child(4) {
  animation-delay: 8.1s;
}
.hero .hero-content .hero-feature-rotator .feature-item:nth-child(5) {
  animation-delay: 10.8s;
}
.hero .hero-content .hero-feature-rotator .feature-item:nth-child(6) {
  animation-delay: 13.5s;
}
.hero .hero-content .hero-feature-rotator .feature-item:nth-child(7) {
  animation-delay: 16.2s;
}
.hero .hero-content .hero-feature-rotator .feature-item:nth-child(8) {
  animation-delay: 18.9s;
}
.hero .hero-content .hero-feature-rotator .feature-item:nth-child(9) {
  animation-delay: 21.6s;
}
.hero .hero-content .btn-primary {
  background: #6bbf59;
  border: none;
  padding: 14px 30px;
  border-radius: 40px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(107, 191, 89, 0.3);
  transition: 0.3s;
}
.hero .hero-content .btn-primary:hover {
  transform: translateY(-3px);
}
.hero .hero-visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Glow background */
  /* Tablet Card */
  /* Floating Cards */
}
.hero .hero-visual .circle-bg {
  position: absolute;
  max-width: 500px;
  height: 500px;
  background: radial-gradient(circle, #d9f3df 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 6s infinite ease-in-out;
}
.hero .hero-visual .card-screen {
  position: relative;
  width: 360px;
  height: 360px;
  background: linear-gradient(145deg, #082318, #0e2f1e);
  border-radius: 30px;
  padding: 40px;
  z-index: 2;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
  animation: float 5s infinite ease-in-out;
  /* Animated Bars */
}
.hero .hero-visual .card-screen p {
  color: #6bbf59;
  font-size: 14px;
  letter-spacing: 2px;
}
.hero .hero-visual .card-screen .chart {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  height: 140px;
  margin-bottom: 30px;
}
.hero .hero-visual .card-screen .chart span {
  width: 14px;
  border-radius: 8px;
  background: linear-gradient(to top, #6bbf59, #9cd490);
  box-shadow: 0 0 12px rgba(107, 191, 89, 0.6);
  animation: barMove 1.8s ease-in-out infinite;
}
.hero .hero-visual .card-screen .chart span:nth-child(1) {
  animation-delay: 0s;
}
.hero .hero-visual .card-screen .chart span:nth-child(2) {
  animation-delay: 0.2s;
}
.hero .hero-visual .card-screen .chart span:nth-child(3) {
  animation-delay: 0.4s;
}
.hero .hero-visual .card-screen .chart span:nth-child(4) {
  animation-delay: 0.6s;
}
@media (max-width: 768px) {
  .hero .hero-visual .card-screen {
    width: 280px;
  }
}
.hero .hero-visual .floating-card {
  position: absolute;
  background: #fff;
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  z-index: 3;
  animation: floatSmall 4s infinite ease-in-out;
}
.hero .hero-visual .security {
  top: 60px;
  right: -20px;
}
.hero .hero-visual .efficiency {
  bottom: 40px;
  left: -20px;
}
.hero .hero-visual .efficiency .progress {
  margin-top: 8px;
  height: 6px;
  background: #e4efe7;
  border-radius: 10px;
  position: relative;
}
.hero .hero-visual .efficiency .progress::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 100%;
  background: #6bbf59;
  border-radius: 10px;
}
@media (min-width: 992px) {
  .hero {
    height: calc(100vh - 68px);
  }
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes floatSmall {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes featureCycle {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  3% {
    opacity: 1;
    transform: translateY(0);
  }
  9% {
    opacity: 1;
    transform: translateY(0);
  }
  13% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}
@keyframes rotatorSweep {
  0% {
    transform: translateX(-20%);
    opacity: 0;
  }
  30% {
    opacity: 0.6;
  }
  60% {
    transform: translateX(220%);
    opacity: 0;
  }
  100% {
    transform: translateX(220%);
    opacity: 0;
  }
}
@keyframes marqueeX {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes barMove {
  0% {
    height: 30px;
  }
  25% {
    height: 90px;
  }
  50% {
    height: 50px;
  }
  75% {
    height: 110px;
  }
  100% {
    height: 30px;
  }
}
/* Responsive */
@media (max-width: 992px) {
  .hero .hero-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .hero .hero-visual {
    margin-top: 50px;
  }
}
/* Partners marquee */
.partners-marquee-block {
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 16px;
  padding: 14px 0;
}

.partners-marquee-block::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(90deg, #fff9ef 0%, rgba(255, 255, 255, 0) 12%, rgba(255, 255, 255, 0) 88%, #fff9ef 100%);
}

.partners-marquee-block .partners-marquee-track {
  display: flex;
  gap: 16px;
  align-items: center;
  animation: marqueeX 22s linear infinite;
}

.partners-marquee-block .partners-feature {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 22px;
  border: 1px solid rgba(196, 231, 208, 0.9);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 18px rgba(12, 37, 24, 0.08);
  white-space: nowrap;
  padding: 4px 7px;
  padding-right: 10px;
  font-size: 12px;
}

.partners-marquee-block .partners-feature .feature-icon {
  font-size: 18px;
  color: #12673a;
  background: linear-gradient(135deg, #d2f4dd, #f6fffa);
  border-radius: 999px;
  padding: 6px;
  box-shadow: inset 0 0 0 1px #bfe7cd;
}

/* BACKDROP BLUR */
.modal-backdrop.show {
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.6);
}

/* MODAL */
.demo-modal {
  /* LEFT SIDE */
  /* RIGHT SIDE */
  /* UNDERLINE INPUT STYLE */
  /* BUTTON */
  /* BOTTOM STRIP */
}
.demo-modal .modal-content {
  border-radius: 16px;
  overflow: hidden;
  border: none;
}
.demo-modal .demo-left {
  background: linear-gradient(135deg, #0f3d2e, #1c6b4f);
  color: #fff;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.demo-modal .demo-left img {
  filter: brightness(0) invert(1);
  width: 150px;
  margin-bottom: 30px;
}
.demo-modal .demo-left h2 {
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
}
.demo-modal .demo-right {
  background: #f8faf9;
  padding: 50px 40px 30px;
  position: relative;
}
.demo-modal .demo-right h3 {
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--text-color-01);
}
.demo-modal .demo-right .btn-close-custom {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 14px;
  cursor: pointer;
}
.demo-modal .form-control {
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  background: transparent;
  padding-left: 0;
}
.demo-modal .form-control:focus {
  box-shadow: none;
  border-color: #1c6b4f;
}
.demo-modal .form-label {
  font-size: 12px;
  margin: 0;
}
.demo-modal .btn-demo {
  background-image: linear-gradient(114deg, var(--brand-color-02) 13.41%, var(--brand-color-01) 54.9%);
  border: none;
  padding: 14px;
  font-weight: 500;
  border-radius: 8px;
}
.demo-modal .btn-demo:hover {
  opacity: 0.9;
}
.demo-modal .security-strip {
  background: #eaf4ef;
  padding: 12px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  gap: 30px;
  position: relative;
  left: -40px;
  width: calc(100% + 80px);
  bottom: -30px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .demo-modal .demo-left {
    display: none;
  }
}
.badge {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 20px;
  background: #dff3e4;
  color: #6bbf59;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
  animation: fadeUp 1.2s ease forwards;
}

.about-section {
  padding: 100px 0;
  text-align: center;
}
.about-section .container {
  max-width: 1200px;
  margin: auto;
}
.about-section .title {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-color-01);
  animation: fadeUp 1.2s ease forwards;
}
.about-section .title span {
  background: linear-gradient(90deg, #4caf50, #8bc34a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-section .subtitle {
  color: #5b6d63;
  margin-bottom: 30px;
  animation: fadeUp 1.2s ease forwards;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.about-section .card-wrapper {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.about-section .card-wrapper .info-card {
  background-color: var(--text-color-01);
  padding: 35px;
  border-radius: 20px;
  flex: 1;
  text-align: left;
  transition: 0.4s ease;
  animation: fadeUp 1.6s ease forwards;
}
.about-section .card-wrapper .info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(34, 227, 143, 0.15);
}
.about-section .card-wrapper .info-card h3 {
  margin-bottom: 15px;
  color: white;
}
.about-section .card-wrapper .info-card p {
  color: #cfd8dc;
  margin-bottom: 20px;
}
.about-section .card-wrapper .info-card .tags span {
  display: inline-block;
  background: rgba(34, 227, 143, 0.15);
  color: #22e38f;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-right: 8px;
  margin-top: 5px;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Responsive */
@media (max-width: 768px) {
  .about-section .title {
    font-size: 36px;
  }
  .about-section .pillars {
    flex-direction: column;
    gap: 30px;
  }
  .about-section .stats {
    flex-direction: column;
  }
}
/* Custom Glassmorphism */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 1rem;
}

/* Virtual Credit Card */
.credit-card-gradient {
  background: linear-gradient(135deg, #16230f 0%, #2a401c 100%);
  border-radius: 1.25rem;
  color: #ffffff;
  padding: 2rem;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
}
.credit-card-gradient .card-chip {
  width: 45px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.credit-card-gradient img {
  filter: brightness(0) invert(1);
  width: 150px;
}

.btn-primary-custom {
  background: linear-gradient(90deg, #4caf50, #8bc34a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border: none;
  font-weight: 800;
  padding: 1rem 2.5rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}
.btn-primary-custom:hover {
  box-shadow: 0 0 20px rgba(87, 249, 6, 0.4);
  transform: translateY(-2px);
}

.text-primary-custom {
  background: linear-gradient(90deg, #4caf50, #8bc34a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-pattern {
  background-image: radial-gradient(circle at 2px 2px, rgba(87, 249, 6, 0.05) 1px, transparent 0);
  background-size: 40px 40px;
}

.navbar {
  backdrop-filter: blur(10px);
  background: rgba(246, 248, 245, 0.8);
  border-bottom: 1px solid rgba(87, 249, 6, 0.1);
}

.user-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -12px;
}

.gb-cards h2 {
  font-size: 40;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-color-01);
}
.gb-cards h2 .gradient-text {
  background: linear-gradient(90deg, #4caf50, #8bc34a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
  .gb-cards h2 {
    font-size: 32px;
  }
}

/* Grain */
.grain-texture {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Gradient Text */
.forest-gradient-text {
  background: linear-gradient(135deg, #062c23, #064e3b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glass Card */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(6, 44, 35, 0.1);
  border-radius: 24px;
  box-shadow: 0 10px 30px -5px rgba(6, 44, 35, 0.05);
  transition: all 0.4s ease;
  padding: 2rem;
}
.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(163, 230, 53, 0.5);
  box-shadow: 0 20px 40px -10px rgba(6, 44, 35, 0.1);
}

/* 3D Shape */
.shape-3d {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #a3e635, #064e3b);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset -4px -4px 10px rgba(0, 0, 0, 0.2), inset 4px 4px 10px rgba(255, 255, 255, 0.3);
}

.ledger .row {
  align-items: stretch;
}
.ledger .col-lg-5,
.ledger .col-lg-7 {
  display: flex;
  flex-direction: column;
}
.ledger .badge,
.ledger .button-primary-small {
  align-self: flex-start;
  width: auto;
}
.ledger .button-primary-small {
  display: inline-flex;
}
.ledger .title {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-color-01);
}
.ledger .title .gradient-text {
  background: linear-gradient(90deg, #4caf50, #8bc34a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
  .ledger .title {
    font-size: 32px;
  }
}
.ledger p {
  color: #5b6d63;
  margin-bottom: 30px;
  max-width: 520px;
}

/* Agent Team */
.agent-team {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
}
.agent-team::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 60%;
  background: radial-gradient(600px 320px at 12% 30%, rgba(107, 191, 89, 0.2), transparent 70%), radial-gradient(520px 280px at 88% 25%, rgba(10, 40, 24, 0.16), transparent 70%);
  pointer-events: none;
}
.agent-team .agent-team-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.65) 0%, rgba(246, 251, 247, 0.85) 60%), radial-gradient(420px 200px at 50% 90%, rgba(140, 220, 170, 0.18), transparent 70%);
  pointer-events: none;
}
.agent-team .agent-team-grid {
  position: relative;
  z-index: 1;
}
.agent-team .agent-team-grid > div {
  margin-top: 0;
}
.agent-team .section-title-block {
  max-width: 760px;
  margin: 0 auto 12px;
}
.agent-team h2 {
  color: var(--text-color-01);
  text-shadow: 0 18px 40px rgba(16, 40, 27, 0.1);
}
.agent-team .agent-title-line {
  display: block;
}
.agent-team .agent-title-underline {
  width: 150px;
  height: 6px;
  border-radius: 999px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, #2f7a45, rgba(126, 203, 122, 0.25));
  position: relative;
}
.agent-team .agent-title-underline::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #2f7a45;
  box-shadow: 0 0 14px rgba(107, 191, 89, 0.55);
}
.agent-team .badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(107, 191, 89, 0.24), rgba(107, 191, 89, 0.06));
  border: 1px solid rgba(107, 191, 89, 0.28);
  color: #1f5a3c;
  font-weight: 700;
  letter-spacing: 0.6px;
}
.agent-team .agent-card {
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 28px;
  box-shadow: 0 24px 50px rgba(10, 40, 24, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  transform-style: preserve-3d;
  backdrop-filter: blur(10px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.agent-team .agent-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.9;
  pointer-events: none;
}
.agent-team .agent-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 34px 70px rgba(10, 40, 24, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}
.agent-team .agent-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.agent-team .agent-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex: 1;
}
.agent-team .agent-card-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2b6d53;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(107, 191, 89, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}
.agent-team .agent-card h3 {
  color: var(--text-color-01);
  letter-spacing: -0.2px;
  margin-top: auto;
}
.agent-team .agent-card p {
  color: #5b6d63;
}
.agent-team .agent-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: conic-gradient(from 120deg, rgba(107, 191, 89, 0.45), rgba(255, 255, 255, 0.9), rgba(107, 191, 89, 0.2));
  box-shadow: inset 0 0 0 1px rgba(177, 223, 195, 0.85), 0 14px 26px rgba(13, 56, 32, 0.16);
  color: #2f7a45;
  transition: transform 0.35s ease;
}
.agent-team .agent-metric {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #1f5a3c;
  background: linear-gradient(90deg, rgba(107, 191, 89, 0.22), rgba(107, 191, 89, 0.08));
  border: 1px solid rgba(107, 191, 89, 0.32);
  padding: 7px 12px;
  border-radius: 999px;
  line-height: 1;
  white-space: nowrap;
  margin-top: 2px;
  box-shadow: 0 8px 16px rgba(16, 40, 27, 0.08);
}
.agent-team .agent-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px dashed rgba(19, 62, 40, 0.14);
}
.agent-team .agent-card-signal,
.agent-team .agent-card-track {
  font-size: 12px;
  font-weight: 600;
  color: #2f7a45;
}
.agent-team .agent-card-signal {
  position: relative;
  padding-left: 18px;
}
.agent-team .agent-card-signal::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: #6bbf59;
  box-shadow: 0 0 12px rgba(107, 191, 89, 0.65);
}
.agent-team .agent-card-track {
  color: #5b6d63;
}
.agent-team .agent-team-grid > div:nth-child(2) .agent-card::after {
  background: linear-gradient(90deg, #1f5a3c, rgba(126, 203, 122, 0.35));
}
.agent-team .agent-team-grid > div:nth-child(3) .agent-card::after {
  background: linear-gradient(90deg, #2b6d53, rgba(180, 230, 160, 0.35));
}
.agent-team .agent-team-grid > div:nth-child(4) .agent-card::after {
  background: linear-gradient(90deg, #2f7a45, rgba(120, 190, 140, 0.35));
}
.agent-team .agent-card:hover .agent-icon {
  transform: translateY(-2px) rotate(-2deg);
}
@media (max-width: 991px) {
  .agent-team .agent-card {
    transform: none;
  }
}
@media (max-width: 767px) {
  .agent-team .agent-card-top,
  .agent-team .agent-card-head,
  .agent-team .agent-card-foot {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Fresh Green Light Theme */
.creative-footer {
  position: relative;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #d1fae5 100%);
  color: #166534;
  overflow: hidden;
  font-family: system-ui, -apple-system, sans-serif;
  padding: 140px 0 40px;
  min-height: 500px;
}

/* Floating Leaves */
.leaf {
  position: absolute;
  font-size: 2rem;
  opacity: 0.15;
  animation: drift 20s infinite ease-in-out;
  filter: blur(1px);
}

.leaf-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.leaf-2 {
  bottom: 30%;
  right: 15%;
  animation-delay: -10s;
  font-size: 3rem;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  33% {
    transform: translate(30px, -30px) rotate(5deg) scale(1.05);
  }
  66% {
    transform: translate(-20px, 20px) rotate(-5deg) scale(0.95);
  }
}
@keyframes drift {
  0%, 100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
/* Soft Wave */
.wave-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  line-height: 0;
  transform: rotate(180deg);
}

.wave-container svg {
  width: 100%;
  height: 100%;
}

/* Container */
.footer-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  z-index: 1;
  /* Typography */
}
.footer-container .gradient-text {
  font-size: 2.75rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
  background-image: linear-gradient(114deg, var(--brand-color-02) 13.41%, var(--brand-color-01) 54.9%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

/* Glass Card - White with Green Tint */
.newsletter-card {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 32px;
  padding: 3rem;
  margin-bottom: 4rem;
  box-shadow: 0 20px 40px -5px rgba(22, 101, 52, 0.1), 0 10px 20px -5px rgba(22, 101, 52, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform-style: preserve-3d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.newsletter-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px -10px rgba(22, 101, 52, 0.15), 0 15px 30px -5px rgba(22, 101, 52, 0.1);
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(134, 239, 172, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.glass-content {
  position: relative;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 197, 94, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}
.subtitle {
  color: #4b5563;
  margin-bottom: 2rem;
  font-size: 1.125rem;
  line-height: 1.6;
}

/* Form */
.subscribe-form {
  margin-bottom: 1.5rem;
}

.input-wrapper {
  position: relative;
  display: flex;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03), inset 0 2px 4px rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(34, 197, 94, 0.2);
  transition: all 0.3s;
}

.input-wrapper:focus-within {
  box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.1), 0 4px 6px -2px rgba(34, 197, 94, 0.05), inset 0 2px 4px rgba(255, 255, 255, 0.8);
  border-color: rgba(34, 197, 94, 0.4);
}

.neo-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: #166534;
  outline: none;
}

.neo-input::placeholder {
  color: #9ca3af;
}

/* Send Button */
.send-btn {
  position: relative;
  background-image: linear-gradient(114deg, var(--brand-color-02) 13.41%, var(--brand-color-01) 54.9%);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow: hidden;
  transition: all 0.3s;
}

.send-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(34, 197, 94, 0.4);
}

.send-btn:hover .arrow-icon {
  transform: translateX(4px);
}

.arrow-icon {
  transition: transform 0.3s;
}

.ripple {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255, 255, 255, 0.4) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.send-btn:hover .ripple {
  opacity: 1;
}

/* Success Message */
.success-msg {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #15803d;
  font-weight: 500;
  margin-top: 1rem;
  animation: fadeIn 0.5s;
}

.success-msg.show {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(34, 197, 94, 0.2);
  padding-top: 2rem;
}

.bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.copyright {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #4b5563;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.year {
  font-weight: 700;
  color: #166534;
}

.dot-separator {
  color: #22c55e;
  font-weight: 900;
}

.brand-names {
  font-weight: 800;
  background-image: linear-gradient(114deg, var(--brand-color-02) 13.41%, var(--brand-color-01) 54.9%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.crafted {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.heart {
  display: inline-block;
  animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
}
.link-hover {
  color: #66ac4c;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.3s;
}

.link-hover::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  transition: width 0.3s;
}

.link-hover:hover::after {
  width: 100%;
}

/* Back to Top */
.back-to-top button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #4b5563;
  transition: all 0.3s;
}

.top-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(34, 197, 94, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* .back-to-top button:hover .top-circle {
			background: linear-gradient(135deg, #22c55e, #16a34a);
			border-color: transparent;
			color: white;
			transform: translateY(-3px);
			box-shadow: 0 10px 20px -5px rgba(34, 197, 94, 0.3);
		} */
.top-label {
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s;
}

/* .back-to-top button:hover .top-label {
			color: #16a34a;
		} */
/* Responsive */
@media (max-width: 768px) {
  .creative-footer {
    padding-top: 100px;
  }
  .newsletter-card {
    padding: 2rem 1.5rem;
    border-radius: 24px;
  }
  .gradient-text {
    font-size: 2rem;
  }
  .input-wrapper {
    flex-direction: column;
  }
  .send-btn {
    width: 100%;
    justify-content: center;
  }
  .bottom-content {
    flex-direction: column;
    text-align: center;
  }
  .trust-badges {
    flex-direction: column;
    gap: 0.75rem;
  }
}
/* ── SCENE ── */
.scene1,
.scene21 {
  position: relative;
  width: min(520px, 94vw);
  z-index: 1;
  perspective: 1200px;
  /* ── STACK ── */
  /* ── PROGRESS DOTS ── */
}
.scene1 .stack,
.scene21 .stack {
  position: relative;
  height: 340px;
  /* Ghost cards */
  /* ── MAIN CARD ── */
}
.scene1 .stack.animating .ghost-1,
.scene21 .stack.animating .ghost-1 {
  transform: translateY(8px) scaleX(0.95) scaleY(0.98);
  opacity: 0.65;
}
.scene1 .stack.animating .ghost-2,
.scene21 .stack.animating .ghost-2 {
  transform: translateY(16px) scaleX(0.9) scaleY(0.96);
  opacity: 0.35;
}
.scene1 .stack .ghost,
.scene21 .stack .ghost {
  position: absolute;
  inset: 0;
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(90, 173, 63, 0.14);
  transform-origin: center bottom;
  transition: transform 0.6s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.6s ease;
}
.scene1 .stack .ghost.ghost-1,
.scene21 .stack .ghost.ghost-1 {
  transform: translateY(12px) scaleX(0.93) scaleY(0.97);
  opacity: 0.55;
  z-index: 1;
}
.scene1 .stack .ghost.ghost-2,
.scene21 .stack .ghost.ghost-2 {
  transform: translateY(22px) scaleX(0.86) scaleY(0.94);
  opacity: 0.28;
  z-index: 0;
}
.scene1 .stack .main-card,
.scene21 .stack .main-card {
  position: absolute;
  inset: 0;
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(90, 173, 63, 0.14);
  box-shadow: 0 8px 40px rgba(40, 90, 20, 0.1), 0 2px 8px rgba(40, 90, 20, 0.06);
  z-index: 10;
  overflow: hidden;
  transform-origin: center center;
  will-change: transform, opacity;
  /* ── TOP STRIP ── */
  /* ── METRIC SECTION ── */
  /* ── ROW LIST ── */
  /* ── DRAWER ── */
}
.scene1 .stack .main-card.flip-out,
.scene21 .stack .main-card.flip-out {
  animation: cardFlipOut 0.45s cubic-bezier(0.55, 0, 1, 0.45) forwards;
}
.scene1 .stack .main-card.flip-in,
.scene21 .stack .main-card.flip-in {
  animation: cardFlipIn 0.45s cubic-bezier(0, 0.55, 0.45, 1) forwards;
}
.scene1 .stack .main-card .top-strip,
.scene21 .stack .main-card .top-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px 0;
}
.scene1 .stack .main-card .top-strip .brand-row,
.scene21 .stack .main-card .top-strip .brand-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.scene1 .stack .main-card .top-strip .brand-row .brand-icon,
.scene21 .stack .main-card .top-strip .brand-row .brand-icon {
  width: 30px;
  height: 30px;
  background: #5aad3f;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scene1 .stack .main-card .top-strip .brand-row .brand-icon svg,
.scene21 .stack .main-card .top-strip .brand-row .brand-icon svg {
  width: 16px;
  height: 16px;
}
.scene1 .stack .main-card .top-strip .brand-row .brand-name,
.scene21 .stack .main-card .top-strip .brand-row .brand-name {
  font-size: 13px;
  font-weight: 700;
  color: #182912;
  letter-spacing: -0.01em;
}
.scene1 .stack .main-card .top-strip .feature-tag,
.scene21 .stack .main-card .top-strip .feature-tag {
  font-size: 10px;
  font-weight: 600;
  color: #5aad3f;
  background: rgba(90, 173, 63, 0.12);
  border: 1px solid rgba(90, 173, 63, 0.2);
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}
.scene1 .stack .main-card .metric-section,
.scene21 .stack .main-card .metric-section {
  padding: 16px 22px 14px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.scene1 .stack .main-card .metric-section .metric-info .metric-caption,
.scene21 .stack .main-card .metric-section .metric-info .metric-caption {
  font-size: 10px;
  font-weight: 500;
  color: #8aab7e;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.scene1 .stack .main-card .metric-section .metric-info .metric-value,
.scene21 .stack .main-card .metric-section .metric-info .metric-value {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(18px, 8vw, 34px);
  color: #182912;
  letter-spacing: 0.01em;
  line-height: 1;
  font-weight: 700;
}
.scene1 .stack .main-card .metric-section .metric-info .metric-sublabel,
.scene21 .stack .main-card .metric-section .metric-info .metric-sublabel {
  font-size: 11px;
  color: #8aab7e;
  margin-top: 5px;
}
.scene1 .stack .main-card .metric-section .metric-ring,
.scene21 .stack .main-card .metric-section .metric-ring {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  position: relative;
}
.scene1 .stack .main-card .metric-section .metric-ring svg,
.scene21 .stack .main-card .metric-section .metric-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.scene1 .stack .main-card .metric-section .metric-ring .ring-bg,
.scene21 .stack .main-card .metric-section .metric-ring .ring-bg {
  fill: none;
  stroke: #e8f5e2;
  stroke-width: 6;
}
.scene1 .stack .main-card .metric-section .metric-ring .ring-fg,
.scene21 .stack .main-card .metric-section .metric-ring .ring-fg {
  fill: none;
  stroke: #5aad3f;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 163;
  stroke-dashoffset: 163;
  transition: stroke-dashoffset 1.1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}
.scene1 .stack .main-card .metric-section .metric-ring .ring-readout,
.scene21 .stack .main-card .metric-section .metric-ring .ring-readout {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #5aad3f;
}
.scene1 .stack .main-card .metric-section .metric-ring .ring-readout small,
.scene21 .stack .main-card .metric-section .metric-ring .ring-readout small {
  font-size: 8px;
  color: #8aab7e;
}
.scene1 .stack .main-card .row-list,
.scene21 .stack .main-card .row-list {
  padding: 0 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.scene1 .stack .main-card .row-list .row-item,
.scene21 .stack .main-card .row-list .row-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 12px;
  background: #fafcf9;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s;
}
.scene1 .stack .main-card .row-list .row-item.in,
.scene21 .stack .main-card .row-list .row-item.in {
  opacity: 1;
  transform: translateY(0);
}
.scene1 .stack .main-card .row-list .row-item.lit,
.scene21 .stack .main-card .row-list .row-item.lit {
  border-color: rgba(90, 173, 63, 0.32);
  background: rgba(90, 173, 63, 0.05);
  box-shadow: 0 2px 14px rgba(90, 173, 63, 0.09);
}
.scene1 .stack .main-card .row-list .row-item.lit .row-emoji,
.scene21 .stack .main-card .row-list .row-item.lit .row-emoji {
  transform: scale(1.1);
}
.scene1 .stack .main-card .row-list .row-item .row-emoji,
.scene21 .stack .main-card .row-list .row-item .row-emoji {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: transform 0.3s;
}
.scene1 .stack .main-card .row-list .row-item .row-body,
.scene21 .stack .main-card .row-list .row-item .row-body {
  flex: 1;
}
.scene1 .stack .main-card .row-list .row-item .row-body .row-name,
.scene21 .stack .main-card .row-list .row-item .row-body .row-name {
  font-size: 11.5px;
  font-weight: 600;
  color: #182912;
}
.scene1 .stack .main-card .row-list .row-item .row-body .row-meta,
.scene21 .stack .main-card .row-list .row-item .row-body .row-meta {
  font-size: 9.5px;
  color: #8aab7e;
}
.scene1 .stack .main-card .row-list .row-item .row-right,
.scene21 .stack .main-card .row-list .row-item .row-right {
  text-align: right;
}
.scene1 .stack .main-card .row-list .row-item .row-right .row-amt,
.scene21 .stack .main-card .row-list .row-item .row-right .row-amt {
  font-size: 11.5px;
  font-weight: 700;
  color: #182912;
}
.scene1 .stack .main-card .row-list .row-item .row-right .row-badge,
.scene21 .stack .main-card .row-list .row-item .row-right .row-badge {
  font-size: 8.5px;
  color: #5aad3f;
  background: rgba(90, 173, 63, 0.12);
  padding: 1px 6px;
  border-radius: 8px;
  margin-top: 2px;
}
.scene1 .stack .main-card .drawer,
.scene21 .stack .main-card .drawer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #f6fbf3, #ffffff);
  border-top: 1px solid rgba(90, 173, 63, 0.14);
  border-radius: 0 0 22px 22px;
  padding: 12px 22px 16px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.34, 1.15, 0.64, 1);
}
.scene1 .stack .main-card .drawer.open,
.scene21 .stack .main-card .drawer.open {
  transform: translateY(0);
}
.scene1 .progress-row,
.scene21 .progress-row {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
}
.scene1 .progress-row .pdot,
.scene21 .progress-row .pdot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(90, 173, 63, 0.2);
  transition: all 0.4s;
}
.scene1 .progress-row .pdot.active,
.scene21 .progress-row .pdot.active {
  width: 22px;
  background: #5aad3f;
}

/* Animations */
@keyframes cardFlipOut {
  0% {
    transform: rotateX(0);
    opacity: 1;
  }
  100% {
    transform: rotateX(-18deg) translateY(-30px) scale(0.96);
    opacity: 0;
  }
}
@keyframes cardFlipIn {
  0% {
    transform: rotateX(14deg) translateY(28px) scale(0.97);
    opacity: 0;
  }
  100% {
    transform: rotateX(0) translateY(0) scale(1);
    opacity: 1;
  }
}
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.blob-1 {
  width: 500px;
  height: 400px;
  background: radial-gradient(circle, rgba(90, 173, 63, 0.18) 0%, transparent 70%);
  top: -10%;
  left: -5%;
  animation: blobDrift1 12s ease-in-out infinite alternate;
}
.blob-2 {
  width: 400px;
  height: 350px;
  background: radial-gradient(circle, rgba(90, 173, 63, 0.1) 0%, transparent 70%);
  bottom: -10%;
  right: -5%;
  animation: blobDrift2 15s ease-in-out infinite alternate;
}

@keyframes blobDrift1 {
  to {
    transform: translate(40px, 30px);
  }
}
@keyframes blobDrift2 {
  to {
    transform: translate(-30px, -40px);
  }
}
.page-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 16px 48px;
  gap: 32px;
}

.tab-bar {
  display: flex;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(90, 173, 63, 0.14);
  border-radius: 40px;
  padding: 5px;
  gap: 4px;
  box-shadow: 0 2px 16px rgba(40, 90, 20, 0.07);
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
  justify-content: center;
  max-width: 600px;
  width: 100%;
}
.tab-bar .tab-btn {
  font-size: 12px;
  font-weight: 600;
  color: #8aab7e;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px 18px;
  border-radius: 30px;
  transition: all 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.tab-bar .tab-btn.active {
  background: #5aad3f;
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(90, 173, 63, 0.35);
}
.tab-bar .tab-btn:not(.active):hover {
  background: rgba(90, 173, 63, 0.12);
  color: #4a6b40;
}

.panel {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 100%;
  animation: panelIn 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.panel.visible {
  display: flex;
}
.panel-title {
  font-size: 11px;
  font-weight: 600;
  color: #8aab7e;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.scene {
  position: relative;
  width: min(520px, 94vw);
  perspective: 1200px;
}

.stack {
  position: relative;
  height: 340px;
}
.stack.animating .ghost-1 {
  transform: translateY(8px) scaleX(0.95) scaleY(0.98);
  opacity: 0.65;
}
.stack.animating .ghost-2 {
  transform: translateY(16px) scaleX(0.9) scaleY(0.96);
  opacity: 0.35;
}

.ghost {
  position: absolute;
  inset: 0;
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(90, 173, 63, 0.14);
  transform-origin: center bottom;
  transition: transform 0.6s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.6s ease;
}
.ghost-1 {
  transform: translateY(12px) scaleX(0.93) scaleY(0.97);
  opacity: 0.55;
  z-index: 1;
}
.ghost-2 {
  transform: translateY(22px) scaleX(0.86) scaleY(0.94);
  opacity: 0.28;
  z-index: 0;
}

.main-card {
  position: absolute;
  inset: 0;
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(90, 173, 63, 0.14);
  box-shadow: 0 8px 40px rgba(40, 90, 20, 0.1), 0 2px 8px rgba(40, 90, 20, 0.06);
  z-index: 10;
  overflow: hidden;
  transform-origin: center center;
  will-change: transform, opacity;
}
.main-card.flip-out {
  animation: cardFlipOut 0.45s cubic-bezier(0.55, 0, 1, 0.45) forwards;
}
.main-card.flip-in {
  animation: cardFlipIn 0.45s cubic-bezier(0, 0.55, 0.45, 1) forwards;
}

@keyframes cardFlipOut {
  0% {
    transform: rotateX(0deg) translateY(0);
    opacity: 1;
  }
  100% {
    transform: rotateX(-18deg) translateY(-30px) scale(0.96);
    opacity: 0;
  }
}
@keyframes cardFlipIn {
  0% {
    transform: rotateX(14deg) translateY(28px) scale(0.97);
    opacity: 0;
  }
  100% {
    transform: rotateX(0) translateY(0) scale(1);
    opacity: 1;
  }
}
.top-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px 0;
}
.top-strip .brand-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.top-strip .brand-icon {
  width: 30px;
  height: 30px;
  background: #5aad3f;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-strip .brand-icon svg {
  width: 16px;
  height: 16px;
}
.top-strip .brand-name {
  font-size: 13px;
  font-weight: 700;
  color: #182912;
}
.top-strip .feature-tag {
  font-size: 10px;
  font-weight: 600;
  color: #5aad3f;
  background: rgba(90, 173, 63, 0.12);
  border: 1px solid rgba(90, 173, 63, 0.2);
  padding: 3px 10px;
  border-radius: 20px;
}

.card-hero {
  padding: 16px 22px 14px;
  display: flex;
  justify-content: space-between;
}
.card-hero-label {
  font-size: 10px;
  color: #8aab7e;
}
.card-hero-number {
  font-size: clamp(38px, 8vw, 54px);
  color: #182912;
}
.card-hero-sub {
  font-size: 11px;
  color: #8aab7e;
}
.card-hero-ring {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  position: relative;
}
.card-hero-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.row-list {
  padding: 0 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.row-list .row-item {
  display: flex;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 12px;
  background: #fafcf9;
  opacity: 0;
  transform: translateY(8px);
}
.row-list .row-item.in {
  opacity: 1;
  transform: translateY(0);
}
.row-list .row-item.lit {
  border-color: rgba(90, 173, 63, 0.32);
  background: rgba(90, 173, 63, 0.05);
}

.drawer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #f6fbf3 0%, #ffffff 100%);
  border-top: 1px solid rgba(90, 173, 63, 0.14);
  border-radius: 0 0 22px 22px;
  padding: 12px 22px 16px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.34, 1.15, 0.64, 1);
}
.drawer.open {
  transform: translateY(0);
}

.progress-row {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
}
.progress-row .pdot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(90, 173, 63, 0.2);
}
.progress-row .pdot.active {
  width: 22px;
  background: #5aad3f;
}

@keyframes blob {
  0% {
    transform: translate(0px, 0px) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
  100% {
    transform: translate(0px, 0px) scale(1);
  }
}
.animate-blob {
  animation: blob 7s infinite;
}

.animation-delay-2000 {
  animation-delay: 2s;
}

.animation-delay-4000 {
  animation-delay: 4s;
}

/* ── Blobs ── */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.blob-1 {
  width: 500px;
  height: 400px;
  background: radial-gradient(circle, rgba(90, 173, 63, 0.18) 0%, transparent 70%);
  top: -10%;
  left: -5%;
  animation: blobDrift1 12s ease-in-out infinite alternate;
}

.blob-2 {
  width: 400px;
  height: 350px;
  background: radial-gradient(circle, rgba(90, 173, 63, 0.1) 0%, transparent 70%);
  bottom: -10%;
  right: -5%;
  animation: blobDrift2 15s ease-in-out infinite alternate;
}

@keyframes blobDrift1 {
  to {
    transform: translate(40px, 30px);
  }
}
@keyframes blobDrift2 {
  to {
    transform: translate(-30px, -40px);
  }
}
/* ── PAGE LAYOUT ── */
.page-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 16px 48px;
  gap: 32px;
}

/* ── TAB SWITCHER ── */
.tab-bar {
  display: flex;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(90, 173, 63, 0.14);
  border-radius: 40px;
  padding: 5px;
  gap: 4px;
  box-shadow: 0 2px 16px rgba(40, 90, 20, 0.07);
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
  justify-content: center;
  max-width: 600px;
  width: 100%;
}

.tab-btn {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #8aab7e;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px 18px;
  border-radius: 30px;
  transition: all 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.tab-btn.active {
  background: #5aad3f;
  color: white;
  box-shadow: 0 2px 10px rgba(90, 173, 63, 0.35);
}

.tab-btn:not(.active):hover {
  background: rgba(90, 173, 63, 0.12);
  color: #4a6b40;
}

/* ── PANELS ── */
.panel {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 100%;
  animation: panelIn 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.panel.visible {
  display: flex;
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ── Panel title ── */
.panel-title {
  font-size: 11px;
  font-weight: 600;
  color: #8aab7e;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ── SCENE ── */
.scene {
  position: relative;
  width: min(520px, 94vw);
  perspective: 1200px;
}

/* ── CARD STACK ── */
.stack {
  position: relative;
  height: 340px;
}

.ghost {
  position: absolute;
  inset: 0;
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(90, 173, 63, 0.14);
  transform-origin: center bottom;
  transition: transform 0.6s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.6s ease;
}

.ghost-1 {
  transform: translateY(12px) scaleX(0.93) scaleY(0.97);
  opacity: 0.55;
  z-index: 1;
}

.ghost-2 {
  transform: translateY(22px) scaleX(0.86) scaleY(0.94);
  opacity: 0.28;
  z-index: 0;
}

.stack.animating .ghost-1 {
  transform: translateY(8px) scaleX(0.95) scaleY(0.98);
  opacity: 0.65;
}

.stack.animating .ghost-2 {
  transform: translateY(16px) scaleX(0.9) scaleY(0.96);
  opacity: 0.35;
}

/* ── MAIN CARD ── */
.main-card {
  position: absolute;
  inset: 0;
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(90, 173, 63, 0.14);
  box-shadow: 0 8px 40px rgba(40, 90, 20, 0.1), 0 2px 8px rgba(40, 90, 20, 0.06);
  z-index: 10;
  overflow: hidden;
  transform-origin: center center;
  will-change: transform, opacity;
}

.main-card.flip-out {
  animation: cardFlipOut 0.45s cubic-bezier(0.55, 0, 1, 0.45) forwards;
}

.main-card.flip-in {
  animation: cardFlipIn 0.45s cubic-bezier(0, 0.55, 0.45, 1) forwards;
}

@keyframes cardFlipOut {
  0% {
    transform: rotateX(0deg) translateY(0px);
    opacity: 1;
  }
  100% {
    transform: rotateX(-18deg) translateY(-30px) scale(0.96);
    opacity: 0;
  }
}
@keyframes cardFlipIn {
  0% {
    transform: rotateX(14deg) translateY(28px) scale(0.97);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg) translateY(0px) scale(1);
    opacity: 1;
  }
}
/* ── TOP STRIP ── */
.p0-top-strip,
.p1-top-strip,
.p2-top-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px 0;
}

.p0-brand-row,
.p1-brand-row,
.p2-brand-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.p0-brand-icon,
.p1-brand-icon,
.p2-brand-icon {
  width: 30px;
  height: 30px;
  background: #5aad3f;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p0-brand-icon svg,
.p1-brand-icon svg,
.p2-brand-icon svg {
  width: 16px;
  height: 16px;
}

.p0-brand-name,
.p1-brand-name,
.p2-brand-name {
  font-size: 13px;
  font-weight: 700;
  color: #182912;
  letter-spacing: -0.01em;
}

.p0-feature-tag,
.p1-feature-tag,
.p2-feature-tag {
  font-size: 10px;
  font-weight: 600;
  color: #5aad3f;
  background: rgba(90, 173, 63, 0.12);
  border: 1px solid rgba(90, 173, 63, 0.2);
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

/* ── HERO ── */
.p0-hero,
.p1-hero,
.p2-hero {
  padding: 16px 22px 14px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.p0-hero-left,
.p1-hero-left,
.p2-hero-left {
  flex: 1;
}

.p0-hero-label,
.p1-hero-label,
.p2-hero-label {
  font-size: 10px;
  font-weight: 500;
  color: #8aab7e;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.p0-hero-number,
.p1-hero-number,
.p2-hero-number {
  font-size: 38px;
  color: #182912;
  line-height: 1;
  font-weight: 700;
}

.p0-hero-sub,
.p1-hero-sub,
.p2-hero-sub {
  font-size: 11px;
  color: #8aab7e;
  font-weight: 400;
  margin-top: 5px;
}

.p0-hero-ring,
.p1-hero-ring,
.p2-hero-ring {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  position: relative;
}

.p0-hero-ring svg,
.p1-hero-ring svg,
.p2-hero-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring-bg {
  fill: none;
  stroke: #e8f5e2;
  stroke-width: 6;
}

.ring-fg {
  fill: none;
  stroke: #5aad3f;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 163;
  stroke-dashoffset: 163;
  transition: stroke-dashoffset 1.1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.p0-ring-label,
.p1-ring-label,
.p2-ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #5aad3f;
  line-height: 1.1;
}

.p0-ring-label small,
.p1-ring-label small,
.p2-ring-label small {
  font-size: 8px;
  font-weight: 500;
  color: #8aab7e;
}

/* ── ROWS ── */
.p0-row-list,
.p1-row-list,
.p2-row-list {
  padding: 0 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.p0-row-item,
.p1-row-item,
.p2-row-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 12px;
  border: 1.5px solid transparent;
  background: #fafcf9;
  transition: border-color 0.35s, background 0.35s, box-shadow 0.35s, transform 0.35s;
  opacity: 0;
  transform: translateY(8px);
}

.p0-row-item.in,
.p1-row-item.in,
.p2-row-item.in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1), border-color 0.35s, background 0.35s, box-shadow 0.35s;
}

.p0-row-item.lit,
.p1-row-item.lit,
.p2-row-item.lit {
  border-color: rgba(90, 173, 63, 0.32);
  background: rgba(90, 173, 63, 0.05);
  box-shadow: 0 2px 14px rgba(90, 173, 63, 0.09);
}

.p0-row-emoji,
.p1-row-emoji,
.p2-row-emoji {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.p0-row-item.lit .p0-row-emoji,
.p1-row-item.lit .p1-row-emoji,
.p2-row-item.lit .p2-row-emoji {
  transform: scale(1.1);
}

.p0-row-body,
.p1-row-body,
.p2-row-body {
  flex: 1;
  min-width: 0;
}

.p0-row-name,
.p1-row-name,
.p2-row-name {
  font-size: 11.5px;
  font-weight: 600;
  color: #182912;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.p0-row-meta,
.p1-row-meta,
.p2-row-meta {
  font-size: 9.5px;
  color: #8aab7e;
  margin-top: 1px;
}

.p0-row-right,
.p1-row-right,
.p2-row-right {
  text-align: right;
}

.p0-row-amt,
.p1-row-amt,
.p2-row-amt {
  font-size: 11.5px;
  font-weight: 700;
  color: #182912;
  white-space: nowrap;
}

.p0-row-badge,
.p1-row-badge,
.p2-row-badge {
  font-size: 8.5px;
  font-weight: 600;
  color: #5aad3f;
  background: rgba(90, 173, 63, 0.12);
  padding: 1px 6px;
  border-radius: 8px;
  margin-top: 2px;
  display: inline-block;
}

/* ── DRAWER ── */
.p0-drawer,
.p1-drawer,
.p2-drawer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #f6fbf3 0%, #ffffff 100%);
  border-top: 1px solid rgba(90, 173, 63, 0.14);
  border-radius: 0 0 22px 22px;
  padding: 12px 22px 16px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.34, 1.15, 0.64, 1);
  z-index: 20;
}

.p0-drawer.open,
.p1-drawer.open,
.p2-drawer.open {
  transform: translateY(0);
}

.p0-drawer-inner,
.p1-drawer-inner,
.p2-drawer-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.p0-drawer-stat,
.p1-drawer-stat,
.p2-drawer-stat {
  flex: 1;
}

.p0-drawer-stat-label,
.p1-drawer-stat-label,
.p2-drawer-stat-label {
  font-size: 9px;
  font-weight: 500;
  color: #8aab7e;
  letter-spacing: 0.04em;
  margin-bottom: 3px;
}

.p0-drawer-stat-value,
.p1-drawer-stat-value,
.p2-drawer-stat-value {
  font-size: 22px;
  color: #5aad3f;
  letter-spacing: 0.03em;
  line-height: 1;
}

.p0-drawer-stat-value span,
.p1-drawer-stat-value span,
.p2-drawer-stat-value span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.45s cubic-bezier(0.34, 1.3, 0.64, 1) 0.25s;
}

.p0-drawer.open .p0-drawer-stat-value span,
.p1-drawer.open .p1-drawer-stat-value span,
.p2-drawer.open .p2-drawer-stat-value span {
  transform: translateY(0);
}

.p0-drawer-spark,
.p1-drawer-spark,
.p2-drawer-spark {
  flex: 2;
  position: relative;
}

.p0-drawer-spark svg,
.p1-drawer-spark svg,
.p2-drawer-spark svg {
  width: 100%;
  height: 44px;
  overflow: visible;
}

.spark-line {
  fill: none;
  stroke: #5aad3f;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  filter: drop-shadow(0 1px 3px rgba(90, 173, 63, 0.3));
}

.spark-fill {
  fill: url(#dGrad0);
  stroke: none;
  opacity: 0;
  transition: opacity 0.5s 0.9s;
}

.p0-drawer.open .spark-line,
.p1-drawer.open .spark-line,
.p2-drawer.open .spark-line {
  stroke-dashoffset: 0;
}

.p0-drawer.open .spark-fill,
.p1-drawer.open .spark-fill,
.p2-drawer.open .spark-fill {
  opacity: 1;
}

.spark-dot {
  fill: #5aad3f;
  r: 3;
  filter: drop-shadow(0 0 3px rgba(90, 173, 63, 0.6));
  opacity: 0;
  transition: opacity 0.3s 1s;
}

.p0-drawer.open .spark-dot,
.p1-drawer.open .spark-dot,
.p2-drawer.open .spark-dot {
  opacity: 1;
}

.p0-spark-months,
.p1-spark-months,
.p2-spark-months {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  color: #8aab7e;
  margin-top: 2px;
}

/* ── PROGRESS DOTS ── */
.progress-row {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
}

.pdot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(90, 173, 63, 0.2);
  transition: width 0.4s cubic-bezier(0.34, 1.3, 0.64, 1), background 0.3s;
}

.pdot.active {
  width: 22px;
  background: #5aad3f;
}

/*# sourceMappingURL=style.css.map */
