/* ===== Barunay Marketing Site — v2 ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --emerald: #1B5E4A;
  --emerald-dark: #0D1F17;
  --emerald-light: #2A7D63;
  --emerald-glow: rgba(27, 94, 74, 0.15);
  --gold: #D4A84B;
  --gold-light: #E8C170;
  --gold-dark: #B8923A;
  --cream: #F5F0E6;
  --cream-light: #FAF8F5;
  --stone: #E5E0D5;
  --off-white: #FAF8F5;
  --black: #1A1A1A;
  --charcoal: #3D3D3D;
  --warm-gray: #6B6B6B;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(27, 94, 74, 0.08);
  --shadow-hover: 0 12px 40px rgba(27, 94, 74, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(245, 240, 230, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--stone);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--emerald);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}
.nav-logo img { height: 36px; width: 36px; }
.nav-menu {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-menu a {
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-menu a:hover { background: var(--emerald-glow); color: var(--emerald); }
.nav-cta {
  background: var(--emerald) !important;
  color: var(--cream) !important;
  padding: 10px 24px !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--emerald-light) !important; transform: translateY(-1px); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--emerald);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, var(--emerald-glow), transparent),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(212, 168, 75, 0.08), transparent),
    radial-gradient(ellipse 50% 40% at 20% 60%, rgba(27, 94, 74, 0.05), transparent);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}
.hero-badge {
  display: inline-block;
  background: var(--emerald-glow);
  color: var(--emerald);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(27, 94, 74, 0.2);
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--emerald);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--charcoal);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.5;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--emerald);
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--warm-gray);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 1;
}
.hero-scroll a {
  font-size: 0.8rem;
  color: var(--warm-gray);
  text-decoration: none;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--emerald), transparent);
  margin: 8px auto 0;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--emerald);
  color: var(--cream);
  box-shadow: 0 4px 16px rgba(27, 94, 74, 0.3);
}
.btn-primary:hover {
  background: var(--emerald-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 94, 74, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--emerald);
  border: 2px solid rgba(27, 94, 74, 0.2);
}
.btn-ghost:hover {
  border-color: var(--emerald);
  background: var(--emerald-glow);
}

/* ===== SECTIONS ===== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
  padding: 0 24px;
}
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--emerald);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--warm-gray);
}

/* ===== VERTICALS ===== */
.verticals {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.v-card {
  background: var(--off-white);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
}
.v-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.v-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--emerald);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.v-card[data-color="gold"]::before { background: var(--gold); }
.v-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.v-card:hover::before { transform: scaleX(1); }
.v-card-wide {
  grid-column: span 3;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.v-card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.v-card-wide .v-card-icon { margin-bottom: 0; font-size: 3rem; }
.v-card-body { flex: 1; }
.v-card h3 {
  font-size: 1.3rem;
  color: var(--emerald);
  margin-bottom: 8px;
  font-weight: 700;
}
.v-card p {
  font-size: 0.92rem;
  color: var(--warm-gray);
  line-height: 1.5;
}
.v-card-arrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--emerald);
  opacity: 0.7;
  transform: translateX(0);
  transition: var(--transition);
  margin-top: 12px;
}
.v-card:hover .v-card-arrow {
  opacity: 1;
  transform: translateX(4px);
}
.v-card-wide .v-card-arrow { opacity: 0.7; }

/* ===== WHY ===== */
.why {
  padding: 100px 24px;
  background: var(--off-white);
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}
.why-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius);
  background: var(--cream-light);
  border: 1px solid var(--stone);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.why-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.why-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.why-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.why-card h3 {
  font-size: 1.1rem;
  color: var(--emerald);
  margin-bottom: 8px;
  font-weight: 700;
}
.why-card p {
  font-size: 0.92rem;
  color: var(--warm-gray);
}

