/* ============================================
   OHANA LANDING — Satoshi / Brand Kit
   ============================================ */

/* ---- Fonts ---- */
@font-face { font-family: 'Satoshi'; src: url('fonts/Satoshi-Light.otf') format('opentype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Satoshi'; src: url('fonts/Satoshi-Regular.otf') format('opentype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Satoshi'; src: url('fonts/Satoshi-Medium.otf') format('opentype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Satoshi'; src: url('fonts/Satoshi-Bold.otf') format('opentype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Satoshi'; src: url('fonts/Satoshi-Black.otf') format('opentype'); font-weight: 900; font-style: normal; font-display: swap; }
@font-face { font-family: 'Satoshi'; src: url('fonts/Satoshi-Italic.otf') format('opentype'); font-weight: 400; font-style: italic; font-display: swap; }

:root {
  --orange: #ff623e;
  --orange-light: #ff8a6a;
  --orange-dark: #e0522e;
  --orange-glow: rgba(255, 98, 62, 0.25);
  --orange-50: #fff1ed;
  --dark: #424242;
  --dark-deep: #1a1a1a;
  --gray-600: #636363;
  --gray-400: #9e9e9e;
  --gray-200: #e0e0e0;
  --gray-100: #f5f5f5;
  --white: #ffffff;
  --font: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 16px;
  --radius-lg: 28px;
  --radius-full: 100px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

/* ---- Tags & Titles ---- */
.tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.sec-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 48px;
  color: var(--dark-deep);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
  position: relative;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px var(--orange-glow);
  overflow: hidden;
  position: relative;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  animation: btnShimmer 3s ease-in-out infinite;
}
@keyframes btnShimmer {
  0% { left: -100%; }
  50%, 100% { left: 150%; }
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--orange-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--gray-200);
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-white {
  background: var(--white);
  color: var(--orange);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255,255,255,.2);
}

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

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  width: 100%;
  max-width: 100%;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.04);
  border-radius: 0;
  box-shadow: none;
  will-change: max-width, padding, border-radius, background, box-shadow, top;
  transition: max-width .4s cubic-bezier(.4,0,.2,1),
              padding .4s cubic-bezier(.4,0,.2,1),
              border-radius .4s cubic-bezier(.4,0,.2,1),
              background .4s cubic-bezier(.4,0,.2,1),
              box-shadow .4s cubic-bezier(.4,0,.2,1),
              top .4s cubic-bezier(.4,0,.2,1);
}
.navbar.scrolled {
  top: 12px;
  max-width: 900px;
  padding: 10px 28px;
  border-radius: 100px;
  border-bottom: none;
  background: rgba(255,255,255,.95);
  box-shadow: 0 4px 30px rgba(0,0,0,.08), 0 1px 3px rgba(0,0,0,.04);
}

.logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--orange);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-links { display: flex; align-items: center; gap: 24px; white-space: nowrap; }

.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  transition: color .2s;
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width .3s;
}
.nav-links a:not(.nav-cta):hover { color: var(--orange); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: var(--dark-deep) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 700 !important;
  transition: background .3s !important;
}
.nav-cta:hover { background: var(--orange) !important; }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-menu-btn span {
  width: 24px; height: 2px;
  background: var(--dark-deep);
  transition: all .3s;
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0;
  background: var(--white);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
  box-shadow: 0 10px 40px rgba(0,0,0,.1);
  transform: translateY(-100%);
  opacity: 0;
  transition: all .3s;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; }
.mobile-menu a {
  font-size: 1.1rem; font-weight: 500;
  color: var(--dark); text-decoration: none;
  padding: 8px 0;
}
.mobile-menu .nav-cta {
  display: inline-block;
  text-align: center;
  padding: 14px 28px;
  margin-top: 8px;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 32px 60px;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .12;
}
.blob-1 { width: 600px; height: 600px; background: var(--orange); top: -150px; right: -100px; animation: drift 20s ease-in-out infinite; }
.blob-2 { width: 450px; height: 450px; background: var(--orange-light); bottom: -100px; left: -80px; animation: drift 16s ease-in-out infinite reverse; }
.blob-3 { width: 200px; height: 200px; background: var(--orange); top: 50%; left: 40%; animation: drift 12s ease-in-out infinite; }

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

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--orange-50);
  border: 1px solid rgba(255,98,62,.2);
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(1.4); }
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--dark-deep);
}

.highlight-wrap { position: relative; display: inline-block; }
.highlight-text {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 0 8px;
}
.highlight-bar {
  position: absolute;
  bottom: 2px; left: -4px; right: -4px; top: 4px;
  background: var(--orange);
  border-radius: 6px;
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left;
  animation: swipe .6s .8s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes swipe { to { transform: scaleX(1); } }

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-desc strong { color: var(--dark-deep); }

.hero-ctas { display: flex; gap: 14px; margin-bottom: 40px; flex-wrap: wrap; }

.hero-proof { display: flex; align-items: center; gap: 14px; }

.avatar-row { display: flex; }
.av {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-right: -10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  background: hsl(calc(var(--hue) + 15), 85%, 55%);
}
.av-img {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-right: -10px;
  object-fit: cover;
}

.hero-proof p { font-size: .85rem; color: var(--gray-600); }
.hero-proof strong { color: var(--orange); font-size: .95rem; }

/* ---- Phone ---- */
.hero-right { position: relative; display: flex; justify-content: center; }
.hero-phone-frame {
  width: 280px;
  height: 580px;
  background: #000;
  border-radius: 44px;
  padding: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,.15);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
}
.hero-phone-frame:hover { transform: scale(1.03) rotate(-1deg); }
.hero-phone-frame::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 24px;
  background: #000;
  border-radius: 20px;
  z-index: 3;
}
.hero-phone-img {
  position: absolute;
  inset: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  object-fit: cover;
  object-position: top;
  border-radius: 34px;
  opacity: 0;
  transition: opacity .6s ease;
}
.hero-phone-img.active {
  opacity: 1;
}

.phone { position: relative; z-index: 2; }
.phone-bezel {
  width: 280px; height: 580px;
  background: var(--white);
  border-radius: 40px;
  border: 4px solid var(--dark-deep);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.14);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.phone-bezel:hover { transform: scale(1.03) rotate(-1deg); }

.phone-notch {
  width: 120px; height: 28px;
  background: var(--dark-deep);
  border-radius: 0 0 20px 20px;
  margin: 0 auto;
}

.phone-screen { padding: 16px; }

.screen-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.screen-loc {
  display: inline-flex; align-items: center; gap: 3px;
  background: var(--orange); color: var(--white);
  padding: 6px 14px; border-radius: var(--radius-full);
  font-size: .72rem; font-weight: 700;
}
.screen-label { font-weight: 700; font-size: .82rem; margin-bottom: 10px; }

