/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; overflow-x: clip; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-x: clip;
  overflow-wrap: break-word;
  width: 100%;
}

:root {
  --ink: #0B1A2E;
  --ink-soft: #3A4A63;
  --ink-dim: #6B7A92;
  --bg: #FAFAF7;
  --bg-warm: #F4F1EA;
  --white: #FFFFFF;
  --accent: #4F76B4;
  --accent-bright: #4f76b4ab;
  --accent-soft: #D1FAE5;
  --accent-glow: #4f76b431;
  --gold: #C9A961;
  --pink: #E879A2;
  --pink-glow: rgba(232, 121, 162, 0.18);
  --border: #E6E1D6;
  --border-soft: #EFEBE2;
  --shadow-sm: 0 1px 2px rgba(11, 26, 46, 0.04), 0 1px 3px rgba(11, 26, 46, 0.06);
  --shadow-md: 0 4px 12px rgba(11, 26, 46, 0.06), 0 2px 4px rgba(11, 26, 46, 0.04);
  --shadow-lg: 0 20px 40px -12px rgba(11, 26, 46, 0.12), 0 8px 16px -8px rgba(11, 26, 46, 0.08);
  --shadow-xl: 0 40px 80px -20px rgba(11, 26, 46, 0.18), 0 16px 32px -12px rgba(11, 26, 46, 0.10);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --serif: 'Fraunces', Georgia, serif;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5.2vw, 4.4rem); line-height: 1.05; font-weight: 400; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); line-height: 1.1; font-weight: 400; }
h3 { font-size: 1.35rem; line-height: 1.3; font-weight: 500; }
p { color: var(--ink-soft); }
em { font-style: italic; color: var(--accent); font-family: var(--serif); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
  padding: 10px 20px;
  font-size: 0.88rem;
}
.btn-ghost:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-link {
  background: transparent;
  color: var(--ink-soft);
  padding: 10px 0;
  font-size: 0.9rem;
}
.btn-link:hover { color: var(--accent); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-xl { padding: 20px 40px; font-size: 1.05rem; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--accent-bright), var(--accent));
  box-shadow: 0 0 0 3px var(--accent-glow);
  flex-shrink: 0;
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
@media (max-width: 820px) { .nav-links { display: none; } }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 400px at 50% 10%, var(--accent-glow), transparent 70%),
    radial-gradient(ellipse 600px 300px at 80% 70%, var(--pink-glow), transparent 70%),
    radial-gradient(ellipse 500px 280px at 15% 80%, rgba(201, 169, 97, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.pulse {
  width: 8px; height: 8px;
  background: var(--accent-bright);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { box-shadow: 0 0 0 8px transparent; }
}

.hero-title { margin-bottom: 24px; }
.hero-title em { color: var(--accent); }
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  margin-bottom: 36px;
  color: var(--ink-soft);
}
.hero-sub strong { color: var(--ink); font-weight: 600; }

.hero-cta-row {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 36px;
  align-items: center;
}

/* Hero 2-col grid with booking on right */
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}
.hero-grid .hero-title { max-width: none; }
.hero-grid .hero-sub { max-width: 560px; }
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-grid .hero-cta-row { justify-content: center; }
  .hero-grid .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-grid .platform-pills { justify-content: center; }
}

/* Platform pills (Instagram, TikTok, YouTube, Facebook) */
.platform-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.platform-pill:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.platform-pill .pp-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.platform-pill.ig .pp-dot { background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%); }
.platform-pill.tt .pp-dot { background: linear-gradient(135deg, #25F4EE 0%, #000 50%, #FE2C55 100%); }
.platform-pill.yt .pp-dot { background: #FF0000; }
.platform-pill.fb .pp-dot { background: #0866FF; }

/* ============ HERO FEED MOCKUP (right column) ============ */
.hero-feed {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}
.feed-stack {
  position: relative;
  height: 540px;
  perspective: 1200px;
}
.feed-card {
  position: absolute;
  width: 280px;
  background: var(--white);
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.feed-card:hover { transform: translateY(-6px) rotate(0) !important; }

.feed-card-1 {
  top: 0; left: 0;
  transform: rotate(-6deg);
  z-index: 3;
  animation: feedFloat1 7s ease-in-out infinite;
}
.feed-card-2 {
  top: 60px; right: 0;
  transform: rotate(5deg);
  z-index: 2;
  animation: feedFloat2 8s ease-in-out infinite 0.5s;
}
.feed-card-3 {
  bottom: 0; left: 30px;
  transform: rotate(-3deg);
  z-index: 1;
  animation: feedFloat3 9s ease-in-out infinite 1s;
}
@keyframes feedFloat1 {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(-5deg) translateY(-8px); }
}
@keyframes feedFloat2 {
  0%, 100% { transform: rotate(5deg) translateY(0); }
  50% { transform: rotate(4deg) translateY(-10px); }
}
@keyframes feedFloat3 {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(-2deg) translateY(-6px); }
}

.feed-head {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
}
.feed-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--pink) 100%);
  padding: 2px;
}
.feed-avatar-inner {
  width: 100%; height: 100%;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}
.feed-handle { font-size: 0.82rem; font-weight: 600; color: var(--ink); line-height: 1.1; }
.feed-tag { font-size: 0.7rem; color: var(--ink-dim); line-height: 1.1; }
.feed-img {
  height: 200px;
  background: linear-gradient(135deg, #f4e4f0 0%, #d9e6f5 100%);
  position: relative;
  overflow: hidden;
}
.feed-img.gradient-1 { background: linear-gradient(135deg, #ffd6e8 0%, #c7e5ff 100%); }
.feed-img.gradient-2 { background: linear-gradient(135deg, #d9f4e6 0%, #e8d8f5 100%); }
.feed-img.gradient-3 { background: linear-gradient(135deg, #fff1d6 0%, #f8d4e3 100%); }
.feed-img-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  text-align: center;
  line-height: 1.2;
}
.feed-img-text em { color: var(--accent); font-style: italic; }
.feed-actions {
  display: flex; gap: 12px;
  padding: 10px 14px 6px;
}
.feed-action {
  font-size: 1.15rem;
}
.feed-stats {
  padding: 0 14px 12px;
  font-size: 0.76rem;
  color: var(--ink);
}
.feed-stats strong { font-weight: 700; }
.feed-stats-row {
  display: flex; gap: 12px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  margin-top: 4px;
}
.feed-stats-row span strong { color: var(--ink); }

/* Booking column inside hero (mirrors system page) */
.hero-booking-col .booking-wrap { margin: 0; }
.hero-booking-col .booking-frame iframe { min-height: 560px; }

.slot-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79, 118, 180, 0.08);
  border: 1px solid rgba(79, 118, 180, 0.2);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 14px;
}
.slot-pill .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(79, 118, 180, 0.5);
  animation: slot-pulse 2s infinite;
}
@keyframes slot-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(79, 118, 180, 0.5); }
  70%  { box-shadow: 0 0 0 10px rgba(79, 118, 180, 0); }
  100% { box-shadow: 0 0 0 0 rgba(79, 118, 180, 0); }
}

/* Marquee */
.marquee {
  margin-top: 64px;
  margin-bottom: -60px;
  padding: 24px 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marquee-scroll 40s linear infinite;
}
.marquee-track img {
  height: 64px;
  width: auto;
  display: block;
  flex-shrink: 0;
  opacity: 0.9;
  padding-right: 48px;
}
/* Marquee keeps rolling even on hover */
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 640px) {
  .marquee-track img { height: 44px; padding-right: 32px; }
  .marquee { margin-top: 48px; }
}

/* ============ SECTION HEADERS ============ */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-eyebrow.dim { color: var(--ink-dim); }
.section-title { margin-bottom: 20px; }
.section-sub { font-size: 1.08rem; color: var(--ink-soft); }

