/* ===== BASE ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: #FAF8F5;
  color: #1A1A1A;
  overflow-x: hidden;
}

.font-playfair { font-family: 'Playfair Display', serif; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #F0EDE8; }
::-webkit-scrollbar-thumb { background: #C9A15B; border-radius: 2px; }

/* ===== LAYOUT: SIDEBAR + MAIN ===== */
#layout {
  display: flex;
  min-height: 100vh;
}

/* Sidebar always takes space on left */
#sidebar {
  width: 260px;
  min-width: 260px;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: #FFFFFF;
  border-right: 1px solid #E8E2D9;
  display: flex;
  flex-direction: column;
  z-index: 100;
  transition: transform 0.3s ease;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #C9A15B #F5F0E8;
}

/* Main content pushed right of sidebar */
#main-content {
  margin-left: 260px;
  flex: 1;
  min-width: 0;
}

/* Footer sits outside main-content, needs its own sidebar offset */
footer#formula {
  margin-left: 260px;
  transition: margin-left 0.3s ease;
}
#main-content.expanded ~ footer#formula,
footer#formula.expanded {
  margin-left: 0;
}

/* Hamburger always visible — just outside sidebar on desktop */
#hamburger {
  position: fixed;
  top: 16px;
  left: 272px;
  z-index: 200;
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border: 1.5px solid #E8E2D9;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.2s ease;
}
#hamburger:hover { border-color: #C9A15B; }

.ham-line {
  display: block;
  height: 2px;
  background: #C9A15B;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.ham-line:nth-child(1) { width: 20px; }
.ham-line:nth-child(2) { width: 14px; }
.ham-line:nth-child(3) { width: 20px; }

/* Hamburger open state (X) */
#hamburger.open .ham-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 20px;
}
#hamburger.open .ham-line:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
#hamburger.open .ham-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 20px;
}

/* Sidebar collapsed */
#sidebar.collapsed {
  transform: translateX(-260px);
}
#main-content.expanded {
  margin-left: 0;
}

/* Overlay for mobile */
#overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 99;
}
#overlay.show { display: block; }

/* ===== SIDEBAR INTERNALS ===== */
.sidebar-brand {
  padding: 24px 20px 20px;
  border-bottom: 1px solid #F0EDE8;
}
.sidebar-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  color: #C9A15B;
  line-height: 1.2;
}
.sidebar-brand .brand-sub {
  font-size: 10px;
  color: #AAA;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 4px;
}

.sidebar-nav {
  flex: 1;
  padding: 16px 12px;
  overflow-y: auto;
}
.nav-section-label {
  font-size: 10px;
  color: #BBB;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0 12px;
  margin-bottom: 8px;
  margin-top: 4px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: #777;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-bottom: 2px;
}
.nav-link:hover {
  background: #FBF7F0;
  color: #C9A15B;
}
.nav-link.active {
  background: #FBF7F0;
  color: #C9A15B;
  font-weight: 600;
}
.nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #DDD;
  flex-shrink: 0;
  transition: background 0.2s;
}
.nav-link.active .nav-dot,
.nav-link:hover .nav-dot {
  background: #C9A15B;
}

.sidebar-footer {
  padding: 14px 20px;
  border-top: 1px solid #F0EDE8;
  font-size: 11px;
  color: #CCC;
  text-align: center;
}

/* ===== GOLD GRID BG ===== */
.gold-grid-bg {
  background-image:
    linear-gradient(rgba(201,161,91,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,161,91,0.08) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ===== SECTIONS ===== */
section {
  padding: 80px 60px;
}
section:nth-child(even) {
  background: #FFFFFF;
}
section:nth-child(odd) {
  background: #FAF8F5;
}

/* ===== HERO SCROLL ANIMATION ===== */
#hero-scroll-wrapper {
  height: 300vh; /* scroll room for the animation */
  position: relative;
}

#cover {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F5F1EB !important;
  overflow: hidden;
  padding: 0 !important;
}

/* Background video — starts clipped small, expands */
.hero-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  overflow: hidden;
  /* starts as a small rounded rectangle, expands on scroll */
  clip-path: inset(15% 30% 15% 30% round 20px);
  transition: clip-path 0s;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
}

/* Text — left side */
.hero-text-left {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}
.hero-subtitle {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2.5vw, 28px);
  font-style: italic;
  color: #1A1A1A;
  margin-bottom: 0;
  letter-spacing: 0.02em;
}
.hero-title-large {
  font-family: 'Playfair Display', serif;
  font-size: clamp(80px, 14vw, 180px);
  font-weight: 900;
  color: #C9A15B;
  line-height: 0.85;
  letter-spacing: -4px;
  margin: 0;
}
.hero-title-accent {
  color: #C9A15B;
}

