/* ══════════════════════════════════════════
   BASE STYLES & VARIABLES
   ══════════════════════════════════════════ */
:root {
  --gold: #c9a358;
  --gold-light: #e8c97a;
  --gold-dark: #8a6820;
  --gold-semi-dark: rgba(180, 125, 14, 0.954);
  --green: #1e3d2a;
  --green-mid: #2d5a3d;
  --cream: #f2ede4;
  --cream-dark: #e5ddd0;
  --white: #ffffff; 
  --text-dark: #1a2a1f;

  /* ── Orbit size tokens ── */
  --orbit-size: 340px;
  --orbit-bubble: 130px;
  --orbit-item-size: 100px;
  --orbit-item-offset: -30px;   
  --orbit-item-h: 74px;         
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  cursor: none;
}

/* ─── Custom Cursor ─── */
.cursor {
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; 
  z-index: 99999; 
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  mix-blend-mode: multiply;
}
.cursor-ring {
  width: 40px; height: 40px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; 
  z-index: 99998; 
  transform: translate(-50%, -50%);
  transition: all 0.18s ease;
  opacity: 0.6;
}

/* Noise overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1;
  opacity: 0.4;
}

/* ══════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  background: var(--green);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.18;
  animation: drift 12s ease-in-out infinite;
  pointer-events: none;
}
.orb-1 { width: 500px; height: 500px; background: var(--gold); top: -150px; right: -80px; animation-delay: 0s; }
.orb-2 { width: 350px; height: 350px; background: var(--gold-light); bottom: -80px; left: -80px; animation-delay: -5s; }
.orb-3 { width: 260px; height: 260px; background: #3a6b4a; top: 40%; left: 30%; animation-delay: -9s; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(30px, -40px) scale(1.05); }
  66%  { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-lines { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-lines::before {
  content: '';
  position: absolute; top: -50%; left: -10%;
  width: 130%; height: 200%;
  background: repeating-linear-gradient(
    -55deg, transparent, transparent 60px,
    rgba(201,163,88,0.04) 60px, rgba(201,163,88,0.04) 61px
  );
}

/* ─── Nav ─── */
nav {
  position: relative; z-index: 10;
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 60px;
}
.nav-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; cursor: none;
}
.nav-logo-badge {
  width: 52px; height: 52px;
  border: 1.5px solid rgba(201,163,88,0.5);
  border-radius: 10px; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.nav-logo-badge:hover { border-color: var(--gold); transform: scale(1.05); }
.nav-logo-badge img { width: 100%; height: 100%; object-fit: contain; }
.nav-logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem; font-weight: 600;
  letter-spacing: 3px; color: var(--white);
}
.nav-logo-text span { color: var(--gold); }

