@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,600;1,700;1,800&display=swap');

/* EDITORIAL WARM LUXURY DESIGN SYSTEM (ALL MONTSERRAT) */
:root {
  /* Palette */
  --bg-primary: #F7F4EE;
  --bg-primary-rgb: 247, 244, 238;
  --bg-card: #FFFFFF;
  --bg-cream: #FAF8F4;
  --bg-warm-tint: #EFE9DE;
  --accent-dark: #122B24;
  --accent-dark-rgb: 18, 43, 36;
  --accent-dark-hover: #0B1E19;
  --cta-orange: #D96528;
  --cta-orange-hover: #122B24;
  --cta-orange-light: #FBF0E8;
  --success-green: #2B9348;
  --success-green-bg: rgba(43, 147, 72, 0.08);
  --border-color: rgba(18, 43, 36, 0.08);
  --border-color-light: rgba(18, 43, 36, 0.05);
  --text-primary: #122B24;
  --text-muted: rgba(18, 43, 36, 0.65);
  --text-light: #F7F4EE;

  /* Typography: Montserrat with Chinese System Fallbacks */
  --font-headings: 'Montserrat', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Segoe UI', Roboto, sans-serif;

  /* Layout & Material Tokens */
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --max-width: 1200px;
  --transition: all 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  --shadow-sm: 0 4px 12px rgba(18, 43, 36, 0.03);
  --shadow-md: 0 12px 28px rgba(18, 43, 36, 0.05);
  --shadow-lg: 0 24px 60px rgba(18, 43, 36, 0.07);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headings);
  font-weight: 800;
  line-height: 1.25;
  color: var(--accent-dark);
  letter-spacing: -0.02em;
}

.hero-serif-accent,
.hero-accent {
  font-weight: 800;
  color: var(--cta-orange);
  font-family: var(--font-headings);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
textarea {
  font-family: inherit;
  outline: none;
  border: none;
}

hr {
  border: none;
  height: 1px;
  background-color: var(--border-color);
  margin: 4.5rem 0;
}

/* UTILITY CLASSES */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.bold-metric {
  font-weight: 800;
  color: var(--accent-dark);
  font-family: var(--font-body);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem auto;
}

.section-header h2 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background-color: rgba(18, 43, 36, 0.04);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 1.25rem;
}