.screen-cats { display: flex; gap: 8px; margin-bottom: 14px; }
.scat { flex: 1; position: relative; border-radius: 12px; overflow: hidden; }
.scat-img { width: 100%; height: 65px; border-radius: 12px; }
.scat span {
  position: absolute; bottom: 5px; left: 5px;
  background: var(--white); padding: 2px 7px; border-radius: 6px;
  font-size: .58rem; font-weight: 700;
}

.screen-card { background: var(--gray-100); border-radius: 14px; overflow: hidden; }
.scard-img { height: 110px; position: relative; border-radius: 14px 14px 0 0; }
.scard-badge {
  position: absolute; top: 7px; left: 7px;
  background: var(--orange); color: var(--white);
  padding: 2px 9px; border-radius: 6px; font-size: .58rem; font-weight: 700;
}
.scard-body { padding: 10px; }
.scard-row { display: flex; justify-content: space-between; margin-bottom: 5px; }
.scard-new { font-size: .6rem; font-weight: 700; color: var(--orange); }
.scard-tag { font-size: .58rem; background: var(--white); padding: 2px 7px; border-radius: 4px; color: var(--gray-600); }
.scard-title { font-weight: 700; font-size: .78rem; margin-bottom: 7px; }
.scard-meta { display: flex; justify-content: space-between; font-size: .62rem; color: var(--gray-600); }
.scard-price { color: var(--orange); font-weight: 700; }

/* ---- Float pills ---- */
.float-pill {
  position: absolute;
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
  font-size: .82rem; font-weight: 700;
  z-index: 3;
  white-space: nowrap;
  animation: bob 5s ease-in-out infinite;
}
.fp-1 { top: 8%; right: -10px; animation-delay: 0s; }
.fp-2 { bottom: 32%; left: -25px; animation-delay: 1.8s; }
.fp-3 { bottom: 8%; right: 0; animation-delay: 3.5s; }
@keyframes bob {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---- Scroll hint ---- */
.scroll-hint {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; margin-top: auto; padding-top: 40px;
}
.scroll-bar {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: .3; transform: scaleY(.5); }
}
.scroll-hint span { font-size: .68rem; text-transform: uppercase; letter-spacing: .15em; color: var(--gray-400); }

/* ---- Animations ---- */
.anim-in {
  opacity: 0;
  transform: translateY(30px);
  animation: riseIn .8s cubic-bezier(.4,0,.2,1) forwards;
}
.d1 { animation-delay: .15s; }
.d2 { animation-delay: .3s; }
.d3 { animation-delay: .45s; }
.d4 { animation-delay: .6s; }

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

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all .7s cubic-bezier(.4,0,.2,1);
  transition-delay: calc(var(--i, 0) * .15s);
}
.reveal.vis { opacity: 1; transform: translateY(0); }

/* ---- Marquee ---- */
.marquee {
  padding: 16px 0;
  background: var(--dark-deep);
  overflow: hidden;
}
.marquee-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: scroll 28s linear infinite;
}
.marquee-inner span {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .16em;
  color: var(--white);
  white-space: nowrap;
}
.dot { color: var(--orange) !important; font-size: 1.2rem !important; }

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Sections ---- */
.section { padding: 110px 0; }
.section-alt { background: var(--gray-100); }

/* ---- Journey (How it Works) ---- */
.journey {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}
.journey-line {
  position: absolute;
  left: 28px;
  top: 0;
  width: 2px;
  background: var(--gray-200);
}
.journey-line-fill {
  width: 100%;
  height: 0%;
  background: var(--orange);
  transition: height .3s;
}
.journey-step {
  position: relative;
  padding-left: 76px;
  padding-bottom: 48px;
}
.journey-step:last-child {
  padding-bottom: 0;
}
.journey-marker {
  position: absolute;
  left: 12px;
  top: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all .4s;
}
.journey-step.vis .journey-marker {
  border-color: var(--orange);
  background: var(--orange);
}
.journey-num {
  font-size: .8rem;
  font-weight: 800;
  color: var(--gray-400);
  transition: color .4s;
}
.journey-step.vis .journey-num {
  color: #fff;
}
.journey-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.journey-content-reverse {
  direction: rtl;
}
.journey-content-reverse > * {
  direction: ltr;
}
.journey-text h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.25;
}
.journey-text p {
  font-size: .92rem;
  color: var(--gray-600);
  line-height: 1.65;
}
.journey-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  transition: transform .4s;
}
.journey-step:hover .journey-img {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .journey { padding-left: 0; }
  .journey-line { left: 16px; }
  .journey-step { padding-left: 52px; }
  .journey-marker { left: 0; width: 32px; height: 32px; }
  .journey-content { grid-template-columns: 1fr; gap: 16px; }
  .journey-content-reverse { direction: ltr; }
  .journey-text h3 { font-size: 1.1rem; }
  .journey-img { aspect-ratio: 16/10; }
}

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

.step {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: all .4s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
}
.step::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .4s;
}
.step:hover { border-color: var(--orange-light); transform: translateY(-6px); box-shadow: 0 20px 50px var(--orange-glow); }
.step:hover::before { transform: scaleX(1); }

.step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.step-num { font-size: 2.2rem; font-weight: 900; line-height: 1; color: rgba(255,98,62,.15); }
.step-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--orange-50);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.step h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: .88rem; color: var(--gray-600); line-height: 1.6; }

/* ---- Discover Grid ---- */
.discover-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.dtab {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  font-family: var(--font);
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: all .25s;
}
.dtab:hover { border-color: var(--orange); color: var(--orange); }
.dtab.active { background: var(--dark-deep); color: var(--white); border-color: var(--dark-deep); }

.discover-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.dcard {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: all .35s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.dcard:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.1); }

.dcard-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.dcard-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,.2));
}
.dcard-loc {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(6px);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: .65rem;
  font-weight: 700;
  color: var(--dark);
  z-index: 1;
}
.dcard-cat {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--orange);
  color: var(--white);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  z-index: 1;
}

.dcard-body { padding: 14px 16px; }
.dcard-title {
  font-size: .92rem;
  font-weight: 700;
  color: var(--dark-deep);
  margin-bottom: 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dcard-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: var(--gray-400);
}
.dcard-host {
  display: flex;
  align-items: center;
  gap: 6px;
}
.dcard-host-av {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--orange-50);
  display: flex; align-items: center; justify-content: center;
  font-size: .55rem; font-weight: 700; color: var(--orange);
}
.dcard-host-av-img {
  width: 22px; height: 22px;
  border-radius: 50%;
  object-fit: cover;
}
.dcard-price { font-weight: 700; color: var(--orange); font-size: .85rem; }
.dcard-rating {
  display: flex; align-items: center; gap: 3px;
  font-size: .75rem; color: var(--dark); font-weight: 600;
}

@media (max-width: 1024px) {
  .discover-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .discover-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
}

/* ---- Experiences ---- */
.exp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.exp {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .4s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
}
.exp:hover { transform: translateY(-8px); box-shadow: 0 25px 60px rgba(0,0,0,.12); }