/* ===== WAITLIST ===== */
.waitlist {
  padding: 100px 24px;
  background: var(--emerald);
  position: relative;
  overflow: hidden;
}
.waitlist::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(212, 168, 75, 0.12), transparent),
    radial-gradient(ellipse 40% 60% at 0% 0%, rgba(255, 255, 255, 0.05), transparent);
}
.waitlist-content {
  position: relative;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
.waitlist h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.waitlist p {
  color: rgba(245, 240, 230, 0.75);
  font-size: 1.1rem;
  margin-bottom: 32px;
}
.waitlist-form {
  display: flex;
  gap: 8px;
  max-width: 440px;
  margin: 0 auto;
}
.waitlist-form input {
  flex: 1;
  padding: 16px 18px;
  border: 1px solid rgba(245, 240, 230, 0.25);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
}
.waitlist-form input::placeholder { color: rgba(245, 240, 230, 0.4); }
.waitlist-form input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}
.waitlist-form button {
  padding: 16px 28px;
  background: var(--gold);
  color: var(--emerald-dark);
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: var(--transition);
}
.waitlist-form button:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.waitlist-count {
  font-size: 0.85rem;
  color: rgba(245, 240, 230, 0.5);
  margin-top: 20px;
}
.waitlist-success {
  color: var(--gold);
  font-weight: 600;
  margin-top: 20px;
  display: none;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--emerald-dark);
  color: rgba(245, 240, 230, 0.6);
  padding: 60px 24px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(245, 240, 230, 0.1);
}
.footer-brand img {
  height: 48px;
  width: 48px;
  margin-bottom: 16px;
  opacity: 0.9;
}
.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.5;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  color: var(--cream);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  color: rgba(245, 240, 230, 0.55);
  text-decoration: none;
  font-size: 0.92rem;
  padding: 4px 0;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
}

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--emerald);
  color: var(--cream);
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(27, 94, 74, 0.3);
}
.back-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-top:hover {
  background: var(--emerald-light);
  transform: translateY(-2px);
}

/* ===== LANG TOGGLE ===== */
.lang-toggle {
  background: transparent;
  border: 1.5px solid rgba(27, 94, 74, 0.3);
  color: var(--emerald);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
  letter-spacing: 0.03em;
}
.lang-toggle:hover {
  background: var(--emerald-glow);
  border-color: var(--emerald);
}

/* ===== PRIVACY PAGE ===== */
.priv-h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--emerald);
  margin: 36px 0 12px;
}
.priv-p {
  font-size: 0.98rem;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 12px;
}
.priv-ul {
  margin: 0 0 16px 20px;
  padding: 0;
}
.priv-ul li {
  font-size: 0.98rem;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 6px;
}
.priv-link {
  color: var(--emerald);
  text-decoration: none;
  font-weight: 600;
}
.priv-link:hover { text-decoration: underline; }

/* ===== FAQ ===== */
.faq {
  padding: 100px 24px;
  max-width: 760px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--off-white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item[open] {
  border-color: var(--emerald-light);
  box-shadow: var(--shadow);
}
.faq-item summary {
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--emerald);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 48px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--gold-dark);
  transition: var(--transition);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p {
  padding: 0 24px 20px;
  color: var(--charcoal);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .verticals-grid { grid-template-columns: repeat(2, 1fr); }
  .v-card-wide { grid-column: span 2; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* Waitlist form selects */
.waitlist-form select {
  padding: 16px 18px;
  border: 1px solid rgba(245, 240, 230, 0.25);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  cursor: pointer;
}
.waitlist-form select option { color: #333; }
.waitlist-form select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 640px) {
  .nav-menu { display: none; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 16px 24px;
    border-bottom: 1px solid var(--stone);
    gap: 4px;
  }
  .nav-toggle { display: flex; }
  .hero-stats { gap: 32px; }
  .stat-num { font-size: 2rem; }
  .verticals-grid { grid-template-columns: 1fr; }
  .v-card-wide { grid-column: span 1; flex-direction: column; text-align: center; }
  .why-grid { grid-template-columns: 1fr; }
  .waitlist-form { flex-direction: column; }
  .waitlist-form select { width: 100%; }
  .footer-links { grid-template-columns: 1fr; gap: 24px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
}

/* ===== VERTICAL DETAIL PAGE ===== */
.v-hero {
  padding: 140px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.v-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, var(--emerald-glow), transparent);
  z-index: 0;
}
.v-hero[data-color="gold"] .v-hero-bg {
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(212, 168, 75, 0.12), transparent);
}
.v-hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0 auto;
}
.v-hero-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}
.v-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--emerald);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.v-hero-tagline {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--emerald-light);
  font-weight: 600;
  margin-bottom: 12px;
}
.v-hero-desc {
  font-size: 1.05rem;
  color: var(--charcoal);
  line-height: 1.5;
}

