/* ─── TOKENS ─────────────────────────── */
:root {
  --bg:       #fffbf5;
  --ink:      #120f0a;
  --orange:   #ff5c00;
  --yellow:   #ffd000;
  --pink:     #ff3d82;
  --teal:     #00c9a7;
  --blue:     #3b82f6;
  --purple:   #8b5cf6;
  --lime:     #84cc16;
  --card1:    #fff0e6;
  --card2:    #e8fff9;
  --card3:    #fff0f7;
  --card4:    #eef0ff;
  --border:   #1a120a;
  --shadow:   4px 4px 0px #120f0a;
  --shadow-lg:6px 6px 0px #120f0a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
@media (max-width: 900px) {
  html { scroll-padding-top: 80px; }
}
body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

/* ─── ANIMATED BG BLOBS ───────────────── */
.blob-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.blob-1 { width: 500px; height: 500px; background: var(--orange); top: -100px; left: -100px; animation: drift1 12s ease-in-out infinite; }
.blob-2 { width: 400px; height: 400px; background: var(--pink); top: 30%; right: -80px; animation: drift2 15s ease-in-out infinite; }
.blob-3 { width: 350px; height: 350px; background: var(--teal); bottom: 20%; left: 20%; animation: drift3 10s ease-in-out infinite; }
.blob-4 { width: 300px; height: 300px; background: var(--yellow); bottom: -80px; right: 30%; animation: drift1 14s ease-in-out infinite reverse; }

@keyframes drift1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(40px,30px) scale(1.08)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-30px,50px) scale(1.05)} }
@keyframes drift3 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(50px,-30px) scale(1.1)} }

/* ─── NAV ─────────────────────────────── */
nav.site-nav {
  position: sticky; top: 0; z-index: 500;
  background: var(--bg);
  border-bottom: 2px solid var(--border);
  padding: 0 40px;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 1.5rem;
  letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 1px;
  flex-shrink: 0;
}
.logo-top { color: var(--orange); }
.logo-chat { color: var(--ink); }
.logo-site { color: var(--pink); }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: 'Nunito', sans-serif;
  font-weight: 700; font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 100px;
  border: 2px solid transparent;
  color: var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease,
              background-color 0.15s ease, border-color 0.15s ease;
}
.nav-links a:hover {
  background: var(--yellow);
  border-color: var(--border);
  box-shadow: var(--shadow);
  transform: translate(-2px,-2px);
}
.nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  border-color: var(--border) !important;
  box-shadow: var(--shadow) !important;
  margin-left: 6px;
}
.nav-cta:hover {
  background: var(--pink) !important;
  transform: translate(-2px,-2px) !important;
  box-shadow: var(--shadow-lg) !important;
}

/* ─── Hamburger button (mobile only) ─── */
.hamburger {
  display: none;
  width: 48px; height: 48px;
  border: 2px solid var(--border);
  border-radius: 12px;
  background: var(--yellow);
  box-shadow: var(--shadow);
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 0;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}
.hamburger:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow-lg); }
.hamburger span {
  display: block; width: 22px; height: 2.5px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
nav.site-nav.is-open .hamburger { background: var(--pink); }
nav.site-nav.is-open .hamburger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
nav.site-nav.is-open .hamburger span:nth-child(2) { opacity: 0; }
nav.site-nav.is-open .hamburger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ─── Backdrop ─── */
.nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(18,15,10,0.45);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 600;
  backdrop-filter: blur(2px);
}
nav.site-nav.is-open .nav-backdrop { opacity: 1; pointer-events: auto; }

/* ─── Mobile slider drawer ─── */
.nav-drawer {
  position: fixed; top: 0; right: 0;
  height: 100dvh;
  width: min(86vw, 340px);
  background: var(--bg);
  border-left: 2px solid var(--border);
  box-shadow: -8px 0 0 var(--border);
  transform: translateX(105%);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
  z-index: 700;
  display: flex; flex-direction: column;
  padding: 28px 24px 32px;
  gap: 28px;
}
nav.site-nav.is-open .nav-drawer { transform: translateX(0); }

.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border);
}
.drawer-close {
  width: 42px; height: 42px;
  border: 2px solid var(--border); border-radius: 10px;
  background: #fff; box-shadow: var(--shadow);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800;
  cursor: pointer; padding: 0;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}
.drawer-close:hover {
  background: var(--yellow);
  transform: translate(-2px,-2px);
  box-shadow: var(--shadow-lg);
}

.drawer-links {
  display: flex; flex-direction: column; gap: 4px; flex: 1;
}
.drawer-links a {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 1.1rem;
  padding: 16px 18px;
  border-radius: 14px;
  border: 2px solid transparent;
  color: var(--ink);
  display: flex; align-items: center; justify-content: space-between;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
              background 0.2s ease, border-color 0.15s ease;
}
.drawer-links a .arrow {
  font-weight: 800; font-size: 1rem;
  opacity: 0.4;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.drawer-links a:hover {
  background: var(--yellow);
  border-color: var(--border);
  box-shadow: var(--shadow);
  transform: translate(-2px,-2px);
}
.drawer-links a:hover .arrow { opacity: 1; transform: translateX(3px); }

.drawer-cta {
  margin-top: 8px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 1.05rem;
  text-align: center;
  padding: 18px 22px;
  border-radius: 14px;
  border: 2px solid var(--border);
  background: var(--orange); color: #fff;
  box-shadow: var(--shadow-lg);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}
.drawer-cta:hover {
  background: var(--pink);
  transform: translate(-3px,-3px);
  box-shadow: 8px 8px 0 var(--border);
}

nav.site-nav.is-open .drawer-head,
nav.site-nav.is-open .drawer-links a,
nav.site-nav.is-open .drawer-cta {
  animation: drawerItem 0.45s ease both;
}
nav.site-nav.is-open .drawer-head        { animation-delay: 0.10s; }
nav.site-nav.is-open .drawer-links a:nth-child(1) { animation-delay: 0.16s; }
nav.site-nav.is-open .drawer-links a:nth-child(2) { animation-delay: 0.22s; }
nav.site-nav.is-open .drawer-links a:nth-child(3) { animation-delay: 0.28s; }
nav.site-nav.is-open .drawer-links a:nth-child(4) { animation-delay: 0.34s; }
nav.site-nav.is-open .drawer-cta         { animation-delay: 0.42s; }

@keyframes drawerItem {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

body.no-scroll { overflow: hidden; }

/* ─── PAGE WRAPPER ────────────────────── */
.page { position: relative; z-index: 1; }

/* ─── HERO ────────────────────────────── */
.hero {
  max-width: 1200px; margin: 0 auto;
  padding: 72px 40px 60px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-live {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow);
  border: 2px solid var(--border);
  border-radius: 100px;
  padding: 6px 18px;
  font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  animation: pop 0.5s cubic-bezier(.36,.07,.19,.97) both;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.4);opacity:0.6} }