/* ============ VANITY VS REAL ============ */
.vanity-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}
.vanity-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
  max-width: 1040px;
  margin: 0 auto;
}
@media (max-width: 820px) {
  .vanity-grid { grid-template-columns: 1fr; gap: 20px; }
  .vanity-vs { transform: rotate(90deg); justify-self: center; }
}
.vanity-col {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.vanity-col:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.vanity-no { border-top: 4px solid var(--ink-dim); }
.vanity-yes {
  border-top: 4px solid var(--accent);
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-warm) 100%);
}
.vanity-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.vanity-no .vanity-tag { background: #F3F4F6; color: var(--ink-dim); }
.vanity-yes .vanity-tag { background: var(--accent-glow); color: var(--accent); }
.vanity-col h3 {
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.vanity-list {
  list-style: none;
  padding: 0;
}
.vanity-list li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border-soft);
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
.vanity-list li:last-child { border-bottom: none; }
.vanity-list .vmark {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  font-weight: 700;
  margin-top: 2px;
}
.vanity-no .vmark { background: #F3F4F6; color: var(--ink-dim); }
.vanity-yes .vmark { background: var(--accent-soft); color: var(--accent); }
.vanity-list strong { color: var(--ink); font-weight: 600; }

.vanity-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--accent);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px dashed var(--accent-bright);
  box-shadow: 0 0 0 6px var(--accent-glow);
  align-self: center;
}

/* ============ COMMUNITY CALCULATOR ============ */
.calc-section { padding: 100px 0; background: var(--bg); position: relative; }
.calc-card {
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--white) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-xl);
  max-width: 1040px;
  margin: 0 auto;
}
.calc-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 760px) {
  .calc-inputs { grid-template-columns: 1fr; gap: 32px; }
  .calc-card { padding: 28px; }
}
.input-group { display: flex; flex-direction: column; }
.input-label-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}
.input-group label {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.input-value {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  min-width: 120px;
  text-align: right;
  flex-shrink: 0;
}
.input-hint {
  font-size: 0.8rem;
  color: var(--ink-dim);
  margin-top: 10px;
  font-style: italic;
}
.input-icon { display: inline-block; margin-right: 4px; font-size: 1rem; }

.calc-hint-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 10px 18px;
  background: var(--accent-glow);
  border: 1px dashed var(--accent-bright);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--accent);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  animation: hintBounce 2.4s ease-in-out infinite;
}
.calc-hint-icon { font-size: 1rem; animation: hintPoint 1.6s ease-in-out infinite; }
@keyframes hintBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
@keyframes hintPoint {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

.slider-wrap { position: relative; padding-top: 38px; }
.slider-bubble {
  position: absolute;
  top: 0; left: 0;
  transform: translateX(-50%);
  padding: 5px 12px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--serif);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 6px 16px rgba(11, 26, 46, 0.25);
  transition: left 0.12s ease, transform 0.12s ease;
  z-index: 2;
  font-variant-numeric: tabular-nums;
  min-width: 86px;
  text-align: center;
}
.slider-bubble::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: var(--ink);
}
.slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 10px;
  background: var(--border);
  border-radius: 999px;
  outline: none;
  transition: background 0.2s;
  cursor: pointer;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 32px; height: 32px;
  background: radial-gradient(circle at 30% 30%, var(--white) 0%, #f4f1ea 100%);
  border: 4px solid var(--accent);
  border-radius: 50%;
  cursor: grab;
  box-shadow: 0 0 0 6px var(--accent-glow), 0 6px 16px rgba(79, 118, 180, 0.35);
  transition: transform 0.15s, box-shadow 0.2s;
}
.slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 0 0 10px var(--accent-glow), 0 8px 22px rgba(79, 118, 180, 0.45);
}
.slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.25); }
.slider::-moz-range-thumb {
  width: 32px; height: 32px;
  background: radial-gradient(circle at 30% 30%, var(--white) 0%, #f4f1ea 100%);
  border: 4px solid var(--accent);
  border-radius: 50%;
  cursor: grab;
}
.slider-scale {
  display: flex; justify-content: space-between;
  margin-top: 14px;
  font-size: 0.75rem;
  color: var(--ink-dim);
}
.slider-scale span { position: relative; padding-top: 8px; }
.slider-scale span::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 2px; height: 4px;
  background: var(--border);
  border-radius: 2px;
}

.calc-results {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 900px) { .calc-results { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.result-card {
  padding: 24px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 0;
  overflow: hidden;
}
.result-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.result-primary {
  background: linear-gradient(135deg, var(--ink) 0%, #1a2d4a 100%);
  border: none;
}
.result-primary .result-label,
.result-primary .result-foot { color: rgba(255, 255, 255, 0.65); }
.result-primary .result-value { color: var(--white); }
.result-roi {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
  border: none;
}
.result-roi .result-label,
.result-roi .result-foot { color: rgba(255, 255, 255, 0.8); }
.result-roi .result-value { color: var(--white); }
.result-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-dim);
  margin-bottom: 10px;
}
.result-value {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  min-height: 1.1em;
}
.result-foot { font-size: 0.75rem; color: var(--ink-dim); }

.calc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  background: var(--bg-warm);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--ink-soft);
  flex-wrap: wrap;
}
.calc-foot strong { color: var(--ink); }

/* ============ PILLARS (the system) ============ */
.system-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; max-width: 560px; } }

.step {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-bright);
}
.step::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.step:hover::after { opacity: 1; }
.step-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  line-height: 1;
  position: relative;
}
.step h3 { margin-bottom: 10px; position: relative; }
.step p { font-size: 0.92rem; position: relative; }

.system-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px;
  flex-wrap: wrap;
}
.system-cta span { color: var(--ink-soft); font-size: 0.95rem; }

/* ============ CONTENT TYPES (what we make) ============ */
.content-section { padding: 120px 0; background: var(--white); }
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) { .content-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .content-grid { grid-template-columns: 1fr; } }

.content-card {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.content-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-bright);
}
.content-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-glow) 0%, var(--pink-glow) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.content-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.content-card p { font-size: 0.92rem; }
.content-card .content-meta {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
  font-size: 0.78rem;
  color: var(--ink-dim);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ============ FRICTION ============ */
.friction-section { padding: 120px 0; background: var(--bg); }
.friction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .friction-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .friction-grid { grid-template-columns: 1fr; } }

.friction-card {
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: transform 0.3s, box-shadow 0.3s;
}
.friction-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.friction-positive { background: linear-gradient(135deg, #F0FDF4 0%, var(--white) 100%); border-color: var(--accent-soft); }

.friction-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 16px;
  background: #FEE2E2;
  color: #B91C1C;
}
.friction-positive .friction-icon { background: var(--accent-soft); color: var(--accent); }
.friction-card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.friction-card p { font-size: 0.92rem; }

/* ============ COMMENTS WALL ============ */
.comments-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}
.comments-wall {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .comments-wall { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .comments-wall { grid-template-columns: 1fr; } }
.comment-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.comment-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.comment-head {
  display: flex; align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.comment-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--pink) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
  flex-shrink: 0;
}
.comment-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
}
.comment-handle { font-size: 0.74rem; color: var(--ink-dim); }
.comment-body {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.comment-body strong { color: var(--ink); font-weight: 600; }
.comment-foot {
  margin-top: 12px;
  display: flex; gap: 14px;
  font-size: 0.74rem;
  color: var(--ink-dim);
}
.comment-foot span { display: inline-flex; align-items: center; gap: 4px; }

/* ============ PROOF (videos + tile screenshots) ============ */
.proof-section { padding: 120px 0; background: var(--white); }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 760px) { .proof-grid { grid-template-columns: 1fr; } }

.proof-video, .proof-testimonial, .proof-screenshot {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.proof-video:hover, .proof-testimonial:hover, .proof-screenshot:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.proof-video {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #1a2d4a 0%, var(--ink) 100%);
}
.proof-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
.proof-video-frame wistia-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.proof-video-meta {
  padding: 18px 20px;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.proof-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; }
.proof-stat { font-size: 0.82rem; color: var(--accent-soft); }

.proof-testimonial {
  padding: 36px;
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg) 100%);
  position: relative;
}
.quote-mark {
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--accent);
  line-height: 0.8;
  opacity: 0.3;
  margin-bottom: 8px;
}
.proof-testimonial p {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 16px;
}
.proof-attrib { font-size: 0.85rem; color: var(--ink-dim); }
.proof-attrib strong { color: var(--ink); }