.exp-img {
  height: 240px;
  position: relative;
  overflow: hidden;
  background-size: 300% 300%;
  animation: shimmer 10s ease infinite;
}
.ei-1 { background: linear-gradient(135deg,#D4A574,#8B6914,#C4956A,#D4A574); }
.ei-2 { background: linear-gradient(135deg,#E8762B,#B85C1F,#D4722A,#E8762B); animation-delay: 3s; }
.ei-3 { background: linear-gradient(135deg,#5D8B3C,#8FBF5F,#4A7A2E,#5D8B3C); animation-delay: 6s; }

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

.exp-badge {
  position: absolute;
  bottom: 12px; left: 12px;
  font-size: .65rem; font-weight: 700; letter-spacing: .12em;
  color: var(--white);
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.exp-body { padding: 18px 20px; }
.exp-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--orange); margin-bottom: 10px; line-height: 1.3; }
.exp-row { display: flex; justify-content: space-between; align-items: center; }
.exp-hearts { display: flex; align-items: center; gap: 5px; font-size: .82rem; color: var(--gray-600); }
.exp-price { font-weight: 700; color: var(--orange); font-size: .88rem; }

/* ---- Scrapbook ---- */
.scrapbook-sub {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 16px;
}
.scrapbook {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.scrap-page {
  position: relative;
  background: #faf6f1;
  border-radius: 8px;
  padding: 48px 40px;
  min-height: 500px;
  box-shadow:
    0 2px 8px rgba(0,0,0,.06),
    inset 0 0 60px rgba(0,0,0,.03);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  overflow: hidden;
}
.scrap-page::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(0,0,0,.06);
  border-radius: 4px;
  pointer-events: none;
}

/* Photos */
.scrap-photo {
  position: relative;
  transition: transform .4s cubic-bezier(.23,1,.32,1);
}
.scrap-photo:hover {
  z-index: 10;
  transform: scale(1.04) !important;
}
.scrap-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 2px 3px 12px rgba(0,0,0,.12);
  display: block;
}
.sp1 {
  transform: rotate(-2.5deg);
  aspect-ratio: 4/3;
}
.sp2 {
  transform: rotate(1.8deg);
  aspect-ratio: 3/4;
  margin-top: 20px;
}
.sp3 {
  transform: rotate(3deg);
  aspect-ratio: 4/3;
  margin-top: -20px;
}
.sp4 {
  transform: rotate(-1.5deg);
  aspect-ratio: 4/3;
}

/* Tape strips */
.scrap-tape {
  position: absolute;
  width: 60px;
  height: 20px;
  background: rgba(255,220,170,.45);
  border: 1px solid rgba(200,170,120,.15);
  z-index: 5;
  pointer-events: none;
}
.tape-tl { top: -6px; left: 16px; transform: rotate(-8deg); }
.tape-tr { top: -6px; right: 16px; transform: rotate(6deg); }
.tape-tc { top: -6px; left: 50%; transform: translateX(-50%) rotate(-2deg); }
.tape-br { bottom: -6px; right: 20px; transform: rotate(4deg); }

/* Doodles */
.scrap-doodle {
  position: absolute;
  opacity: .5;
  pointer-events: none;
  z-index: 3;
}
.sd1 { bottom: 40px; left: 48%; }
.sd2 { top: 30px; right: 60px; }

/* Handwritten notes */
.scrap-note {
  position: absolute;
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: .82rem;
  color: rgba(80,60,40,.4);
  pointer-events: none;
  z-index: 3;
}
.sn1 { bottom: 20px; left: 50px; transform: rotate(-3deg); }
.sn2 { top: 24px; left: 45%; transform: rotate(2deg); }

/* Scrapbook pages inside book */
.scrap-pg {
  background: #faf6f1 !important;
  position: relative;
}
.scrap-pg::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(0,0,0,.06);
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
}
.scrap-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.scrap-inner .scrap-photo {
  max-width: 85%;
  max-height: 85%;
}
.scrap-inner .scrap-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 2px 3px 15px rgba(0,0,0,.15);
}
.scrap-inner .scrap-note {
  position: absolute;
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: .78rem;
  color: rgba(80,60,40,.35);
  pointer-events: none;
  z-index: 3;
}
.scrap-inner .scrap-doodle {
  position: absolute;
  pointer-events: none;
  z-index: 3;
}
.scrap-inner .sp1 { transform: rotate(-1.5deg); }
.scrap-inner .sp2 { transform: rotate(1.2deg); }
.scrap-inner .sp3 { transform: rotate(-2deg); }
.scrap-inner .sp4 { transform: rotate(1.8deg); }

/* Full-bleed scrapbook photo */
.scrap-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .scrap-inner { padding: 20px; }
  .scrap-inner .scrap-photo { max-width: 92%; }
}

/* ---- Scrapbook Carousel ---- */
.sb-wrapper {
  max-width: 500px;
  margin: 0 auto;
}
.sb-book {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.1), 4px 4px 0 rgba(0,0,0,.04);
}
.sb-page {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .5s ease, transform .5s ease;
  transform: translateX(30px);
  pointer-events: none;
}
.sb-page.sb-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 2;
}
.sb-page.sb-exit-left {
  opacity: 0;
  transform: translateX(-30px);
  z-index: 1;
}
.sb-paper {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Cover pages */
.sb-cover-front {
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sb-cover-back {
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sb-cover-inner {
  text-align: center;
  padding: 40px;
  color: #fff;
}
.sb-cover-brand {
  font-size: 1rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 4px;
  margin-bottom: 24px;
}
.sb-cover-inner h2 {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}
.sb-cover-line {
  width: 40px;
  height: 2px;
  background: var(--orange);
  margin: 0 auto 16px;
}
.sb-cover-inner p {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  font-style: italic;
}
.sb-cover-year {
  display: block;
  margin-top: 32px;
  font-size: .7rem;
  color: rgba(255,255,255,.2);
  letter-spacing: 4px;
}

/* Scrap pages */
.sb-scrap {
  background: #faf6f1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
}
.sb-scrap::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(0,0,0,.06);
  border-radius: 3px;
  pointer-events: none;
}
.sb-photo {
  max-width: 88%;
  max-height: 88%;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 2px 3px 15px rgba(0,0,0,.15);
  display: block;
}

/* Controls */
.sb-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}
.sb-page-num {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-600);
  min-width: 70px;
  text-align: center;
}

@media (max-width: 768px) {
  .sb-wrapper { max-width: 100%; }
}

#experiences > .container > .tag,
#experiences > .container > .sec-title {
  text-align: center;
}

/* ---- Book ---- */
.book-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.book {
  position: relative;
  width: 45%;
  margin-left: 50%;
  aspect-ratio: 3/4;
  perspective: 1800px;
}
.book-page {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform-origin: left center;
  transition: transform .8s cubic-bezier(.645,.045,.355,1), z-index 0s .4s;
  cursor: pointer;
}
.book-page.flipped {
  transform: rotateY(-180deg);
}
.page-front, .page-back {
  position: absolute;
  inset: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 4px 16px 16px 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 2px 4px 20px rgba(0,0,0,.1);
}
.page-back {
  transform: rotateY(180deg);
  border-radius: 16px 4px 4px 16px;
}
.page-front { background: var(--white); }
.page-back { background: var(--white); }