@keyframes pop { from{opacity:0;transform:scale(0.8)} to{opacity:1;transform:scale(1)} }

h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: slideUp 0.6s 0.1s ease both;
}
.h1-line1 { display: block; color: var(--ink); }
.h1-line2 { display: block; color: var(--orange); }
.h1-line3 { display: block; color: var(--pink); }

@keyframes slideUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

.hero-sub {
  font-size: 1.05rem; line-height: 1.7;
  color: #4a3f35;
  max-width: 460px;
  margin-bottom: 36px;
  animation: slideUp 0.6s 0.2s ease both;
}

.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: slideUp 0.6s 0.3s ease both;
}
.btn {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 0.92rem;
  padding: 14px 28px;
  border-radius: 12px;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all 0.15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn:hover { transform: translate(-3px,-3px); }
.btn-orange {
  background: var(--orange); color: #fff;
  box-shadow: var(--shadow-lg);
}
.btn-orange:hover { box-shadow: 8px 8px 0 var(--border); background: #e04d00; }
.btn-outline {
  background: #fff; color: var(--ink);
  box-shadow: var(--shadow);
}
.btn-outline:hover { background: var(--yellow); box-shadow: var(--shadow-lg); }

/* hero right — stacked cards */
.hero-cards {
  display: flex; flex-direction: column; gap: 14px;
  animation: slideUp 0.6s 0.4s ease both;
}
.hc {
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex; align-items: center; gap: 16px;
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: default;
}
.hc:hover { transform: translate(-3px,-3px); }
.hc-1 { background: var(--card1); box-shadow: var(--shadow); }
.hc-2 { background: var(--card2); box-shadow: var(--shadow); }
.hc-3 { background: var(--card3); box-shadow: var(--shadow); }
.hc-4 { background: var(--card4); box-shadow: var(--shadow); }
.hc-icon {
  font-size: 1.8rem;
  width: 50px; height: 50px;
  border-radius: 12px;
  border: 2px solid var(--border);
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.06);
}
.hc-title { font-weight: 700; font-size: 0.92rem; margin-bottom: 3px; }
.hc-sub { font-size: 0.78rem; color: #6b5f52; }

/* ─── SECTION COMMON ──────────────────── */
.section {
  max-width: 1200px; margin: 0 auto;
  padding: 72px 40px;
}
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 18px;
}
.label-dot {
  width: 10px; height: 10px; border-radius: 50%;
  border: 2px solid var(--border);
}
.section-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800; letter-spacing: -0.025em; line-height: 1.1;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 0.95rem; color: #6b5f52; line-height: 1.65;
  max-width: 520px; margin-bottom: 48px;
}

/* diagonal stripe divider */
.stripe-divider {
  height: 48px;
  background: repeating-linear-gradient(
    -45deg,
    var(--yellow) 0px,
    var(--yellow) 10px,
    var(--bg) 10px,
    var(--bg) 20px
  );
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
}

/* ─── TOP PICK ────────────────────────── */
.top-pick-wrap {
  background: var(--orange);
  border: 3px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.top-pick-wrap::after {
  content: '1';
  position: absolute;
  right: 30px; top: -30px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 14rem;
  color: rgba(0,0,0,0.08);
  line-height: 1;
  pointer-events: none;
}
.top-pick-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  padding: 52px;
  align-items: center;
}
.tp-super {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow);
  border: 2px solid var(--border);
  border-radius: 100px;
  padding: 5px 16px;
  font-weight: 800; font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.tp-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 800; letter-spacing: -0.03em;
  color: #fff; line-height: 1;
  margin-bottom: 16px;
}
.tp-desc {
  font-size: 1rem; line-height: 1.65;
  color: rgba(255,255,255,0.85);
  max-width: 420px; margin-bottom: 32px;
}
.tp-stats {
  display: flex; gap: 24px; margin-bottom: 36px;
  flex-wrap: wrap;
}
.tp-stat {
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  padding: 14px 20px;
  text-align: center;
  min-width: 90px;
  flex: 1 1 90px;
}
.tp-stat-val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 1.6rem;
  color: #fff; line-height: 1;
}
.tp-stat-label {
  font-size: 0.68rem; font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-top: 4px;
}
.btn-white {
  background: #fff; color: var(--orange);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 0.95rem;
  padding: 14px 32px;
  border: 2px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: all 0.15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-white:hover {
  transform: translate(-3px,-3px);
  box-shadow: var(--shadow-lg);
  background: var(--yellow);
}
.tp-perks {
  display: flex; flex-direction: column; gap: 12px;
  min-width: 220px;
}
.tp-perk {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 0.85rem; font-weight: 700;
  color: #fff;
  display: flex; align-items: center; gap: 10px;
}
.perk-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--yellow);
  border: 2px solid rgba(0,0,0,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: var(--ink); font-weight: 800;
  flex-shrink: 0;
}