/* ─── Hero Content ─── */
.hero-content {
  flex: 1; display: flex;
  align-items: center; justify-content: center;
  position: relative; z-index: 5;
  padding: 40px 60px;
  gap: 40px;
}
.hero-left { flex: 1; max-width: 580px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px; background: var(--gold);
  border-radius: 50%; animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.4); }
}
.hero-eyebrow-text {
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 4px; text-transform: uppercase; color: var(--gold);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300; line-height: 1.05;
  color: var(--white); margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle {
  font-size: 1rem; font-weight: 300;
  line-height: 1.7; color: rgba(255,255,255,0.55);
  max-width: 420px; margin-bottom: 48px;
}

/* ─── Hero CTA ─── */
.hero-cta {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 34px;
  background: linear-gradient(
    110deg,
    #845601 0%,
    var(--gold-dark) 25%,
    var(--gold) 50%,
    var(--gold-light) 68%,
    var(--gold) 82%,
    var(--gold-dark) 100%
  );
  background-size: 220% 100%;
  background-position: left center;
  border-radius: 100px;
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--green);
  text-decoration: none; cursor: none;
  transition: background-position 0.5s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 28px rgba(201,163,88,0.35), inset 0 1px 0 rgba(255,255,255,0.25);
  position: relative; overflow: hidden;
}
.hero-cta::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 55%);
  border-radius: inherit;
  pointer-events: none;
}
.hero-cta:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(201,163,88,0.5), inset 0 1px 0 rgba(255,255,255,0.3);
}
.hero-cta-arrow {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ─── Hero Orbit ─── */
.hero-right {
  position: relative;
  width: var(--orbit-size);
  height: var(--orbit-size);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bubble {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: var(--orbit-bubble);
  height: var(--orbit-bubble);
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(201,163,88,0.4);
  box-shadow:
    0 0 50px rgba(201,163,88,0.15),
    inset 0 0 20px rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  animation: floatBubble 6s ease-in-out infinite;
  z-index: 2;
  transition: box-shadow 0.4s ease;
}
.hero-right:hover .hero-bubble {
  box-shadow: 0 0 70px rgba(201,163,88,0.3), inset 0 0 30px rgba(255,255,255,0.2);
}
.bubble-text {
  position: absolute;
  font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 1.1rem;
  letter-spacing: 3px; text-align: center;
  color: var(--gold-light);
  text-shadow: 0 4px 12px rgba(0,0,0,0.35);
  opacity: 0;
}
.fade-text-1 { animation: smoothCrossfade 8s infinite; }
.fade-text-2 { animation: smoothCrossfade 8s infinite 4s; }
@keyframes smoothCrossfade {
  0%, 15%     { opacity: 0; transform: translateY(8px); }
  25%, 40%    { opacity: 1; transform: translateY(0); }
  50%, 100%   { opacity: 0; transform: translateY(-8px); }
}
@keyframes floatBubble {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50%       { transform: translate(-50%, -50%) translateY(-12px); }
}

.orbit-track {
  position: absolute;
  top: 0; left: 0;
  width: var(--orbit-size);
  height: var(--orbit-size);
  border-radius: 50%;
  border: 1px dashed rgba(201,163,88,0.3);
  animation: spinOrbit 20s linear infinite;
  z-index: 1;
}
.hero-right:hover .orbit-track { animation-play-state: paused; }

.orbit-item {
  position: absolute;
  width: var(--orbit-item-size);
  height: var(--orbit-item-size);
  background: var(--white);
  border-radius: 50%;
  padding: 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.4);
  animation: counterSpin 20s linear infinite;
  transition: transform 0.3s ease;
  left: calc(50% - var(--orbit-item-size) / 2);
  top: calc(-1 * var(--orbit-item-size) / 2);
}
.orbit-item.item-2 {
  top: auto;
  bottom: calc(-1 * var(--orbit-item-size) / 2);
}
.hero-right:hover .orbit-item {
  animation-play-state: paused;
  transform: scale(1.12);
}
.orbit-item img { width: 100%; height: 100%; object-fit: contain; }

@keyframes spinOrbit    { from { transform: rotate(0deg); }   to { transform: rotate(360deg); } }
@keyframes counterSpin  { from { transform: rotate(0deg); }   to { transform: rotate(-360deg); } }

/* Scroll Indicator */
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 10;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}
.hero-scroll-label {
  font-size: 0.65rem; letter-spacing: 3px;
  color: rgba(255,255,255,0.3); text-transform: uppercase;
}

/* ══════════════════════════════════════════
   GLOBAL MODAL SYSTEM
   ══════════════════════════════════════════ */
.custom-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(30,61,42,0.85);
  backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.4s ease;
  cursor: none;
}
.custom-modal-overlay.active { opacity: 1; visibility: visible; }
.custom-modal-content {
  width: 90%; max-width: 1100px; height: 85vh;
  background: var(--cream);
  border-radius: 24px; position: relative; overflow: hidden;
  transform: translateY(40px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  border: 1px solid rgba(201,163,88,0.4);
  cursor: auto;
}
.custom-modal-overlay.active .custom-modal-content {
  transform: translateY(0) scale(1);
}
.close-modal {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: var(--green); color: var(--gold);
  border: 1px solid var(--gold); border-radius: 50%;
  font-size: 1.2rem; cursor: none;
  display: flex; align-items: center; justify-content: center;
  z-index: 10; transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.close-modal:hover { background: var(--gold); color: var(--green); transform: scale(1.1); }
#modalIframe { width: 100%; height: 100%; display: block; border: none; }

/* ══════════════════════════════════════════
   IMAGE LIGHTBOX STYLES
   ══════════════════════════════════════════ */
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(40px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.custom-modal-overlay.active .lightbox-content {
  transform: translateY(0) scale(1);
}
#lightboxImg {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  border: 1px solid rgba(201,163,88,0.4);
  object-fit: contain;
}
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: var(--green); color: var(--gold);
  border: 1px solid var(--gold); border-radius: 50%;
  font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 100; transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.lightbox-close:hover { background: var(--gold); color: var(--green); transform: scale(1.1); }

@media (max-width: 480px) {
  .lightbox-close { top: 10px; right: 10px; width: 36px; height: 36px; font-size: 1rem; }
}

/* ══════════════════════════════════════════
   MAIN SECTIONS & GRIDS
   ══════════════════════════════════════════ */
.main-section {
  background: var(--cream);
  position: relative;
  padding: 100px 60px;
  z-index: 2;
}
.main-section::before {
  content: '';
  position: absolute; top: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 0%);
}

.section-header { text-align: center; margin-bottom: 72px; }
.section-eyebrow {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 5px; text-transform: uppercase; color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 16px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: ''; display: block; width: 40px; height: 1px;
  background: var(--gold-dark); opacity: 0.4;
}
.section-title-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; color: var(--green); margin-bottom: 12px;
}
.section-subtitle { font-size: 0.95rem; color: #6a7a6f; font-weight: 300; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px; margin: 0 auto;
}