/* Cover - Front */
.page-cover {
  background: #1a1a1a;
  overflow: hidden;
}
.cover-art {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.cover-pattern {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: .12;
}
.cover-circle {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid #ff623e;
}
.cover-circle.c1 {
  width: 300px; height: 300px;
  top: -60px; right: -80px;
}
.cover-circle.c2 {
  width: 200px; height: 200px;
  bottom: -40px; left: -60px;
}
.cover-circle.c3 {
  width: 120px; height: 120px;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
}
.cover-line {
  position: absolute;
  background: #ff623e;
  height: 1px;
}
.cover-line.cl1 {
  width: 140px;
  top: 20%;
  left: -20px;
  transform: rotate(-25deg);
}
.cover-line.cl2 {
  width: 100px;
  bottom: 30%;
  right: -10px;
  transform: rotate(15deg);
}
.cover-line.cl3 {
  width: 80px;
  top: 65%;
  left: 30%;
  transform: rotate(-10deg);
}
.cover-content {
  position: relative;
  z-index: 2;
  padding: 40px 28px;
}
.cover-brand {
  font-size: 1rem;
  font-weight: 900;
  color: #ff623e;
  letter-spacing: 4px;
  text-transform: lowercase;
  margin-bottom: 28px;
}
.cover-content h2 {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0;
  letter-spacing: -.5px;
}
.cover-divider {
  width: 40px;
  height: 2px;
  background: #ff623e;
  margin: 20px auto;
}
.cover-sub {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  font-style: italic;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}
.cover-arrow {
  margin-top: 32px;
  color: rgba(255,255,255,.3);
  animation: bounceRight 1.5s infinite;
}
@keyframes bounceRight {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}
.cover-year {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.2);
  letter-spacing: 6px;
  margin: 0;
}

/* Cover - Back */
.page-backcover {
  background: #1a1a1a;
  overflow: hidden;
}
.backcover-art {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.backcover-pattern {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: .08;
}
.backcover-content {
  position: relative;
  z-index: 2;
  padding: 40px 28px;
}
.backcover-brand {
  font-size: 1.8rem;
  font-weight: 900;
  color: #ff623e;
  letter-spacing: 3px;
  text-transform: lowercase;
  margin-bottom: 4px;
}
.backcover-tagline {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.backcover-text {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  margin-bottom: 8px;
}
.backcover-btn {
  margin-top: 20px;
}
.backcover-footer {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: .68rem;
  font-weight: 600;
  color: rgba(255,255,255,.15);
  letter-spacing: 4px;
  margin: 0;
}

.page-blank {
  background: #f5f0eb;
}

/* Content pages */
.page-img {
  flex: 1;
  min-height: 0;
  position: relative;
}
.page-text {
  padding: 20px 24px;
}
.page-location {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--orange);
  display: block;
  margin-bottom: 6px;
}
.page-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 6px;
}
.page-text p {
  font-size: .85rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}

/* Spine effect */
.book::before {
  content: '';
  position: absolute;
  left: -3px;
  top: 2%;
  bottom: 2%;
  width: 6px;
  background: linear-gradient(to right, rgba(0,0,0,.12), rgba(0,0,0,.02));
  z-index: 100;
  border-radius: 2px 0 0 2px;
  pointer-events: none;
}

/* Page stacking - managed by JS */

/* Controls */
.book-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
}
.book-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 100px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--dark);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
  font-family: inherit;
}
.book-btn:hover:not(:disabled) {
  border-color: var(--orange);
  color: var(--orange);
}
.book-btn:disabled {
  opacity: .35;
  cursor: not-allowed;
}
.book-page-num {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-600);
  min-width: 60px;
  text-align: center;
}

@media (max-width: 768px) {
  .book-wrapper { max-width: 100%; }
  .book { width: 45%; margin-left: 50%; aspect-ratio: 2/3; }
  .cover-brand { font-size: .7rem; letter-spacing: 2px; margin-bottom: 14px; }
  .cover-content h2 { font-size: 1.2rem; }
  .cover-sub { font-size: .65rem; letter-spacing: 1px; }
  .cover-year { font-size: .55rem; bottom: 14px; }
  .cover-divider { margin: 12px auto; }
  .backcover-brand { font-size: 1.1rem; }
  .backcover-tagline { font-size: .6rem; margin-bottom: 14px; }
  .backcover-text { font-size: .72rem; }
  .backcover-btn { font-size: .8rem; padding: 10px 24px; }
  .backcover-footer { font-size: .55rem; bottom: 14px; }
  .page-text { padding: 14px 16px; }
  .page-text h3 { font-size: .95rem; }
  .page-text p { font-size: .78rem; }
  .book-controls { gap: 16px; margin-top: 20px; }
  .book-btn { padding: 8px 14px; font-size: .8rem; }
}

/* ---- Host Section ---- */
.host-section {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

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

.host-left h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; margin-bottom: 18px; line-height: 1.15; }
.host-desc { font-size: 1rem; opacity: .9; margin-bottom: 28px; line-height: 1.7; }

.host-perks { margin-bottom: 32px; }
.perk {
  display: flex; align-items: center; gap: 10px;
  font-size: .92rem; font-weight: 500;
  padding: 8px 0;
  opacity: .9;
}
.perk span { font-size: 1rem; }

.host-right { position: relative; display: flex; flex-direction: column; gap: 16px; align-items: center; }

.host-card {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 24px 32px;
  text-align: center;
  width: 240px;
  transition: transform .3s, background .3s;
}
.host-card:hover { background: rgba(255,255,255,.25); transform: scale(1.05); }
.hc-1 { transform: translateX(-30px); }
.hc-2 { transform: translateX(30px); }
.hc-3 { transform: translateX(-30px); }
.hc-amount { font-size: 2rem; font-weight: 900; margin-bottom: 4px; }
.hc-label { font-size: .82rem; opacity: .75; font-weight: 500; }

/* ---- Testimonials ---- */
.testimonials { max-width: 680px; margin: 0 auto; position: relative; }
.testi-track { position: relative; min-height: 220px; }
.testi {
  position: absolute; top: 0; left: 0; right: 0;
  opacity: 0; transform: translateX(40px);
  transition: all .5s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.testi.active { opacity: 1; transform: translateX(0); pointer-events: auto; }

.testi blockquote {
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  font-weight: 500;
  line-height: 1.55;
  font-style: italic;
  color: var(--dark-deep);
  margin-bottom: 28px;
}

.testi-who { display: flex; align-items: center; gap: 8px; justify-content: center; }
.testi-av {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1rem;
  background: hsl(calc(var(--hue) + 15), 85%, 55%);
}
.testi-av-img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange-50);
}
.testi-who strong { display: block; font-size: .9rem; }
.testi-who span { font-size: .78rem; color: var(--gray-400); }