/* ─── ALTERNATIVES ────────────────────── */
.alts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.alt-card {
  border: 2px solid var(--border);
  border-radius: 18px;
  padding: 28px 30px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  transition: all 0.15s;
  box-shadow: var(--shadow);
  min-width: 0;
}
.alt-card:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-lg); }
.alt-card-1 { background: var(--card2); }
.alt-card-2 { background: var(--card3); }
.alt-card-3 { background: var(--card1); }
.alt-card-4 { background: var(--card4); }
.alt-left { display: flex; align-items: center; gap: 16px; min-width: 0; flex: 1 1 auto; }
.alt-left > div { min-width: 0; }
.alt-name, .alt-desc { overflow-wrap: anywhere; }
.alt-icon {
  font-size: 1.6rem;
  width: 52px; height: 52px;
  border-radius: 14px;
  border: 2px solid var(--border);
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.06);
}
.alt-name { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 1.1rem; margin-bottom: 4px; }
.alt-desc { font-size: 0.8rem; color: #6b5f52; }
.alt-btn {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 0.82rem;
  background: var(--yellow); color: var(--ink);
  padding: 10px 18px;
  border-radius: 8px;
  border: 2px solid var(--border);
  white-space: nowrap;
  transition: all 0.15s;
  box-shadow: var(--shadow);
}
.alt-btn:hover {
  background: #e8bc00;
  color: var(--ink);
  transform: translate(-2px,-2px);
  box-shadow: var(--shadow-lg);
}

/* ─── DIRECTORY ───────────────────────── */
.dir-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 32px;
}
.dir-count {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 3.5rem;
  color: var(--orange); line-height: 1;
}
.dir-count-label { font-size: 0.8rem; font-weight: 700; color: #999; }

.dir-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.dir-item {
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
  transition: all 0.15s;
  cursor: pointer;
  box-shadow: var(--shadow);
  min-width: 0;
}
.dir-item:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-lg); }
.dir-item:nth-child(6n+1) { background: #fff0e6; }
.dir-item:nth-child(6n+2) { background: #e8fff9; }
.dir-item:nth-child(6n+3) { background: #fff0f7; }
.dir-item:nth-child(6n+4) { background: #eef0ff; }
.dir-item:nth-child(6n+5) { background: #fffde8; }
.dir-item:nth-child(6n+6) { background: #f0fff4; }
.dir-icon-wrap {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--ink);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.06);
}
.dir-name {
  font-weight: 700; font-size: 0.9rem; color: var(--ink);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dir-arrow {
  margin-left: auto;
  font-size: 1rem; color: var(--ink);
  opacity: 0.25;
  transition: opacity 0.15s;
  flex-shrink: 0;
}
.dir-item:hover .dir-arrow { opacity: 1; }

/* ─── HOW WE RANK ─────────────────────── */
.rank-bg {
  background: var(--ink);
  border-top: 3px solid var(--border);
  border-bottom: 3px solid var(--border);
}
.rank-section {
  max-width: 1200px; margin: 0 auto;
  padding: 80px 40px;
}
.rank-section .section-label { color: var(--yellow); }
.rank-section .section-heading { color: #fff; }
.rank-section .section-sub { color: rgba(255,255,255,0.55); }

.rank-cards {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.rank-card {
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 36px 30px;
  transition: all 0.15s;
}
.rank-card:hover { border-color: rgba(255,255,255,0.3); transform: translateY(-4px); }
.rank-card-1 { background: rgba(255,92,0,0.15); }
.rank-card-2 { background: rgba(255,208,0,0.1); }
.rank-card-3 { background: rgba(0,201,167,0.1); }
.rank-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 3rem;
  line-height: 1; margin-bottom: 20px;
}
.rank-card-1 .rank-num { color: var(--orange); }
.rank-card-2 .rank-num { color: var(--yellow); }
.rank-card-3 .rank-num { color: var(--teal); }
.rank-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 1.05rem; color: #fff;
  margin-bottom: 12px;
}
.rank-body { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ─── CTA SECTION ─────────────────────── */
.cta-wrap {
  border: 3px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-top {
  background: var(--pink);
  padding: 56px 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px; align-items: center;
}
.cta-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff; letter-spacing: -0.025em; line-height: 1.1;
  margin-bottom: 12px;
}
.cta-sub {
  font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.6;
}
.cta-btns { display: flex; flex-direction: column; gap: 12px; }
.btn-yellow {
  background: var(--yellow); color: var(--ink);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 0.92rem;
  padding: 14px 32px; border-radius: 12px;
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
  white-space: nowrap;
  transition: all 0.15s;
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
}
.btn-yellow:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow-lg); background: #e8bc00; }
.cta-bottom {
  background: var(--yellow);
  padding: 20px 52px;
  display: flex; align-items: center; gap: 32px;
  border-top: 2px solid var(--border);
  flex-wrap: wrap;
  justify-content: center;
}
.cta-stat {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 0.85rem;
}
.cta-stat-icon { font-size: 1.1rem; }

/* ─── FOOTER ──────────────────────────── */
footer.site-footer {
  background: var(--ink);
  border-top: 3px solid var(--border);
  padding: 40px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.footer-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 1.2rem;
}
.footer-logo .fo { color: var(--orange); }
.footer-logo .fc { color: #fff; }
.footer-logo .fs { color: var(--pink); }
.footer-links { display: flex; gap: 6px; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.8rem; font-weight: 700;
  color: rgba(255,255,255,0.5);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.15s;
}
.footer-links a:hover { color: #fff; border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.06); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.social-strip { display: flex; gap: 10px; margin-top: 12px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: rgba(255,255,255,0.5);
  transition: all 0.15s;
}
.social-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ─── COOMEET PAGE — HERO + SIDEBAR ─── */
.cm-hero {
  max-width: 1200px; margin: 0 auto;
  padding: 64px 40px 40px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: start;
}

.cm-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow);
  border: 2px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-weight: 800; font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  animation: pop 0.5s cubic-bezier(.36,.07,.19,.97) both;
}
.cm-eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  border: 1.5px solid var(--border);
}

.cm-h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  animation: slideUp 0.6s 0.1s ease both;
}
.cm-h1 .ink { color: var(--ink); }
.cm-h1 .brand {
  color: var(--orange);
}
.cm-h1 .pink { color: var(--pink); display: block; }

.cm-rating-row {
  display: flex;
  width: fit-content;
  align-items: stretch;
  margin-bottom: 28px;
  animation: slideUp 0.6s 0.2s ease both;
  border: 2px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.cm-rating-row:hover {
  transform: translate(-3px,-3px);
  box-shadow: var(--shadow-lg);
}

.cm-rating-score {
  background: var(--yellow);
  border-right: 2px solid var(--border);
  padding: 10px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 84px;
}
.cm-rating-score .num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.cm-rating-score .out {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
  margin-top: 4px;
}

.cm-rating-meta {
  padding: 10px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.cm-rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.cm-rating-stars svg {
  width: 18px;
  height: 18px;
  display: block;
}
.cm-rating-stars .star-full   { color: #ffb800; }
.cm-rating-stars .star-half   { color: #ffb800; }
.cm-rating-stars .star-empty  { color: #e9e1cf; }
.cm-rating-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #6b5f52;
}
.cm-rating-label strong {
  color: var(--ink);
  font-weight: 800;
}

.cm-cta-btn {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 1rem;
  padding: 16px 32px;
  border-radius: 12px;
  border: 2px solid var(--border);
  background: var(--orange); color: #fff;
  box-shadow: var(--shadow-lg);
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.15s;
  margin-bottom: 36px;
  animation: slideUp 0.6s 0.3s ease both;
}
.cm-cta-btn:hover {
  background: var(--pink);
  transform: translate(-3px,-3px);
  box-shadow: 8px 8px 0 var(--border);
}
.cm-cta-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--yellow); color: var(--ink);
  border: 1.5px solid var(--border);
  font-size: 0.7rem; font-weight: 800;
}

.cm-intro {
  font-size: 1rem; line-height: 1.75;
  color: #4a3f35;
  max-width: 560px;
  animation: slideUp 0.6s 0.4s ease both;
}

/* sidebar — alternatives panel */
.cm-aside {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 24px;
  position: relative;
  animation: slideUp 0.6s 0.3s ease both;
}
.cm-aside-head {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.cm-aside-head .pip {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--purple);
  border: 2px solid var(--border);
}
.cm-aside-list {
  display: flex; flex-direction: column; gap: 10px;
}
.cm-aside-item {
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow);
  transition: all 0.15s;
  background: #fff;
}
.cm-aside-item:hover {
  transform: translate(-3px,-3px);
  box-shadow: var(--shadow-lg);
}
.cm-aside-item:nth-child(1) { background: var(--card3); }
.cm-aside-item:nth-child(2) { background: var(--card1); }
.cm-aside-item:nth-child(3) { background: var(--card4); }
.cm-aside-item:nth-child(4) { background: var(--card2); }
.cm-aside-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--ink);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.06);
}
.cm-aside-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 1rem;
  flex: 1;
}
.cm-aside-arrow {
  font-weight: 800; opacity: 0.35;
  transition: opacity 0.15s, transform 0.15s;
}
.cm-aside-item:hover .cm-aside-arrow { opacity: 1; transform: translateX(3px); }