.platform-card {
  border-radius: 24px; overflow: hidden; background: var(--green);
  position: relative;
  transform: translateY(60px); opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), opacity 0.6s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 24px rgba(30,61,42,0.12);
  cursor: none;
}
.platform-card.visible { transform: translateY(0); opacity: 1; }
.platform-card:nth-child(2) { transition-delay: 0.12s; }
.platform-card:nth-child(3) { transition-delay: 0.24s; }
.platform-card:hover { box-shadow: 0 24px 64px rgba(30,61,42,0.25); transform: translateY(-8px); }
.platform-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,163,88,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.card-top {
  padding: 12px 24px 0;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.platform-name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem; font-weight: 700; text-align: center;
  letter-spacing: 5px; color: white; text-transform: uppercase;
}
.platform-icon {
  width: 26px; height: 26px; object-fit: contain; display: block;
  filter: drop-shadow(0 2px 4px rgba(133,198,151,0.3));
}
.platform-icon-wrap {
  padding: 2px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}

.qr-wrapper {
  margin: 20px;
  background: white; border-radius: 16px; padding: 16px;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.qr-wrapper img { width: 100%; height: 100%; object-fit: contain; display: block; }
.qr-wrapper::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.platform-card:hover .qr-wrapper::after { left: 150%; }

.card-footer {
  padding: 0 20px 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.store-badge-row { display: flex; justify-content: center; }
.store-badge { height: 40px; opacity: 0.6; transition: opacity 0.2s; }
.platform-card:hover .store-badge { opacity: 0.9; }

/* ─── Buttons ─── */
.download-btn {
  display: block; width: 100%;
  padding: 14px 0;
  background: linear-gradient(
    110deg,
    #845601 0%,
    var(--gold-dark) 20%,
    var(--gold) 48%,
    var(--gold-light) 65%,
    var(--gold) 80%,
    var(--gold-dark) 100%
  );
  background-size: 220% 100%;
  background-position: left center;
  border: none; border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--green);
  text-decoration: none; text-align: center;
  cursor: none;
  position: relative; overflow: hidden;
  transition: background-position 0.5s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(201,163,88,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}
.download-btn::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.14) 0%, transparent 55%);
  border-radius: inherit; pointer-events: none;
}
.download-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  z-index: 1;
}
.download-btn:hover::before { transform: translateX(100%); }
.download-btn:hover {
  background-position: right center;
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(201,163,88,0.45), inset 0 1px 0 rgba(255,255,255,0.25);
}
.download-btn[style*="background: transparent"] {
  background: transparent !important;
  background-image: none !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold-light) !important;
  box-shadow: 0 0 16px rgba(201,163,88,0.1) !important;
}
.download-btn[style*="background: transparent"]:hover {
  background: rgba(201,163,88,0.08) !important;
  box-shadow: 0 0 28px rgba(201,163,88,0.2) !important;
}


/* ══════════════════════════════════════════
   SLIDER STYLES (Desktop / Tablet)
   ══════════════════════════════════════════ */