/* Screenshot section */
.v-screenshot {
  padding: 40px 24px 80px;
  max-width: 900px;
  margin: 0 auto;
}
.v-screenshot-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(27, 94, 74, 0.15);
  border: 1px solid var(--stone);
  background: var(--off-white);
}
.v-screenshot-img {
  display: block;
  width: 100%;
  height: auto;
}

/* Vertical features reuse .why-grid and .why-card from main */

.v-features {
  padding: 80px 24px;
  background: var(--off-white);
  border-top: 1px solid var(--stone);
}

@media (max-width: 640px) {
  .v-hero { padding: 120px 24px 40px; }
  .v-screenshot { padding: 20px 16px 60px; }
}

/* Screenshot view toggle */
.v-screenshot-labels {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}
.v-screenshot-label {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--stone);
  color: var(--warm-gray);
  transition: var(--transition);
  user-select: none;
}
.v-screenshot-label:hover { background: var(--emerald-glow); color: var(--emerald); }
.v-screenshot-label.active {
  background: var(--emerald);
  color: var(--cream);
}
.v-screenshot-desktop {
  border-radius: 12px;
}

/* Side-by-side screenshot display — now stacked vertically */
.v-screenshot-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
}
.v-screenshot-item {
  width: 100%;
  max-width: 680px;
  text-align: center;
}
.v-screenshot-item-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--emerald);
  text-align: center;
  margin-bottom: 12px;
  padding: 6px 16px;
  background: var(--emerald-glow);
  border-radius: 100px;
  display: inline-block;
}
.v-screenshot-item-label.gold {
  color: var(--gold-dark);
  background: rgba(212, 168, 75, 0.12);
}
.v-screenshot-item-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--stone);
  box-shadow: var(--shadow);
}
/* Hide old toggle labels */
.v-screenshot-labels { display: none !important; }
/* Show both images always */
.v-screenshot-img { display: block !important; }

/* Constrain mobile screenshot to phone-ish width */
.v-screenshot-item:first-child .v-screenshot-item-img {
  max-width: 360px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .v-screenshot-wrap { flex-direction: column; align-items: center; }
  .v-screenshot-item { max-width: 380px; }
  .v-screenshot-item:first-child .v-screenshot-item-img { max-width: 300px; }
}

/* =========================================
   ===== ANIMATION OVERHAUL — Tiers 1-3 =====
   ========================================= */

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--gold), var(--emerald-light));
  z-index: 1001;
  width: 0%;
  transition: width 0.1s linear;
  border-radius: 0 3px 3px 0;
}

/* ===== HERO ENTRANCE ANIMATIONS ===== */
.hero-badge,
.hero h1,
.hero-sub,
.hero-actions,
.hero-stats,
.hero-scroll {
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s var(--ease-bounce) forwards;
}
.hero-badge { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.25s; }
.hero-sub { animation-delay: 0.4s; }
.hero-actions { animation-delay: 0.55s; }
.hero-stats { animation-delay: 0.7s; }
.hero-scroll { animation-delay: 0.9s; }

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

/* ===== ANIMATED GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--gold) 50%, var(--emerald-light) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ===== CARD HOVER GLOW ===== */
.v-card {
  position: relative;
}
.v-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
  pointer-events: none;
  box-shadow: 0 0 30px rgba(27, 94, 74, 0.2);
}
.v-card[data-color="gold"]::after {
  box-shadow: 0 0 30px rgba(212, 168, 75, 0.25);
}
.v-card:hover::after {
  opacity: 1;
}
/* Glow aura behind card */
.v-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(135deg, transparent, var(--emerald-glow), transparent);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s var(--ease-smooth);
}
.v-card[data-color="gold"]::before {
  background: linear-gradient(135deg, transparent, rgba(212, 168, 75, 0.15), transparent);
}
.v-card:hover::before {
  opacity: 1;
}