.proof-screenshot {
  background: var(--ink);
  padding: 0;
  color: var(--white);
}
.screenshot-header {
  background: #14243d;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.screenshot-header .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.screenshot-header .dot:nth-child(1) { background: #FF5F57; }
.screenshot-header .dot:nth-child(2) { background: #FEBC2E; }
.screenshot-header .dot:nth-child(3) { background: #28C840; }
.screenshot-title {
  margin-left: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
}
.screenshot-body { padding: 16px; }
.notif {
  padding: 10px 12px;
  margin-bottom: 6px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  border-left: 2px solid var(--accent-bright);
  animation: slideIn 0.5s ease forwards;
  opacity: 0;
}
.notif:nth-child(1) { animation-delay: 0.1s; }
.notif:nth-child(2) { animation-delay: 0.2s; }
.notif:nth-child(3) { animation-delay: 0.3s; }
.notif:nth-child(4) { animation-delay: 0.4s; }
.notif:nth-child(5) { animation-delay: 0.5s; }
.notif:nth-child(6) { animation-delay: 0.6s; }
.notif-highlight {
  background: var(--accent-glow);
  color: var(--accent-bright);
  font-weight: 600;
  text-align: center;
  border-left-color: var(--accent-bright);
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: translateX(0); }
}

.proof-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-dim);
  font-style: italic;
  max-width: 600px;
  margin: 24px auto 0;
}

/* ============ FIT ============ */
.fit-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1040px;
  margin: 0 auto;
}
@media (max-width: 820px) { .fit-grid { grid-template-columns: 1fr; gap: 32px; } }

.fit-col {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.fit-yes { border-top: 4px solid var(--accent); }
.fit-no {
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-warm) 100%);
  border-top: 4px solid var(--ink-dim);
}
.fit-title { margin-bottom: 24px; font-size: 1.6rem; }
.fit-list { list-style: none; }
.fit-list li {
  display: flex; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border-soft);
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.fit-list li:last-child { border-bottom: none; }
.fit-list strong { color: var(--ink); font-weight: 600; }
.check, .x {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 2px;
}
.check { background: var(--accent-soft); color: var(--accent); }
.x { background: #F3F4F6; color: var(--ink-dim); }

/* ============ CTA ============ */
.cta-section { padding: 120px 0; background: var(--white); }
.cta-card {
  max-width: 880px;
  margin: 0 auto;
  padding: 80px 48px;
  background: linear-gradient(135deg, var(--ink) 0%, #14243d 100%);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 20%, var(--accent-glow), transparent 60%),
    radial-gradient(ellipse 600px 400px at 80% 80%, var(--pink-glow), transparent 60%);
  pointer-events: none;
}
.cta-card > * { position: relative; z-index: 1; }

.cta-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--accent-soft);
  margin-bottom: 28px;
}
.cta-title { color: var(--white); margin-bottom: 20px; }
.cta-title em { color: var(--accent-bright); }
.cta-sub {
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 1.02rem;
}
.cta-card .btn-primary {
  background: var(--accent-bright);
  color: var(--ink);
}
.cta-card .btn-primary:hover { background: var(--white); }
.cta-foot {
  margin-top: 28px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-foot-badge { display: inline-flex; align-items: center; gap: 4px; }
@media (max-width: 560px) { .cta-card { padding: 56px 24px; } }

/* Founders image */
.founders-image {
  max-width: 400px;
  margin: 50px auto 0px;
  position: relative;
}
.founders-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(11, 26, 46, 0.12));
}
@media (max-width: 560px) {
  .founders-image { max-width: 340px; margin-bottom: 0px; }
}

/* Booking iframe wrapper (same as system) */
.booking-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.08);
  overflow: hidden;
  margin: 0 auto;
  max-width: 760px;
  position: relative;
  scroll-margin-top: 100px;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}
.booking-wrap.booking-highlight {
  transform: translateY(-4px);
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.5),
    0 0 0 3px var(--accent-bright),
    0 0 0 8px var(--accent-glow);
}
.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
  color: var(--ink);
}
.booking-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
}
.booking-header-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
  animation: pulse 2s infinite;
}
.booking-header-right {
  font-size: 0.78rem;
  color: var(--ink-dim);
  font-weight: 500;
}
.booking-frame {
  position: relative;
  min-height: 600px;
  background: var(--white);
}
.booking-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-dim);
  font-size: 0.9rem;
  z-index: 0;
}
.booking-frame iframe {
  position: relative;
  width: 100%;
  min-height: 600px;
  border: none;
  display: block;
  z-index: 1;
  background: var(--white);
}
@media (max-width: 640px) {
  .booking-header-right { display: none; }
  .booking-frame, .booking-frame iframe { min-height: 560px; }
}

/* Sticky floating CTA */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 95;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.sticky-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.sticky-cta .btn-primary {
  box-shadow: 0 12px 32px -8px rgba(11, 26, 46, 0.35), 0 4px 12px rgba(11, 26, 46, 0.15);
  padding: 16px 28px;
  font-size: 0.95rem;
  font-weight: 600;
}
@media (max-width: 720px) {
  .sticky-cta { bottom: 16px; right: 16px; left: 16px; }
  .sticky-cta .btn-primary { width: 100%; justify-content: center; }
}

/* ============ FOOTER ============ */
.footer {
  padding: 48px 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-note {
  font-size: 0.85rem;
  color: var(--ink-dim);
  margin-top: 8px;
}
.footer-copy {
  font-size: 0.82rem;
  color: var(--ink-dim);
}

/* ============ REVEAL ON SCROLL ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============ METRICS TICKER (animated counters) ============ */
.metrics-section {
  padding: 80px 0;
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.metrics-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 300px at 20% 30%, var(--accent-glow), transparent 60%),
    radial-gradient(ellipse 500px 280px at 80% 70%, var(--pink-glow), transparent 60%);
  pointer-events: none;
}
.metrics-section .container { position: relative; z-index: 1; }
.metrics-section .section-header { margin-bottom: 48px; }
.metrics-section .section-eyebrow { color: var(--accent-bright); }
.metrics-section .section-title { color: var(--white); }
.metrics-section .section-sub { color: rgba(255, 255, 255, 0.7); }
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 900px) { .metrics-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .metrics-grid { grid-template-columns: 1fr; } }
.metric {
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.metric:hover {
  transform: translateY(-3px);
  border-color: var(--accent-bright);
  background: rgba(255, 255, 255, 0.08);
}
.metric-num {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.metric-num span { color: var(--accent-bright); font-size: 0.7em; margin-left: 2px; }
.metric-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-bright);
  margin-bottom: 6px;
}
.metric-foot {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.45;
}

/* =============================================================
   DYNAMIC SOCIAL-MEDIA-ENERGY LAYER
   (everything below makes the page feel alive on first load)
   ============================================================= */

/* ---------- Story-ring gradient (IG-style) ---------- */
.story-ring {
  position: relative;
  border-radius: 50%;
  padding: 3px;
  background: conic-gradient(from 0deg,
    #FFB000, #FF5757, #FF0080, #B700FF, #6E00FF, #00C2FF, #00E586, #FFB000);
  display: inline-flex;
  animation: storyRingSpin 9s linear infinite;
}
.story-ring-inner {
  background: var(--bg);
  border-radius: 50%;
  padding: 2px;
  display: inline-flex;
}
@keyframes storyRingSpin { to { transform: rotate(360deg); } }

/* Make the brand-mark in the social nav pulse with story-ring vibe */
.nav .brand-mark {
  background: conic-gradient(from 0deg,
    #FFB000, #FF5757, #FF0080, #B700FF, #6E00FF, #00C2FF, #00E586, #FFB000);
  animation: storyRingSpin 8s linear infinite;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.6);
}

/* ---------- Animated hero blobs ---------- */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
  will-change: transform;
}
.hero-blob-1 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(232, 121, 162, 0.5) 0%, transparent 70%);
  top: 8%; left: -8%;
  animation: blobDrift1 16s ease-in-out infinite;
}
.hero-blob-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(79, 118, 180, 0.42) 0%, transparent 70%);
  top: 25%; right: -8%;
  animation: blobDrift2 19s ease-in-out infinite;
}
.hero-blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.32) 0%, transparent 70%);
  bottom: 0%; left: 30%;
  animation: blobDrift3 17s ease-in-out infinite;
}
@keyframes blobDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -25px) scale(1.08); }
}
@keyframes blobDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 35px) scale(0.95); }
}
@keyframes blobDrift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 20px) scale(1.1); }
}