.features-section {
  background: var(--cream);
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
}
.features-section::before {
  content: '';
  position: absolute; top: -1px; left: 0; right: 0; height: 80px;
  background: var(--cream); clip-path: ellipse(55% 100% at 50% 0%); z-index: 1;
}
.features-header {
  text-align: center; padding: 100px 60px 48px;
  position: relative; z-index: 2;
}
.feat-eyebrow {
  font-size: .72rem; font-weight: 600; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 16px;
}
.feat-eyebrow::before, .feat-eyebrow::after {
  content: ''; display: block; width: 40px; height: 1px;
  background: var(--gold-dark); opacity: .4;
}
.feat-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 400;
  color: var(--green); margin-bottom: 10px;
}
.feat-section-sub {
  font-size: .95rem; color: #6a7a6f; font-weight: 300;
}

.slider-thumbs {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 0 40px 36px;
  position: relative; z-index: 2; flex-wrap: wrap;
}
.thumb {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 100px;
  border: 1px solid rgba(201,163,88,.2); background: transparent; cursor: none;
  font-family: 'Outfit', sans-serif; font-size: .72rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: #6a7a6f;
  transition: all .3s cubic-bezier(.16,1,.3,1); white-space: nowrap;
}
.thumb.active {
  background: var(--green); color: var(--white);
  border-color: var(--green); box-shadow: 0 4px 20px rgba(30,61,42,.2);
  transform: scale(1.04);
}
.thumb:hover:not(.active) { border-color: rgba(201,163,88,.5); color: var(--gold-dark); transform: scale(1.02); }
.thumb-icon { font-size: 1rem; }

.slider-outer { position: relative; z-index: 2; overflow: hidden; padding: 0 40px; max-width: 1100px; margin: 0 auto; }
.slider-track { display: flex; transition: transform .7s cubic-bezier(.77,0,.175,1); will-change: transform; }
.slide {
  min-width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; padding: 20px 60px 40px; user-select: none;
}

.slide-img-col { display: flex; align-items: center; justify-content: flex-end; position: relative; }
.slide-img-wrap { position: relative; max-width: 320px; width: 100%; border-radius: 28px; overflow: visible; margin-left: auto; margin-right: 0; }
.slide-glow {
  position: absolute; inset: -24px; border-radius: 40px;
  background: radial-gradient(ellipse, rgba(201,163,88,.15) 0%, transparent 70%);
  filter: blur(24px); animation: gP 5s ease-in-out infinite;
}
.slide-img {
  width: 100%; border-radius: 24px; display: block;
  box-shadow: 0 32px 80px rgba(30,61,42,.18), 0 8px 24px rgba(0,0,0,.1);
  position: relative; z-index: 1; transform: scale(.96) translateY(10px); opacity: 0;
  transition: transform .6s cubic-bezier(.16,1,.3,1) .1s, opacity .6s ease .1s, box-shadow .4s;
}
.slide.active .slide-img { transform: scale(1) translateY(0); opacity: 1; }
.slide-img-wrap:hover .slide-img {
  box-shadow: 0 40px 100px rgba(30,61,42,.25), 0 12px 32px rgba(0,0,0,.15);
  transform: scale(1.01) translateY(-4px) !important;
}

.slide-text-col { display: flex; flex-direction: column; gap: 20px; }
.slide-tag {
  display: inline-flex; align-items: center; gap: 10px; padding: 7px 16px;
  background: rgba(201,163,88,.1); border: 1px solid rgba(201,163,88,.25);
  border-radius: 100px; width: fit-content; font-size: .7rem; font-weight: 600;
  letter-spacing: 3px; color: var(--gold-dark); text-transform: uppercase;
}
.slide-icon { font-size: 1rem; }
.slide-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400; line-height: 1.15; color: var(--green);
  opacity: 0; transform: translateX(30px); transition: opacity .6s ease .2s, transform .6s cubic-bezier(.16,1,.3,1) .2s;
}
.slide.active .slide-title { opacity: 1; transform: translateX(0); }
.slide-title em { font-style: italic; color: var(--gold-dark); }
.slide-desc {
  font-size: .97rem; line-height: 1.78; color: #5a6a60; font-weight: 300; max-width: 440px;
  opacity: 0; transform: translateX(30px); transition: opacity .6s ease .3s, transform .6s cubic-bezier(.16,1,.3,1) .3s;
}
.slide.active .slide-desc { opacity: 1; transform: translateX(0); }
.slide-pills {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px;
  opacity: 0; transform: translateX(30px); transition: opacity .6s ease .4s, transform .6s cubic-bezier(.16,1,.3,1) .4s;
}
.slide.active .slide-pills { opacity: 1; transform: translateX(0); }
.pill {
  padding: 7px 14px; background: var(--green); color: rgba(255,255,255,.7); border-radius: 100px;
  font-size: .72rem; font-weight: 500; letter-spacing: 1px; transition: background .2s, color .2s, transform .2s; cursor: default;
}
.pill:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-1px); }