/* ─── COOMEET — HOW WE RANK ALTERNATING ROWS ─── */
.cm-rank-wrap {
  max-width: 1200px; margin: 0 auto;
  padding: 32px 40px 72px;
  display: flex; flex-direction: column; gap: 20px;
}
.cm-rank-row {
  border: 2px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 32px;
  align-items: center;
  transition: all 0.15s;
}
.cm-rank-row:hover {
  transform: translate(-3px,-3px);
  box-shadow: var(--shadow-lg);
}
.cm-rank-row.reverse {
  grid-template-columns: 140px 1fr;
}
.cm-rank-row.tone-1 { background: var(--card1); }
.cm-rank-row.tone-2 { background: var(--card2); }
.cm-rank-row.tone-3 { background: var(--card3); }
.cm-rank-row.tone-4 { background: var(--card4); }

.cm-rank-h {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.cm-rank-h .accent { color: var(--orange); }
.cm-rank-row.tone-1 .cm-rank-h .accent { color: var(--orange); }
.cm-rank-row.tone-2 .cm-rank-h .accent { color: var(--teal); }
.cm-rank-row.tone-3 .cm-rank-h .accent { color: var(--pink); }
.cm-rank-row.tone-4 .cm-rank-h .accent { color: var(--purple); }

.cm-rank-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4a3f35;
}

.cm-rank-emoji {
  width: 130px; height: 130px;
  border-radius: 24px;
  background: #fff;
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  font-size: 4.5rem;
  margin-left: auto;
}
.cm-rank-row.reverse .cm-rank-emoji {
  margin-left: 0;
}

/* ─── COOMEET — SPOTLIGHT CARD (3rd section) ─── */
.cm-spotlight {
  position: relative;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,61,130,0.18) 0%, transparent 55%),
    radial-gradient(circle at 15% 85%, rgba(0,201,167,0.18) 0%, transparent 55%),
    var(--ink);
  color: #fff;
  border: 3px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  padding: 48px 52px;
  overflow: hidden;
  transition: all 0.15s;
}
.cm-spotlight:hover {
  transform: translate(-3px,-3px);
  box-shadow: 8px 8px 0 var(--border);
}
.cm-spotlight::before {
  content: "✓";
  position: absolute;
  right: -40px; bottom: -80px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 22rem;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
}
.cm-spot-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pink);
  color: #fff;
  border: 2px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-weight: 800; font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative; z-index: 2;
}
.cm-spot-badge .pip {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--yellow);
  border: 1.5px solid var(--border);
}
.cm-spot-grid {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 40px;
  align-items: center;
  position: relative; z-index: 2;
}
.cm-spot-h {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #fff;
}
.cm-spot-h .accent { color: var(--pink); }
.cm-spot-body {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  max-width: 540px;
}
.cm-spot-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 540px;
}
.cm-spot-stat {
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 16px 14px;
  text-align: left;
  transition: all 0.15s;
}
.cm-spot-stat:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-3px);
}
.cm-spot-stat-val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--yellow);
  margin-bottom: 4px;
}
.cm-spot-stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cm-spot-orb {
  width: 200px; height: 200px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, var(--teal) 0%, #00a386 60%, #007a64 100%);
  border: 3px solid var(--border);
  box-shadow:
    var(--shadow-lg),
    inset 0 0 0 6px rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
  margin-left: auto;
  position: relative;
  animation: orbFloat 6s ease-in-out infinite;
}
.cm-spot-orb::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.25);
  animation: orbSpin 22s linear infinite;
}
@keyframes orbFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes orbSpin { to { transform: rotate(360deg); } }