.tag-success {
  background-color: var(--success-green-bg);
  border-color: rgba(43, 147, 72, 0.2);
  color: #2b9348;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background-color: var(--cta-orange);
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: var(--cta-orange-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  border: 1.5px solid var(--accent-dark);
  color: var(--accent-dark);
  box-shadow: none;
}

.btn-outline:hover {
  background-color: var(--accent-dark);
  color: var(--text-light);
  transform: translateY(-2px);
}

/* HEADER & NAVIGATION */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(44, 108, 74, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.25rem 0;
  transition: var(--transition);
}

header.scrolled {
  padding: 0.85rem 0;
  background-color: rgba(247, 244, 238, 0.95);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(18, 43, 36, 0.06);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-wrapper nav {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}

.logo {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.25s ease;
}

.nav-logo-svg {
  height: 42px;
  width: auto;
  display: block;
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

.footer-logo-svg {
  height: 38px;
  width: auto;
  display: block;
}

.logo:hover .nav-logo-svg {
  transform: scale(1.05);
  filter: drop-shadow(0 2px 10px rgba(74, 222, 128, 0.4));
}

header.scrolled .logo {
  color: var(--accent-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

header.scrolled .nav-links a {
  color: var(--accent-dark);
}

.nav-links a:hover {
  color: #FFAA47;
}

header.scrolled .nav-links a:hover {
  color: var(--cta-orange);
}

.nav-actions {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.nav-actions .btn {
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
  border-radius: 100px;
  box-shadow: none;
  white-space: nowrap;
  transition: var(--transition);
}

.nav-actions .btn-outline {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #FFFFFF;
  box-shadow: none;
}

header.scrolled .nav-actions .btn-outline {
  background-color: transparent;
  border-color: rgba(30, 53, 47, 0.2);
  color: var(--accent-dark);
}

.nav-actions .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #FFFFFF;
  color: #FFFFFF;
  transform: translateY(-1px);
}

header.scrolled .nav-actions .btn-outline:hover {
  background-color: rgba(30, 53, 47, 0.06);
  border-color: var(--accent-dark);
  color: var(--accent-dark);
}

.nav-actions .btn-primary {
  background-color: var(--cta-orange);
  color: #FFFFFF;
}

.nav-actions .btn-primary:hover {
  background-color: #C0551E;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.lang-switch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.52rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  font-family: var(--font-headings);
  letter-spacing: 0.02em;
}

header.scrolled .lang-switch-btn {
  background: rgba(18, 43, 36, 0.05);
  border-color: rgba(18, 43, 36, 0.2);
  color: var(--accent-dark);
}

.lang-switch-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #FFFFFF;
  color: #FFFFFF;
  transform: translateY(-1px);
}

header.scrolled .lang-switch-btn:hover {
  background: rgba(18, 43, 36, 0.1);
  border-color: var(--accent-dark);
  color: var(--accent-dark);
}

.lang-globe-icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
  opacity: 0.85;
}

.mobile-lang-item {
  display: none;
}

.menu-toggle {
  display: none;
  background: none;
  font-size: 1.5rem;
  color: #FFFFFF;
  cursor: pointer;
}

header.scrolled .menu-toggle {
  color: var(--accent-dark);
}

/* HERO SECTION (PERFECT COLOR MATCH WITH LOGO #2C6C4A) */
.hero {
  padding: 9.5rem 0 0 0;
  position: relative;
  overflow: hidden;
  background-color: #2C6C4A;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: end;
}

.hero-content {
  padding-bottom: 5.5rem;
}

.hero-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}

.hero-content h1 {
  font-family: var(--font-headings);
  font-size: 3.5rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1.4rem;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.hero-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.25rem;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-buttons .btn-primary {
  background-color: var(--cta-orange);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-primary:hover {
  background-color: #C0551E;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.hero-buttons .btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

.hero-buttons .btn-outline:hover {
  background-color: #FFFFFF;
  color: #122B24;
  border-color: #FFFFFF;
  transform: translateY(-2px);
}



/* HERO VISUAL (ALIGNED FLUSH TO SECTION BOTTOM) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}

.hero-card-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 0;
}

.hero-card-wrapper img#hero-image {
  width: 100%;
  height: auto;
  max-height: 640px;
  object-fit: contain;
  object-position: bottom;
  border-radius: 0;
  border: none;
  box-shadow: none;
  display: block;
  margin-bottom: 0;
  transform: scale(1.1);
  transform-origin: bottom center;
  transition: transform 0.4s ease;
}

.hero-card-wrapper:hover img#hero-image {
  transform: scale(1.14);
}




/* FOOTER & Timeline CTA (MATCHING HERO SECTION #2C6C4A) */
footer {
  background-color: #2C6C4A;
  color: #FFFFFF;
  padding: 6rem 0 3rem 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.footer-cta {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem auto;
  position: relative;
}

.footer-bg-mascot {
  position: absolute;
  top: -35px;
  right: -70px;
  width: 260px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.10;
  user-select: none;
  transform: rotate(4deg);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.footer-cta:hover .footer-bg-mascot {
  opacity: 0.18;
  transform: rotate(0deg) scale(1.05);
}

.bg-mascot-footer-img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-cta>*:not(.footer-bg-mascot) {
  position: relative;
  z-index: 1;
}

.footer-cta h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: #FFFFFF !important;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.footer-cta p {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 1.15rem;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.footer-cta-action {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.footer-cta-action .btn {
  font-size: 1.05rem;
  padding: 0.95rem 2.25rem;
  border-radius: 9999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-cta-action .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.email-signup-form {
  display: flex;
  gap: 0.5rem;
  max-width: 520px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.45rem;
  border-radius: 100px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.email-signup-form input[type="email"] {
  flex: 1;
  background: transparent;
  padding: 0 1.5rem;
  color: #FFFFFF;
  font-size: 1rem;
}

.email-signup-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.email-signup-form button {
  white-space: nowrap;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-headings);
  font-size: 1.75rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

.footer-logo-mark-wrap {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(250, 248, 245, 0.1);
  border: 1.5px solid rgba(250, 248, 245, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.footer-logo-mark {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-logo span span {
  color: var(--cta-orange);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-links-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #FFFFFF !important;
  font-weight: 700;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links-col a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.footer-links-col a:hover {
  color: var(--cta-orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  flex-wrap: nowrap;
  gap: 1.5rem;
}

.footer-bottom p {
  white-space: nowrap;
  margin: 0;
  flex-shrink: 0;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.footer-meta a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.25s ease;
  white-space: nowrap;
}

.footer-meta a:hover {
  color: #FFFFFF;
}

.footer-meta span {
  white-space: nowrap;
}

/* EARLY ACCESS MODAL */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(30, 53, 47, 0.8);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 500px;
  padding: 3rem;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  background: none;
  cursor: pointer;
  color: var(--accent-dark);
}

.modal-box h3 {
  font-size: 1.75rem;
  color: var(--accent-dark);
  margin-bottom: 0.75rem;
}

.modal-box p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: var(--accent-dark);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-sm);
  background-color: white;
  border: 1.5px solid var(--border-color);
  font-size: 1rem;
  color: var(--accent-dark);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--cta-orange);
  box-shadow: 0 0 0 3px rgba(233, 107, 16, 0.15);
}

.modal-mascot-freestanding {
  width: 85px;
  height: auto;
  margin: 0 auto 1.25rem auto;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(15, 36, 25, 0.18));
}

/* Success form state */
.modal-success-state {
  display: none;
  text-align: center;
  padding: 1.5rem 0;
  animation: fadeIn 0.4s ease forwards;
}

.modal-success-mascot-freestanding {
  width: 130px;
  height: auto;
  margin: 0 auto 1.25rem auto;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(15, 36, 25, 0.2));
  animation: mascotFloat 4s ease-in-out infinite alternate;
}

.modal-success-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE DESIGN (MOBILE FIRST OVERRIDES) */
@media (max-width: 1100px) {
  .hero-grid {
    gap: 3rem;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .tab-content {
    gap: 2.5rem;
  }

  /* Header Nav Mobile (activated at 1100px to prevent desktop layout wrapping) */
  .nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 5rem;
    left: 0;
    right: 0;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-actions {
    display: none;
  }

  .mobile-lang-item {
    display: flex;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
  }

  .mobile-lang-item .lang-switch-btn {
    width: 100%;
    background: rgba(18, 43, 36, 0.06);
    border-color: rgba(18, 43, 36, 0.2);
    color: var(--accent-dark);
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  /* Hero */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-visual {
    max-width: 480px;
    margin: 0 auto;
  }

  /* Footer */
  .footer-cta h2 {
    font-size: 2rem;
  }

  .email-signup-form {
    border-radius: 16px;
    flex-direction: column;
    padding: 1rem;
    gap: 0.75rem;
    background-color: transparent;
    border: none;
  }

  .email-signup-form input[type="email"] {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(240, 234, 225, 0.15);
    padding: 1rem;
    border-radius: 100px;
  }

  .email-signup-form button {
    padding: 1rem;
    border-radius: 100px;
  }

  .footer-grid {
    flex-direction: column;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-meta {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
  }
}


/* 2. Scroll-Reveal Animation Engine */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animations for list / grid elements */
.reveal-stagger>* {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-stagger.in-view>* {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.in-view>*:nth-child(1) {
  transition-delay: 0.1s;
}

.reveal-stagger.in-view>*:nth-child(2) {
  transition-delay: 0.2s;
}

.reveal-stagger.in-view>*:nth-child(3) {
  transition-delay: 0.3s;
}

.reveal-stagger.in-view>*:nth-child(4) {
  transition-delay: 0.4s;
}

/* ==========================================================================
   ORGANIC TOPOGRAPHY & FLUID CONTINUOUS FLOW SYSTEM
   ========================================================================== */

/* 1. Seamless Wave & Topography Dividers */
.organic-divider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
  z-index: 2;
}

.organic-wave-svg {
  display: block;
  width: 100%;
  height: 60px;
}

@media (min-width: 768px) {
  .organic-wave-svg {
    height: 85px;
  }
}

.divider-hero-to-body {
  background: transparent;
  position: relative;
  z-index: 10;
  margin-top: -55px;
  margin-bottom: -2px;
}

.divider-hero-to-body .organic-wave-svg {
  height: 70px;
}

@media (min-width: 768px) {
  .divider-hero-to-body {
    margin-top: -85px;
  }

  .divider-hero-to-body .organic-wave-svg {
    height: 100px;
  }
}

.divider-hero-to-body .organic-wave-svg path {
  fill: #FBF9F5;
}

.divider-body-to-footer {
  background: #F4EFE6;
  margin-bottom: -2px;
}

.divider-body-to-footer .organic-wave-svg path {
  fill: #2C6C4A;
}

/* 2. Main Page Fluid Canvas */
main {
  background: #FBF9F5;
  background-image: 
    radial-gradient(at 10% 12%, rgba(74, 222, 128, 0.07) 0px, transparent 45%),
    radial-gradient(at 90% 30%, rgba(255, 170, 71, 0.08) 0px, transparent 45%),
    radial-gradient(at 15% 65%, rgba(44, 108, 74, 0.06) 0px, transparent 50%),
    radial-gradient(at 85% 85%, rgba(56, 189, 248, 0.05) 0px, transparent 45%);
}

.organic-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem auto;
}

.organic-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--accent-dark);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 0.85rem;
}

.organic-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   3. SECTION 2: ADOPTION TRANSITION GAP (ORGANIC NARRATIVE FLOW)
   ========================================================================== */
.problem {
  padding: 4rem 0 5rem 0;
  position: relative;
  background: #FBF9F5;
}

.problem-organic-flow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.problem-stat-cluster {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.organic-pebble-card {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 40px 24px 44px 28px;
  padding: 2.5rem;
  box-shadow: 0 20px 45px -15px rgba(15, 36, 25, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  overflow: hidden;
}

.organic-pebble-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 55px -15px rgba(15, 36, 25, 0.12);
}

.stat-pebble-primary .stat-highlight-val {
  font-family: var(--font-headings);
  font-size: 4rem;
  font-weight: 900;
  color: var(--cta-orange);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.stat-highlight-title {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 0.5rem;
}

.stat-highlight-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.pebble-accent-aura {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  filter: blur(35px);
  pointer-events: none;
}

.pebble-accent-aura.aura-orange {
  background: rgba(255, 170, 71, 0.2);
}

.stat-pebble-secondary {
  border-radius: 28px 44px 24px 40px;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-row-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.stat-mini-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  background: rgba(233, 107, 16, 0.12);
  color: var(--cta-orange);
  flex-shrink: 0;
}

.stat-mini-badge.badge-green {
  background: rgba(44, 108, 74, 0.12);
  color: var(--accent-dark);
}

.stat-mini-text strong {
  display: block;
  font-size: 1.2rem;
  color: var(--accent-dark);
  font-weight: 700;
}

.stat-mini-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.problem-narrative-stream .organic-story-card {
  background: transparent;
  padding: 1rem;
}

.story-kicker {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--success-green);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.organic-story-card h3 {
  font-size: 2.2rem;
  color: var(--accent-dark);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.organic-story-card p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.organic-pill-flow {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.flow-pill {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.1rem 1.5rem;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px -8px rgba(15, 36, 25, 0.05);
  transition: transform 0.25s ease, background 0.25s ease;
}

.flow-pill:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.95);
}

.flow-pill-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 53, 47, 0.06);
  color: var(--accent-dark);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.flow-pill:hover .flow-pill-icon {
  background: rgba(233, 107, 16, 0.12);
  color: var(--cta-orange);
}

.flow-pill strong {
  display: block;
  font-size: 0.95rem;
  color: var(--accent-dark);
  font-weight: 700;
}

.flow-pill p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   4. SECTION 3: 3-PHASE ECOSYSTEM (FLUID JOURNEY PATHWAY)
   ========================================================================== */
.ecosystem {
  padding: 5rem 0;
  position: relative;
  background: #F4EFE6;
}

.journey-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 0 auto 3.5rem auto;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 1080px;
}

.journey-node-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 100px;
  padding: 0.75rem 1.15rem;
  cursor: pointer;
  box-shadow: 0 8px 20px -8px rgba(15, 36, 25, 0.06);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: inherit;
  text-align: left;
  flex: 1 1 0;
  min-width: 0;
}

.journey-node-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.9);
}

.journey-node-btn.active {
  background: var(--accent-dark);
  color: #FFFFFF;
  border-color: var(--accent-dark);
  box-shadow: 0 16px 32px -8px rgba(15, 36, 25, 0.25);
  transform: translateY(-3px) scale(1.02);
}

.journey-node-num {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--cta-orange);
  flex-shrink: 0;
}

.journey-node-btn.active .journey-node-num {
  color: #86EFAC;
}

.journey-node-text {
  flex: 1;
  min-width: 0;
}

.journey-node-text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.journey-node-text span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.journey-node-btn.active .journey-node-text span {
  color: rgba(255, 255, 255, 0.75);
}

.journey-status-pill {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.25rem 0.55rem;
  border-radius: 100px;
  flex-shrink: 0;
}

.journey-status-pill.badge-live {
  background: rgba(74, 222, 128, 0.2);
  color: var(--success-green);
}

.journey-node-btn.active .journey-status-pill.badge-live {
  background: #86EFAC;
  color: #0F2419;
}

.journey-status-pill.badge-soon {
  background: rgba(30, 53, 47, 0.08);
  color: var(--text-muted);
}

.journey-connector-line {
  flex: 0 0 16px;
  width: 16px;
  height: 2px;
  background: rgba(30, 53, 47, 0.15);
  border-radius: 2px;
}

.journey-stage-pod {
  position: relative;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 48px;
  padding: 3.5rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 60px -20px rgba(15, 36, 25, 0.08);
}

.phase-pane {
  display: none;
  width: 100%;
}

.phase-pane.active {
  display: block;
  animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.journey-pane-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.journey-text-block h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0.75rem 0 1.25rem 0;
}

.journey-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.organic-feature-tree {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.tree-node {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.tree-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success-green);
  margin-top: 0.45rem;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.6);
}

.tree-node strong {
  color: var(--accent-dark);
  font-size: 0.98rem;
  font-weight: 700;
  margin-right: 0.35rem;
}

.tree-node span {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.organic-media-halo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.organic-media-halo::before {
  content: '';
  position: absolute;
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.25) 0%, rgba(255, 170, 71, 0.15) 50%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
}

.organic-screen-img {
  position: relative;
  width: 280px;
  max-width: 100%;
  height: auto;
  border-radius: 36px;
  box-shadow: 0 24px 60px -15px rgba(15, 36, 25, 0.25);
  border: 4px solid #FFFFFF;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.organic-screen-img:hover {
  transform: translateY(-6px) scale(1.03);
}

/* Interactive Glassmorphic Telemetry Cards (Phase 2 & 3) */
.telemetry-hud-card {
  position: relative;
  width: 320px;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 36px;
  padding: 1.85rem;
  box-shadow: 0 24px 60px -15px rgba(15, 36, 25, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.9);
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.telemetry-hud-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 30px 70px -15px rgba(15, 36, 25, 0.26);
}

.hud-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(30, 53, 47, 0.08);
  padding-bottom: 0.85rem;
}

.hud-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(44, 108, 74, 0.1);
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.hud-badge-live.badge-teal {
  background: rgba(14, 165, 233, 0.12);
  color: #0369a1;
}

.pulse-dot-sm {
  width: 6px;
  height: 6px;
  background: var(--success-green);
  border-radius: 50%;
  animation: pulseDot 2s infinite ease-in-out;
}

.pulse-dot-sm.pulse-teal {
  background: #0ea5e9;
}

.hud-timer {
  font-family: var(--font-headings);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.hud-telemetry-body {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.hud-metric-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hud-metric-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.hud-val-good {
  color: var(--success-green);
  font-weight: 800;
}

.hud-val-teal {
  color: var(--accent-dark);
  font-weight: 800;
}

.hud-progress-track {
  height: 8px;
  background: rgba(30, 53, 47, 0.06);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}

.hud-progress-fill {
  height: 100%;
  border-radius: 100px;
  transition: width 1s ease;
}

.fill-green-glow {
  background: linear-gradient(90deg, #4ade80, #22c55e);
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.5);
}

.hud-metric-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.hud-alert-box {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(233, 107, 16, 0.08);
  border: 1px solid rgba(233, 107, 16, 0.2);
  border-radius: 18px;
  padding: 0.85rem 1rem;
}

.hud-alert-icon-wrap {
  color: var(--cta-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hud-alert-text {
  display: flex;
  flex-direction: column;
}

.hud-alert-text strong {
  font-size: 0.88rem;
  color: var(--accent-dark);
  font-weight: 700;
}

.hud-alert-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hud-sync-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(44, 108, 74, 0.06);
  border: 1px solid rgba(44, 108, 74, 0.15);
  border-radius: 14px;
  padding: 0.65rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.hud-sync-badge.badge-verified {
  background: rgba(74, 222, 128, 0.1);
  border-color: rgba(74, 222, 128, 0.3);
  color: #15803d;
}

.hud-sparkline-wrap {
  width: 100%;
  height: 50px;
  margin: 0.25rem 0;
}

.hud-sparkline-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hud-stat-pill-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.hud-mini-stat {
  background: rgba(30, 53, 47, 0.04);
  border-radius: 14px;
  padding: 0.65rem 0.85rem;
  display: flex;
  flex-direction: column;
}

.mini-stat-label {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.mini-stat-val {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent-dark);
}

/* ==========================================================================
   5. SECTION 4: LIFESTYLE SANDBOX (ORGANIC PEBBLE POD)
   ========================================================================== */
.lifestyle-sandbox {
  padding: 5rem 0;
  position: relative;
  background: #FBF9F5;
}

.sandbox-pebble-pod {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 48px 32px 48px 32px;
  padding: 3.5rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 60px -20px rgba(15, 36, 25, 0.08);
  align-items: center;
}

.sandbox-controls-fluid {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.organic-slider-row {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.slider-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slider-icon-bubble {
  font-size: 1.25rem;
  margin-right: 0.5rem;
}

.slider-header-flex label {
  font-weight: 700;
  color: var(--accent-dark);
  font-size: 1.05rem;
  flex: 1;
}

.slider-header-flex .slider-val {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--cta-orange);
  background: rgba(233, 107, 16, 0.08);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
}

.sandbox-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 100px;
  background: rgba(30, 53, 47, 0.1);
  outline: none;
  transition: background 0.3s;
}

.sandbox-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--cta-orange);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(233, 107, 16, 0.4);
  transition: transform 0.2s, background 0.2s;
  border: 3px solid white;
}

.sandbox-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  background: #ff7f24;
}

.organic-gauge-hub {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.gauge-ring-wrapper {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gauge-svg {
  transform: rotate(-90deg);
}

.gauge-bg {
  fill: none;
  stroke: rgba(30, 53, 47, 0.06);
  stroke-width: 10;
}

.gauge-fill {
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 365;
  stroke-dashoffset: 365;
  transition: stroke-dashoffset 0.8s cubic-bezier(0.25, 1, 0.5, 1), stroke 0.8s ease;
}

.gauge-text {
  position: absolute;
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent-dark);
}

.gauge-status-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-dark);
  margin-bottom: 0.4rem;
}

.gauge-status-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 320px;
}

.mascot-coach-pill {
  background: rgba(244, 239, 230, 0.8);
  border: 1px solid rgba(30, 53, 47, 0.1);
  border-radius: 24px;
  padding: 1rem 1.35rem;
  width: 100%;
  text-align: left;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.coach-name {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--cta-orange);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.2rem;
}

/* ==========================================================================
   6. SECTION 5: APP INTERFACE SHOWCASE (ORGANIC RIVER STREAM)
   ========================================================================== */
.app-showcase {
  padding: 5rem 0;
  background: #F4EFE6;
}

.showcase-organic-stream {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
  margin-top: 3.5rem;
}

.organic-showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.organic-showcase-item.item-reverse {
  direction: rtl;
}

.organic-showcase-item.item-reverse .showcase-info-bubble {
  direction: ltr;
}

.showcase-info-bubble {
  padding: 1rem;
}

.bento-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--primary-green);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0.75rem;
  background: rgba(30, 53, 47, 0.06);
  padding: 4px 12px;
  border-radius: 100px;
}