.slider-controls {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  padding: 32px 40px 0; position: relative; z-index: 2;
}
.ctrl-btn {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(201,163,88,.3);
  background: transparent; cursor: none; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--gold-dark); transition: all .3s;
}
.ctrl-btn:hover { background: var(--green); color: var(--gold-light); border-color: var(--green); transform: scale(1.08); }
.ctrl-btn:disabled { opacity: .25; pointer-events: none; }
.dots { display: flex; gap: 8px; align-items: center; }
.dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(201,163,88,.25);
  border: none; cursor: none; transition: all .4s cubic-bezier(.16,1,.3,1); padding: 0;
}
.dot.active { width: 28px; border-radius: 4px; background: var(--gold-dark); }
.slider-progress {
  position: relative; z-index: 2; height: 2px; background: rgba(201,163,88,.1);
  margin: 20px 100px 0; border-radius: 1px; overflow: hidden;
}
.slider-progress-bar {
  height: 100%; background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 1px; transition: width .7s cubic-bezier(.77,0,.175,1);
}
.slide-counter { font-size: .72rem; font-weight: 600; letter-spacing: 2px; color: rgba(201,163,88,.5); font-variant-numeric: tabular-nums; }

/* ══════════════════════════════════════════
   ACCORDION STYLES (Mobile)
   ══════════════════════════════════════════ */
.features-slider { display: block; }
.features-accordion { display: none; background: var(--green); padding-bottom: 0; }
.features-accordion .features-header { padding: 60px 70px 10px; }
.features-accordion::before { background: var(--green); }
.features-accordion .feat-section-title { color: var(--white); }
.features-accordion .feat-section-title em { color: var(--gold-light); }
.features-accordion .feat-section-sub { color: rgba(255,255,255,0.4); }
.features-accordion .feat-eyebrow { color: var(--gold); }

.accordion { display: flex; height: 600px; position: relative; z-index: 2; overflow: hidden; }
.panel { flex: 1; background: var(--bg, var(--green-mid)); position: relative; overflow: hidden; transition: flex 0.7s cubic-bezier(0.77, 0, 0.175, 1); cursor: none; border-right: 1px solid rgba(255, 255, 255, 0.05); }
.panel:last-child { border-right: none; }
.panel.active { flex: 5; }

.panel-collapsed { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; transition: opacity 0.3s ease; z-index: 2; }
.panel.active .panel-collapsed { opacity: 0; pointer-events: none; }
.panel-icon { font-size: 1.8rem; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4)); }
.panel-tag-vert { font-size: 0.62rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.5); writing-mode: vertical-rl; text-orientation: mixed; transform: rotate(180deg); white-space: nowrap; }
.panel:not(.active):hover .panel-collapsed { opacity: 0.8; }

.panel-expanded { position: absolute; inset: 0; display: flex; align-items: stretch; opacity: 0; transition: opacity 0.4s ease 0.2s; pointer-events: none; z-index: 3; }
.panel.active .panel-expanded { opacity: 1; pointer-events: auto; }
.panel-img-side { width: 42%; flex-shrink: 0; position: relative; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; padding: 24px 0 0 24px; }
.panel-img-glow { position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%); width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(201,163,88,0.2) 0%, transparent 70%); filter: blur(30px); pointer-events: none; }
.panel-img { width: 100%; max-width: 250px; border-radius: 30px 20px 0 0; object-fit: cover; object-position: top; box-shadow: 0 -16px 60px rgba(0,0,0,0.4); transform: translateY(40px) scale(0.96); transition: transform 0.7s cubic-bezier(0.16,1,0.3,1) 0.25s, opacity 0.5s ease 0.25s; opacity: 0; display: block; position: relative; z-index: 1; }
.panel.active .panel-img { transform: translateY(0) scale(1); opacity: 1; }