/* Text — right side */
.hero-text-right {
  position: absolute;
  right: 5%;
  bottom: 22%;
  z-index: 10;
  pointer-events: none;
  text-align: right;
}
.hero-ampersand {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 3vw, 28px);
  color: #C9A15B;
  margin-bottom: 4px;
}
.hero-title-right {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 7vw, 90px);
  font-weight: 700;
  color: #C9A15B;
  letter-spacing: -2px;
  margin: 0;
}

/* Tagline — bottom center */
.hero-tagline {
  position: absolute;
  bottom: 28%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  pointer-events: none;
  white-space: nowrap;
}
.hero-tagline-line1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(14px, 2vw, 20px);
  color: #D0C4A8;
  margin: 0;
  line-height: 1.5;
}
.hero-tagline-line2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 600;
  color: #C9A15B;
  margin: 0;
}

/* CTA button — bottom left */
.hero-cta {
  position: absolute;
  left: 5%;
  bottom: 12%;
  z-index: 10;
}
.hero-cta-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F5F1EB;
  border: 1px solid #E0D9CE;
  border-radius: 50px;
  padding: 14px 24px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.hero-cta-btn:hover {
  background: #FFFFFF;
  border-color: #C9A15B;
  box-shadow: 0 6px 30px rgba(201,161,91,0.15);
}
.hero-cta-arrow {
  font-size: 18px;
  color: #1A1A1A;
}
.hero-cta-text {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1A1A1A;
  line-height: 1.4;
}

/* Brand name top-left */
.hero-brand {
  position: absolute;
  top: 28px;
  left: 5%;
  z-index: 10;
  display: flex;
  flex-direction: column;
}
.hero-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #C9A15B;
}
.hero-brand-sub {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #999;
  margin-top: 2px;
}

/* Badge — bottom right */
.hero-badge {
  position: absolute;
  right: 5%;
  bottom: 12%;
  z-index: 10;
}
.hero-badge-text {
  display: inline-block;
  border: 1px solid rgba(201,161,91,0.35);
  border-radius: 40px;
  padding: 6px 20px;
  font-size: 11px;
  color: #8B7A5C;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* Category pills */
.hero-pills {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.hero-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #A08C6E;
}
.hero-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C9A15B;
  flex-shrink: 0;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  animation: bounce 2s infinite;
}
.hero-scroll-label {
  font-size: 10px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 6px;
}
.hero-scroll-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, #C9A15B, transparent);
  margin: 0 auto;
}

/* States for color transition when background expands */
#cover.hero-dark .hero-subtitle,
#cover.hero-dark .hero-brand-name {
  color: #C9A15B;
}
#cover.hero-dark .hero-title-large {
  color: #FFFFFF;
}
#cover.hero-dark .hero-title-right {
  color: #FFFFFF;
}
#cover.hero-dark .hero-ampersand {
  color: #FFFFFF;
}
#cover.hero-dark .hero-brand-sub {
  color: rgba(255,255,255,0.5);
}
#cover.hero-dark .hero-scroll-label {
  color: rgba(255,255,255,0.5);
}
#cover.hero-dark .hero-cta-btn {
  background: rgba(255,255,255,0.95);
}
#cover.hero-dark .hero-badge-text {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.3);
}
#cover.hero-dark .hero-pill {
  color: rgba(255,255,255,0.7);
}
#cover.hero-dark .hero-tagline-line1 {
  color: rgba(255,255,255,0.8);
}
#cover.hero-dark .hero-tagline-line2 {
  color: #C9A15B;
}

/* Mobile adjustments for hero */
@media (max-width: 768px) {
  #hero-scroll-wrapper {
    height: 250vh;
  }
  .hero-title-large {
    font-size: 60px !important;
    letter-spacing: -2px;
  }
  .hero-title-right {
    font-size: 36px !important;
  }
  .hero-text-left {
    left: 4%;
  }
  .hero-text-right {
    right: 4%;
  }
  .hero-bg {
    clip-path: inset(20% 20% 20% 20% round 16px);
  }
  .hero-pills {
    display: none;
  }
  .hero-tagline {
    white-space: normal;
    width: 80%;
  }
  .hero-badge {
    display: none;
  }
}

/* Launch Strategy section */
#launch {
  background: #FAF8F5 !important;
}
#launch .reveal-up[style*="border-radius:24px"]:hover {
  border-color: #C9A15B;
  box-shadow: 0 12px 40px rgba(201,161,91,0.1);
  transform: translateY(-2px);
}

/* Formula section */
#formula {
  min-height: auto;
  display: block;
  background: #12100A !important;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slide in from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale up from center */
.reveal-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Vision section dot with pulse */
.vision-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #C9A15B;
  flex-shrink: 0;
  position: relative;
}
.reveal-left.visible .vision-dot {
  animation: dotPulse 0.6s ease forwards;
  animation-delay: inherit;
}