/* ─── COOMEET — COMPARISON TABLE ─── */
.cm-cmp-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 40px 8px;
}
.cm-cmp-card {
  background: #fff;
  border: 3px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.cm-cmp-head {
  background: var(--yellow);
  border-bottom: 2px solid var(--border);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cm-cmp-head h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.cm-cmp-head-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 800; font-size: 0.7rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  box-shadow: var(--shadow);
}
.cm-cmp-table-wrap { overflow-x: auto; }
.cm-cmp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.cm-cmp-table thead th {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  text-align: left;
  padding: 18px 20px;
  border-bottom: 2px solid var(--border);
  background: #fffaf0;
  white-space: nowrap;
}
.cm-cmp-table thead th.is-coomeet {
  background: var(--orange);
  color: #fff;
  position: relative;
}
.cm-cmp-table thead th.is-coomeet::after {
  content: "★";
  margin-left: 6px;
  color: var(--yellow);
}
.cm-cmp-table tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(26,18,10,0.08);
  font-size: 0.92rem;
  vertical-align: middle;
}
.cm-cmp-table tbody tr:last-child td { border-bottom: none; }
.cm-cmp-table tbody tr:hover { background: #fffdf5; }
.cm-cmp-feature {
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.cm-cmp-feature .sub {
  display: block;
  font-weight: 500;
  font-size: 0.78rem;
  color: #6b5f52;
  margin-top: 2px;
}
.cm-cmp-cell {
  font-weight: 700;
  font-size: 0.9rem;
}
.cm-cmp-cell.is-coomeet {
  background: rgba(255,92,0,0.08);
  color: var(--ink);
}
.cm-cmp-yes,
.cm-cmp-no,
.cm-cmp-partial {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: 0.82rem;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  white-space: nowrap;
}
.cm-cmp-yes  { background: #e8fff5; color: #006b58; }
.cm-cmp-yes::before  { content: "✓"; color: var(--teal); font-weight: 800; }
.cm-cmp-no   { background: #ffeeee; color: #8a1a1a; }
.cm-cmp-no::before   { content: "✕"; color: #c93a3a; font-weight: 800; }
.cm-cmp-partial { background: #fff7d6; color: #6b4f00; }
.cm-cmp-partial::before { content: "~"; color: #b58900; font-weight: 800; }

/* CTA row inside comparison table */
.cm-cmp-cta-row td {
  background: #fffaf0;
  border-top: 2px solid var(--border) !important;
  padding: 18px 20px !important;
}
.cm-cmp-cta-row td.is-coomeet { background: rgba(255,92,0,0.12); }
.cm-cmp-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 10px 16px;
  border-radius: 10px;
  border: 2px solid var(--border);
  background: #fff;
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--border);
  transition: all 0.15s;
  white-space: nowrap;
  width: 100%;
}
.cm-cmp-btn:hover {
  transform: translate(-2px,-2px);
  box-shadow: 5px 5px 0 var(--border);
  background: var(--yellow);
}
.cm-cmp-btn-primary {
  background: var(--orange);
  color: #fff;
}
.cm-cmp-btn-primary:hover {
  background: var(--pink);
  color: #fff;
}

/* ─── COOMEET — PREMIUM SHOWCASE (4th section) ─── */
.cm-showcase-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 40px 72px;
}
.cm-showcase {
  position: relative;
  background:
    linear-gradient(135deg, #eef0ff 0%, #fff0f7 50%, #fff0e6 100%);
  border: 3px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  padding: 56px 56px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
}
.cm-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(139,92,246,0.18) 0%, transparent 45%),
    radial-gradient(circle at 0% 100%, rgba(255,61,130,0.14) 0%, transparent 45%);
  pointer-events: none;
}
.cm-show-left, .cm-show-right { position: relative; z-index: 1; }

.cm-show-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-weight: 800; font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  box-shadow: var(--shadow);
  margin-bottom: 22px;
}
.cm-show-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--purple);
  border: 1.5px solid var(--border);
}
.cm-show-h {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--ink);
}
.cm-show-h .grad {
  background: linear-gradient(90deg, var(--purple), var(--pink) 60%, var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cm-show-body {
  font-size: 0.98rem; line-height: 1.7;
  color: #4a3f35;
  margin-bottom: 24px;
  max-width: 480px;
}
.cm-show-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}
.cm-show-list li {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 0.9rem;
  color: var(--ink);
}
.cm-show-list .dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  box-shadow: 1px 1px 0 var(--border);
}
.cm-show-list .d1 { background: var(--orange); }
.cm-show-list .d2 { background: var(--pink); }
.cm-show-list .d3 { background: var(--teal); }
.cm-show-list .d4 { background: var(--purple); }

.cm-show-meters {
  display: flex; flex-direction: column; gap: 12px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
  max-width: 480px;
}
.cm-meter-head {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 0.82rem; font-weight: 700; color: #4a3f35;
  margin-bottom: 6px;
}
.cm-meter-head strong {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 1rem;
  color: var(--ink);
}
.cm-meter-bar {
  height: 10px;
  background: #f4eee2;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  overflow: hidden;
}
.cm-meter-bar > span {
  display: block;
  height: 100%;
  background: var(--orange);
  border-right: 1.5px solid var(--border);
  border-radius: 100px;
  animation: meterGrow 1.4s cubic-bezier(.22,1,.36,1) both;
}
@keyframes meterGrow { from { width: 0 !important; } }

/* phone mock */
.cm-show-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.cm-phone {
  width: 220px;
  height: 420px;
  background: var(--ink);
  border: 3px solid var(--border);
  border-radius: 38px;
  box-shadow: var(--shadow-lg);
  padding: 14px;
  position: relative;
  animation: phoneFloat 7s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%,100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-10px) rotate(-3deg); }
}
.cm-phone-notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 70px; height: 18px;
  background: var(--ink);
  border: 2px solid #2a221a;
  border-radius: 100px;
  z-index: 2;
}
.cm-phone-screen {
  width: 100%; height: 100%;
  border-radius: 26px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,61,130,0.35) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139,92,246,0.45) 0%, transparent 50%),
    linear-gradient(160deg, #2a1f3a 0%, #1a1422 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 36px 16px 22px;
  position: relative;
  overflow: hidden;
}
.cm-phone-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  padding: 4px 10px;
  font-size: 0.62rem; font-weight: 800;
  letter-spacing: 0.1em;
  color: #fff;
}
.cm-phone-tag .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #ff3d82;
  animation: pulse 1.6s ease infinite;
}
.cm-phone-avatars {
  display: flex; gap: -8px;
}
.cm-phone-avatars .av {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 3px solid #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 1.2rem;
  color: #fff;
  margin-left: -10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}
.cm-phone-avatars .av:first-child { margin-left: 0; }
.cm-phone-avatars .av1 { background: linear-gradient(135deg, var(--orange), var(--pink)); }
.cm-phone-avatars .av2 { background: linear-gradient(135deg, var(--teal), var(--blue)); }
.cm-phone-avatars .av3 { background: rgba(255,255,255,0.15); font-weight: 800; }

.cm-phone-bars {
  display: flex; gap: 5px; align-items: flex-end;
  height: 36px;
}
.cm-phone-bars .bar {
  width: 5px;
  background: rgba(255,255,255,0.65);
  border-radius: 2px;
  animation: bars 1.1s ease-in-out infinite;
}
.cm-phone-bars .bar:nth-child(1) { height: 40%; animation-delay: 0s; }
.cm-phone-bars .bar:nth-child(2) { height: 80%; animation-delay: 0.15s; background: var(--yellow); }
.cm-phone-bars .bar:nth-child(3) { height: 55%; animation-delay: 0.3s; }
@keyframes bars { 0%,100% { transform: scaleY(0.6); } 50% { transform: scaleY(1); } }

.cm-phone-controls {
  display: flex; gap: 12px; align-items: center;
}
.cm-phone-controls .ctrl {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: #fff;
}
.cm-phone-controls .ctrl-main {
  width: 50px; height: 50px;
  background: var(--orange);
  border-color: var(--border);
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 0 0 4px rgba(255,92,0,0.25);
}

.cm-show-stat-card {
  position: absolute;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
  z-index: 2;
  animation: cardFloat 6s ease-in-out infinite;
}
.cm-show-stat-card .num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--ink);
}
.cm-show-stat-card .lbl {
  font-size: 0.7rem;
  font-weight: 700;
  color: #6b5f52;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}
.cm-show-stat-1 {
  top: 30px; left: -10px;
  animation-delay: 0.4s;
}
.cm-show-stat-1 .num { color: var(--teal); }
.cm-show-stat-2 {
  bottom: 40px; right: -8px;
  animation-delay: 1.1s;
}
.cm-show-stat-2 .num { color: var(--pink); }
@keyframes cardFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ─── FAQ PAGE ───────────────────────── */
.faq-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 40px 56px;
}
.faq-hero-inner {
  max-width: 760px;
}
.faq-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow);
  border: 2px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-weight: 800; font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  box-shadow: var(--shadow);
  margin-bottom: 22px;
  animation: pop 0.5s cubic-bezier(.36,.07,.19,.97) both;
}
.faq-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  border: 1.5px solid var(--border);
}
.faq-h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  animation: slideUp 0.6s 0.1s ease both;
}
.faq-h1 .ink { display: block; color: var(--ink); }
.faq-h1 .pink { display: block; color: var(--pink); }
.faq-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4a3f35;
  max-width: 580px;
  margin-bottom: 28px;
  animation: slideUp 0.6s 0.2s ease both;
}