/* ---------- Floating emoji reactions (background layer, blurred) ---------- */
.float-emojis {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.float-emoji {
  position: absolute;
  bottom: -50px;
  font-size: 1.5rem;
  opacity: 0;
  filter: blur(2px);
  animation: emojiRise var(--dur, 11s) ease-in var(--delay, 0s) infinite;
}
@keyframes emojiRise {
  0%   { opacity: 0;   transform: translateY(0) translateX(0) scale(0.4) rotate(0); }
  10%  { opacity: 0.35; transform: translateY(-50px) translateX(0) scale(1) rotate(5deg); }
  85%  { opacity: 0.28; }
  100% { opacity: 0;
         transform: translateY(-720px) translateX(var(--drift, 20px))
                    scale(1.15) rotate(var(--rot, 18deg)); }
}

/* ---------- Word rotator (morphing word in title) ---------- */
.word-rotator {
  display: inline-block;
  position: relative;
  vertical-align: bottom;
  height: 1.1em;
  line-height: 1.05;
  overflow: hidden;
  min-width: 4ch;
  text-align: left;
}
.word-rotator-list {
  list-style: none;
  padding: 0; margin: 0;
  animation: wordCycle 18s cubic-bezier(0.7, 0, 0.3, 1) infinite;
}
.word-rotator-list li {
  height: 1.1em;
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  white-space: nowrap;
}
.word-rotator-list li.gradient {
  background: linear-gradient(135deg, #F58529 0%, #DD2A7B 40%, #8134AF 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.word-rotator-list li.gradient-2 {
  background: linear-gradient(135deg, #25F4EE 0%, #4F76B4 50%, #FE2C55 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@keyframes wordCycle {
  0%,  14%  { transform: translateY(0); }
  18%, 32%  { transform: translateY(-1.1em); }
  36%, 50%  { transform: translateY(-2.2em); }
  54%, 68%  { transform: translateY(-3.3em); }
  72%, 86%  { transform: translateY(-4.4em); }
  90%, 100% { transform: translateY(-5.5em); }
}

/* ---------- Platform-flip in eyebrow ---------- */
.platform-flip-name {
  display: inline-block;
  position: relative;
  height: 1.2em;
  overflow: hidden;
  vertical-align: bottom;
  min-width: 8ch;
}
.platform-flip-list {
  list-style: none;
  padding: 0; margin: 0;
  animation: platformFlip 12s steps(4, end) infinite;
}
.platform-flip-list li {
  height: 1.2em;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 0.82rem;
}
.platform-flip-list li.ig {
  background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.platform-flip-list li.tt {
  background: linear-gradient(135deg, #25F4EE 0%, #000 50%, #FE2C55 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.platform-flip-list li.yt { color: #FF0000; }
.platform-flip-list li.fb { color: #0866FF; }
@keyframes platformFlip {
  0%, 22%   { transform: translateY(0); }
  25%, 47%  { transform: translateY(-1.2em); }
  50%, 72%  { transform: translateY(-2.4em); }
  75%, 97%  { transform: translateY(-3.6em); }
  100%      { transform: translateY(-4.8em); }
}

/* ---------- Hero title accent ---------- */
.hero-title { position: relative; }
.hero-title .word-rotator { font-style: italic; }

/* ---------- Live pulse (small under hero CTA) ---------- */
.live-pulse {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 500;
  margin-top: 4px;
  max-width: 100%;
}
.live-pulse strong {
  color: var(--ink);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.live-pulse-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #FF3B3B;
  flex-shrink: 0;
  position: relative;
  animation: livePulseDot 1.6s infinite;
}
.live-pulse-dot::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(255, 59, 59, 0.4);
  animation: livePulseRing 1.6s infinite;
}
@keyframes livePulseDot {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
@keyframes livePulseRing {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* ---------- Live notification ticker bar ---------- */
.live-ticker-section {
  background: linear-gradient(90deg, var(--ink) 0%, #14243d 50%, var(--ink) 100%);
  color: var(--white);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
/* Edge fades: gradient overlays in the same dark-blue color so the items
   fade into the bg without revealing the page behind. */
.live-ticker-section::before,
.live-ticker-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}
.live-ticker-section::before {
  left: 0;
  background: linear-gradient(90deg, var(--ink) 0%, rgba(11, 26, 46, 0) 100%);
}
.live-ticker-section::after {
  right: 0;
  background: linear-gradient(270deg, var(--ink) 0%, rgba(11, 26, 46, 0) 100%);
}
.live-ticker {
  display: flex;
  align-items: center;
  gap: 0;
  animation: tickerScroll 60s linear infinite;
  width: max-content;
}
/* Live ticker keeps scrolling on hover */
.live-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 24px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  white-space: nowrap;
}
.live-ticker-item .lt-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #FF3B3B;
  box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.6);
  animation: liveDot 1.6s infinite;
  flex-shrink: 0;
}
.live-ticker-item .lt-emoji { font-size: 1.05rem; }
.live-ticker-item strong { color: var(--white); font-weight: 600; }
@keyframes liveDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.6); }
  50% { box-shadow: 0 0 0 6px rgba(255, 59, 59, 0); }
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Shimmer / animated CTA ---------- */
.btn-shimmer {
  position: relative;
  background: linear-gradient(120deg,
    var(--ink) 0%, var(--ink) 35%,
    var(--accent) 50%,
    var(--ink) 65%, var(--ink) 100%);
  background-size: 250% 100%;
  animation: btnShimmer 4.5s ease-in-out infinite;
  overflow: hidden;
}
.btn-shimmer::after {
  content: '';
  position: absolute;
  top: -50%; left: -100%;
  width: 50%; height: 200%;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  animation: btnSheen 4.5s ease-in-out infinite;
}
@keyframes btnShimmer {
  0%, 100% { background-position: 200% 0; }
  50% { background-position: -50% 0; }
}
@keyframes btnSheen {
  0%, 60% { left: -100%; }
  100% { left: 200%; }
}

/* ---------- Platform pill enhanced hover ---------- */
.platform-pill {
  cursor: default;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.platform-pill:hover {
  transform: translateY(-4px) scale(1.05) rotate(-1.5deg);
  box-shadow: var(--shadow-md);
}
.platform-pill .pp-dot {
  transition: transform 0.3s ease;
}
.platform-pill:hover .pp-dot {
  transform: scale(1.4);
}

/* ---------- Comments wall: 3 scrolling columns ---------- */
.comments-scroll-wall {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  height: 600px;
  overflow: hidden;
  mask-image: linear-gradient(180deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 10%, black 90%, transparent 100%);
}
.comments-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  will-change: transform;
}
.comments-col-1 { animation: commentsUp 38s linear infinite; }
.comments-col-2 { animation: commentsDown 42s linear infinite; }
.comments-col-3 { animation: commentsUp 50s linear infinite; }
/* Comments wall keeps scrolling on hover */
@keyframes commentsUp {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}
@keyframes commentsDown {
  from { transform: translateY(-50%); }
  to { transform: translateY(0); }
}
@media (max-width: 900px) {
  .comments-scroll-wall { grid-template-columns: repeat(2, 1fr); height: 540px; }
  .comments-col-3 { display: none; }
}
@media (max-width: 600px) {
  .comments-scroll-wall { grid-template-columns: 1fr; height: 500px; }
  .comments-col-2 { display: none; }
}

/* Story-ring avatars in comments */
.comment-avatar.has-ring {
  background: conic-gradient(from 0deg,
    #FFB000, #FF5757, #FF0080, #B700FF, #6E00FF, #00C2FF, #00E586, #FFB000) !important;
  padding: 2px;
  position: relative;
}
.comment-avatar.has-ring::before {
  content: '';
  position: absolute;
  inset: 2px;
  background: var(--white);
  border-radius: 50%;
}
.comment-avatar.has-ring > span {
  position: relative;
  z-index: 1;
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--accent), var(--pink));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  color: var(--white);
  font-weight: 600;
  font-size: 0.82rem;
}

/* ---------- Section title fancy underline ---------- */
.section-title-fancy {
  position: relative;
  display: inline-block;
}
.section-title-fancy::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 80px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--pink), var(--gold));
  transform: translateX(-50%) scaleX(0.4);
  animation: underlineSlide 3.4s ease-in-out infinite;
}
@keyframes underlineSlide {
  0%, 100% { transform: translateX(-50%) scaleX(0.4); opacity: 0.65; }
  50% { transform: translateX(-50%) scaleX(1); opacity: 1; }
}