.testi-dots { display: flex; justify-content: center; gap: 10px; margin-top: 36px; }
.tdot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
  border: none; cursor: pointer;
  transition: all .3s;
}
.tdot.active { background: var(--orange); transform: scale(1.3); }

/* ---- Testimonial Cards ---- */
.tcard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.tcard {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .3s, box-shadow .3s;
}
.tcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
}
.tcard-quote {
  font-size: .95rem;
  line-height: 1.65;
  color: var(--dark-deep);
  font-style: italic;
  margin-bottom: 28px;
  flex: 1;
}
.tcard-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tcard-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange-50);
  flex-shrink: 0;
}
.tcard-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tcard-info strong {
  font-size: .88rem;
  font-weight: 700;
  color: var(--dark-deep);
}
.tcard-info span {
  font-size: .75rem;
  color: var(--gray-400);
  font-weight: 500;
}
.tcard-stars {
  font-size: .85rem;
  color: var(--orange);
  letter-spacing: 1px;
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .tcard-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
}

/* ---- Live from App ---- */
.live-sub {
  font-size: .95rem;
  color: var(--gray-600);
  margin-bottom: 40px;
}

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

.live-loading {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding: 40px;
}

.live-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.live-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .3s, box-shadow .3s;
}

.live-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
}

.live-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.live-card-body {
  padding: 18px;
}

.live-card-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark-deep);
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.live-card-meta {
  font-size: .78rem;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.live-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.live-card-host {
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-card-host img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.live-card-host span {
  font-size: .78rem;
  font-weight: 600;
  color: var(--gray-600);
}

.live-card-price {
  font-size: .88rem;
  font-weight: 800;
  color: var(--dark-deep);
}

.live-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  color: var(--gray-400);
  font-size: .88rem;
}

@media (max-width: 768px) {
  .live-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ---- What's Your Vibe ---- */
.vibe-section { background: var(--white); }

.vibe-sub {
  font-size: .95rem;
  color: var(--gray-600);
  margin-bottom: 40px;
}

.vibe-picker {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.vibe-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 24px;
  border: 2px solid var(--gray-200);
  border-radius: 20px;
  background: var(--white);
  cursor: pointer;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  min-width: 120px;
  font-family: inherit;
}

.vibe-btn:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255,98,62,.1);
}

.vibe-btn.active {
  border-color: var(--orange);
  background: var(--orange-50);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255,98,62,.12);
}

.vibe-emoji {
  font-size: 1.8rem;
  line-height: 1;
  transition: transform .3s;
}

.vibe-btn:hover .vibe-emoji,
.vibe-btn.active .vibe-emoji {
  transform: scale(1.2);
}

.vibe-label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--dark-deep);
  white-space: nowrap;
}

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

.vibe-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--gray-100);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: all .3s;
  animation: vibeIn .4s cubic-bezier(.4,0,.2,1) both;
  animation-delay: calc(var(--i, 0) * .06s);
}

@keyframes vibeIn {
  from { opacity: 0; transform: translateY(12px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.vibe-card:hover {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transform: translateY(-2px);
}

.vibe-card-img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.vibe-card-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.vibe-card-title {
  font-size: .85rem;
  font-weight: 700;
  color: var(--dark-deep);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vibe-card-meta {
  font-size: .72rem;
  color: var(--gray-400);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .vibe-picker { gap: 8px; }
  .vibe-btn { min-width: 90px; padding: 14px 16px; }
  .vibe-emoji { font-size: 1.4rem; }
  .vibe-label { font-size: .7rem; }
  .vibe-result { grid-template-columns: 1fr; }
}

/* ---- FAQ ---- */
.faq-section {
  background: var(--dark-deep);
  padding: 100px 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.faq-header .tag { color: rgba(255,255,255,.5); }
.faq-header .tag::after { background: linear-gradient(90deg, transparent, var(--orange), transparent); }

.faq-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.faq-subtitle {
  font-size: .95rem;
  line-height: 1.6;
  color: rgba(255,255,255,.4);
  max-width: 320px;
}

.faq-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  overflow: hidden;
  transition: background .3s, border-color .3s;
}

.faq-card:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.1);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.faq-q span {
  font-size: .92rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255,255,255,.4);
  transition: all .3s;
}

.faq-card.open .faq-icon {
  background: var(--orange);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}

.faq-card.open .faq-a {
  max-height: 250px;
}

.faq-a p {
  padding: 0 24px 20px;
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(255,255,255,.45);
}

@media (max-width: 768px) {
  .faq-layout { grid-template-columns: 1fr; gap: 36px; }
  .faq-header { text-align: center; }
  .faq-subtitle { max-width: none; margin: 0 auto; }
}

/* ---- Stats ---- */
.stats { padding: 70px 0; background: var(--dark-deep); }
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat-n { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 900; color: var(--orange); margin-bottom: 6px; }
.stat-l { font-size: .82rem; color: var(--gray-400); font-weight: 500; }

/* ---- Mission ---- */
.mission-card {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.mission-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.08) 0%, transparent 50%);
}

.mission-inner { position: relative; z-index: 1; }
.mission-inner h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 700; margin-bottom: 22px; line-height: 1.25; }
.mission-inner p { font-size: .95rem; line-height: 1.7; opacity: .9; max-width: 560px; margin: 0 auto 14px; }

/* ---- Final CTA ---- */
/* ---- Dark End Section (CTA + Footer) ---- */
.dark-end {
  background: var(--dark-deep);
  padding-top: 80px;
}

.cta-oval-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-oval {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: 50%;
  overflow: hidden;
}

.cta-oval-video {
  position: absolute;
  inset: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  object-fit: cover;
  filter: blur(3px);
}

.cta-oval-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.4);
}

.cta-oval-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-align: center;
  padding: 24px;
}