/* ===== STAT COUNTER ===== */
.stat-num {
  display: inline-block;
}
.stat-num.counting {
  transition: none;
}

/* ===== BUTTON SHINE EFFECT ===== */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease-smooth);
}
.btn-primary:hover::after {
  left: 120%;
}

/* ===== SECTION REVEAL (blur to sharp) ===== */
.section-header,
.verticals-grid,
.why-grid,
.faq-list,
.waitlist-content,
.footer-inner {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(8px);
  transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth), filter 0.6s var(--ease-smooth);
}
.section-header.revealed,
.verticals-grid.revealed,
.why-grid.revealed,
.faq-list.revealed,
.waitlist-content.revealed,
.footer-inner.revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ===== WAITLIST SHIMMER/PARTICLE BACKGROUND ===== */
.waitlist {
  position: relative;
}
.waitlist-shimmer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.shimmer-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(212, 168, 75, 0.4);
  border-radius: 50%;
  animation: shimmerFloat linear infinite;
}
@keyframes shimmerFloat {
  0% {
    transform: translateY(100%) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: translateY(90%) scale(1);
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-20vh) scale(0);
    opacity: 0;
  }
}
.waitlist-content { position: relative; z-index: 2; }

/* ===== PHONE MOCKUP IN HERO ===== */
.hero-phone {
  position: relative;
  z-index: 1;
  margin: 40px auto 0;
  width: 260px;
  height: 540px;
  border-radius: 36px;
  background: var(--emerald-dark);
  padding: 10px;
  box-shadow: 0 30px 80px rgba(13, 31, 23, 0.4), 0 0 0 2px rgba(27, 94, 74, 0.2);
  opacity: 0;
  transform: translateY(40px) rotateY(-10deg);
  animation: phoneEntrance 1s var(--ease-bounce) 1.1s forwards;
  perspective: 1000px;
}
@keyframes phoneEntrance {
  to {
    opacity: 1;
    transform: translateY(0) rotateY(0);
  }
}
.hero-phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: var(--cream);
  position: relative;
}
.hero-phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background: var(--emerald-dark);
  border-radius: 0 0 10px 10px;
  z-index: 10;
}

@media (max-width: 768px) {
  .hero-phone {
    width: 200px;
    height: 420px;
    margin-top: 30px;
  }
}

/* ===== MARQUEE OF VERTICALS ===== */
.marquee {
  overflow: hidden;
  padding: 30px 0;
  background: var(--emerald-dark);
  position: relative;
}
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--emerald-dark), transparent);
}
.marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--emerald-dark), transparent);
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marqueeScroll 20s linear infinite;
  width: max-content;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(245, 240, 230, 0.7);
  font-size: 1.1rem;
  font-weight: 600;
  white-space: nowrap;
}
.marquee-item-icon {
  font-size: 1.6rem;
}
.marquee-divider {
  color: var(--gold);
  opacity: 0.5;
  font-size: 1.2rem;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== MAGNETIC CARD TILT (subtle) ===== */
.v-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-badge, .hero h1, .hero-sub, .hero-actions, .hero-stats, .hero-scroll,
  .hero-phone,
  .section-reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* Section reveal for vertical pages */
.section-reveal {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(8px);
  transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth), filter 0.6s var(--ease-smooth);
}
.section-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ===== VERTICAL PREV/NEXT NAVIGATION ===== */
.vertical-nav {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  gap: 1rem;
}
.vertical-nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  background: var(--cream);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--stone);
}
.vertical-nav a:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.vertical-nav a .nav-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--warm-gray);
}
.vertical-nav a .nav-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
}
.vertical-nav a .nav-arrow {
  font-size: 1.2rem;
  color: var(--emerald);
  margin-top: 0.25rem;
}
.vertical-nav .nav-next {
  text-align: right;
}
.vertical-nav .nav-next .nav-label,
.vertical-nav .nav-next .nav-title,
.vertical-nav .nav-next .nav-arrow {
  direction: ltr;
}
.vertical-nav .nav-placeholder {
  flex: 1;
}
@media (max-width: 600px) {
  .vertical-nav { flex-direction: column; padding: 0 1rem 2rem; }
  .vertical-nav a { padding: 1rem 1.25rem; }
}