/* ---------- Hero booking column extras ---------- */
.hero-booking-col {
  position: relative;
  z-index: 2;
}
.hero-booking-col::before {
  content: '';
  position: absolute;
  inset: -40px -30px;
  background: radial-gradient(ellipse 450px 360px at 50% 40%, var(--accent-glow), transparent 70%);
  pointer-events: none;
  z-index: -1;
  border-radius: 50%;
  animation: bookingGlow 5s ease-in-out infinite;
}
@keyframes bookingGlow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.05); }
}

/* ---------- Hero content positioning context ---------- */
.hero-content { position: relative; }

/* ---------- Floating mini reaction cards in hero (decorative) ---------- */
.reaction-bubble {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-md);
  z-index: 3;
  animation: bubbleFloat 6s ease-in-out infinite;
  pointer-events: none;
  white-space: nowrap;
}
.reaction-bubble .rb-icon { font-size: 1rem; }
.reaction-bubble.rb-likes {
  top: -10px; right: 10px;
  animation-delay: 0s;
  color: #FF3B5C;
  transform: rotate(4deg);
}
.reaction-bubble.rb-dms {
  top: 230px; right: -20px;
  animation-delay: 1.2s;
  color: var(--accent);
  transform: rotate(-3deg);
}
.reaction-bubble.rb-followers {
  bottom: 80px; right: 30px;
  animation-delay: 2.4s;
  transform: rotate(2deg);
}
@keyframes bubbleFloat {
  0%, 100% { transform: translateY(0) rotate(var(--rb-rot, -2deg)); }
  50% { transform: translateY(-10px) rotate(calc(var(--rb-rot, -2deg) + 4deg)); }
}
.reaction-bubble.rb-likes      { --rb-rot: 4deg; }
.reaction-bubble.rb-dms        { --rb-rot: -3deg; }
.reaction-bubble.rb-followers  { --rb-rot: 2deg; }
@media (max-width: 1180px) {
  .reaction-bubble.rb-likes { right: 0; }
  .reaction-bubble.rb-dms { right: -10px; top: 250px; }
}
@media (max-width: 980px) {
  .reaction-bubble { display: none; }
}

/* ---------- Tilted phone preview in hero ---------- */
.phone-preview {
  position: absolute;
  right: -20px;
  bottom: -40px;
  width: 130px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
  animation: phoneFloat 5s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: rotate(8deg) translateY(0); }
  50% { transform: rotate(6deg) translateY(-8px); }
}

/* ---------- Eyebrow with platform flip ---------- */
.eyebrow-flip {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  white-space: nowrap;
}
.eyebrow-flip .platform-flip-name { vertical-align: top; }

/* ---------- Click-to-react: emoji burst on CTA ---------- */
.emoji-burst {
  position: relative;
}

/* ---------- Subtle scroll-jiggle on emoji ---------- */
@media (prefers-reduced-motion: reduce) {
  .word-rotator-list,
  .platform-flip-list,
  .live-ticker,
  .float-emoji,
  .hero-blob,
  .comments-col,
  .nav .brand-mark,
  .btn-shimmer,
  .btn-shimmer::after { animation: none !important; }
}

/* ---------- Vanity vs Real: liven up ---------- */
.vanity-yes { position: relative; overflow: hidden; }
.vanity-yes::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--pink-glow) 0%, transparent 70%);
  animation: blobDrift1 12s ease-in-out infinite;
  pointer-events: none;
}

/* ---------- Vanity vs Real liven up ---------- */
.vanity-no { position: relative; overflow: hidden; }
.vanity-no::before {
  content: '';
  position: absolute;
  top: -40%; right: -30%;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 122, 146, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* =============================================================
   PHONE MOCKUP SECTION (3 tilted phones: story, reel, DM)
   ============================================================= */
.phones-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-warm) 100%);
  position: relative;
  overflow: hidden;
}
.phones-section::before,
.phones-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.5;
}
.phones-section::before {
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--pink-glow), transparent 70%);
  top: 5%; left: -8%;
  animation: blobDrift1 16s ease-in-out infinite;
}
.phones-section::after {
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  bottom: 5%; right: -10%;
  animation: blobDrift2 19s ease-in-out infinite;
}
.phones-section .container { position: relative; z-index: 1; }

.phone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: end;
}
@media (max-width: 900px) {
  .phone-grid { grid-template-columns: 1fr; gap: 60px; max-width: 320px; }
}

.phone {
  position: relative;
  width: 240px;
  height: 480px;
  margin: 0 auto;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  border-radius: 38px;
  padding: 10px;
  box-shadow:
    0 30px 60px -20px rgba(11, 26, 46, 0.35),
    0 8px 24px rgba(11, 26, 46, 0.15),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.phone:hover { transform: rotate(0) translateY(-8px) scale(1.02) !important; }
.phone-1 {
  transform: rotate(-7deg);
  animation: phoneFloat1 6s ease-in-out infinite;
}
.phone-2 {
  transform: rotate(3deg);
  animation: phoneFloat2 7s ease-in-out infinite 0.4s;
  z-index: 2;
}
.phone-3 {
  transform: rotate(-4deg);
  animation: phoneFloat3 8s ease-in-out infinite 0.8s;
}
@keyframes phoneFloat1 {
  0%, 100% { transform: rotate(-7deg) translateY(0); }
  50% { transform: rotate(-5deg) translateY(-12px); }
}
@keyframes phoneFloat2 {
  0%, 100% { transform: rotate(3deg) translateY(-10px); }
  50% { transform: rotate(1deg) translateY(-22px); }
}
@keyframes phoneFloat3 {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50% { transform: rotate(-2deg) translateY(-10px); }
}
@media (max-width: 900px) {
  .phone-1, .phone-2, .phone-3 {
    transform: rotate(0);
    animation: none;
  }
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone-notch {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 22px;
  background: #000;
  border-radius: 999px;
  z-index: 10;
}

/* Story progress bar */
.phone-progress {
  position: absolute;
  top: 38px; left: 14px; right: 14px;
  display: flex;
  gap: 3px;
  z-index: 5;
}
.phone-progress span {
  flex: 1;
  height: 2.5px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.phone-progress span.done::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
}
.phone-progress span.active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform-origin: left;
  animation: storyFill 5s linear infinite;
}
@keyframes storyFill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.phone-handle-row {
  position: absolute;
  top: 60px; left: 14px; right: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 5;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.phone-handle-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--pink));
  padding: 1.5px;
}
.phone-handle-avatar-inner {
  background: var(--white);
  border-radius: 50%;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 0.7rem;
  color: var(--ink);
  font-weight: 700;
}
.phone-handle-name {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.1;
}
.phone-handle-time {
  font-size: 0.66rem;
  font-weight: 400;
  opacity: 0.85;
  margin-left: 4px;
}

