/* ==========================================================================
   MAYBee OFFICIAL DESIGN SYSTEM
   Brand Philosophy: "PEOPLE + PLANS + EXPERIENCES = POSSIBILITIES"
   Tagline: "SEE WHAT HAPPENS"
   Foundation: Nectar (#FAF9F4) + Hive (#0B0B0B) + Honey (#FFCF29)
   ========================================================================== */

:root {
  /* Brand Primary Colors */
  --color-honey: #FFCF29;
  --color-hive: #0B0B0B;
  --color-nectar: #FAF9F4;
  --color-stone: #E5E5E5;
  --color-graphite: #6B6B6B;

  /* Support / Semantic Colors */
  --color-light-honey: #FFE680;
  --color-amber: #FFC107;
  --color-orange: #FF9F1C;
  --color-success: #22C55E;
  --color-error: #EF4444;
  --color-action: #3B82F6;

  /* Derived Surface & Tint Variables */
  --surface-card: #FFFFFF;
  --surface-subtle: #F3F1E8;
  --surface-dark: #0B0B0B;
  --surface-dark-card: #141414;
  --surface-dark-border: rgba(255, 255, 255, 0.12);

  --border-light: #EBE8DE;
  --border-focus: #FFCF29;

  /* Typography */
  --font-heading: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Elevation Shadows */
  --shadow-sm: 0 2px 8px rgba(11, 11, 11, 0.04);
  --shadow-md: 0 10px 30px rgba(11, 11, 11, 0.08);
  --shadow-lg: 0 20px 50px rgba(11, 11, 11, 0.12);
  --shadow-honey: 0 8px 24px rgba(255, 207, 41, 0.35);

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-base: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-body);
  background-color: var(--color-nectar);
  color: var(--color-hive);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body {
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  background-color: var(--color-nectar);
  color: var(--color-hive);
}

img, svg {
  display: block;
  max-width: 100%;
}

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

button, input, select {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   AMBIENT GEOMETRIC ACCENTS & FLIGHT PATHS
   ========================================================================== */
.ambient-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

.glow-1 {
  top: -150px;
  right: -100px;
  background: radial-gradient(circle, var(--color-light-honey) 0%, transparent 70%);
}

.glow-2 {
  top: 1400px;
  left: -200px;
  background: radial-gradient(circle, rgba(255, 207, 41, 0.25) 0%, transparent 70%);
}

.ambient-flight-path {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: 800px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-flight-path svg {
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-hive);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-header {
  margin-bottom: 56px;
}

.section-header.text-center {
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.section-kicker {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: #8C6F00;
  background-color: rgba(255, 207, 41, 0.22);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  border: 1px solid rgba(255, 207, 41, 0.45);
}

.section-title {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: var(--color-hive);
  margin-bottom: 18px;
}

.section-description {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--color-graphite);
  line-height: 1.6;
}

/* ==========================================================================
   BUTTONS & UI ELEMENTS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  text-align: center;
  white-space: nowrap;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 17px;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 14px;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background-color: var(--color-honey);
  color: var(--color-hive);
  box-shadow: var(--shadow-honey);
  border: 1px solid rgba(11, 11, 11, 0.08);
}

.btn-primary:hover {
  background-color: #F8C314;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 207, 41, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-hive);
  border: 1.5px solid var(--color-hive);
}

.btn-outline:hover {
  background-color: var(--color-hive);
  color: var(--color-nectar);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-outline-white:hover {
  background-color: #FFFFFF;
  color: var(--color-hive);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-honey {
  background-color: var(--color-honey);
  color: var(--color-hive);
  font-weight: 700;
}

.btn-honey:hover {
  background-color: #F5C010;
  transform: translateY(-2px);
  box-shadow: var(--shadow-honey);
}

.btn-icon {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   SECTION 0: HEADER & NAVBAR
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(250, 249, 244, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(11, 11, 11, 0.06);
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background-color: rgba(250, 249, 244, 0.98);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-graphite);
  padding: 6px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--color-honey);
  transition: width var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-hive);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-secondary-nav {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-hive);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  transition: background-color var(--transition-fast);
}

.btn-secondary-nav:hover {
  background-color: rgba(11, 11, 11, 0.05);
}

.btn-nav {
  padding: 10px 20px;
  font-size: 15px;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--color-hive);
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   SECTION 1: HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 64px 0 100px;
  overflow: hidden;
  z-index: 1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-honey);
  box-shadow: 0 0 10px var(--color-honey);
}

.badge-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-hive);
  letter-spacing: 0.2px;
}

.hero-title {
  font-size: clamp(46px, 5.2vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--color-hive);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-title-highlight {
  position: relative;
  display: inline-block;
}

.hero-title-highlight::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 14px;
  background-color: var(--color-light-honey);
  z-index: -1;
  opacity: 0.7;
  border-radius: 4px;
}

.hero-subtitle {
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
  color: var(--color-graphite);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.metric-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border-light);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  color: var(--color-graphite);
}

.metric-indicator {
  width: 8px;
  height: 8px;
  background-color: var(--color-success);
  border-radius: 50%;
  animation: pulseGreen 2s infinite;
}

.metric-icon {
  width: 16px;
  height: 16px;
  color: var(--color-success);
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* HERO VISUAL COMPOSITION */
.hero-visual {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-canvas {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 520px;
}

.visual-connection-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-float-card {
  position: absolute;
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  z-index: 2;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hero-float-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(11, 11, 11, 0.15);
}

/* Float Card 1: Plan Invite */
.plan-invite-card {
  top: 10px;
  left: 0;
  width: 320px;
  padding: 20px;
  z-index: 3;
}

.card-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.tag-category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-color: rgba(255, 207, 41, 0.2);
  color: #8A6D00;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.tag-status {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-graphite);
}

.plan-card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}

.plan-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-graphite);
  margin-bottom: 16px;
}