.cta-oval-content h2 {
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.btn-cta-oval {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: var(--radius-full);
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: background .3s, transform .2s;
}
.btn-cta-oval:hover {
  background: var(--orange-dark);
  transform: scale(1.03);
}

.cta-oval-sub {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  margin-top: 16px;
  font-weight: 500;
}

.cta-oval-qr {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.cta-oval-qr img {
  width: 100px;
  height: 100px;
  border-radius: 10px;
}
.cta-oval-qr span {
  font-size: .7rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
}
.cta-oval-badges {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.cta-oval-badges img {
  height: 38px;
  transition: opacity .2s;
}
.cta-oval-badges img:hover { opacity: .85; }

.desktop-only { display: block; }
.mobile-only { display: none; }
@media (max-width: 768px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: inline-flex !important; }
}

/* ---- Dark Footer ---- */
.footer-dark {
  padding: 80px 0 32px;
  color: rgba(255,255,255,.6);
}

.footer-top-dark {
  margin-bottom: 48px;
}

.logo-dark {
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 6px;
}

.footer-brand-dark p {
  font-size: .88rem;
  color: rgba(255,255,255,.4);
}

.footer-cols-dark {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.footer-col-dark h4 {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.3);
  margin-bottom: 16px;
}

.footer-col-dark a {
  display: block;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  padding: 5px 0;
  transition: color .2s;
}
.footer-col-dark a:hover { color: var(--white); }

.footer-bottom-dark {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}

/* Keep old footer class for other pages */
.footer { padding: 56px 0 28px; border-top: 1px solid var(--gray-200); }
.footer-top { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 36px; }
.footer-brand .logo { display: inline-block; margin-bottom: 4px; }
.footer-tagline { font-size: .82rem; color: var(--gray-400); font-weight: 300; margin-bottom: 12px; letter-spacing: .08em; }
.footer-copy { font-size: .82rem; color: var(--gray-600); margin-bottom: 4px; }
.footer-addr { font-size: .78rem; color: var(--gray-400); }

.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.footer-col h4 { font-size: .88rem; font-weight: 700; margin-bottom: 14px; }
.footer-col a { display: block; font-size: .82rem; color: var(--orange); text-decoration: none; margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: var(--orange-dark); }

.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid var(--gray-200); }
.footer-bottom p { font-size: .78rem; color: var(--gray-400); }

/* ---- Hero QR Code ---- */
.hero-qr {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px 10px 10px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.hero-qr img {
  width: 64px; height: 64px;
  border-radius: 8px;
}
.hero-qr span {
  font-size: .75rem;
  font-weight: 600;
  color: var(--gray-600);
  max-width: 80px;
  line-height: 1.3;
}

/* ---- App Store Badge ---- */
.app-store-badge {
  margin-bottom: 24px;
  transition: transform .3s;
  border: none;
  outline: none;
  background: none;
  border-radius: 0;
  box-shadow: none;
}
.app-store-badge img {
  display: block;
  height: 44px;
  width: auto;
}
.app-store-badge:hover {
  transform: translateY(-2px);
}

/* ---- Rotating Words ---- */
.rotate-words {
  display: inline-block;
  position: relative;
  vertical-align: bottom;
  overflow: hidden;
  height: 1.1em;
  width: 9ch;
}
.rw {
  display: block;
  position: absolute;
  top: 0; left: 0;
  color: var(--orange);
  opacity: 0;
  transform: translateY(100%);
  transition: all .5s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
}
.rw.active {
  opacity: 1;
  transform: translateY(0);
}
.rw.exit {
  opacity: 0;
  transform: translateY(-100%);
}

/* ---- Text Shimmer ---- */
.text-shimmer {
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 30%, #ffd4c4 50%, var(--orange-light) 70%, var(--orange) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShimmer 3s ease-in-out infinite;
}
@keyframes textShimmer {
  0% { background-position: 100% 50%; }
  100% { background-position: -100% 50%; }
}

/* ---- Glow pulse on sections ---- */
.step-icon {
  transition: box-shadow .4s, transform .4s;
}
.step:hover .step-icon {
  box-shadow: 0 0 24px var(--orange-glow);
  transform: scale(1.1);
}

/* ---- Smooth card shine ---- */
.exp::before {
  content: '';
  position: absolute;
  top: 0; left: -75%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transform: skewX(-15deg);
  transition: left .6s ease;
  z-index: 2;
  pointer-events: none;
}
.exp:hover::before { left: 125%; }

/* ---- Stat counter glow ---- */
.stat-n {
  text-shadow: 0 0 30px var(--orange-glow);
}

/* ---- Host card float on scroll ---- */
.host-card {
  animation: floatCard 6s ease-in-out infinite;
}
.hc-1 { animation-delay: 0s; }
.hc-2 { animation-delay: 2s; }
.hc-3 { animation-delay: 4s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---- Testimonial fade transitions ---- */
.testi {
  transition: all .6s cubic-bezier(.4,0,.2,1);
}

/* ---- Tag shimmer line ---- */
.tag {
  position: relative;
  display: inline-block;
}
.tag::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  background-size: 200% 100%;
  animation: tagLine 2s ease-in-out infinite;
}
@keyframes tagLine {
  0% { background-position: 100% 50%; }
  100% { background-position: -100% 50%; }
}

/* ---- Video Section (Reel Style) ---- */
.video-section { padding: 0; overflow: hidden; }

.video-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.reel-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  background: var(--gray-100);
}

.reel-phone {
  width: 300px;
  height: 620px;
  background: var(--dark-deep);
  border-radius: 44px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.18), 0 0 0 2px rgba(0,0,0,.1);
}

.reel-notch {
  width: 120px;
  height: 30px;
  background: var(--dark-deep);
  border-radius: 0 0 20px 20px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.reel-screen {
  position: absolute;
  inset: 0;
  border-radius: 44px;
  overflow: hidden;
}

.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* IG overlay — top */
.ig-top {
  position: absolute;
  top: 40px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
}

.ig-reels-label {
  font-size: .95rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}

/* IG overlay — right action buttons */
.ig-actions {
  position: absolute;
  right: 12px;
  bottom: 140px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  z-index: 5;
}

.ig-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.4));
}

.ig-action span {
  font-size: .6rem;
  color: white;
  font-weight: 600;
}

/* IG overlay — bottom info */
.ig-bottom {
  position: absolute;
  bottom: 28px;
  left: 14px;
  right: 50px;
  z-index: 5;
}

.ig-user {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.ig-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: .7rem;
  font-weight: 900;
  border: 2px solid white;
}

.ig-username {
  font-size: .78rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}

.ig-follow {
  font-size: .65rem;
  font-weight: 700;
  color: white;
  border: 1px solid rgba(255,255,255,.7);
  padding: 2px 10px;
  border-radius: 6px;
}

.ig-caption {
  font-size: .7rem;
  color: white;
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ig-music {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ig-music-text {
  font-size: .6rem;
  color: white;
  text-shadow: 0 1px 3px rgba(0,0,0,.4);
  white-space: nowrap;
  overflow: hidden;
  max-width: 160px;
  animation: musicScroll 6s linear infinite;
}

@keyframes musicScroll {
  0%, 20% { transform: translateX(0); }
  80%, 100% { transform: translateX(-30px); }
}

/* IG progress bar at bottom */
.ig-progress {
  position: absolute;
  bottom: 16px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: rgba(255,255,255,.25);
  border-radius: 2px;
  z-index: 5;
  overflow: hidden;
}

.ig-progress-bar {
  height: 100%;
  width: 0%;
  background: white;
  border-radius: 2px;
  animation: progressFill 8s linear infinite;
}

@keyframes progressFill {
  0% { width: 0%; }
  100% { width: 100%; }
}

.wave-side {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--orange);
}

.wave-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.wave-path {
  transform-origin: center;
}
.w1 { animation: waveFloat 8s ease-in-out infinite; }
.w2 { animation: waveFloat 6s ease-in-out infinite reverse; }
.w3 { animation: waveFloat 10s ease-in-out infinite; }

@keyframes waveFloat {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(20px); }
}