.panel-text-side { flex: 1; padding: 24px 20px; display: flex; flex-direction: column; justify-content: center; gap: 10px; position: relative; overflow: hidden; }
.panel-num { position: absolute; bottom: -10px; right: -10px; font-family: 'Cormorant Garamond', serif; font-size: 9rem; font-weight: 600; color: rgba(255,255,255,0.03); line-height: 1; pointer-events: none; user-select: none; }
.panel-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 100px; border: 1px solid rgba(201,163,88,0.3); background: rgba(201,163,88,0.1); font-size: 0.68rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light); width: fit-content; transform: translateY(20px); opacity: 0; transition: transform 0.5s cubic-bezier(0.16,1,0.3,1) 0.3s, opacity 0.4s ease 0.3s; }
.panel.active .panel-badge { transform: translateY(0); opacity: 1; }
.panel-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 300; line-height: 1.2; color: var(--white); transform: translateY(24px); opacity: 0; transition: transform 0.55s cubic-bezier(0.16,1,0.3,1) 0.38s, opacity 0.45s ease 0.38s; }
.panel.active .panel-title { transform: translateY(0); opacity: 1; }
.panel-desc { font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,0.5); font-weight: 300; max-width: 360px; transform: translateY(20px); opacity: 0; transition: transform 0.55s cubic-bezier(0.16,1,0.3,1) 0.46s, opacity 0.45s ease 0.46s; }
.panel.active .panel-desc { transform: translateY(0); opacity: 1; }
.panel-pills { display: flex; flex-wrap: wrap; gap: 6px; transform: translateY(16px); opacity: 0; transition: transform 0.5s cubic-bezier(0.16,1,0.3,1) 0.54s, opacity 0.4s ease 0.54s; }
.panel.active .panel-pills { transform: translateY(0); opacity: 1; }
.panel-pills .pill { padding: 5px 12px; border-radius: 100px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); font-size: 0.68rem; font-weight: 500; letter-spacing: 1px; color: rgba(255,255,255,0.65); transition: background 0.2s, border-color 0.2s, transform 0.2s; cursor: default; }
.panel-pills .pill:hover { background: rgba(201,163,88,0.2); border-color: rgba(201,163,88,0.4); color: var(--gold-light); transform: translateY(-1px); }
.panel.active::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); z-index: 10; }

/* ══════════════════════════════════════════
   FOOTER, ANIMATIONS & BACK TO TOP
   ══════════════════════════════════════════ */
footer { text-align: center; padding: 32px 60px 48px; }
.footer-divider { width: 60px; height: 1px; background: var(--gold); opacity: 0.3; margin: 0 auto 24px; }
footer p { font-size: 0.78rem; color: #8a9a8f; letter-spacing: 1.5px; }
footer a { color: var(--gold-dark); text-decoration: none; }
footer a:hover { color: var(--gold); }

.fade-up { transform: translateY(40px); opacity: 0; transition: transform 0.7s cubic-bezier(0.16,1,0.3,1), opacity 0.7s ease; }
.fade-up.visible { transform: translateY(0); opacity: 1; }

@keyframes heroEntrance {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow  { animation: heroEntrance 0.8s ease 0.20s both; }
.hero-title    { animation: heroEntrance 0.8s ease 0.35s both; }
.hero-subtitle { animation: heroEntrance 0.8s ease 0.50s both; }
.hero-cta      { animation: heroEntrance 0.8s ease 0.65s both; }
.hero-right    { animation: heroEntrance 0.9s ease 0.40s both; }

.back-to-top {
  position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--white); border: none; font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  cursor: none; z-index: 9999; opacity: 0; visibility: hidden;
  transform: translateY(20px); transition: all 0.3s ease; box-shadow: 0 4px 16px rgba(201,163,88,0.4);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-5px); box-shadow: 0 6px 24px rgba(201,163,88,0.6); }
@media (pointer: coarse) { .back-to-top { cursor: pointer; } }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE MEDIA QUERIES (Ordered Descending)
   ═══════════════════════════════════════════════════════ */
@media (pointer: coarse) {
  body, a, button, .platform-card, .download-btn, .close-modal, .nav-logo, .hero-cta { cursor: auto !important; }
  .cursor, .cursor-ring { display: none !important; }
  .hero-cta, .download-btn, .nav-badge {
    background-position: center center;
    box-shadow: 0 6px 28px rgba(232, 201, 122, 0.55), 0 2px 8px rgba(201,163,88,0.4), inset 0 1px 0 rgba(255,255,255,0.35);
    filter: brightness(1.12) saturate(1.1);
  }
  .hero-cta::after, .download-btn::after, .nav-badge::after {
    background: linear-gradient(180deg, rgba(255,255,255,0.28) 0%, transparent 60%);
  }
}