/* Vision cards hover lift */
.vision-card {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}
.vision-card:hover {
  transform: translateY(-4px) scale(1.03) !important;
  border-color: #C9A15B;
  box-shadow: 0 10px 30px rgba(201,161,91,0.15);
}

@keyframes dotPulse {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.6); }
  100% { transform: scale(1); opacity: 1; }
}

/* ===== SECTION HEADER ===== */
.sec-label {
  font-size: 11px;
  color: #C9A15B;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 500;
}
.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: #1A1A1A;
  margin-top: 6px;
  line-height: 1.2;
}
.sec-divider {
  width: 48px;
  height: 3px;
  background: #C9A15B;
  margin-top: 16px;
  border-radius: 2px;
}

/* Light sections — override title color for dark sections */
#cover .sec-title,
#formula .sec-title { color: #FFFFFF; }

/* ===== CARDS ===== */
.card {
  background: #FFFFFF;
  border: 1.5px solid #EDE9E2;
  border-radius: 16px;
  padding: 28px;
  transition: all 0.25s ease;
}
.card:hover {
  border-color: #C9A15B;
  box-shadow: 0 8px 30px rgba(201,161,91,0.12);
  transform: translateY(-2px);
}

/* ===== BRAND ARCHITECTURE LAYOUT ===== */
.brand-arch-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.brand-hub {
  position: relative;
  text-align: center;
  width: 100%;
}

.brand-hub-glow {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(201,161,91,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.brand-hub-inner {
  position: relative;
  z-index: 2;
  padding: 32px 24px 28px;
}

.brand-hub-badge {
  display: inline-block;
  font-size: 10px;
  color: #C9A15B;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  background: #FBF7F0;
  border: 1px solid #EDE9E2;
  padding: 5px 14px;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 14px;
}
.brand-hub-badge-alt {
  color: #888;
  background: #F5F2ED;
}

.brand-hub-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  color: #C9A15B;
  margin: 0 0 6px;
  letter-spacing: -1px;
}

.brand-hub-tagline {
  font-size: 13px;
  color: #999;
  margin: 0;
}

/* Spokes — horizontal flowing grid */
.brand-spokes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  margin-top: 24px;
  position: relative;
  z-index: 2;
}

.brand-spoke {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #FFFFFF;
  border: 1.5px solid #EDE9E2;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
}
.brand-spoke:hover {
  border-color: #C9A15B;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 24px rgba(201,161,91,0.12);
}

.brand-spoke-icon {
  font-size: 20px;
  line-height: 1;
}

.brand-spoke-label {
  font-size: 13px;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
}

/* Connector between brands */
.brand-connector {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px 0;
  width: 100%;
  justify-content: center;
}

.brand-connector-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, #C9A15B, transparent);
}

.brand-connector-badge {
  font-size: 11px;
  color: #C9A15B;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  padding: 8px 20px;
  border: 1.5px solid #C9A15B;
  border-radius: 30px;
  background: #FFFDF8;
}

/* Responsive */
@media (max-width: 768px) {
  .brand-spokes {
    gap: 8px;
    padding: 0 8px;
  }
  .brand-spoke {
    padding: 10px 14px;
  }
  .brand-spoke-label {
    font-size: 12px;
  }
  .brand-connector-line {
    width: 40px;
  }
}

/* On white bg sections, cards get light bg */
section:nth-child(even) .card {
  background: #FAF8F5;
}

/* ===== GOLD ACCENT CARD (featured) ===== */
.card-gold {
  border: 2px solid #C9A15B;
  box-shadow: 0 8px 40px rgba(201,161,91,0.15);
}