.showcase-info-bubble h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-dark);
  letter-spacing: -0.02em;
  margin: 0.75rem 0 1rem 0;
  line-height: 1.2;
}

.showcase-info-bubble p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.showcase-phone-aura {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.organic-showcase-screen {
  width: 290px;
  max-width: 100%;
  border-radius: 36px;
  box-shadow: 0 30px 70px -20px rgba(15, 36, 25, 0.25);
  border: 4px solid #FFFFFF;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.organic-showcase-screen:hover {
  transform: translateY(-8px) scale(1.03);
}

/* ==========================================================================
   7. SECTION 6: RUFFRIENDS COMMUNITY (NEIGHBORHOOD NETWORK)
   ========================================================================== */
.community-section {
  padding: 5rem 0;
  background: #FBF9F5;
}

.community-stats-ribbon {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.comm-stat-bubble {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 100px;
  padding: 0.85rem 1.85rem;
  box-shadow: 0 10px 25px -10px rgba(15, 36, 25, 0.06);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.comm-stat-bubble .comm-stat-val {
  font-family: var(--font-headings);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--accent-dark);
}

.comm-stat-bubble .comm-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.community-organic-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.community-features-flow {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.organic-feature-node {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.4rem 1.75rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px -10px rgba(15, 36, 25, 0.05);
  transition: transform 0.3s ease, background 0.3s ease;
}

.organic-feature-node:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.95);
}

.feature-node-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 53, 47, 0.06);
  color: var(--accent-dark);
  border-radius: 16px;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.organic-feature-node:hover .feature-node-icon {
  background: rgba(74, 222, 128, 0.15);
  color: var(--accent-dark);
}