.meta-icon {
  width: 14px;
  height: 14px;
  color: var(--color-honey);
}

.card-footer-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--surface-subtle);
}

.attendees-stack {
  display: flex;
  align-items: center;
}

.avatar-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: var(--color-stone);
  color: var(--color-hive);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -6px;
  border: 2px solid #FFFFFF;
}

.av-1 { background-color: #FFE680; }
.av-2 { background-color: #E5E5E5; }
.av-3 { background-color: #0B0B0B; color: #FFFFFF; font-size: 10px; }

.attendees-count {
  margin-left: 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-graphite);
}

.btn-card-action {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  background-color: var(--color-hive);
  color: #FFFFFF;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.btn-card-action:hover {
  background-color: var(--color-honey);
  color: var(--color-hive);
}

.action-icon {
  width: 14px;
  height: 14px;
}

/* Float Card 2: Person Profile */
.person-profile-card {
  top: 160px;
  right: 10px;
  width: 250px;
  overflow: hidden;
  z-index: 4;
}

.person-photo-wrap {
  position: relative;
  width: 100%;
  height: 170px;
  overflow: hidden;
}

.person-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.verified-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--color-success);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-icon {
  width: 14px;
  height: 14px;
  stroke-width: 3;
}

.queen-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--color-hive);
  color: var(--color-honey);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.crown-icon {
  width: 15px;
  height: 15px;
}

.person-info {
  padding: 16px;
}

.person-name-age {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.person-name-age h4 {
  font-size: 16px;
  font-weight: 700;
}

.city-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-graphite);
}

.person-bio {
  font-size: 12.5px;
  color: var(--color-graphite);
  margin-bottom: 12px;
  line-height: 1.4;
}

.person-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag-pill {
  font-size: 10.5px;
  font-weight: 600;
  background-color: var(--surface-subtle);
  color: var(--color-hive);
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

/* Float Card 3: Match Signal */
.match-signal-card {
  bottom: 20px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: var(--radius-full);
  z-index: 5;
  background-color: var(--color-hive);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.match-icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-honey);
  color: var(--color-hive);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.signal-icon {
  width: 18px;
  height: 18px;
}

.signal-content {
  display: flex;
  flex-direction: column;
}

.signal-pre {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-light-honey);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.signal-main {
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
}

.bee-ambient-mark {
  position: absolute;
  bottom: 30px;
  right: 0;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

/* ==========================================================================
   SECTION 2: CORE VALUE PROPOSITION (3 PILLARS)
   ========================================================================== */
.value-prop-section {
  padding: 100px 0;
  background-color: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pillar-card {
  background-color: var(--color-nectar);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 207, 41, 0.6);
}

.pillar-card.highlight-card {
  background-color: #FFFFFF;
  border-color: var(--color-honey);
  box-shadow: var(--shadow-md);
}

.pillar-index {
  position: absolute;
  top: 32px;
  right: 36px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #C0BCAE;
}

.pillar-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--color-hive);
  box-shadow: var(--shadow-sm);
}