/* ===== TABLE ===== */
.data-table {
  width: 100%;
  border-collapse: collapse;
}
.data-table thead th {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #C9A15B;
  font-weight: 600;
  padding: 12px 16px;
  border-bottom: 2px solid #F0EDE8;
  text-align: left;
}
.data-table thead th:not(:first-child) { text-align: center; }
.data-table tbody tr {
  border-bottom: 1px solid #F5F2ED;
  transition: background 0.15s;
}
.data-table tbody tr:hover { background: #FBF7F0; }
.data-table tbody td {
  padding: 14px 16px;
  font-size: 14px;
  color: #444;
}
.data-table tbody td:not(:first-child) { text-align: center; }
.data-table tfoot tr {
  background: #FBF7F0;
}
.data-table tfoot td {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 700;
  color: #C9A15B;
}
.data-table tfoot td:not(:first-child) { text-align: center; }

/* ===== FLOW STEPS ===== */
.flow-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #F5F2ED;
  border-radius: 10px;
  border: 1px solid #EDE9E2;
  transition: all 0.2s;
  font-size: 13px;
  color: #444;
}
.flow-step:hover { border-color: #C9A15B; background: #FBF7F0; }

.flow-arrow {
  text-align: center;
  color: #C9A15B;
  font-size: 18px;
  line-height: 1;
  margin: 2px 0;
}

/* ===== TIMELINE ===== */
.timeline-track {
  position: relative;
}
.timeline-track::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: #EDE9E2;
  z-index: 0;
}
.timeline-progress {
  position: absolute;
  top: 20px;
  left: 0;
  height: 2px;
  background: linear-gradient(to right, #C9A15B, #E8C97A);
  z-index: 1;
  width: 0;
  transition: width 1.4s ease;
}
.timeline-item {
  position: relative;
  z-index: 2;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.timeline-item.visible { opacity: 1; transform: translateY(0); }

.timeline-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid #DDD;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 12px;
  font-weight: 700;
  color: #AAA;
  transition: all 0.4s ease;
}
.timeline-dot.active {
  background: #C9A15B;
  border-color: #C9A15B;
  color: #FFFFFF;
}

/* ===== KPI COUNTER ===== */
.kpi-counter {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #1A1A1A;
}
.kpi-target {
  color: #C9A15B;
  font-size: 24px;
}

/* ===== PRICING ===== */
.price-tag {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: #1A1A1A;
}
.price-recommended .price-tag { color: #C9A15B; }

/* ===== FUNNEL ===== */
.funnel-bar {
  border-radius: 6px;
  padding: 8px 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
  transition: all 0.2s;
}

/* ===== FORMULA SECTION (dark) ===== */
.formula-text {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: #C9A15B;
}
.formula-result {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  section { padding: 60px 20px; }

  #sidebar {
    transform: translateX(-260px);
  }
  #sidebar.open {
    transform: translateX(0);
  }
  #main-content {
    margin-left: 0 !important;
  }
  #main-content.expanded {
    margin-left: 0;
  }
  footer#formula {
    margin-left: 0 !important;
  }
  /* On mobile hamburger sits top-left over content */
  #hamburger {
    left: 12px;
    top: 12px;
  }
  .sec-title { font-size: 28px; }
  .formula-text { font-size: 20px; }
  .formula-result { font-size: 24px; }
}

@media (min-width: 769px) and (max-width: 1023px) {
  section { padding: 70px 40px; }
  .sec-title { font-size: 32px; }
}

/* ===== ROADMAP GRID RESPONSIVE ===== */
@media (max-width: 768px) {
  #roadmap > div > div:nth-child(2) {
    grid-template-columns: 1fr !important;
  }
  #channels > div > div:nth-child(2) {
    grid-template-columns: 1fr !important;
  }
  #scope > div > div:nth-child(2) {
    grid-template-columns: 1fr !important;
  }
}

/* ===== BOUNCE KEYFRAME ===== */
@keyframes bounce {
  0%, 100% { transform: translateY(0) translateX(-50%); }
  50% { transform: translateY(-8px) translateX(-50%); }
}

/* ===== RESPONSIVE GRIDS ===== */
@media (max-width: 1023px) {
  #vision > div > div:last-child > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Stack all multi-column grids on mobile */
  div[style*="grid-template-columns:repeat(3,1fr)"],
  div[style*="grid-template-columns:repeat(4,1fr)"],
  div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  div[style*="grid-template-columns:repeat(6,1fr)"] {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  div[style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ===== ACCESSIBILITY: REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-left, .reveal-scale { opacity: 1; transform: none; transition: none; }
  .timeline-item { opacity: 1; transform: none; transition: none; }
  .timeline-progress { transition: none; }
  .ham-line { transition: none; }
  #sidebar { transition: none; }
  .card { transition: none; }
  .vision-card { transition: none !important; }
  .vision-dot { animation: none !important; }
}

/* ===== UTILITY CLASSES (Tailwind replacements) ===== */
.absolute { position: absolute; }
.relative { position: relative; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-10 { z-index: 10; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 768px; }

/* ===== SNAKE TIMELINE — VERTICAL WINDING PATH ===== */
.snake-timeline {
  position: relative;
  padding: 20px 0;
}

.snake-path-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

#snakePathDark {
  transition: stroke-dasharray 0.1s ease-out;
}

#snakePathGold {
  transition: stroke-dasharray 0.15s ease-out;
}

#snakeTravelDot {
  transition: opacity 0.3s ease;
  filter: drop-shadow(0 0 4px rgba(26, 26, 26, 0.5));
}