.wave-content {
  position: relative;
  z-index: 1;
  padding: 60px 48px;
  color: var(--white);
  max-width: 440px;
}

.wave-tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 16px;
}

.wave-title {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 18px;
}
.wave-title strong { text-decoration: underline; text-decoration-thickness: 3px; text-underline-offset: 4px; }

.wave-desc {
  font-size: .95rem;
  line-height: 1.65;
  opacity: .88;
  margin-bottom: 28px;
}

/* ---- Map Section ---- */
.map-section { padding-bottom: 0; }
.map-section .container { margin-bottom: 48px; }

.map-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.map-canvas {
  position: relative;
  height: 480px;
  background:
    linear-gradient(135deg, #f0ebe3 0%, #e8e1d5 30%, #f5f0e8 60%, #ede7dc 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  box-shadow: 0 -4px 30px rgba(0,0,0,.06);
}

/* Subtle grid to mimic map roads */
.map-grid {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(0,0,0,.04) 59px, rgba(0,0,0,.04) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(0,0,0,.04) 79px, rgba(0,0,0,.04) 80px);
}
.map-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(30deg, transparent 40%, rgba(0,0,0,.02) 41%, rgba(0,0,0,.02) 42%, transparent 43%),
    linear-gradient(-45deg, transparent 55%, rgba(0,0,0,.025) 56%, rgba(0,0,0,.025) 57%, transparent 58%),
    linear-gradient(70deg, transparent 30%, rgba(200,190,170,.12) 31%, rgba(200,190,170,.12) 33%, transparent 34%);
}

/* Location pins */
.map-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 3;
  cursor: pointer;
}

.pin-marker {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px var(--orange-glow);
  transition: transform .3s, box-shadow .3s;
  position: relative;
  z-index: 2;
}
.pin-marker svg { transform: rotate(45deg); }

.map-pin:hover .pin-marker {
  transform: rotate(-45deg) scale(1.15);
  box-shadow: 0 6px 20px var(--orange-glow);
}

.pin-pulse {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0;
  z-index: 1;
  animation: pinPulse 2.5s ease-out infinite;
}

.pin-1 .pin-pulse { animation-delay: 0s; }
.pin-2 .pin-pulse { animation-delay: .5s; }
.pin-3 .pin-pulse { animation-delay: 1s; }
.pin-4 .pin-pulse { animation-delay: 1.5s; }
.pin-5 .pin-pulse { animation-delay: 2s; }

@keyframes pinPulse {
  0% { transform: scale(1); opacity: .5; }
  100% { transform: scale(4); opacity: 0; }
}

/* Pin drop animation */
.pin-1 { animation: pinDrop .5s .3s cubic-bezier(.4,0,.2,1) both; }
.pin-2 { animation: pinDrop .5s .6s cubic-bezier(.4,0,.2,1) both; }
.pin-3 { animation: pinDrop .5s .9s cubic-bezier(.4,0,.2,1) both; }
.pin-4 { animation: pinDrop .5s 1.2s cubic-bezier(.4,0,.2,1) both; }
.pin-5 { animation: pinDrop .5s 1.5s cubic-bezier(.4,0,.2,1) both; }

@keyframes pinDrop {
  0% { opacity: 0; transform: translateY(-40px) scale(.5); }
  60% { opacity: 1; transform: translateY(4px) scale(1.05); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Pin info card on hover */
.pin-card {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) scale(.9);
  background: var(--white);
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  z-index: 10;
}
.pin-card strong { display: block; font-size: .82rem; margin-bottom: 2px; color: var(--dark-deep); }
.pin-card span { font-size: .72rem; color: var(--orange); font-weight: 700; }

.map-pin:hover .pin-card {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* Location badge */
.map-loc-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  font-size: .82rem;
  font-weight: 700;
  color: var(--dark);
  z-index: 5;
  animation: bob 4s ease-in-out infinite;
}

/* Search bar overlay */
.map-search {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  z-index: 5;
  width: 320px;
  max-width: calc(100% - 40px);
}
.map-search span {
  font-size: .82rem;
  color: var(--gray-400);
  white-space: nowrap;
}

/* ---- Songkran Pop-up ---- */
.songkran-trigger {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  background: var(--dark-deep);
  color: var(--white);
  padding: 8px 20px 8px 8px;
  border-radius: var(--radius-full);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px solid rgba(255,255,255,.15);
  box-shadow: 0 8px 30px rgba(0,0,0,.3);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  animation: triggerAttention 2s ease-in-out infinite;
}
.songkran-trigger-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: url('assets/songkran-hero.png') center/cover;
  flex-shrink: 0;
  border: 2px solid var(--orange);
}
.songkran-trigger:hover {
  transform: scale(1.08);
  border-color: var(--orange);
  box-shadow: 0 12px 40px rgba(255,98,62,.4);
}
@keyframes triggerAttention {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.03); box-shadow: 0 16px 40px rgba(0,0,0,.35), 0 0 0 8px rgba(255,98,62,0); }
}

.songkran-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn .3s ease;
}
.songkran-overlay.open { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.songkran-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  max-width: 380px;
  width: 100%;
  position: relative;
  text-align: left;
  animation: modalPop .4s cubic-bezier(.4,0,.2,1);
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
}
@keyframes modalPop {
  from { opacity: 0; transform: scale(.85) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.songkran-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none; border: none;
  font-size: 1.8rem;
  color: var(--gray-400);
  cursor: pointer;
  transition: color .2s;
  line-height: 1;
}
.songkran-close:hover { color: var(--dark-deep); }

/* Water drops animation */
.water-drops {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden; border-radius: var(--radius-lg);
}
.drop {
  position: absolute;
  width: 10px; height: 14px;
  background: linear-gradient(180deg, rgba(80,160,255,.6), rgba(120,200,255,.3));
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: waterFall linear infinite;
  filter: blur(0.5px);
}
.drop::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%; transform: translateX(-50%);
  width: 16px; height: 4px;
  background: rgba(80,160,255,.15);
  border-radius: 50%;
  animation: splash linear infinite;
  opacity: 0;
}
.water-drops .d1 { left: 8%; animation-duration: 1.6s; animation-delay: 0s; width: 12px; height: 16px; }
.water-drops .d2 { left: 22%; animation-duration: 1.3s; animation-delay: .3s; width: 8px; height: 12px; }
.water-drops .d3 { left: 38%; animation-duration: 1.8s; animation-delay: .7s; width: 11px; height: 15px; }
.water-drops .d4 { left: 52%; animation-duration: 1.4s; animation-delay: .1s; width: 9px; height: 13px; }
.water-drops .d5 { left: 68%; animation-duration: 1.7s; animation-delay: .5s; width: 10px; height: 14px; }
.water-drops .d6 { left: 85%; animation-duration: 1.5s; animation-delay: .9s; width: 8px; height: 11px; }
@keyframes waterFall {
  0% { top: -20px; opacity: 0; transform: translateX(0); }
  10% { opacity: .8; }
  50% { transform: translateX(4px); }
  85% { opacity: .5; }
  95% { opacity: .2; }
  100% { top: 100%; opacity: 0; transform: translateX(-2px); }
}
@keyframes splash {
  0%, 85% { opacity: 0; transform: translateX(-50%) scale(.5); }
  90% { opacity: .6; transform: translateX(-50%) scale(1.2); }
  100% { opacity: 0; transform: translateX(-50%) scale(1.8); }
}