.feature-node-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 0.35rem;
}

.feature-node-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.community-screens-float {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.floating-screen-halo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.screen-float-tag {
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(15, 36, 25, 0.75);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.screen-preview-img {
  width: 210px;
  max-width: 100%;
  border-radius: 28px;
  box-shadow: 0 24px 50px -15px rgba(15, 36, 25, 0.25);
  border: 3px solid #FFFFFF;
  transition: transform 0.35s ease;
}

.floating-screen-halo:hover .screen-preview-img {
  transform: translateY(-6px) scale(1.04);
}

/* ==========================================================================
   8. SECTION 7: FAQ (ORGANIC EXPANDABLE PILLS)
   ========================================================================== */
.faq-section {
  padding: 5rem 0 6rem 0;
  background: #F4EFE6;
}

.faq-organic-container {
  max-width: 780px;
  margin: 0 auto 3.5rem auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item-pill {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 25px -10px rgba(15, 36, 25, 0.05);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item-pill:hover {
  box-shadow: 0 16px 35px -10px rgba(15, 36, 25, 0.09);
  transform: translateY(-2px);
}

.faq-item-pill .faq-trigger {
  width: 100%;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-dark);
  text-align: left;
  gap: 1rem;
}

.faq-item-pill .faq-icon {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cta-orange);
  transition: transform 0.3s ease;
}

.faq-item-pill.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item-pill .faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item-pill.active .faq-content {
  max-height: 300px;
}

.faq-item-pill .faq-inner {
  padding: 0 2rem 1.75rem 2rem;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.faq-organic-banner {
  max-width: 780px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 36px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 20px 45px -15px rgba(15, 36, 25, 0.08);
  border: 1px solid #FFFFFF;
}

.faq-organic-banner .faq-mascot-img-freestanding {
  width: 82px;
  height: auto;
  max-height: 72px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(7, 80, 50, 0.15));
}

.faq-organic-banner .btn {
  white-space: nowrap !important;
  flex-shrink: 0;
  padding: 0.85rem 2rem;
  line-height: 1.2;
}

.faq-organic-banner .faq-helper-text h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent-dark);
  margin-bottom: 0.35rem;
}