.highlight-card .pillar-icon-box {
  background-color: var(--color-honey);
  border-color: var(--color-honey);
}

.pillar-icon {
  width: 26px;
  height: 26px;
}

.pillar-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.pillar-copy {
  font-size: 16px;
  color: var(--color-graphite);
  line-height: 1.6;
  margin-bottom: 28px;
  flex-grow: 1;
}

.pillar-footer {
  padding-top: 20px;
  border-top: 1px solid rgba(11, 11, 11, 0.06);
}

.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-hive);
}

.pillar-link i {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.pillar-card:hover .pillar-link i {
  transform: translateX(4px);
}

/* ==========================================================================
   SECTION 3: TWO WAYS TO CONNECT
   ========================================================================== */
.two-paths-section {
  padding: 110px 0;
  background-color: var(--color-nectar);
}

.paths-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.path-block {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.path-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.path-block.highlight-path {
  border-color: var(--color-honey);
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFCF2 100%);
  position: relative;
}

.path-header {
  margin-bottom: 18px;
}

.path-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background-color: var(--surface-subtle);
  color: var(--color-hive);
  margin-bottom: 14px;
}

.badge-honey {
  background-color: var(--color-honey);
  color: var(--color-hive);
}

.path-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 4px;
}

.path-subtitle {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-graphite);
}

.path-description {
  font-size: 16px;
  color: var(--color-graphite);
  line-height: 1.6;
  margin-bottom: 32px;
}

/* Stepper horizontal flow */
.flow-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-nectar);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 32px;
  border: 1px solid var(--border-light);
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-item.step-highlight .step-num {
  background-color: var(--color-hive);
  color: #FFFFFF;
  border-color: var(--color-hive);
}

.step-item.step-honey .step-num {
  background-color: var(--color-honey);
  color: var(--color-hive);
  border-color: var(--color-honey);
}

.step-name {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--color-hive);
}

.step-arrow {
  width: 14px;
  height: 14px;
  color: #C0BCAE;
}