.snake-step {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.snake-step:last-child {
  margin-bottom: 0;
}

/* Right-aligned steps: marker on left, card on right */
.snake-step.snake-right {
  justify-content: flex-start;
  padding-left: 5%;
}

/* Left-aligned steps: card on left, marker on right */
.snake-step.snake-left {
  justify-content: flex-end;
  padding-right: 5%;
}

/* Step marker (number badge) */
.snake-step-marker {
  flex-shrink: 0;
}

.snake-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FBF7F0;
  border: 2.5px solid #EDE9E2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #999;
  font-family: 'Inter', sans-serif;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.snake-step-num.active {
  background: linear-gradient(135deg, #C9A15B, #E8C97A);
  border-color: #C9A15B;
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(201, 161, 91, 0.4);
}

.snake-step-num.current {
  background: #FFFDF8;
  border-color: #C9A15B;
  color: #C9A15B;
  box-shadow: 0 4px 14px rgba(201, 161, 91, 0.2);
}

/* Step card */
.snake-step-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FAF8F5;
  border: 1.5px solid #EDE9E2;
  border-radius: 16px;
  padding: 20px 24px;
  max-width: 380px;
  width: 100%;
  transition: all 0.3s ease;
}

.snake-step-card:hover {
  border-color: #C9A15B;
  box-shadow: 0 8px 28px rgba(201, 161, 91, 0.12);
  transform: translateY(-2px);
}

.snake-step-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #EDE9E2;
}

.snake-step-info {
  flex: 1;
}

.snake-step-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 4px;
}

.snake-step-desc {
  font-size: 12px;
  color: #888;
  line-height: 1.5;
  margin: 0;
}

/* Hover on marker */
.snake-step:hover .snake-step-num {
  transform: scale(1.1);
  border-color: #C9A15B;
}

.snake-step:hover .snake-step-num.active {
  transform: scale(1.15);
}

/* Responsive */
@media (max-width: 768px) {
  .snake-path-svg {
    display: none;
  }

  .snake-step {
    flex-direction: row !important;
    justify-content: flex-start !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    gap: 16px;
  }

  .snake-step.snake-left {
    flex-direction: row-reverse !important;
  }

  .snake-step.snake-left .snake-step-card {
    flex-direction: row;
  }

  .snake-step-card {
    max-width: none;
  }

  .snake-step-num {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }

  .snake-step-card {
    padding: 14px 16px;
  }

  .snake-step-title {
    font-size: 14px;
  }
}



/* ===== QR DIGITAL MENU MODAL ===== */
.eco-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  overflow-y: auto;
  padding: 40px 20px;
  align-items: flex-start;
  justify-content: center;
}
.eco-modal.show {
  display: flex;
}

.eco-modal-content {
  background: #FFFFFF;
  border-radius: 24px;
  max-width: 820px;
  width: 100%;
  padding: 48px 44px;
  position: relative;
  animation: modalSlideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.eco-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #EDE9E2;
  background: #FAF8F5;
  font-size: 16px;
  color: #888;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.eco-modal-close:hover {
  border-color: #C9A15B;
  color: #C9A15B;
  background: #FBF7F0;
}

/* Modal Blocks */
.eco-modal-block {
  background: #FAF8F5;
  border: 1.5px solid #EDE9E2;
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 20px;
}
.eco-modal-block-highlight {
  background: #FFFDF8;
  border-color: #C9A15B;
}

.eco-modal-block-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.eco-modal-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: #F0EDE8;
  color: #666;
  flex-shrink: 0;
}
.eco-modal-step-badge-gold {
  background: linear-gradient(135deg, #C9A15B, #E8C97A);
  color: #FFFFFF;
}

.eco-modal-block-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0;
}

.eco-modal-block-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  margin: 0 0 16px;
}

/* Table URL Grid */
.eco-modal-table-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.eco-modal-table-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #FFFFFF;
  border: 1px solid #EDE9E2;
  border-radius: 10px;
}
.eco-modal-table-label {
  font-size: 12px;
  font-weight: 700;
  color: #C9A15B;
  white-space: nowrap;
}
.eco-modal-table-url {
  font-size: 11px;
  color: #888;
  font-family: monospace;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Note callout */
.eco-modal-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  background: #FFFDF8;
  border: 1px solid rgba(201, 161, 91, 0.3);
  border-radius: 10px;
  font-size: 12px;
  color: #666;
  line-height: 1.6;
}

/* Features Grid */
.eco-modal-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.eco-modal-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #FFFFFF;
  border: 1px solid #EDE9E2;
  border-radius: 10px;
  font-size: 12px;
  color: #444;
}