.songkran-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--dark-deep);
  margin-bottom: 6px;
  line-height: 1.2;
}

.songkran-sub {
  font-size: .8rem;
  color: var(--gray-600);
  margin-bottom: 14px;
  line-height: 1.4;
}

.songkran-details {
  font-size: .8rem;
  color: var(--gray-600);
  line-height: 1.4;
  margin-bottom: 12px;
}

.songkran-reveal { margin-bottom: 14px; }
.songkran-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  margin-bottom: 10px;
}
.songkran-reveal h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-deep);
  margin-bottom: 8px;
}
.songkran-highlight {
  color: var(--orange);
  background: linear-gradient(90deg, var(--orange), var(--orange-light), #ffd4c4, var(--orange-light), var(--orange));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShimmer 3s ease-in-out infinite;
}
.songkran-reveal > p {
  font-size: .92rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.songkran-merch {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}
.merch-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.merch-img {
  width: 80px; height: 80px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform .3s;
  box-shadow: 0 4px 14px rgba(0,0,0,.1);
}
.merch-item:hover .merch-img { transform: scale(1.08) rotate(-3deg); }
.merch-item span {
  font-size: .75rem;
  font-weight: 600;
  color: var(--dark);
}

.spotify-embed {
  margin-bottom: 14px;
  text-align: left;
  overflow: hidden;
  border-radius: 12px;
}
.spotify-embed-label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--dark-deep);
  margin-bottom: 10px;
  text-align: center;
}
.spotify-embed iframe {
  border-radius: 12px;
  display: block;
}

.songkran-cta {
  width: 100%;
  justify-content: center;
}
.songkran-merch { justify-content: center; }
.spotify-embed-label { text-align: left; }

@media (max-width: 768px) {
  .songkran-trigger {
    bottom: 16px; right: 16px;
    padding: 6px 14px 6px 6px;
    font-size: .65rem;
  }
  .songkran-trigger-img { width: 36px; height: 36px; }
  .songkran-modal { padding: 28px 20px; max-width: 340px; }
  .songkran-title { font-size: 1.2rem; }
  .songkran-sub { font-size: .8rem; }
  .songkran-merch { gap: 10px; }
  .merch-img { width: 80px; height: 80px; border-radius: 12px; }
  .merch-item span { font-size: .68rem; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-desc { margin: 0 auto 32px; }
  .hero-ctas { justify-content: center; }
  .hero-proof { justify-content: center; }
  .hero-right { order: -1; }
  .hero-phone-frame { width: 240px; height: 500px; }
  .phone-bezel { width: 240px; height: 500px; }
  .float-pill { display: none; }
  .steps { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .exp-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .host-split { grid-template-columns: 1fr; text-align: center; }
  .host-right { margin-top: 20px; }
  .hc-1, .hc-2, .hc-3 { animation-name: floatCard; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .video-split { grid-template-columns: 1fr; }
  .map-canvas { height: 380px; }
  .reel-side { padding: 48px 20px; }
  .reel-phone { width: 260px; height: 540px; border-radius: 36px; }
  .reel-screen { border-radius: 36px; }
  .wave-content { padding: 48px 32px; max-width: 100%; text-align: center; margin: 0 auto; }
  .section { padding: 80px 0; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .mobile-menu { display: flex; }
  .hero { padding: 100px 20px 40px; min-height: auto; }
  .hero-title { font-size: 2.2rem; }
  .hide-mobile { display: none; }
  .mission-card { padding: 48px 24px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-proof { flex-direction: column; }
  .reel-phone { width: 240px; height: 500px; }
  .section { padding: 64px 0; }
  .sec-title { margin-bottom: 32px; }
  .host-card { width: 200px; padding: 18px 24px; }
  .hc-amount { font-size: 1.6rem; }
  .host-right { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 12px; }
  .wave-content { padding: 40px 24px; }
  .wave-title { font-size: 1.4rem; }
  .map-canvas { height: 320px; }
  .map-search { width: 260px; padding: 10px 18px; }
  .map-search span { font-size: .75rem; }
  .footer-cols { grid-template-columns: 1fr; gap: 24px; }
  .footer-cols-dark { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-dark { flex-direction: column; gap: 8px; text-align: center; }
  .cta-oval { aspect-ratio: 1 / 1; border-radius: 50%; }
  .cta-oval-content h2 { font-size: 1.3rem; }
  .app-store-badge img { height: 38px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.9rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .phone-bezel { width: 220px; height: 440px; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 20px; }
  .rotate-words { width: 9ch; }
  .navbar { padding: 14px 20px; max-width: 100vw; }
  .navbar.scrolled { width: calc(100% - 24px); max-width: 100vw; padding: 8px 20px; }
  .logo { font-size: 1.5rem; }
  .hero-desc { font-size: .95rem; }
  .cta-title { font-size: 1.8rem; }
  .mission-inner h2 { font-size: 1.3rem; }
  .mission-inner p { font-size: .88rem; }
  .host-left h2 { font-size: 1.6rem; }
  .host-desc { font-size: .92rem; }
  .host-card { width: 140px; padding: 14px 16px; }
  .hc-amount { font-size: 1.3rem; }
  .hc-label { font-size: .72rem; }
  .exp-img { height: 200px; }
  .testi blockquote { font-size: 1rem; }
  .map-canvas { height: 280px; }
  .pin-marker { width: 28px; height: 28px; }
  .pin-marker svg { width: 14px; height: 14px; }
}

/* ---- Voucher Modal ---- */
.voucher-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.voucher-overlay.open {
  display: flex;
}
.voucher-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  animation: voucherIn .3s ease;
}
@keyframes voucherIn {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.voucher-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--gray-400);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}
.voucher-close:hover { color: var(--dark); }
.voucher-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}
.voucher-desc {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 24px;
}
.voucher-input {
  width: 100%;
  padding: 14px 20px;
  border-radius: 100px;
  border: 2px solid var(--gray-200);
  font-size: .95rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
  margin-bottom: 16px;
}
.voucher-input:focus {
  border-color: var(--orange);
}
.voucher-submit {
  width: 100%;
  justify-content: center;
}
.voucher-terms {
  font-size: .72rem;
  color: var(--gray-400);
  margin-top: 14px;
}
.voucher-success-icon {
  margin-bottom: 16px;
}
.voucher-code-display {
  margin-top: 16px;
  padding: 14px 20px;
  background: var(--gray-100);
  border-radius: 12px;
  font-size: 1rem;
  color: var(--dark);
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .voucher-modal { padding: 36px 24px; }
  .voucher-title { font-size: 1.3rem; }
}