.path-card-preview {
  margin-top: auto;
  padding: 18px 20px;
  background-color: var(--color-nectar);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.preview-mini-profile {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mini-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.av-female {
  background-image: url('https://images.unsplash.com/photo-1524504388940-b1c1722653e1?auto=format&fit=crop&w=200&q=80');
}

.mini-meta {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.mini-name {
  font-size: 14px;
  font-weight: 700;
}

.mini-sub {
  font-size: 12px;
  color: var(--color-graphite);
}

.mini-match-pill {
  font-size: 12px;
  font-weight: 700;
  color: #9C27B0;
  background-color: rgba(156, 39, 176, 0.1);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.heart-icon {
  width: 14px;
  height: 14px;
}

.preview-mini-plan {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mini-plan-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  background-color: var(--color-honey);
  color: var(--color-hive);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  margin-bottom: 2px;
}

/* ==========================================================================
   SECTION 4: THE PLAN CONCEPT
   ========================================================================== */
.plans-section {
  padding: 110px 0;
  background-color: #FFFFFF;
}

.plan-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 14.5px;
  font-weight: 600;
  background-color: var(--color-nectar);
  color: var(--color-graphite);
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}

.filter-pill:hover {
  color: var(--color-hive);
  border-color: var(--color-hive);
}

.filter-pill.active {
  background-color: var(--color-hive);
  color: #FFFFFF;
  border-color: var(--color-hive);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.plan-card {
  background-color: var(--color-nectar);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 207, 41, 0.7);
}

.plan-media {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.plan-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.plan-card:hover .plan-media img {
  transform: scale(1.04);
}

.category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: rgba(11, 11, 11, 0.78);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.time-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background-color: var(--color-honey);
  color: var(--color-hive);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.plan-body {
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.plan-host {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.host-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
}

.host-1 { background-image: url('https://images.unsplash.com/photo-1544005313-94ddf0286df2?auto=format&fit=crop&w=150&q=80'); }
.host-2 { background-image: url('https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&w=150&q=80'); }
.host-3 { background-image: url('https://images.unsplash.com/photo-1517841905240-472988babdf9?auto=format&fit=crop&w=150&q=80'); }
.host-4 { background-image: url('https://images.unsplash.com/photo-1534528741775-53994a69daeb?auto=format&fit=crop&w=150&q=80'); }
.host-5 { background-image: url('https://images.unsplash.com/photo-1524504388940-b1c1722653e1?auto=format&fit=crop&w=150&q=80'); }
.host-6 { background-image: url('https://images.unsplash.com/photo-1508214751196-bcfd4ca60f91?auto=format&fit=crop&w=150&q=80'); }

.host-name {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-graphite);
}

.queen-mini-badge {
  color: var(--color-amber);
  display: flex;
}

.queen-mini-badge i {
  width: 14px;
  height: 14px;
}

.plan-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.25;
}

.plan-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-graphite);
  margin-bottom: 12px;
}

.plan-location i {
  width: 14px;
  height: 14px;
  color: var(--color-honey);
}

.plan-description {
  font-size: 14.5px;
  color: var(--color-graphite);
  line-height: 1.5;
  margin-bottom: 24px;
  flex-grow: 1;
}

.plan-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.interested-count {
  font-size: 13px;
  color: var(--color-graphite);
}

.count-num {
  color: var(--color-hive);
  font-weight: 700;
}

.btn-plan-interest {
  background-color: var(--color-hive);
  color: #FFFFFF;
}

.btn-plan-interest:hover {
  background-color: var(--color-honey);
  color: var(--color-hive);
}

.btn-plan-interest.interested {
  background-color: var(--color-success);
  color: #FFFFFF;
}

.plans-bottom-cta {
  text-align: center;
  padding: 36px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.bottom-copy {
  font-size: 16px;
  color: var(--color-graphite);
}

/* ==========================================================================
   SECTION 5: QUEEN CONCEPT
   ========================================================================== */
.queen-section {
  padding: 110px 0;
  background-color: var(--color-nectar);
}

.queen-card {
  background-color: var(--color-hive);
  color: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 68px 60px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.queen-badge-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 207, 41, 0.15);
  color: var(--color-honey);
  border: 1px solid rgba(255, 207, 41, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-bottom: 24px;
}

.crown-icon-sm {
  width: 16px;
  height: 16px;
}

.queen-title {
  color: #FFFFFF;
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 22px;
}

.queen-lead {
  font-size: 17px;
  color: #CCCCCC;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 540px;
}

.queen-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.q-pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.q-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-honey);
  flex-shrink: 0;
}

.q-icon-wrap i {
  width: 18px;
  height: 18px;
}

.q-pillar h4 {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.q-pillar p {
  color: #999999;
  font-size: 14px;
  line-height: 1.45;
}

.queen-quote {
  border-left: 3px solid var(--color-honey);
  padding-left: 20px;
  font-style: italic;
  font-size: 17px;
  color: var(--color-light-honey);
}

/* Queen Visual Mockup Frame */
.queen-mockup-frame {
  background-color: #161616;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.queen-header-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.queen-avatar-preview {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-image: url('https://images.unsplash.com/photo-1544005313-94ddf0286df2?auto=format&fit=crop&w=200&q=80');
  background-size: cover;
  border: 2px solid var(--color-honey);
}

.queen-author-name {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
}

.queen-author-status {
  font-size: 12px;
  color: var(--color-light-honey);
}

.queen-candidates-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.candidate-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.candidate-row.selected-row {
  background-color: rgba(255, 207, 41, 0.1);
  border-color: rgba(255, 207, 41, 0.35);
}

.candidate-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.c-1 { background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?auto=format&fit=crop&w=150&q=80'); }
.c-2 { background-image: url('https://images.unsplash.com/photo-1500648767791-00dcc994a43e?auto=format&fit=crop&w=150&q=80'); }
.c-3 { background-image: url('https://images.unsplash.com/photo-1492562080023-ab3db95bfbce?auto=format&fit=crop&w=150&q=80'); }

.candidate-info {
  flex-grow: 1;
}

.c-name {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #FFFFFF;
}

.c-sub {
  font-size: 11.5px;
  color: #888888;
}

.c-badge-selected {
  font-size: 11px;
  font-weight: 700;
  background-color: var(--color-honey);
  color: var(--color-hive);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.c-badge-selected i {
  width: 12px;
  height: 12px;
}

.c-badge-review {
  font-size: 11px;
  font-weight: 600;
  color: #AAAAAA;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 4px 8px;
  border-radius: var(--radius-full);
}

.queen-match-toast {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ADE80;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  font-weight: 600;
}

.queen-match-toast i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ==========================================================================
   SECTION 6: EXAMPLES OF EXPERIENCES (EDITORIAL VISUAL GRID)
   ========================================================================== */
.experiences-section {
  padding: 110px 0;
  background-color: #FFFFFF;
}

.categories-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cat-card {
  position: relative;
  height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 32px 28px;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.cat-large {
  grid-column: span 2;
}

.cat-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.cat-card:hover .cat-bg {
  transform: scale(1.05);
}

.cat-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(11, 11, 11, 0.1) 0%, rgba(11, 11, 11, 0.85) 100%);
}

.cat-content {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
}

.cat-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-honey);
  margin-bottom: 8px;
}