/* Order Preview */
.eco-modal-order-preview {
  background: #FFFFFF;
  border: 1.5px solid #EDE9E2;
  border-radius: 14px;
  overflow: hidden;
  max-width: 340px;
  margin: 0 auto;
}
.eco-modal-order-header {
  background: #1A1A1A;
  color: #FFFFFF;
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 600;
}
.eco-modal-order-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 18px;
  font-size: 13px;
  color: #444;
  border-bottom: 1px solid #F5F2ED;
}
.eco-modal-order-item:last-of-type {
  border-bottom: none;
}
.eco-modal-order-btn {
  background: linear-gradient(135deg, #C9A15B, #E8C97A);
  color: #FFFFFF;
  text-align: center;
  padding: 12px;
  font-size: 13px;
  font-weight: 700;
  cursor: default;
}

/* Notification Grid */
.eco-modal-notify-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.eco-modal-notify-card {
  background: #FFFFFF;
  border: 1px solid #EDE9E2;
  border-radius: 12px;
  padding: 18px;
  text-align: center;
}
.eco-modal-notify-icon {
  font-size: 28px;
  margin-bottom: 8px;
}
.eco-modal-notify-title {
  font-size: 13px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 6px;
}
.eco-modal-notify-desc {
  font-size: 11px;
  color: #888;
  line-height: 1.5;
  margin: 0;
}

/* Architecture Flow */
.eco-modal-architecture {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.eco-modal-arch-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  width: 100%;
}
.eco-modal-arch-split {
  gap: 10px;
}
.eco-modal-arch-box {
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}
.eco-modal-arch-customer {
  background: #F0EDE8;
  color: #444;
  border: 1px solid #E0D9CE;
}
.eco-modal-arch-menu {
  background: #FFFDF8;
  color: #444;
  border: 1px solid rgba(201, 161, 91, 0.3);
}
.eco-modal-arch-server {
  background: #1A1A1A;
  color: #FFFFFF;
}
.eco-modal-arch-endpoint {
  background: #FFFFFF;
  color: #1A1A1A;
  border: 1.5px solid #C9A15B;
  flex: 1;
}
.eco-modal-arch-arrow {
  font-size: 18px;
  color: #C9A15B;
  text-align: center;
  margin: 6px 0;
}

/* Zone Grid */
.eco-modal-zone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.eco-modal-zone {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #FFFFFF;
  border: 1px solid #EDE9E2;
  border-radius: 10px;
}
.eco-modal-zone-icon {
  font-size: 20px;
  flex-shrink: 0;
}
.eco-modal-zone-name {
  font-size: 12px;
  font-weight: 600;
  color: #1A1A1A;
}
.eco-modal-zone-tables {
  font-size: 11px;
  color: #888;
  margin-left: auto;
}

/* Benefits Grid */
.eco-modal-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.eco-modal-benefit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: #FFFFFF;
  border: 1px solid #EDE9E2;
  border-radius: 12px;
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}
.eco-modal-benefit strong {
  color: #1A1A1A;
  display: block;
  margin-bottom: 2px;
}
.eco-modal-benefit-icon {
  font-size: 22px;
  flex-shrink: 0;
}

/* Payment Grid */
.eco-modal-payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.eco-modal-payment-option {
  background: #FFFFFF;
  border: 1px solid #EDE9E2;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  font-size: 12px;
  color: #666;
  line-height: 1.6;
}
.eco-modal-payment-option strong {
  display: block;
  font-size: 13px;
  color: #1A1A1A;
  margin-bottom: 6px;
}
.eco-modal-payment-option p {
  margin: 0;
}

/* Modal Responsive */
@media (max-width: 768px) {
  .eco-modal {
    padding: 16px 12px;
  }
  .eco-modal-content {
    padding: 28px 20px;
    border-radius: 18px;
  }
  .eco-modal-table-grid,
  .eco-modal-features-grid,
  .eco-modal-notify-grid,
  .eco-modal-zone-grid,
  .eco-modal-benefits-grid,
  .eco-modal-payment-grid {
    grid-template-columns: 1fr;
  }
  .eco-modal-arch-split {
    flex-direction: column;
  }
  .eco-modal-block-title {
    font-size: 16px;
  }
}


/* ===== CUSTOMER DATABASE MODAL — ADDITIONAL STYLES ===== */

/* Data Collection Grid */
.eco-modal-collect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.eco-modal-collect-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #FFFFFF;
  border: 1px solid #EDE9E2;
  border-radius: 12px;
}
.eco-modal-collect-icon {
  font-size: 22px;
  flex-shrink: 0;
}
.eco-modal-collect-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.eco-modal-collect-info strong {
  font-size: 12px;
  color: #1A1A1A;
}
.eco-modal-collect-info span {
  font-size: 11px;
  color: #888;
}

/* Customer Profile Card */
.eco-modal-profile-card {
  background: #FFFFFF;
  border: 1.5px solid #EDE9E2;
  border-radius: 16px;
  overflow: hidden;
  max-width: 480px;
  margin: 0 auto;
}
.eco-modal-profile-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: #1A1A1A;
}
.eco-modal-profile-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C9A15B, #E8C97A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #FFFFFF;
  flex-shrink: 0;
}
.eco-modal-profile-name {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}
.eco-modal-profile-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.eco-modal-profile-tag {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 12px;
  background: rgba(201, 161, 91, 0.2);
  color: #C9A15B;
  font-weight: 600;
}
.eco-modal-profile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid #F0EDE8;
}
.eco-modal-profile-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 8px;
  border-right: 1px solid #F0EDE8;
}
.eco-modal-profile-stat:last-child {
  border-right: none;
}
.eco-modal-profile-stat-label {
  font-size: 10px;
  color: #AAA;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.eco-modal-profile-stat-value {
  font-size: 14px;
  font-weight: 700;
  color: #C9A15B;
}
.eco-modal-profile-details {
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}
.eco-modal-profile-details strong {
  color: #1A1A1A;
}