/* Phone 1 — Story (gradient bg + big caption) */
.phone-1 .phone-screen {
  background:
    radial-gradient(ellipse 200px 150px at 50% 30%, rgba(255,255,255,0.2), transparent 60%),
    linear-gradient(135deg, #f7c8d4 0%, #d9c3f0 50%, #c3d9f0 100%);
}
.phone-1 .phone-caption {
  position: absolute;
  bottom: 90px; left: 18px; right: 18px;
  z-index: 3;
}
.phone-1 .phone-caption-text {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.5);
}
.phone-1 .phone-caption-text em {
  color: #FF3B5C;
  font-style: italic;
}
.phone-1 .phone-poll {
  position: absolute;
  bottom: 32px; left: 18px; right: 18px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 8px 14px;
  font-size: 0.7rem;
  color: var(--ink);
  font-weight: 600;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.phone-1 .phone-poll strong { color: var(--accent); }

/* Phone 2 — Reel (with sidebar counters) */
.phone-2 .phone-screen {
  background:
    radial-gradient(circle at 30% 70%, rgba(255, 59, 92, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(79, 118, 180, 0.4) 0%, transparent 50%),
    linear-gradient(180deg, #1a1a2e 0%, #0d0d1f 100%);
}
.phone-2 .phone-reel-caption {
  position: absolute;
  bottom: 80px; left: 18px; right: 70px;
  z-index: 3;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.phone-2 .phone-reel-handle {
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.phone-2 .phone-reel-text {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.25;
}
.phone-2 .phone-reel-text em { color: #FFB000; font-style: italic; }

.phone-sidebar {
  position: absolute;
  right: 16px; bottom: 90px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 4;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.phone-sidebar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.phone-sidebar-icon {
  font-size: 1.6rem;
  line-height: 1;
}
.phone-sidebar-icon.heart {
  animation: heartBeat 1.8s infinite;
}
@keyframes heartBeat {
  0%, 70%, 100% { transform: scale(1); }
  10% { transform: scale(1.3); }
  20% { transform: scale(1); }
  30% { transform: scale(1.15); }
}

/* Phone 3 — DM thread */
.phone-3 .phone-screen {
  background: var(--white);
}
.phone-3 .phone-dm-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 50px 16px 14px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
}
.phone-3 .phone-dm-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  padding: 2px;
  background: conic-gradient(from 0deg,
    #FFB000, #FF5757, #FF0080, #B700FF, #6E00FF, #00C2FF, #00E586, #FFB000);
}
.phone-3 .phone-dm-avatar-inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.85rem;
}
.phone-3 .phone-dm-meta {
  flex: 1;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
}
.phone-3 .phone-dm-meta span {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  color: #4caf50;
  margin-top: 2px;
}
.phone-3 .phone-dm-body {
  position: absolute;
  top: 96px; bottom: 60px; left: 0; right: 0;
  padding: 14px 14px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.phone-dm-msg {
  max-width: 75%;
  padding: 9px 13px;
  font-size: 0.78rem;
  line-height: 1.35;
  border-radius: 16px;
  animation: msgPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}
.phone-dm-msg.in {
  background: #f0f0f5;
  color: var(--ink);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.phone-dm-msg.out {
  background: linear-gradient(135deg, var(--accent), var(--pink));
  color: var(--white);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.phone-dm-msg:nth-child(1) { animation-delay: 0.2s; }
.phone-dm-msg:nth-child(2) { animation-delay: 0.7s; }
.phone-dm-msg:nth-child(3) { animation-delay: 1.2s; }
.phone-dm-msg:nth-child(4) { animation-delay: 1.7s; }
.phone-dm-typing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 12px 14px;
  background: #f0f0f5;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  width: fit-content;
  animation: msgPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 2.2s backwards;
}
.phone-dm-typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ink-dim);
  animation: typingDot 1.2s ease-in-out infinite;
}
.phone-dm-typing span:nth-child(2) { animation-delay: 0.2s; }
.phone-dm-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%, 100% { opacity: 0.3; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.15); }
}
@keyframes msgPop {
  from { opacity: 0; transform: translateY(8px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.phone-3 .phone-dm-input {
  position: absolute;
  bottom: 12px; left: 12px; right: 12px;
  padding: 10px 14px;
  background: #f0f0f5;
  border-radius: 999px;
  font-size: 0.74rem;
  color: var(--ink-dim);
}

/* Phone caption / labels under each phone */
.phone-label {
  text-align: center;
  margin-top: 32px;
}
.phone-label-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--accent-glow);
  color: var(--accent);
  margin-bottom: 8px;
}
.phone-label h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.phone-label p {
  font-size: 0.86rem;
  color: var(--ink-soft);
}

/* =============================================================
   CORNER TOAST NOTIFICATIONS (live activity popups)
   ============================================================= */
.toast-stack {
  position: fixed;
  bottom: 90px;
  left: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  max-width: 320px;
}
.toast {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow:
    0 14px 36px -8px rgba(11, 26, 46, 0.22),
    0 4px 12px rgba(11, 26, 46, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  pointer-events: auto;
  border-left: 3px solid var(--accent);
}
.toast.in {
  transform: translateX(0);
  opacity: 1;
}
.toast.out {
  transform: translateX(-120%);
  opacity: 0;
}
.toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-glow), var(--pink-glow));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.toast-body strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.2;
  margin-bottom: 2px;
}
.toast-body span {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-dim);
}
@media (max-width: 720px) {
  .toast-stack {
    left: 12px; right: 12px;
    bottom: 84px;
    max-width: none;
  }
}

/* =============================================================
   SQUIGGLY UNDERLINE (under key italics)
   ============================================================= */
.squiggly {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.squiggly::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -8px;
  height: 8px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 8'><path d='M0 4 Q 7.5 0 15 4 T 30 4 T 45 4 T 60 4' stroke='%234F76B4' stroke-width='2.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: repeat-x;
  background-size: 60px 8px;
  background-position: 0 0;
  animation: squigglySlide 4s linear infinite;
  opacity: 0.85;
}
@keyframes squigglySlide {
  from { background-position: 0 0; }
  to { background-position: 60px 0; }
}

/* =============================================================
   METRIC COUNTER PULSE (after counted)
   ============================================================= */
.metric-num.pulse-bump {
  animation: metricPulse 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes metricPulse {
  0%   { transform: scale(1); color: var(--white); }
  40%  { transform: scale(1.18); color: var(--accent-bright); text-shadow: 0 0 18px rgba(79, 118, 180, 0.5); }
  100% { transform: scale(1); color: var(--white); }
}
.metric-bump-badge {
  display: inline-block;
  background: var(--accent-bright);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: middle;
  animation: badgeFlash 1.2s ease-out forwards;
}
@keyframes badgeFlash {
  0%   { opacity: 0; transform: translateY(-10px) scale(0.6); }
  20%  { opacity: 1; transform: translateY(0) scale(1.1); }
  40%  { transform: scale(1); }
  85%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(-8px) scale(0.9); }
}

/* =============================================================
   TILT CARDS on mouse move (content cards & metrics)
   ============================================================= */
.tilt {
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-style: preserve-3d;
  will-change: transform;
}



/* ============================================================
   REAL CLIENT REELS SECTION
   Cover thumbnails + click opens reel on Instagram
   ============================================================ */
.reels-section {
  position: relative;
  padding: 100px 0 90px;
  background: linear-gradient(180deg, #0B1A2E 0%, #14233e 60%, #0B1A2E 100%);
  color: var(--white);
  overflow: hidden;
}
.reels-section::before {
  content: '';
  position: absolute;
  top: -180px; left: 50%;
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(79, 118, 180, 0.35), transparent 65%);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}
.reels-section::after {
  content: '';
  position: absolute;
  bottom: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 157, 0.18), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.reels-section .container { position: relative; z-index: 2; }
.reels-section .section-title { color: var(--white); }
.reels-section .section-title em { color: #FFD580; font-style: italic; }
.reels-section .section-sub { color: rgba(255,255,255,0.72); }
.reels-section .section-sub strong { color: var(--white); }
.reels-section .section-eyebrow { color: rgba(255,255,255,0.5); }

/* Rail wrapper with nav buttons */
.reels-rail-wrap {
  position: relative;
  z-index: 2;
  margin: 60px 0 50px;
}

.reels-rail {
  overflow: hidden;
  padding: 30px 0 40px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.reels-track {
  display: flex;
  gap: 32px;
  width: max-content;
  padding: 0 max(5vw, 32px);
  animation: reels-slide 90s linear infinite;
  will-change: transform;
}
.reels-rail:hover .reels-track,
.reels-rail:focus-within .reels-track {
  animation-play-state: paused;
}
@keyframes reels-slide {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

.reel-card {
  flex-shrink: 0;
  width: 320px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: block;
}
.reel-card:hover { transform: translateY(-8px); }
.reel-card:hover .reel-play-btn { transform: scale(1.12); background: #fff; }
.reel-card:focus-visible { outline: 3px solid var(--accent-bright); outline-offset: 10px; border-radius: 32px; }

.reel-frame {
  position: relative;
  width: 100%;
  height: 568px;
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
  box-shadow:
    0 0 0 6px #1a1a1a,
    0 0 0 7px #2c2c2c,
    0 30px 60px -20px rgba(0,0,0,0.7),
    0 18px 40px -12px rgba(79, 118, 180, 0.4);
}

/* Gradient fallback per card (shows if cover image is missing) */
.reel-frame-1 .reel-frame { background: linear-gradient(135deg, #ff6b9d 0%, #c44569 50%, #6c5b7b 100%); }
.reel-frame-2 .reel-frame { background: linear-gradient(135deg, #5d8aa8 0%, #4F76B4 50%, #1f3658 100%); }
.reel-frame-3 .reel-frame { background: linear-gradient(135deg, #f8b500 0%, #ff6347 50%, #c0392b 100%); }
.reel-frame-4 .reel-frame { background: linear-gradient(135deg, #11998e 0%, #38ef7d 50%, #053b2c 100%); }
.reel-frame-5 .reel-frame { background: linear-gradient(135deg, #a55eea 0%, #6c5ce7 50%, #2d1b69 100%); }

.reel-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 1.2s ease;
}
.reel-card:hover .reel-cover { transform: scale(1.05); }

/* Subtle vignette so overlay text is always readable on any image */
.reel-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, transparent 22%, transparent 60%, rgba(0,0,0,0.75) 100%);
  pointer-events: none;
}

/* Top: small "Reel" badge */
.reel-overlay-top {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 4;
}
.reel-ig-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.18);
}
.reel-ig-icon { font-size: 9px; line-height: 1; }

/* Center: play button */
.reel-overlay-center {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.reel-play-btn {
  width: 78px; height: 78px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: #0B1A2E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  padding-left: 5px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.5);
  animation: reel-play-pulse 2.4s ease-out infinite;
  transition: transform 0.3s ease, background 0.3s ease;
}
@keyframes reel-play-pulse {
  0%   { box-shadow: 0 14px 32px rgba(0,0,0,0.5), 0 0 0 0 rgba(255,255,255,0.55); }
  70%  { box-shadow: 0 14px 32px rgba(0,0,0,0.5), 0 0 0 24px rgba(255,255,255,0); }
  100% { box-shadow: 0 14px 32px rgba(0,0,0,0.5), 0 0 0 0 rgba(255,255,255,0); }
}

/* Bottom: big views pill */
.reel-overlay-bottom {
  position: absolute;
  left: 0; right: 0; bottom: 22px;
  z-index: 4;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.reel-views-pill {
  text-align: center;
  color: #fff;
  text-shadow: 0 3px 14px rgba(0,0,0,0.7);
}
.reel-views-num {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 58px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.reel-views-label {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.9;
}

/* Stats caption below the phone */
.reel-meta {
  margin-top: 18px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.01em;
}
.reel-meta strong { color: #fff; font-weight: 600; }
.reel-meta-sep { opacity: 0.4; margin: 0 6px; }

/* ============ BEYOND THE NUMBERS CALLOUT ============ */
.reels-outcomes {
  position: relative;
  max-width: 720px;
  margin: 8px auto 36px;
  padding: 32px 28px 28px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 213, 128, 0.05) 0%, rgba(255, 213, 128, 0.02) 100%);
  border: 1px solid rgba(255, 213, 128, 0.18);
  text-align: center;
  overflow: hidden;
}
.reels-outcomes::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 60%;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, #FFD580, transparent);
  opacity: 0.6;
}

.reels-outcomes-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #FFD580;
  margin-bottom: 16px;
}
.reels-outcomes-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255, 213, 128, 0.16);
  border: 1px solid rgba(255, 213, 128, 0.45);
  font-size: 14px;
  font-weight: 400;
  font-family: var(--serif);
  color: #FFD580;
  letter-spacing: 0;
}

.reels-outcomes-text {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  margin: 0 auto 22px;
  max-width: 580px;
  font-weight: 400;
}
.reels-outcomes-text em {
  font-style: italic;
  color: #FFD580;
  font-weight: 500;
}

.reels-outcomes-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 10px;
  margin-top: 8px;
}
.reels-outcomes-chips span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.reels-outcomes-chips span:hover {
  background: rgba(255, 213, 128, 0.10);
  border-color: rgba(255, 213, 128, 0.35);
  transform: translateY(-2px);
}

.chip-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #FFD580;
  box-shadow: 0 0 0 0 rgba(255, 213, 128, 0.6);
  animation: chip-dot-pulse 2.4s ease-out infinite;
}
.reels-outcomes-chips span:nth-child(1) .chip-dot { animation-delay: 0s; }
.reels-outcomes-chips span:nth-child(2) .chip-dot { animation-delay: 0.4s; }
.reels-outcomes-chips span:nth-child(3) .chip-dot { animation-delay: 0.8s; }
.reels-outcomes-chips span:nth-child(4) .chip-dot { animation-delay: 1.2s; }
.reels-outcomes-chips span:nth-child(5) .chip-dot { animation-delay: 1.6s; }
@keyframes chip-dot-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 213, 128, 0.55); transform: scale(1); }
  60%  { box-shadow: 0 0 0 8px rgba(255, 213, 128, 0); transform: scale(1.15); }
  100% { box-shadow: 0 0 0 0 rgba(255, 213, 128, 0); transform: scale(1); }
}

/* CTA below rail */
.reels-cta {
  text-align: center;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.reels-cta span {
  font-size: 18px;
  color: rgba(255,255,255,0.92);
}
.reels-cta span em { color: #FFD580; font-style: italic; }

/* Mobile tweaks — show 2 cards fully + peek of 3rd in the slider */
@media (max-width: 720px) {
  .reels-section { padding: 70px 0 70px; }
  .reels-track { gap: 14px; animation-duration: 38s; padding: 0 12px; }
  .reel-card { width: 160px; }
  .reel-frame {
    height: 284px;
    border-radius: 22px;
    box-shadow:
      0 0 0 4px #1a1a1a,
      0 0 0 5px #2c2c2c,
      0 20px 40px -15px rgba(0,0,0,0.65),
      0 12px 28px -10px rgba(79, 118, 180, 0.35);
  }
  .reel-views-num { font-size: 32px; letter-spacing: -0.035em; }
  .reel-views-label { font-size: 9px; letter-spacing: 0.2em; margin-top: 3px; }
  .reel-play-btn { width: 48px; height: 48px; font-size: 16px; padding-left: 3px; }
  .reel-overlay-top { top: 8px; left: 8px; }
  .reel-ig-badge { font-size: 9px; padding: 4px 8px; gap: 5px; letter-spacing: 0.06em; }
  .reel-ig-icon { font-size: 7px; }
  .reel-overlay-bottom { bottom: 12px; }
  .reel-meta { font-size: 11px; margin-top: 10px; line-height: 1.45; }
  .reel-meta-sep { margin: 0 4px; }
  /* "Tap to watch" hover badge has no purpose on touch devices */
  .reel-card .reel-frame::before { display: none; }

  .reels-cta span { font-size: 16px; padding: 0 16px; }
  .reels-outcomes { margin: 8px 16px 28px; padding: 26px 20px 22px; }
  .reels-outcomes-text { font-size: 17px; }
}

/* Very small screens (iPhone SE size) — keep 2+ visible */
@media (max-width: 380px) {
  .reels-track { gap: 11px; padding: 0 10px; }
  .reel-card { width: 140px; }
  .reel-frame { height: 249px; }
  .reel-views-num { font-size: 28px; }
  .reel-play-btn { width: 42px; height: 42px; font-size: 14px; }
  .reel-meta { font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .reel-play-btn { animation: none; }
  .reels-track { animation: none; }
  .chip-dot { animation: none; }
  .reel-card, .reel-cover, .reels-outcomes-chips span { transition: none; }
}

/* ============================================================
   REELS CLOSER LINE (wedge thesis recap after the slider)
   ============================================================ */
.reels-closer {
  text-align: center;
  margin: 12px auto 32px;
  max-width: 600px;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  font-style: italic;
  color: rgba(255,255,255,0.78);
  letter-spacing: -0.01em;
}
.reels-closer strong {
  color: #fff;
  font-weight: 500;
  font-style: normal;
  font-family: var(--sans);
}
@media (max-width: 720px) {
  .reels-closer { font-size: 17px; padding: 0 20px; margin: 8px auto 24px; }
}

/* ============================================================
   REEL MODAL (popup that plays the IG reel inline)
   ============================================================ */
.reel-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 24px 56px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.reel-modal[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
}
.reel-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(20, 35, 62, 0.85) 0%, rgba(11, 26, 46, 0.94) 100%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
          backdrop-filter: blur(14px) saturate(140%);
}
.reel-modal-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 440px;
  margin: auto;
  background: linear-gradient(180deg, #0F0F12 0%, #0a0a0d 100%);
  border-radius: 24px;
  border: 1px solid rgba(255, 213, 128, 0.18);
  box-shadow:
    0 50px 100px -20px rgba(0,0,0,0.75),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 80px -10px rgba(255, 213, 128, 0.22);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}
.reel-modal[data-open="true"] .reel-modal-frame {
  transform: scale(1) translateY(0);
}

/* Top decorative gold accent line */
.reel-modal-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #FFD580, transparent);
  opacity: 0.5;
  z-index: 5;
}

/* Header with title + close button */
.reel-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px 14px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0));
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 3;
}
.reel-modal-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.92);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.reel-modal-title-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: #FFD580;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 213, 128, 0.6);
  animation: reel-modal-dot 2s ease-out infinite;
}
@keyframes reel-modal-dot {
  0%   { box-shadow: 0 0 0 0 rgba(255, 213, 128, 0.65); }
  70%  { box-shadow: 0 0 0 8px rgba(255, 213, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 213, 128, 0); }
}