.faq-organic-banner .faq-helper-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   9. RESPONSIVE MEDIA QUERIES (MOBILE & TABLET)
   ========================================================================== */
@media (max-width: 992px) {
  .problem-organic-flow,
  .journey-pane-grid,
  .sandbox-pebble-pod,
  .organic-showcase-item,
  .community-organic-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .organic-showcase-item.item-reverse {
    direction: ltr;
  }

  .journey-ribbon {
    gap: 0.5rem;
    max-width: 100%;
  }

  .journey-node-btn {
    padding: 0.65rem 0.85rem;
    gap: 0.5rem;
  }

  .journey-connector-line {
    flex: 0 0 10px;
    width: 10px;
  }

  .community-screens-float {
    flex-direction: column;
    align-items: center;
  }

  .clean-screen-card,
  .screen-preview-img {
    width: 100%;
    max-width: 280px;
  }

  .faq-organic-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .journey-ribbon {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }

  .journey-node-btn {
    width: 100%;
    justify-content: space-between;
    padding: 0.85rem 1.25rem;
  }

  .journey-connector-line {
    width: 2px;
    height: 16px;
  }

  .journey-stage-pod,
  .sandbox-pebble-pod,
  .organic-pebble-card {
    padding: 2rem 1.5rem;
    border-radius: 32px;
  }

  .comm-stat-bubble {
    width: 100%;
    justify-content: center;
  }

  .flow-pill {
    border-radius: 24px;
    padding: 1rem;
  }

  .nav-logo-svg {
    height: 34px;
  }
}