/* Campaign Cards */
.eco-modal-campaign-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.eco-modal-campaign-card {
  background: #FFFFFF;
  border: 1px solid #EDE9E2;
  border-radius: 14px;
  padding: 20px;
}
.eco-modal-campaign-icon {
  font-size: 28px;
  margin-bottom: 10px;
}
.eco-modal-campaign-title {
  font-size: 13px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 10px;
}
.eco-modal-campaign-msg {
  font-size: 12px;
  color: #444;
  line-height: 1.6;
  padding: 10px 12px;
  background: #F0FFF0;
  border: 1px solid #D4EED4;
  border-radius: 8px;
  margin-bottom: 8px;
  font-style: italic;
}
.eco-modal-campaign-note {
  font-size: 10px;
  color: #999;
  line-height: 1.4;
}

/* Segment Grid */
.eco-modal-segment-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.eco-modal-segment-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: #FFFFFF;
  border: 1px solid #EDE9E2;
  border-radius: 10px;
}
.eco-modal-segment-label {
  font-size: 12px;
  font-weight: 700;
  color: #1A1A1A;
  min-width: 180px;
  flex-shrink: 0;
}
.eco-modal-segment-action {
  font-size: 12px;
  color: #C9A15B;
  font-weight: 500;
}

/* Growth Cards */
.eco-modal-growth-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.eco-modal-growth-card {
  background: #FFFFFF;
  border: 1.5px solid #EDE9E2;
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
}
.eco-modal-growth-card-gold {
  border-color: #C9A15B;
  background: #FFFDF8;
}
.eco-modal-growth-period {
  font-size: 10px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 6px;
}
.eco-modal-growth-number {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #C9A15B;
  margin-bottom: 6px;
}
.eco-modal-growth-action {
  font-size: 11px;
  color: #666;
  line-height: 1.4;
}

/* ROI Box */
.eco-modal-roi-box {
  background: #1A1A1A;
  border-radius: 14px;
  padding: 24px;
}
.eco-modal-roi-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
  text-align: center;
}
.eco-modal-roi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}
.eco-modal-roi-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.eco-modal-roi-label {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.eco-modal-roi-value {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
}
.eco-modal-roi-value-gold {
  color: #C9A15B;
  font-size: 16px;
}
.eco-modal-roi-compare {
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Tools Grid */
.eco-modal-tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.eco-modal-tool-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  background: #FFFFFF;
  border: 1px solid #EDE9E2;
  border-radius: 10px;
}
.eco-modal-tool-name {
  font-size: 12px;
  font-weight: 700;
  color: #1A1A1A;
}
.eco-modal-tool-purpose {
  font-size: 11px;
  color: #888;
}

/* Responsive for Customer Database Modal */
@media (max-width: 768px) {
  .eco-modal-collect-grid,
  .eco-modal-campaign-grid,
  .eco-modal-tools-grid {
    grid-template-columns: 1fr;
  }
  .eco-modal-growth-grid {
    grid-template-columns: 1fr 1fr;
  }
  .eco-modal-roi-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .eco-modal-profile-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .eco-modal-segment-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .eco-modal-segment-label {
    min-width: unset;
  }
}

/* ===== BRAND ARCHITECTURE — CREATIVE ANIMATIONS ===== */

/* Section entrance — subtle fade from white */
#brand-arch {
  position: relative;
  overflow: hidden;
}

#brand-arch::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,161,91,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: brandGlowPulse 4s ease-in-out infinite;
}

@keyframes brandGlowPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.6; }
  50% { transform: translateX(-50%) scale(1.15); opacity: 1; }
}

/* Brand hub entrance — slide up with spring */
#brand-arch .brand-hub-primary {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

#brand-arch .brand-hub-secondary {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

#brand-arch.section-visible .brand-hub-primary,
#brand-arch.section-visible .brand-hub-secondary {
  opacity: 1;
  transform: translateY(0);
}

/* Brand name — character shimmer */
#brand-arch .brand-hub-name {
  background: linear-gradient(90deg, #C9A15B 0%, #E8C97A 25%, #C9A15B 50%, #E8C97A 75%, #C9A15B 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: brandShimmer 3s linear infinite;
  animation-play-state: paused;
}