.faq-search {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 8px 14px 8px 14px;
  margin-bottom: 22px;
  max-width: 520px;
  animation: slideUp 0.6s 0.25s ease both;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.faq-search:focus-within {
  transform: translate(-2px,-2px);
  box-shadow: 8px 8px 0 var(--border);
}
.faq-search-icon {
  font-size: 1.2rem;
  color: var(--ink);
  opacity: 0.55;
  margin-right: 8px;
}
.faq-search input {
  flex: 1;
  border: 0;
  background: transparent;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  padding: 10px 4px;
  outline: none;
}
.faq-search input::placeholder { color: #9b8e7e; font-weight: 500; }
.faq-search-clear {
  background: var(--ink);
  color: #fff;
  border: 2px solid var(--border);
  border-radius: 8px;
  width: 30px; height: 30px;
  font-size: 0.8rem; font-weight: 800;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.faq-search-clear:hover { background: var(--orange); }

.faq-cats {
  display: flex; flex-wrap: wrap; gap: 8px;
  animation: slideUp 0.6s 0.3s ease both;
}
.faq-cat {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 100px;
  padding: 9px 16px;
  color: var(--ink);
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all 0.15s;
}
.faq-cat:hover {
  transform: translate(-2px,-2px);
  box-shadow: var(--shadow-lg);
  background: var(--yellow);
}
.faq-cat.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--border);
  box-shadow: var(--shadow-lg);
  transform: translate(-2px,-2px);
}
.faq-cat-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  flex-shrink: 0;
  box-shadow: 1px 1px 0 var(--border);
}
.faq-cat.is-active .faq-cat-dot {
  border-color: rgba(255,255,255,0.4);
  box-shadow: none;
}

/* List */
.faq-list-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 56px 40px 24px;
}
.faq-list-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 12px;
}
.faq-list-count {
  font-size: 0.82rem;
  color: #6b5f52;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.faq-list-count strong {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.4rem;
  color: var(--ink);
  margin-right: 6px;
  vertical-align: middle;
}
.faq-reset {
  background: var(--ink);
  color: #fff;
  border: 2px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all 0.15s;
}
.faq-reset:hover {
  background: var(--orange);
  transform: translate(-2px,-2px);
  box-shadow: var(--shadow-lg);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.2s ease;
}
.faq-item:hover {
  transform: translate(-3px,-3px);
  box-shadow: var(--shadow-lg);
}
.faq-item.is-open {
  background: #fffaf0;
  transform: translate(-3px,-3px);
  box-shadow: var(--shadow-lg);
}
.faq-q {
  width: 100%;
  display: grid;
  grid-template-columns: 56px 1fr 36px;
  align-items: center;
  gap: 18px;
  background: transparent;
  border: 0;
  padding: 22px 26px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.faq-q-tag {
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--ink);
  box-shadow: 2px 2px 0 var(--border);
}
.faq-q-text {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.faq-q-toggle {
  position: relative;
  width: 36px; height: 36px;
  border: 2px solid var(--border);
  border-radius: 50%;
  background: var(--bg);
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.faq-item.is-open .faq-q-toggle {
  background: var(--orange);
}
.faq-q-toggle .bar {
  position: absolute;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.2s ease;
}
.faq-q-toggle .bar-h {
  top: 50%; left: 50%;
  width: 14px; height: 2.5px;
  transform: translate(-50%,-50%);
}
.faq-q-toggle .bar-v {
  top: 50%; left: 50%;
  width: 2.5px; height: 14px;
  transform: translate(-50%,-50%);
}
.faq-item.is-open .faq-q-toggle .bar-v { opacity: 0; }
.faq-item.is-open .faq-q-toggle .bar { background: #fff; }

.faq-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq-item.is-open .faq-a-wrap {
  grid-template-rows: 1fr;
}
.faq-a-wrap > .faq-a {
  overflow: hidden;
}
.faq-a {
  padding: 0 26px 24px 100px;
}
.faq-a-cat {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.faq-a p {
  font-size: 0.97rem;
  line-height: 1.75;
  color: #4a3f35;
}

.faq-empty {
  text-align: center;
  padding: 48px 20px;
  background: #fff;
  border: 2px dashed var(--border);
  border-radius: 20px;
}
.faq-empty-emoji {
  font-size: 2.6rem;
  margin-bottom: 10px;
}
.faq-empty-h {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.faq-empty-sub {
  color: #6b5f52;
  font-size: 0.92rem;
}

/* CTA */
.faq-cta {
  background: var(--ink);
  border: 3px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  padding: 48px 52px;
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.faq-cta::before {
  content: "?";
  position: absolute;
  right: -30px; top: -80px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 22rem;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
}
.faq-cta-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  padding: 6px 14px;
  font-weight: 800; font-size: 0.7rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}
.faq-cta-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
}
.faq-cta-h {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 12px;
}
.faq-cta-h .accent { color: var(--yellow); }
.faq-cta-body {
  color: rgba(255,255,255,0.7);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 540px;
}
.faq-cta-right {
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  z-index: 2;
}

/* ─── GENERIC PAGE HERO (Blog / About / Sitemap / Terms / Chat-Sites) ─── */
.page-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 40px 48px;
}
.page-h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  animation: slideUp 0.6s 0.1s ease both;
}
.page-h1 > span { display: block; color: var(--ink); }
.page-h1 .pink { color: var(--pink); }
.page-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4a3f35;
  max-width: 620px;
  animation: slideUp 0.6s 0.2s ease both;
}

/* ─── BLOG ─── */
.blog-list-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 40px 80px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.blog-card {
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 28px 26px;
  box-shadow: var(--shadow);
  transition: all 0.18s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-card:hover {
  transform: translate(-4px,-4px);
  box-shadow: var(--shadow-lg);
}
.blog-card-1 { background: var(--card1); }
.blog-card-2 { background: var(--card2); }
.blog-card-3 { background: var(--card3); }
.blog-card-4 { background: var(--card4); }
.blog-card-emoji {
  font-size: 1.8rem;
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--ink);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.06);
  margin-bottom: 6px;
}
.blog-card-meta {
  font-size: 0.72rem;
  font-weight: 800;
  color: #6b5f52;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.blog-card-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--ink);
}
.blog-card-excerpt {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4a3f35;
  flex: 1;
}
.blog-card-link {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--ink);
  border-bottom: 2px solid var(--ink);
  align-self: flex-start;
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
}
.blog-card-link:hover { color: var(--orange); border-color: var(--orange); }

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.about-card {
  border: 2px solid var(--border);
  border-radius: 22px;
  padding: 36px 30px;
  box-shadow: var(--shadow);
  transition: all 0.18s;
}
.about-card:hover {
  transform: translate(-4px,-4px);
  box-shadow: var(--shadow-lg);
}
.about-card-1 { background: var(--card1); }
.about-card-2 { background: var(--card2); }
.about-card-3 { background: var(--card4); }
.about-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 18px;
}
.about-card-1 .about-num { color: var(--orange); }
.about-card-2 .about-num { color: var(--teal); }
.about-card-3 .about-num { color: var(--purple); }
.about-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.about-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #4a3f35;
}