.cat-title {
  color: #FFFFFF;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 6px;
}

.cat-items {
  font-size: 14px;
  color: #E5E5E5;
  line-height: 1.4;
}

/* ==========================================================================
   SECTION 7: MATCH SECTION
   ========================================================================== */
.match-flow-section {
  padding: 90px 0;
  background-color: var(--color-nectar);
}

.match-flow-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  box-shadow: var(--shadow-md);
}

.bee-accent-icon {
  margin: 0 auto 16px;
}

.match-microcopy {
  margin-top: 16px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #8A6D00;
  background-color: rgba(255, 207, 41, 0.2);
  display: inline-block;
  padding: 6px 18px;
  border-radius: var(--radius-full);
}

.progression-track {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin-top: 50px;
}

.prog-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  background-color: var(--color-nectar);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}

.prog-step:hover {
  border-color: var(--color-honey);
  transform: translateY(-2px);
}

.prog-step.prog-final {
  background-color: var(--color-hive);
  color: #FFFFFF;
  border-color: var(--color-hive);
}

.prog-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #FFFFFF;
  color: var(--color-hive);
  border: 1.5px solid var(--border-light);
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.prog-final .prog-circle {
  background-color: var(--color-honey);
  color: var(--color-hive);
  border-color: var(--color-honey);
}

.prog-label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.prog-final .prog-label {
  color: var(--color-honey);
}

.prog-desc {
  font-size: 12.5px;
  color: var(--color-graphite);
  line-height: 1.35;
}

.prog-final .prog-desc {
  color: #CCCCCC;
}

.prog-connector {
  color: #C0BCAE;
}

.prog-connector i {
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   SECTION 8: COMMUNITY (THE HIVE)
   ========================================================================== */
.hive-section {
  padding: 110px 0;
  background-color: #FFFFFF;
}

.hive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hive-copy {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-graphite);
  margin-bottom: 32px;
}

.hive-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hive-points li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.hive-pt-icon {
  width: 24px;
  height: 24px;
  color: var(--color-honey);
  flex-shrink: 0;
  margin-top: 2px;
}

.hive-points strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-hive);
  margin-bottom: 4px;
}

.hive-points p {
  font-size: 14.5px;
  color: var(--color-graphite);
  line-height: 1.5;
}

/* Abstract City Map Network */
.abstract-map-network {
  position: relative;
  width: 100%;
  height: 420px;
  background-color: var(--color-nectar);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.map-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.map-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.node-pinheiros { top: 25%; left: 15%; }
.node-jardins   { top: 20%; left: 50%; }
.node-madalena  { top: 58%; left: 32%; }
.node-itaim     { top: 75%; left: 55%; }
.node-paulista  { top: 50%; left: 68%; }

.node-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-honey);
  border: 2px solid var(--color-hive);
  position: relative;
  z-index: 2;
}

.pulse-ring {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(255, 207, 41, 0.4);
  animation: mapPulse 2.5s infinite;
  z-index: 1;
}

@keyframes mapPulse {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.node-label {
  font-size: 12px;
  font-weight: 700;
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

/* ==========================================================================
   SECTION 9: BUZZ ("WHAT'S BUZZING?")
   ========================================================================== */
.buzz-section {
  padding: 100px 0;
  background-color: var(--color-nectar);
}

.buzz-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

.buzz-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 24px;
  flex-wrap: wrap;
}

.buzz-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  background-color: rgba(239, 68, 68, 0.1);
  color: var(--color-error);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.buzz-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-error);
  animation: pulseGreen 1.5s infinite;
}