.reel-modal-close {
  appearance: none;
  -webkit-appearance: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.9);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.25s ease, color 0.2s ease;
  flex-shrink: 0;
}
.reel-modal-close:hover,
.reel-modal-close:focus-visible {
  background: rgba(255, 213, 128, 0.18);
  border-color: rgba(255, 213, 128, 0.45);
  color: #FFD580;
  transform: rotate(90deg);
  outline: none;
}
.reel-modal-close svg { display: block; }

/* Body holds the IG iframe */
.reel-modal-body {
  position: relative;
  width: 100%;
  min-height: 640px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.reel-modal-body iframe {
  display: block;
  width: 100%;
  height: 640px;
  border: 0;
  background: #000;
}

/* Loading state with subtle spinner */
.reel-modal-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.reel-modal-spinner {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255, 213, 128, 0.15);
  border-top-color: #FFD580;
  animation: reel-modal-spin 0.9s linear infinite;
}
@keyframes reel-modal-spin {
  to { transform: rotate(360deg); }
}

/* "Press ESC or tap outside" hint just below the modal frame */
.reel-modal-hint {
  position: absolute;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  letter-spacing: 0.05em;
  white-space: nowrap;
  pointer-events: none;
}
.reel-modal-hint kbd {
  display: inline-block;
  margin: 0 4px;
  padding: 2px 7px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 5px;
  color: rgba(255,255,255,0.85);
}