/* ─── SITEMAP ─── */
.sitemap-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
}
.sitemap-h {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.sitemap-col ul { list-style: none; padding: 0; margin: 0; }
.sitemap-col li { margin-bottom: 6px; }
.sitemap-col a {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
  padding: 6px 0;
  transition: color 0.15s;
}
.sitemap-col a:hover { color: var(--orange); }
.sitemap-sites {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px 18px;
}
.sitemap-sites .emoji {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: var(--ink);
  border: 1.5px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}

/* ─── TERMS (long-form document) ─── */
.terms-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 40px 80px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}
.terms-toc {
  position: sticky;
  top: 96px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 22px 22px;
}
.terms-toc-h {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.terms-toc ol {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  counter-reset: toc;
}
.terms-toc li {
  margin: 0;
  counter-increment: toc;
}
.terms-toc a {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: #4a3f35;
  padding: 8px 4px;
  border-radius: 8px;
  border-left: 2px solid transparent;
  padding-left: 12px;
  transition: all 0.15s;
}
.terms-toc a:hover {
  color: var(--orange);
  border-left-color: var(--orange);
  background: #fff7ee;
}
.terms-toc-meta {
  font-size: 0.78rem;
  color: #6b5f52;
  padding-top: 16px;
  border-top: 1.5px solid rgba(26,18,10,0.1);
}
.terms-toc-meta strong {
  color: var(--ink);
  display: inline-block;
  min-width: 90px;
  font-weight: 800;
}
.terms-toc-meta div { margin-bottom: 4px; }

.terms-doc {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: 56px 64px;
  max-width: 780px;
}
.terms-lede {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 16px;
  padding-left: 18px;
  border-left: 3px solid var(--yellow);
}
.terms-lede + .terms-lede { margin-bottom: 32px; }
.terms-section {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 2px dashed rgba(26,18,10,0.18);
  scroll-margin-top: 100px;
}
.terms-section:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.terms-section-h {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 14px;
}
.terms-p {
  font-size: 1rem;
  line-height: 1.78;
  color: #3b322a;
  margin-bottom: 14px;
}
.terms-p:last-child { margin-bottom: 0; }
.terms-foot {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 2px solid var(--border);
}
.terms-foot p { font-size: 1rem; line-height: 1.7; color: var(--ink); }
.terms-foot .muted {
  margin-top: 10px;
  color: #6b5f52;
  font-style: italic;
  font-size: 0.92rem;
}

/* ─── 404 PAGE ─── */
.nf-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 40px 88px;
}
.nf-card {
  background: #fff;
  border: 3px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  padding: 56px 56px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.nf-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pink);
  color: #fff;
  border: 2px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-weight: 800; font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.nf-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--yellow);
  border: 1.5px solid var(--border);
}
.nf-h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.nf-h1 .ink { display: block; color: var(--ink); }
.nf-h1 .pink { display: block; color: var(--pink); }
.nf-body {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a3f35;
  margin-bottom: 26px;
  max-width: 520px;
}
.nf-code {
  background: var(--ink);
  color: var(--yellow);
  padding: 2px 8px;
  border-radius: 6px;
  font-family: source-code-pro, Menlo, Monaco, monospace;
  font-size: 0.9em;
}
.nf-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.nf-tip {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #4a3f35;
  background: var(--card1);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
}
.nf-tip strong { color: var(--ink); }
.nf-tip a {
  color: var(--orange);
  font-weight: 800;
  border-bottom: 2px solid var(--orange);
}
.nf-tip a:hover { color: var(--pink); border-color: var(--pink); }

.nf-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.nf-num {
  display: flex;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(7rem, 16vw, 13rem);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--ink);
}
.nf-num .d4 {
  color: var(--orange);
  -webkit-text-stroke: 0;
}
.nf-num .d4-1 {
  transform: rotate(-8deg);
  display: inline-block;
}
.nf-num .d4-2 {
  transform: rotate(7deg);
  display: inline-block;
  color: var(--pink);
}
.nf-num .d0 {
  color: var(--yellow);
  position: relative;
  margin: 0 -10px;
  z-index: 1;
}
.nf-num .d0::after {
  content: "";
  position: absolute;
  inset: 18% 12%;
  border-radius: 50%;
  border: 4px dashed var(--border);
  animation: nfSpin 12s linear infinite;
}
@keyframes nfSpin { to { transform: rotate(360deg); } }
.nf-noise {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(255,92,0,0.18) 0%, transparent 35%),
    radial-gradient(circle at 90% 90%, rgba(255,61,130,0.15) 0%, transparent 35%);
  pointer-events: none;
  z-index: 0;
}