.buzz-title {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 6px;
}

.buzz-subtitle {
  font-size: 16px;
  color: var(--color-graphite);
}

.buzz-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.buzz-tab {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 600;
  background-color: var(--color-nectar);
  color: var(--color-graphite);
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}

.buzz-tab.active {
  background-color: var(--color-hive);
  color: #FFFFFF;
  border-color: var(--color-hive);
}

.buzz-content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.buzz-item {
  background-color: var(--color-nectar);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-fast);
}

.buzz-item:hover {
  transform: translateY(-3px);
  border-color: var(--color-honey);
}

.buzz-item-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-hive);
  margin-bottom: 16px;
}

.buzz-item-icon i {
  width: 20px;
  height: 20px;
}

.buzz-item-tag {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--color-graphite);
  margin-bottom: 4px;
  display: block;
}

.buzz-item-body h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.buzz-item-body p {
  font-size: 13px;
  color: var(--color-graphite);
  line-height: 1.4;
}

.buzz-status-pill {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--radius-full);
  background-color: rgba(11, 11, 11, 0.08);
  color: var(--color-hive);
}

.buzz-status-pill.hot {
  background-color: rgba(255, 159, 28, 0.18);
  color: #D97706;
}

.buzz-status-pill.new {
  background-color: rgba(34, 197, 94, 0.15);
  color: #15803D;
}

/* ==========================================================================
   SECTION 10: POSSIBILITY / MAYBE SECTION (EDITORIAL DARK TRANSITION)
   ========================================================================== */
.possibility-section {
  padding: 140px 0;
  background-color: var(--color-hive);
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.possibility-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.possibility-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-honey);
  margin-bottom: 24px;
}

.possibility-heading {
  color: #FFFFFF;
  font-size: clamp(38px, 4.8vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

.possibility-lines {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 56px;
}

.p-line {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.2vw, 24px);
  color: #AAAAAA;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.p-line.p-highlight {
  color: #FFFFFF;
  font-weight: 700;
}

.possibility-brand-climax {
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.climax-brand {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 900;
  color: var(--color-honey);
  letter-spacing: -0.03em;
}

.climax-tagline {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #E5E5E5;
}

/* ==========================================================================
   SECTION 11: SAFETY / TRUST
   ========================================================================== */
.trust-section {
  padding: 110px 0;
  background-color: #FFFFFF;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.trust-card {
  background-color: var(--color-nectar);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all var(--transition-fast);
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-honey);
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-hive);
  margin-bottom: 20px;
}

.trust-icon i {
  width: 22px;
  height: 22px;
}

.trust-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

.trust-card p {
  font-size: 14.5px;
  color: var(--color-graphite);
  line-height: 1.55;
}

/* ==========================================================================
   SECTION 12: FAQ SECTION
   ========================================================================== */
.faq-section {
  padding: 100px 0;
  background-color: var(--color-nectar);
}

.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--color-honey);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-hive);
}

.faq-arrow {
  width: 20px;
  height: 20px;
  color: var(--color-graphite);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--color-hive);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease;
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  max-height: 260px;
  padding: 0 28px 24px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--color-graphite);
  line-height: 1.6;
}

/* ==========================================================================
   SECTION 13: FINAL CTA
   ========================================================================== */
.final-cta-section {
  padding: 110px 0;
  background-color: #FFFFFF;
}

.final-cta-card {
  background-color: var(--color-hive);
  color: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.final-cta-icon {
  margin: 0 auto 24px;
}

.final-cta-title {
  color: #FFFFFF;
  font-size: clamp(38px, 4.6vw, 54px);
  font-weight: 800;
  margin-bottom: 8px;
}

.final-cta-tagline {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-honey);
  margin-bottom: 20px;
}