#brand-arch.section-visible .brand-hub-name {
  animation-play-state: running;
}

@keyframes brandShimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* Connector — draw in from center */
#brand-arch .brand-connector {
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.6s ease 0.5s, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s;
}

#brand-arch.section-visible .brand-connector {
  opacity: 1;
  transform: scaleX(1);
}

/* Connector badge — pop in */
#brand-arch .brand-connector-badge {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.4s ease 0.8s, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s;
}

#brand-arch.section-visible .brand-connector-badge {
  opacity: 1;
  transform: scale(1);
}

/* Spokes — cascade in with rotation */
#brand-arch .brand-spoke {
  opacity: 0;
  transform: translateY(20px) rotate(-3deg);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#brand-arch.section-visible .brand-spoke {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

#brand-arch.section-visible .brand-hub-primary .brand-spoke:nth-child(1) { transition-delay: 0.4s; }
#brand-arch.section-visible .brand-hub-primary .brand-spoke:nth-child(2) { transition-delay: 0.5s; }
#brand-arch.section-visible .brand-hub-primary .brand-spoke:nth-child(3) { transition-delay: 0.6s; }
#brand-arch.section-visible .brand-hub-primary .brand-spoke:nth-child(4) { transition-delay: 0.7s; }
#brand-arch.section-visible .brand-hub-primary .brand-spoke:nth-child(5) { transition-delay: 0.8s; }
#brand-arch.section-visible .brand-hub-primary .brand-spoke:nth-child(6) { transition-delay: 0.9s; }

#brand-arch.section-visible .brand-hub-secondary .brand-spoke:nth-child(1) { transition-delay: 0.7s; }
#brand-arch.section-visible .brand-hub-secondary .brand-spoke:nth-child(2) { transition-delay: 0.8s; }
#brand-arch.section-visible .brand-hub-secondary .brand-spoke:nth-child(3) { transition-delay: 0.9s; }
#brand-arch.section-visible .brand-hub-secondary .brand-spoke:nth-child(4) { transition-delay: 1.0s; }

/* Video — float in from right with gentle bounce */
#brand-arch .brand-arch-video {
  opacity: 0;
  transform: translateX(60px) scale(0.9);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

#brand-arch.section-visible .brand-arch-video {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* Video — gentle floating animation after entrance */
@keyframes videoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

#brand-arch.section-visible .brand-arch-video video {
  animation: videoFloat 4s ease-in-out infinite;
  animation-delay: 1.2s;
}

/* Spoke hover — enhanced with glow */
#brand-arch .brand-spoke:hover {
  border-color: #C9A15B;
  transform: translateY(-4px) scale(1.06) !important;
  box-shadow: 0 10px 30px rgba(201,161,91,0.18), 0 0 0 3px rgba(201,161,91,0.06);
}

/* Section title — slide in with underline draw */
#brand-arch .sec-title {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

#brand-arch.section-visible .sec-title {
  opacity: 1;
  transform: translateY(0);
}

#brand-arch .sec-divider {
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
}

#brand-arch.section-visible .sec-divider {
  transform: scaleX(1);
}

/* ===== BRAND ARCHITECTURE — RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1023px) {
  .brand-arch-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .brand-arch-video {
    order: -1;
  }

  .brand-arch-video video {
    width: 50% !important;
    margin: 0 auto;
  }

  #brand-arch .brand-hub-name {
    font-size: 36px !important;
  }

  .brand-spokes {
    gap: 10px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .brand-arch-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .brand-arch-video video {
    width: 60% !important;
  }

  #brand-arch {
    padding: 60px 20px !important;
  }

  #brand-arch .brand-hub-name {
    font-size: 30px !important;
  }

  .brand-spokes {
    gap: 8px;
    padding: 0 8px;
  }

  .brand-spoke {
    padding: 10px 14px;
  }

  .brand-spoke-label {
    font-size: 12px;
  }

  .brand-connector-line {
    width: 40px;
  }

  .brand-connector-badge {
    font-size: 10px;
    padding: 6px 14px;
  }

  /* Video float animation — reduce movement on mobile */
  #brand-arch.section-visible .brand-arch-video video {
    animation: videoFloatMobile 4s ease-in-out infinite;
    animation-delay: 1.2s;
  }
}

@keyframes videoFloatMobile {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Small phones */
@media (max-width: 480px) {
  .brand-arch-video video {
    width: 70% !important;
  }

  #brand-arch .brand-hub-name {
    font-size: 26px !important;
  }

  .brand-spoke {
    padding: 8px 12px;
  }

  .brand-spoke-icon {
    font-size: 16px;
  }

  .brand-spoke-label {
    font-size: 11px;
  }

  .brand-hub-badge {
    font-size: 9px;
    padding: 4px 10px;
  }

  .brand-hub-tagline {
    font-size: 12px;
  }
}