@media (max-width: 520px) {
  .reel-modal { padding: 16px 16px 50px; }
  .reel-modal-frame { max-width: 100%; border-radius: 20px; }
  .reel-modal-header { padding: 12px 12px 12px 16px; }
  .reel-modal-title { font-size: 10px; letter-spacing: 0.16em; }
  .reel-modal-close { width: 34px; height: 34px; }
  .reel-modal-body, .reel-modal-body iframe { min-height: 560px; height: 560px; }
  .reel-modal-hint { font-size: 10px; bottom: -30px; }
}
@media (max-width: 380px) {
  .reel-modal-body, .reel-modal-body iframe { min-height: 500px; height: 500px; }
}

body.modal-open { overflow: hidden; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* Visual "Tap to watch" hint on hover so users know it opens a popup */
.reel-card .reel-frame::before {
  content: 'Tap to watch';
  position: absolute;
  top: 14px; right: 14px;
  z-index: 4;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255, 213, 128, 0.92);
  color: #0B1A2E;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.reel-card:hover .reel-frame::before {
  opacity: 1;
  transform: translateY(0);
}

/* ============ UNIFIED SERVICES DROPDOWN (site-wide nav) ============ */
.nav-links { align-items: center; }
.nav-links .nav-dd { position: relative; display: flex; align-items: center; }
.nav-dd-toggle {
  display: inline-flex; align-items: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 500;
  color: var(--ink-soft); padding: 8px 0; transition: color 0.2s;
}
.nav-dd-toggle:hover { color: var(--accent); }
.nav-dd-toggle .caret { font-size: 0.7rem; transition: transform 0.25s; }
.nav-dd:hover .nav-dd-toggle .caret, .nav-dd.open .nav-dd-toggle .caret { transform: rotate(180deg); }
.nav-dd-menu {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: 320px; padding: 10px; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transition: opacity 0.2s, transform 0.2s; z-index: 60;
}
.nav-dd-menu::before { content: ''; position: absolute; left: 0; right: 0; top: -14px; height: 16px; }
.nav-dd:hover .nav-dd-menu, .nav-dd:focus-within .nav-dd-menu, .nav-dd.open .nav-dd-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dd-item { display: flex; gap: 12px; align-items: flex-start; padding: 11px 13px; border-radius: 8px; text-decoration: none; transition: background 0.18s; }
.nav-dd-item:hover { background: var(--bg-warm); }
.nav-dd-ico { flex-shrink: 0; width: 32px; height: 32px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 1rem; background: var(--accent-glow); color: var(--accent); }
.nav-dd-tt { font-size: 0.88rem; font-weight: 600; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.nav-dd-tt .tag { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 2px 6px; border-radius: 5px; background: rgba(201,169,97,0.14); color: var(--gold, #C9A961); }
.nav-dd-sub { font-size: 0.76rem; color: var(--ink-dim); margin-top: 2px; line-height: 1.4; }

/* ============ FAQ (niche pages) ============ */
.faq-section { padding: 90px 0; background: var(--white); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s; }
.faq-item[open] { border-color: var(--accent-bright); box-shadow: var(--shadow-sm); }
.faq-item summary { padding: 20px 24px; font-weight: 600; font-size: 1rem; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; list-style: none; transition: color 0.2s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: var(--serif); font-size: 1.5rem; color: var(--accent); transition: transform 0.25s; line-height: 1; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-body { padding: 0 24px 22px; color: var(--ink-soft); font-size: 0.95rem; line-height: 1.65; }
.faq-body a { color: var(--accent); font-weight: 500; }

/* ============ MOBILE MENU (burger + slide-in panel) ============ */
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; margin-left: 4px; }
.nav-burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.3s; }
.mobile-menu { display: none; position: fixed; inset: 0; z-index: 200; background: var(--bg); padding: 80px 24px 40px; overflow-y: auto; flex-direction: column; }
.mobile-menu.open { display: flex; }
.mobile-menu-close { position: absolute; top: 22px; right: 22px; background: none; border: none; font-size: 1.9rem; cursor: pointer; color: var(--ink); line-height: 1; }
.mobile-menu a { text-decoration: none; color: var(--ink); font-size: 1.12rem; font-weight: 500; padding: 15px 0; border-bottom: 1px solid var(--border-soft); display: block; }
.mobile-menu .mm-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-dim); margin-top: 22px; padding-bottom: 4px; border: none; }
.mobile-menu .mm-sub { font-size: 1rem; color: var(--ink-soft); padding-left: 14px; }
.mobile-menu .btn { margin-top: 26px; justify-content: center; border: none; }
@media (max-width: 820px) { .nav-burger { display: flex; } }
/* ============ MOBILE TEXT HARDENING ============
   Garantiza que TODO texto se adapte (envuelva) en pantallas pequeñas en vez de
   salirse del margen o quedar cortado. Encabezados más chicos = más holgura. */
@media (max-width: 600px) {
  h1 { font-size: clamp(2rem, 8.4vw, 2.7rem); }
  h2 { font-size: clamp(1.55rem, 6.4vw, 2.05rem); }
  h3 { font-size: 1.18rem; }
  h1, h2, h3, h4, p, li, a, span, em, strong,
  .section-title, .hero-title, .section-eyebrow, .eyebrow, .section-sub {
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
  }
  .container { padding-left: 18px; padding-right: 18px; }
}