.final-cta-sub {
  font-size: 18px;
  color: #CCCCCC;
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

.final-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* ==========================================================================
   SECTION 14: FOOTER
   ========================================================================== */
.footer {
  background-color: #060606;
  color: #CCCCCC;
  padding: 80px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand img {
  height: 44px;
  width: auto;
  margin-bottom: 18px;
}

.footer-philosophy {
  font-size: 14px;
  color: #888888;
  max-width: 320px;
  line-height: 1.55;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background-color: var(--color-honey);
  color: var(--color-hive);
  transform: translateY(-2px);
}

.social-link i {
  width: 18px;
  height: 18px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.footer-col a {
  font-size: 14px;
  color: #888888;
}

.footer-col a:hover {
  color: var(--color-honey);
}

.bucadim-logo-img {
  height: 32px;
  width: auto;
  opacity: 0.85;
  transition: opacity var(--transition-fast);
  margin-bottom: 8px;
}

.bucadim-logo-img:hover {
  opacity: 1;
}

.bucadim-desc {
  font-size: 12px;
  color: #666666;
  line-height: 1.4;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 12.5px;
  color: #666666;
}

/* ==========================================================================
   INTERACTIVE MODAL (WAITLIST / EARLY ACCESS)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(11, 11, 11, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.modal-backdrop.open {
  display: flex;
  opacity: 1;
}

.modal-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 44px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  transition: transform var(--transition-base);
}

.modal-backdrop.open .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--surface-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-hive);
  transition: background-color var(--transition-fast);
}

.modal-close:hover {
  background-color: var(--color-stone);
}

.modal-header {
  text-align: center;
  margin-bottom: 28px;
}

.modal-icon {
  margin: 0 auto 14px;
}

.modal-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 6px;
}

.modal-subtitle {
  font-size: 14.5px;
  color: var(--color-graphite);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-hive);
  margin-bottom: 8px;
}

.form-input, .form-select {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-light);
  background-color: var(--color-nectar);
  font-size: 15px;
  color: var(--color-hive);
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-input:focus, .form-select:focus {
  border-color: var(--color-honey);
  background-color: #FFFFFF;
}

.gender-pills {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gender-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-hive);
  cursor: pointer;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background-color: var(--color-nectar);
  border: 1px solid var(--border-light);
}

.gender-option input[type="radio"] {
  accent-color: var(--color-hive);
}

.form-disclaimer {
  font-size: 11.5px;
  color: #888888;
  text-align: center;
  margin-top: 14px;
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast-notification {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 2000;
  transform: translateY(120%);
  opacity: 0;
  transition: all var(--transition-base);
  pointer-events: none;
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--color-hive);
  color: #FFFFFF;
  border-left: 4px solid var(--color-honey);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 14px;
  font-weight: 600;
}

.toast-icon {
  width: 18px;
  height: 18px;
  color: var(--color-honey);
}

/* ==========================================================================
   RESPONSIVE DESIGN (BREAKPOINTS)
   Desktop: 1440px, 1280px, 1024px
   Tablet: 768px
   Mobile: 390px, 375px, 360px
   ========================================================================== */

@media (max-width: 1100px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .visual-canvas {
    margin: 0 auto;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories-editorial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-large {
    grid-column: span 1;
  }

  .progression-track {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .prog-connector {
    transform: rotate(90deg);
    margin: 0 auto;
  }

  .hive-grid {
    grid-template-columns: 1fr;
  }

  .queen-card {
    grid-template-columns: 1fr;
    padding: 44px 32px;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #FAF9F4;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--border-light);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-base);
  }

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

  .btn-secondary-nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .paths-wrapper {
    grid-template-columns: 1fr;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }

  .buzz-content-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

  .hero-section {
    padding: 36px 0 60px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 520px;
    margin-top: 10px;
  }

  .visual-canvas {
    max-width: 100%;
    height: 520px;
  }

  .plan-invite-card {
    width: 92%;
    left: 4%;
    top: 0;
    padding: 16px;
  }

  .person-profile-card {
    width: 210px;
    top: 170px;
    right: 4%;
    z-index: 4;
  }

  .person-photo-wrap {
    height: 130px;
  }

  .match-signal-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    width: 92%;
    justify-content: center;
    padding: 10px 14px;
  }

  .categories-editorial-grid {
    grid-template-columns: 1fr;
  }

  .cat-card {
    height: 280px;
  }

  .buzz-card {
    padding: 24px 18px;
  }

  .queen-card {
    padding: 32px 20px;
  }

  .final-cta-card {
    padding: 50px 24px;
  }

  .modal-card {
    padding: 30px 20px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
  }
}