@media (max-width: 900px) {
  .cm-cmp-wrap { padding: 24px 24px 0; }
  .cm-cmp-head { padding: 20px 22px; }
  .cm-cmp-table thead th,
  .cm-cmp-table tbody td { padding: 14px 14px; font-size: 0.85rem; }
  .cm-cmp-cta-row td { padding: 14px !important; }
  .cm-cmp-btn { padding: 9px 12px; font-size: 0.78rem; }

  .cm-spotlight { padding: 36px 26px; }
  .cm-spot-grid { grid-template-columns: 1fr; gap: 24px; }
  .cm-spot-stats { grid-template-columns: 1fr 1fr; }
  .cm-spot-orb {
    width: 130px; height: 130px;
    font-size: 4rem;
    margin: 0 auto;
    order: -1;
  }

  /* Premium showcase mobile */
  .cm-showcase-wrap { padding: 24px 24px 56px; }
  .cm-showcase {
    grid-template-columns: 1fr;
    padding: 36px 26px;
    gap: 32px;
  }
  .cm-show-list { grid-template-columns: 1fr; }
  .cm-show-right { min-height: 380px; order: -1; }
  .cm-show-stat-1 { top: 10px; left: 0; }
  .cm-show-stat-2 { bottom: 10px; right: 0; }

  /* FAQ mobile */
  .faq-hero { padding: 40px 24px 32px; }
  .faq-list-wrap { padding: 40px 24px 16px; }
  .faq-q {
    grid-template-columns: 44px 1fr 32px;
    gap: 12px;
    padding: 18px 18px;
  }
  .faq-q-tag { width: 36px; height: 36px; font-size: 0.82rem; border-radius: 10px; }
  .faq-q-text { font-size: 0.95rem; }
  .faq-q-toggle { width: 32px; height: 32px; }
  .faq-a { padding: 0 20px 22px 76px; }
  .faq-cta {
    grid-template-columns: 1fr;
    padding: 36px 26px;
    gap: 24px;
  }
  .faq-cta-right { flex-direction: row; flex-wrap: wrap; }
  .faq-cta-right .btn-yellow,
  .faq-cta-right .btn { flex: 1 1 auto; justify-content: center; }

  /* Generic page hero mobile */
  .page-hero { padding: 40px 24px 32px; }

  /* Blog mobile */
  .blog-list-wrap { padding: 40px 24px 56px; }
  .blog-grid { grid-template-columns: 1fr; gap: 18px; }

  /* About mobile */
  .about-grid { grid-template-columns: 1fr; }

  /* Sitemap mobile */
  .sitemap-grid { grid-template-columns: 1fr; gap: 32px; }
  .sitemap-sites { grid-template-columns: 1fr 1fr; }

  /* Terms mobile */
  .terms-shell {
    grid-template-columns: 1fr;
    padding: 40px 24px 56px;
    gap: 24px;
  }
  .terms-toc { position: static; }
  .terms-doc { padding: 32px 26px; }
  .terms-section-h { font-size: 1.25rem; }
  .terms-lede { font-size: 1rem; }

  /* 404 mobile */
  .nf-wrap { padding: 40px 24px 64px; }
  .nf-card {
    grid-template-columns: 1fr;
    padding: 36px 26px;
    gap: 24px;
  }
  .nf-visual { order: -1; min-height: 200px; }
  .nf-num { font-size: 7rem; }
}

/* ─── RESPONSIVE ──────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 48px 24px; }
  .hero-cards { display: none; }
  .top-pick-inner { grid-template-columns: 1fr; padding: 32px 28px; }
  .tp-perks { display: none; }
  .alts-grid { grid-template-columns: 1fr; }
  .dir-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rank-cards { grid-template-columns: 1fr; }
  .cta-top { grid-template-columns: 1fr; }
  nav.site-nav { padding: 0 20px; }
  .nav-inner { height: 64px; gap: 12px; }
  .logo { font-size: 1.3rem; }
  .nav-links { display: none; }
  .hamburger { display: inline-flex; }
  .section { padding: 56px 24px; }

  .dir-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
  }
  .dir-header > div[style*="text-align:right"] { text-align: left !important; }
  .dir-count { font-size: 2.6rem; }

  .dir-item { padding: 14px 14px; gap: 10px; }
  .dir-icon-wrap { width: 36px; height: 36px; font-size: 1rem; }
  .dir-name { font-size: 0.85rem; }

  .alt-card {
    flex-direction: column;
    align-items: stretch;
    padding: 20px 20px;
    gap: 16px;
  }
  .alt-left { width: 100%; }
  .alt-btn {
    align-self: flex-start;
    width: 100%;
    text-align: center;
    padding: 12px 18px;
  }

  .tp-stats { gap: 12px; }
  .tp-stat { padding: 12px 14px; min-width: 0; flex: 1 1 calc(50% - 12px); }
  .tp-stat-val { font-size: 1.35rem; }

  .cta-bottom {
    padding: 18px 20px;
    gap: 12px 20px;
    justify-content: flex-start;
  }
  .cta-stat { flex: 1 1 calc(50% - 20px); justify-content: flex-start; }

  /* Coomeet page mobile */
  .cm-hero {
    grid-template-columns: 1fr;
    padding: 40px 24px 24px;
    gap: 32px;
  }
  .cm-rank-wrap { padding: 24px 24px 56px; }
  .cm-rank-row,
  .cm-rank-row.reverse {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    gap: 18px;
    justify-items: start;
  }
  .cm-rank-emoji {
    width: 84px; height: 84px;
    font-size: 3rem;
    margin-left: 0;
    border-radius: 20px;
    order: -1;            /* always above the text on mobile/tablet */
  }
  .cm-rank-row.reverse .cm-rank-emoji { order: -1; }

  /* Spotlight card mobile */
  .cm-spotlight { padding: 32px 22px !important; }
  .cm-spot-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
  .cm-spot-orb { margin: 0 !important; width: 120px !important; height: 120px !important; font-size: 3.6rem !important; }
  .cm-spot-stats { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 480px) {
  .dir-grid { grid-template-columns: 1fr; }
  .dir-item { padding: 14px 16px; }
}

@media (max-width: 380px) {
  nav.site-nav { padding: 0 14px; }
  .logo { font-size: 1.15rem; }
  .nav-drawer { padding: 22px 18px 26px; }
  .drawer-links a { font-size: 1rem; padding: 14px 16px; }
}

/* ─── SCROLL REVEAL ───────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ───────── Brand icon wrappers — SVG support ───────── */
.has-brand {
  background: #fff !important;
  overflow: hidden;
  padding: 4px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
}
.has-brand .brand-svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: inherit;
}
/* sitemap inline icon — slightly tighter padding */
.sitemap-sites .emoji.has-brand { padding: 2px; }

/* ───────── SEO content block on chat-site pages ───────── */
.cm-seo-block {
  max-width: 1200px;
  margin: 48px auto 64px;
  padding: 0 24px;
}
.cm-seo-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 18px;
  padding: 32px clamp(20px, 4vw, 40px);
  box-shadow: var(--shadow);
}
.cm-seo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b5f52;
  margin-bottom: 14px;
}
.cm-seo-eyebrow .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
}
.cm-seo-h {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 16px;
}
.cm-seo-body {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #4a3f33;
  margin: 0 0 14px;
}
.cm-seo-body:last-child { margin-bottom: 0; }
@media (max-width: 720px) {
  .cm-seo-block { margin: 32px auto 48px; padding: 0 16px; }
  .cm-seo-card { padding: 22px 18px; border-radius: 14px; }
  .cm-seo-body { font-size: 0.92rem; line-height: 1.65; }
}