/* ─── Large monitor (1400px+) ─── */
@media (min-width: 1400px) {
  :root { --orbit-size: 400px; --orbit-bubble: 160px; --orbit-item-size: 120px; }
  nav { padding: 32px 80px; }
  .hero-content { padding: 40px 80px; gap: 30px; }
  .main-section { padding: 120px 80px; }
}

/* ─── Laptop / small monitor (≤1200px) ─── */
@media (max-width: 1200px) {
  nav { padding: 24px 40px; }
  .hero-content { padding: 20px 40px; gap: 30px; }
  .main-section { padding: 80px 40px; }
  .cards-grid { gap: 20px; }
}

/* ─── Tablet landscape (≤992px) ─── */
@media (max-width: 992px) {
  :root { --orbit-size: 280px; --orbit-bubble: 110px; --orbit-item-size: 84px; }
  .hero-content { flex-direction: column; text-align: center; padding: 20px 40px 140px; gap: 20px; }
  .hero-left { max-width: 100%; }
  .hero-subtitle { margin: 0 auto 30px; }
  .hero-right { margin: 0 auto -20px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); max-width: 700px; }
}

/* ─── Tablet portrait / large phone (≤768px) ─── */
@media (max-width: 768px) {
  .features-slider { display: none !important; }
  .features-accordion { display: block !important; }
  
  .accordion { flex-direction: column; height: auto; }
  .panel { min-height: 64px; flex: none !important; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .panel.active { min-height: 480px; }
  .panel-collapsed { flex-direction: row; gap: 12px; padding: 0 24px; justify-content: flex-start; }
  .panel-tag-vert { writing-mode: horizontal-tb; transform: none; }
  .panel-expanded { flex-direction: column; }
  .panel-img-side { width: 100%; height: auto; padding: 16px 16px 0; justify-content: center; }
  .panel-img { max-width: 130px; border-radius: 16px 16px 0 0; transform: translateY(20px) scale(0.96); }
  .panel-text-side { padding: 24px; }
  
  nav { padding: 18px 20px; }
  .nav-logo-text { font-size: 1.15rem; letter-spacing: 2px; }
  
  .hero-content { padding: 10px 20px 130px; gap: 16px; }
  .hero-title { font-size: clamp(2.6rem, 8vw, 3.4rem); }
  .hero-subtitle { font-size: 0.93rem; }
  .hero-right { margin: 0 auto -16px; }
  .hero-scroll { bottom: 20px; }

  .main-section { padding: 60px 20px; }
  .cards-grid, #manual .cards-grid { grid-template-columns: 1fr !important; max-width: 380px; }
  footer { padding: 28px 20px 40px; }
}

/* ─── Phone (≤480px) ─── */
@media (max-width: 480px) {
  :root { --orbit-size: 210px; --orbit-bubble: 84px; --orbit-item-size: 60px; }
  nav { padding: 16px; }
  .nav-logo-text { font-size: 1.05rem; }
  .hero-content { padding: 8px 16px 120px; gap: 12px; }
  .hero-title { font-size: 2.2rem; line-height: 1.08; }
  .hero-subtitle { font-size: 0.9rem; margin-bottom: 32px; }
  .hero-cta { padding: 13px 24px; font-size: 0.78rem; }
  .hero-right { margin: 0 auto -10px; }
  .bubble-text { font-size: 0.7rem; }
  .hero-scroll { bottom: 14px; }
  .main-section { padding: 52px 16px; }
  .cards-grid, #manual .cards-grid { grid-template-columns: 1fr !important; max-width: 100%; }
  .custom-modal-content { width: 95%; height: 85vh; }
  .close-modal { top: 10px; right: 10px; width: 36px; height: 36px; font-size: 1rem; }
  footer { padding: 24px 16px 36px; }
}

/* ─── Mini phone (≤380px) ─── */
@media (max-width: 380px) {
  :root { --orbit-size: 150px; --orbit-bubble: 75px; --orbit-item-size: 58px; }
  .hero-title { font-size: 1.5rem; }
  nav { padding: 14px; }
  .panel.active { min-height: 500px; }
  .features-accordion .features-header { padding: 60px 50px 10px; }
}