@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --primary: #fff0dc;
  --accent: #ff8c42;
  --secondary: #ffb07a;
  --light-blue: #bde0fe;
  --surface: #cdb4db;
  --bg: #f9f9fb;
  --light-grey: #f3f4f6;
  --grey: #6b7280;
  --black: #111111;
  --white: #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.navbar-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.navbar-brand { display: flex; align-items: center; gap: 0.5rem; }
.navbar-logo { width: 36px; height: 36px; border-radius: 10px; }
.navbar-name { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.05em; line-height: 1; }
.navbar-name .c-accent { color: var(--accent); }
.navbar-right { display: flex; align-items: center; gap: 1rem; }
.lang-btn {
  display: none; align-items: center; gap: 6px;
  font-size: 0.875rem; font-weight: 500; color: var(--grey);
  background: none; border: none; padding: 0.5rem 0.75rem;
  border-radius: 9999px; transition: background 0.2s, color 0.2s;
}
.lang-btn:hover { background: var(--bg); color: var(--black); }
.lang-chevron { width: 14px; height: 14px; fill: currentColor; }
@media (min-width: 640px) { .lang-btn { display: flex; } }

.btn-login {
  background: var(--black); color: var(--white);
  padding: 0.625rem 1.25rem; border-radius: 9999px;
  font-size: 0.875rem; font-weight: 600;
  transition: background 0.2s;
}
.btn-login:hover { background: rgba(0,0,0,0.85); }

.btn-get-started {
  display: none; background: var(--black); color: var(--white);
  padding: 0.625rem 1.25rem; border-radius: 9999px;
  font-size: 0.875rem; font-weight: 600; margin-left: 4px;
  transition: background 0.2s;
}
.btn-get-started:hover { background: rgba(0,0,0,0.85); }

@media (min-width: 640px) {
  .btn-login {
    background: none; color: var(--grey);
    padding: 0 4px; font-weight: 500;
  }
  .btn-login:hover { color: var(--black); background: none; }
  .btn-get-started { display: inline-block; }
}

/* ── User nav (logged in state) ── */
.user-nav {
  display: none; align-items: center; gap: 10px;
  position: relative;
}
.user-nav.visible { display: flex; }
.user-nav-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  object-fit: cover; border: 2px solid rgba(255,140,66,0.5);
}
.user-nav-name {
  font-size: 14px; font-weight: 500; color: var(--black);
  max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.btn-open-app {
  background: var(--black); color: var(--white);
  padding: 0.5rem 1rem; border-radius: 9999px;
  font-size: 0.875rem; font-weight: 600;
  transition: background 0.2s; white-space: nowrap;
}
.btn-open-app:hover { background: rgba(0,0,0,0.80); }
@media (max-width: 639px) {
  .user-nav-name { display: none; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 2.5rem 1.5rem 3.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  overflow: hidden;
}
@media (min-width: 640px) { .hero { padding: 3.75rem 1.5rem 5rem; } }

.blob { position: absolute; border-radius: 50%; pointer-events: none; }
.blob-1 {
  width: 400px; height: 400px;
  background: var(--secondary); filter: blur(60px); opacity: 0.35;
  top: -100px; right: -80px;
  animation: float 6s ease-in-out infinite;
}
.blob-2 {
  width: 300px; height: 300px;
  background: var(--light-blue); filter: blur(60px); opacity: 0.35;
  bottom: -60px; left: -60px;
  animation: float-reverse 8s ease-in-out infinite;
}
.blob-3 {
  width: 200px; height: 200px;
  background: var(--surface); filter: blur(60px); opacity: 0.35;
  top: 30%; left: 10%;
  animation: float-slow 10s ease-in-out infinite;
}

.hero-content { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; text-align: center; }

.tiktok-badge-wrap {
  position: relative; display: inline-flex;
  margin-bottom: 2rem; transform: rotate(-2deg);
  animation: fade-up 0.5s ease both;
}
.tiktok-shadow-cyan {
  position: absolute; inset: 0; border-radius: 9999px;
  background: #25f4ee; transform: translate(2px, 2px);
}
.tiktok-shadow-red {
  position: absolute; inset: 0; border-radius: 9999px;
  background: #fe2c55; transform: translate(-2px, -2px);
}
.tiktok-badge {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  background: var(--black); color: var(--white);
  padding: 6px 16px; border-radius: 9999px;
  font-size: 0.875rem; font-weight: 700;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1); border: 1px solid #374151;
}
.tiktok-badge-icon { width: 16px; height: 16px; flex-shrink: 0; fill: white; }

.hero-title-wrap { margin-bottom: 1.25rem; animation: fade-up 0.5s ease 0.05s both; }
.hero-title {
  font-size: clamp(34px, 5.5vw, 52px);
  font-weight: 800; color: var(--white);
  line-height: 1.1; letter-spacing: -0.04em;
  display: inline;
}

.hero-subtitle {
  display: none;
  font-size: 1.0625rem; color: rgba(255,255,255,0.85);
  line-height: 1.6; max-width: 480px; margin: 0 auto 2.5rem;
  animation: fade-up 0.5s ease 0.1s both;
}
@media (min-width: 640px) { .hero-subtitle { display: block; } }

/* Search */
.search-wrap {
  max-width: 520px; margin: 0 auto;
  animation: fade-up 0.5s ease 0.15s both;
  scroll-margin-top: 6rem;
}
.search-box {
  display: flex; align-items: center;
  background: var(--white); border-radius: 9999px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  padding: 0.75rem 0.75rem 0.75rem 1rem;
  border: 2px solid transparent; transition: border-color 0.2s;
}
@media (min-width: 640px) { .search-box { padding: 0.875rem 0.875rem 0.875rem 1.5rem; } }
.search-box:focus-within { border-color: var(--accent); }

.ig-icon { width: 20px; height: 20px; flex-shrink: 0; margin-right: 6px; }
.search-at { color: rgba(107,114,128,0.4); font-weight: 600; padding-right: 4px; font-size: 1.125rem; }

.search-field { position: relative; display: flex; align-items: center; flex: 1; }
.search-placeholder {
  position: absolute; inset: 0; display: flex; align-items: center; pointer-events: none;
}
.blink-cursor {
  display: inline-block; width: 2px; height: 1.1em;
  background: rgba(255,140,66,0.6); border-radius: 9999px;
  margin-left: 1px; vertical-align: middle;
  animation: blink 1s step-end infinite;
}
.search-input {
  width: 100%; background: transparent;
  font-family: inherit; font-size: 1.125rem; font-weight: 500;
  outline: none; border: none; position: relative; z-index: 1;
}
.search-input:not(:placeholder-shown) + .search-placeholder { display: none; }

.cycling-word {
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(107, 114, 128, 0.45);
}

.btn-search {
  background: var(--accent); color: var(--white);
  padding: 0.875rem 1.5rem; border-radius: 9999px;
  font-size: 0.875rem; font-weight: 700; border: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s; flex-shrink: 0;
}
@media (min-width: 640px) { .btn-search { padding: 1rem 2.25rem; font-size: 1rem; } }
.btn-search:hover {
  background: rgba(255,140,66,0.9);
  transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,140,66,0.4);
}

.search-legal {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; font-size: 0.75rem; color: rgba(255,255,255,0.9);
  font-weight: 500; white-space: nowrap; margin-top: 0.75rem;
}
@media (min-width: 640px) { .search-legal { font-size: 0.875rem; } }
.shield-icon { width: 16px; height: 16px; flex-shrink: 0; }

/* Social proof */
.social-proof {
  display: flex; align-items: center; justify-content: center;
  margin-top: 2.5rem; animation: fade-up 0.5s ease 0.2s both;
}
.social-proof-pill {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--white); border-radius: 9999px;
  padding: 10px 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.avatar-stack { display: flex; }
.avatar-stack img, .avatar-overflow {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--white); object-fit: cover;
}
.avatar-stack img:not(:first-child), .avatar-overflow { margin-left: -10px; }
.avatar-overflow { position: relative; overflow: hidden; }
.avatar-overflow img { position: absolute; inset: 0; width: 100%; height: 100%; filter: blur(2px); transform: scale(1.1); margin-left: 0; border: none; }
.avatar-plus {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.4); display: flex;
  align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; color: var(--white);
}
.social-proof-text { font-size: 14px; color: var(--black); white-space: nowrap; }
.social-proof-text strong { font-weight: 700; }
.social-proof-text span { font-weight: 500; }

/* Live ticker */
.live-ticker-wrap {
  margin-top: 1rem; margin-bottom: 1.5rem;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,0,0,0.15); backdrop-filter: blur(8px);
  border-radius: 9999px; padding: 6px 14px;
  animation: fade-up 0.5s ease 0.25s both;
}
.live-dot { position: relative; display: flex; width: 10px; height: 10px; flex-shrink: 0; }
.live-dot-ping {
  position: absolute; inset: 0; border-radius: 50%;
  background: #4ade80; opacity: 0.75;
  animation: ping 1.5s cubic-bezier(0,0,0.2,1) infinite;
}
.live-dot-core {
  position: relative; width: 10px; height: 10px;
  border-radius: 50%; background: #4ade80;
  box-shadow: 0 0 6px rgba(74,222,128,0.6);
}
.live-ticker-wrap .live-text { font-size: 0.75rem; color: var(--white); }
.live-ticker-wrap strong { font-weight: 700; }

/* Hero badges */
.hero-badges {
  display: flex; align-items: center; justify-content: center;
  gap: 1.25rem; flex-wrap: wrap;
  animation: fade-up 0.5s ease 0.3s both;
}
.hero-badge { display: flex; align-items: center; gap: 6px; }
.check-circle {
  width: 20px; height: 20px; border-radius: 50%;
  background: #22c55e; border: 2.5px solid var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.check-circle svg { width: 12px; height: 12px; }
.hero-badge > span { font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.9); }

/* ===== STICKY SEARCH (mobile) ===== */
.sticky-search {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateY(100%); opacity: 0; pointer-events: none;
}
.sticky-search.visible { transform: translateY(0); opacity: 1; pointer-events: all; }
.sticky-search-inner { max-width: 480px; margin: 0 auto; padding: 1rem; }
.sticky-search-box {
  display: flex; align-items: center;
  background: var(--white); border-radius: 9999px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  padding: 0.75rem 0.75rem 0.75rem 1rem;
}
.sticky-search-box .search-at { color: rgba(107,114,128,0.4); font-weight: 600; padding-right: 4px; font-size: 1.125rem; }
.sticky-search-box .search-field { position: relative; display: flex; align-items: center; flex: 1; }
.sticky-input {
  width: 100%; background: transparent;
  font-family: inherit; font-size: 1.125rem; font-weight: 500;
  outline: none; border: none; position: relative; z-index: 1;
}
.btn-sticky-search {
  background: var(--accent); color: var(--white);
  padding: 0.75rem 1.75rem; border-radius: 9999px;
  font-size: 0.875rem; font-weight: 700; border: none; flex-shrink: 0;
  transition: background 0.2s;
}
.btn-sticky-search:hover { background: rgba(255,143,171,0.9); }

/* ===== STATS BAR ===== */
.stats-bar {
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.stats-grid {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem;
}
@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2,1fr); gap: 2rem; } }
.stat-item { text-align: center; }
.stat-value { font-size: clamp(28px,3.5vw,40px); font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.stat-value .c-accent { color: var(--accent); }
.stat-label { font-size: 0.875rem; color: var(--grey); margin-top: 6px; font-weight: 500; }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 6rem 1.5rem; background: var(--bg); }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8125rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent); margin-bottom: 1rem;
}
.section-eyebrow::before {
  content: ''; display: block;
  width: 20px; height: 2px;
  background: var(--accent); border-radius: 2px;
}
.section-title {
  font-size: clamp(28px,4vw,40px); font-weight: 800;
  letter-spacing: -0.04em; line-height: 1.2; color: var(--black);
}
.section-subtitle { color: var(--grey); margin-top: 0.75rem; max-width: 420px; margin-left: auto; margin-right: auto; }

.section-header { text-align: center; margin-bottom: 4rem; }

.steps-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.steps-grid.revealed { opacity: 1; transform: none; }
@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr; gap: 3rem; } }

.step-card {
  background: var(--white); border-radius: 1.5rem;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04); padding: 1.5rem;
}
.step-anim { height: 11rem; margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.step-num { font-size: 0.875rem; font-weight: 900; color: var(--accent); text-transform: uppercase; letter-spacing: 0.25em; margin-bottom: 0.5rem; }
.step-title { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.5rem; letter-spacing: -0.03em; }
.step-desc { font-size: 0.875rem; color: var(--grey); line-height: 1.6; }

/* Step 1 widget */
.s1-widget {
  width: 100%; max-width: 220px;
  background: var(--light-grey); border-radius: 1rem;
  padding: 1rem; border: 1px solid rgba(0,0,0,0.04);
  display: flex; flex-direction: column; gap: 0.75rem;
}
.s1-avatar-wrap { display: flex; justify-content: center; position: relative; }
.s1-ring {
  width: 56px; height: 56px; border-radius: 50%; padding: 2px;
  background: linear-gradient(135deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}
.s1-ring-inner { width: 100%; height: 100%; background: var(--white); border-radius: 50%; padding: 2px; }
.s1-ring-inner img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.s1-ig-badge {
  position: absolute; bottom: -4px; right: calc(50% - 34px);
  background: var(--white); border-radius: 50%;
  padding: 2px; box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.s1-ig-badge svg { width: 16px; height: 16px; }
.s1-input-row {
  background: var(--white); border-radius: 0.5rem;
  padding: 0.5rem 0.75rem; display: flex; align-items: center; gap: 4px;
  border: 1px solid rgba(0,0,0,0.04);
}
.s1-at-sign { color: var(--grey); font-size: 0.875rem; font-weight: 500; }
.typewriter-text {
  font-size: 0.875rem; font-weight: 600; color: var(--black);
  white-space: nowrap; overflow: hidden;
  border-right: 2px solid var(--accent);
  width: 0; animation: typewriter 3s steps(12) infinite, blink-caret 0.6s step-end infinite;
  display: inline-block;
}

/* Step 2 widget */
.s2-container { width: 100%; max-width: 240px; height: 100%; position: relative; }
.s2-stage-1 {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  animation: stage1 4s ease-in-out infinite;
}
.s2-scan-wrap { position: relative; width: 96px; height: 96px; }
.s2-scan-wrap img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 2px solid rgba(0,0,0,0.06); }
.s2-ping {
  position: absolute; inset: 0; border-radius: 50%;
  background: rgba(255,140,66,0.3);
  animation: ping 1.5s cubic-bezier(0,0,0.2,1) infinite;
}
.laser-line {
  position: absolute; left: 0; right: 0; height: 4px;
  background: var(--accent); box-shadow: 0 0 10px rgba(255,140,66,0.8);
  top: 0; z-index: 10; animation: laser-scan 2s linear infinite;
}
.s2-stage-2 {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  animation: stage2 4s ease-in-out infinite; opacity: 0;
}
.s2-list {
  width: 190px; background: var(--light-grey);
  border-radius: 0.75rem; padding: 0.625rem;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex; flex-direction: column; gap: 8px;
}
.s2-list-title { font-size: 10px; font-weight: 700; color: var(--grey); text-transform: uppercase; padding: 0 4px; }
.s2-follow-item {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 8px; background: var(--white);
  border-radius: 0.5rem; border: 1px solid rgba(0,0,0,0.04);
}
.s2-follow-item img { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; }
.s2-follow-item span { font-size: 0.75rem; font-weight: 700; }

/* Step 3 widget */
.s3-container {
  position: relative; width: 100%; max-width: 240px; height: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent, black 5%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 5%, black 85%, transparent);
}
.s3-feed {
  position: absolute; top: 0; width: 100%;
  display: flex; flex-direction: column; gap: 10px;
  animation: vertical-marquee 12s linear infinite;
}
.feed-item {
  background: var(--light-grey); border-radius: 14px;
  padding: 0.75rem; box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex; align-items: center; gap: 10px;
}
.feed-item.ba { border-left: 4px solid var(--accent); }
.feed-item.bs { border-left: 4px solid var(--secondary); }
.feed-item.bsu { border-left: 4px solid var(--surface); }
.feed-item img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.feed-avatar-plus {
  width: 32px; height: 32px; border-radius: 50%;
  background: #dcfce7; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 12px; font-weight: 700; color: #16a34a;
}
.feed-content { flex: 1; min-width: 0; }
.feed-time { font-size: 10px; color: var(--grey); font-weight: 500; }
.feed-text { font-size: 11px; font-weight: 600; margin-top: 2px; }
.feed-text .acc { color: var(--accent); }

/* ===== TIKTOK SECTION ===== */
.tiktok-section { padding: 6rem 0; background: var(--white); overflow: hidden; }
.tiktok-header { text-align: center; margin-bottom: 3.5rem; padding: 0 1.5rem; }

.tiktok-rows {
  display: flex; flex-direction: column; gap: 12px;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.marquee-row { overflow: hidden; }
.marquee-track { display: flex; gap: 12px; }
.marquee-track.fwd-45 { animation: marquee 45s linear infinite; }
.marquee-track.rev-55 { animation: marquee-reverse 55s linear infinite; }
.marquee-track.fwd-50 { animation: marquee 50s linear infinite; }

.tt-thumb {
  position: relative; width: 140px; aspect-ratio: 9/16;
  border-radius: 1rem; overflow: hidden; flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
@media (min-width: 640px) { .tt-thumb { width: 160px; } }
.tt-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tt-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.4), transparent 40%, transparent); }
.tt-logo { position: absolute; top: 10px; left: 10px; }
.tt-logo svg { width: 20px; height: 20px; fill: white; opacity: 0.9; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2)); }
.tt-views { position: absolute; bottom: 10px; left: 10px; right: 10px; display: flex; align-items: center; gap: 6px; }
.tt-views svg { width: 16px; height: 16px; fill: white; opacity: 0.8; flex-shrink: 0; }
.tt-views span { font-size: 0.875rem; font-weight: 700; color: var(--white); filter: drop-shadow(0 1px 2px rgba(0,0,0,0.5)); }

/* ===== COMPARISON / FEATURES ===== */
.comparison-section { padding: 6rem 0.5rem; background: var(--bg); }
@media (min-width: 768px) { .comparison-section { padding: 6rem 1.5rem; } }
.comparison-container { max-width: 800px; margin: 0 auto; }
.comparison-header { text-align: center; margin-bottom: 3.5rem; }

.comp-table {
  border: 1px solid rgba(0,0,0,0.08); border-radius: 1rem; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.04); background: var(--white);
}
.comp-head-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  text-align: center; padding: 1.25rem 0 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  align-items: end; background: rgba(243,244,246,0.5);
}
@media (min-width: 768px) { .comp-head-row { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.ch-feat { text-align: left; padding-left: 1.25rem; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--grey); }
@media (min-width: 640px) { .ch-feat { padding-left: 2rem; } }
@media (min-width: 768px) { .ch-feat { grid-column: span 2; } }
.ch-ick { display: flex; justify-content: center; align-items: flex-end; transform: translateY(4px); font-size: 1.125rem; font-weight: 700; letter-spacing: -0.03em; }
.ch-ick .c-accent { color: var(--accent); }
.ch-others { color: var(--grey); font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; transform: translateY(4px); }

.comp-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  text-align: center; padding: 1.25rem 0;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: background 0.15s; position: relative;
}
.comp-row:last-child { border-bottom: none; }
.comp-row:hover { background: rgba(243,244,246,0.3); }
@media (min-width: 768px) { .comp-row { grid-template-columns: 1fr 1fr 1fr 1fr; } }

.cr-feat { text-align: left; padding-left: 1.25rem; padding-right: 0.5rem; font-weight: 700; font-size: 0.875rem; line-height: 1.3; }
@media (min-width: 640px) { .cr-feat { padding-left: 2rem; padding-right: 1rem; font-size: 0.9375rem; } }
@media (min-width: 768px) { .cr-feat { grid-column: span 2; } }

.cr-ick { display: flex; justify-content: center; align-items: center; position: relative; }
.cr-ick-bg { position: absolute; inset: 0; background: rgba(255,143,171,0.06); margin: -1.25rem 0; }
.cr-ick-badge {
  position: relative; font-size: 0.75rem; font-weight: 600;
  color: var(--accent); background: var(--white);
  padding: 4px 12px; border-radius: 9999px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid rgba(255,140,66,0.1); white-space: nowrap;
}
@media (min-width: 640px) { .cr-ick-badge { font-size: 0.875rem; } }
.cr-ick-check {
  position: relative; width: 24px; height: 24px;
  border-radius: 50%; background: #22c55e;
  display: flex; align-items: center; justify-content: center;
}
.cr-ick-check svg { width: 14px; height: 14px; }

.cr-other { display: flex; justify-content: center; align-items: center; }
.cr-no {
  font-size: 0.75rem; font-weight: 600; color: #f87171;
  background: #fef2f2; padding: 4px 12px; border-radius: 9999px; white-space: nowrap;
}
@media (min-width: 640px) { .cr-no { font-size: 0.875rem; } }

/* ===== REVIEWS ===== */
.reviews-section { padding: 6rem 0; background: var(--white); overflow: hidden; }
.reviews-header { padding: 0 1.5rem; text-align: center; margin-bottom: 1.5rem; }

.rating-card {
  background: var(--white); border: 1px solid rgba(0,0,0,0.06);
  border-radius: 1.25rem; padding: 1.5rem;
  max-width: 480px; margin: 0 auto 3rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.rating-inner { display: flex; align-items: flex-start; gap: 1.5rem; }
@media (max-width: 640px) { .rating-inner { flex-direction: column; align-items: center; } }
.rating-score { text-align: center; flex-shrink: 0; }
.rating-number { font-size: 3rem; font-weight: 800; color: var(--black); line-height: 1; }
.tp-stars { display: flex; gap: 3px; margin-top: 8px; justify-content: center; }
.tp-star { width: 22px; height: 22px; }
.rating-count { font-size: 0.75rem; color: var(--grey); margin-top: 6px; }
.rating-bars { flex: 1; width: 100%; }
.rb-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.rb-num { font-size: 0.75rem; color: var(--grey); width: 12px; text-align: right; flex-shrink: 0; }
.rb-star { width: 12px; height: 12px; flex-shrink: 0; }
.rb-track { flex: 1; height: 8px; background: var(--bg); border-radius: 9999px; overflow: hidden; }
.rb-fill { height: 100%; background: #00b67a; border-radius: 9999px; }
.rb-pct { font-size: 0.75rem; color: var(--grey); width: 32px; text-align: right; flex-shrink: 0; }

.reviews-rows { display: flex; flex-direction: column; gap: 1rem; }
.reviews-marquee-row {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.reviews-track { display: flex; gap: 1rem; }
.reviews-track.fwd { animation: marquee 35s linear infinite; }
.reviews-track.rev { animation: marquee-reverse 40s linear infinite; }

.review-card {
  background: var(--white); border: 1px solid rgba(0,0,0,0.06);
  border-radius: 1.25rem; padding: 1.25rem; width: 320px; flex-shrink: 0;
}
.rev-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.rev-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.rev-info { flex: 1; }
.rev-name-row { display: flex; align-items: center; gap: 8px; }
.rev-name { font-size: 0.875rem; font-weight: 700; }
.rev-pro { background: var(--accent); color: var(--white); font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 4px; }
.rev-stars-row { display: flex; gap: 2px; margin-top: 2px; }
.rev-stars-row .tp-star { width: 14px; height: 14px; }
.rev-text { font-size: 0.875rem; color: var(--grey); line-height: 1.6; }

/* ===== FAQ ===== */
.faq-section { padding: 6.25rem 2rem; background: var(--white); }
@media (max-width: 768px) { .faq-section { padding: 4.5rem 1.5rem; } }
.faq-container { max-width: 720px; margin: 0 auto; }
.faq-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8125rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent); margin-bottom: 1rem;
}
.faq-eyebrow::before { content: ''; display: block; width: 20px; height: 2px; background: var(--accent); border-radius: 2px; }
.faq-title {
  font-size: clamp(30px,5vw,42px); font-weight: 800;
  letter-spacing: -0.04em; line-height: 1.15;
  color: var(--black); margin-bottom: 3.75rem; max-width: 520px;
}
@media (max-width: 768px) { .faq-title { margin-bottom: 2.5rem; } }
.faq-list-el { list-style: none; }
.faq-item { border-bottom: 1px solid var(--light-grey); }
.faq-question {
  width: 100%; background: none; border: none; font-family: inherit;
  font-size: 1.0625rem; font-weight: 600; color: var(--black);
  text-align: left; padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; letter-spacing: -0.02em;
  transition: color 0.2s; cursor: pointer;
}
.faq-question:hover { color: var(--accent); }
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; fill: var(--grey); transition: transform 0.3s ease; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
.faq-answer p { font-size: 0.9375rem; color: var(--grey); line-height: 1.7; padding-bottom: 1.5rem; }

/* ===== CTA ===== */
.cta-section {
  padding: 6rem 1.5rem; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--secondary) 100%);
}
.cta-blob-1, .cta-blob-2 { position: absolute; border-radius: 50%; pointer-events: none; }
.cta-blob-1 {
  width: 300px; height: 300px; background: var(--light-blue);
  filter: blur(80px); opacity: 0.25; top: -80px; left: -60px;
  animation: float 6s ease-in-out infinite;
}
.cta-blob-2 {
  width: 250px; height: 250px; background: var(--white);
  filter: blur(80px); opacity: 0.2; bottom: -60px; right: -40px;
  animation: float-medium 8s ease-in-out infinite;
}
.cta-content { position: relative; z-index: 2; max-width: 560px; margin: 0 auto; text-align: center; }
.cta-title { font-size: clamp(28px,4vw,40px); font-weight: 800; color: var(--white); letter-spacing: -0.04em; line-height: 1.2; margin-bottom: 1rem; }
.cta-sub { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 2.5rem; line-height: 1.6; }
.cta-search-box {
  display: flex; align-items: center;
  background: var(--white); border-radius: 9999px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  padding: 0.75rem 0.75rem 0.75rem 1.25rem; margin-bottom: 2rem;
}
@media (min-width: 640px) { .cta-search-box { padding: 0.875rem 0.875rem 0.875rem 1.5rem; } }
.cta-at { color: rgba(107,114,128,0.4); font-weight: 600; padding-right: 4px; font-size: 1.125rem; }
.cta-input-wrap { display: flex; align-items: center; flex: 1; }
.cta-input { width: 100%; background: transparent; font-family: inherit; font-size: 1.125rem; font-weight: 500; outline: none; border: none; }
.btn-cta {
  background: var(--accent); color: var(--white);
  padding: 0.75rem 1.25rem; border-radius: 9999px;
  font-size: 0.875rem; font-weight: 700; border: none; flex-shrink: 0;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
@media (min-width: 640px) { .btn-cta { padding: 1rem 2.25rem; font-size: 1rem; } }
.btn-cta:hover { background: rgba(255,140,66,0.9); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,140,66,0.4); }

.cta-badges { display: flex; align-items: center; justify-content: center; gap: 1.25rem; flex-wrap: wrap; }
.cta-badge { display: flex; align-items: center; gap: 6px; }
.cta-badge span { font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.9); }
.cta-lock svg { fill: white; width: 18px; height: 18px; opacity: 0.8; }

/* ===== FOOTER ===== */
.footer { background: var(--black); color: var(--white); padding: 4rem 1.5rem 2rem; }
.footer-inner { max-width: 1000px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.footer-logo { width: 36px; height: 36px; border-radius: 10px; }
.footer-name { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.05em; line-height: 1; }
.footer-name .c-accent { color: var(--accent); }
.footer-tagline { color: rgba(255,255,255,0.5); font-size: 0.875rem; line-height: 1.6; max-width: 280px; }
.footer-socials { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.25rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1); display: flex;
  align-items: center; justify-content: center;
  transition: background 0.2s; text-decoration: none;
}
.social-btn:hover { background: rgba(255,255,255,0.2); }
.social-btn svg { width: 16px; height: 16px; fill: white; }
.footer-col-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
@media (max-width: 480px) { .footer-bottom { flex-direction: column; align-items: center; } }
.footer-copyright { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.payment-types { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; max-width: 300px; justify-content: flex-end; }
.pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pay-badge img, .apple-pay-badge svg {
  height: 24px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.2s;
}
.pay-badge:hover img, .apple-pay-badge:hover svg { transform: scale(1.05); }

/* ===== DATA REVEAL ===== */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal].revealed { opacity: 1; transform: none; }

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-20px)} }
@keyframes float-reverse { 0%,100%{transform:translateY(0)} 50%{transform:translateY(20px)} }
@keyframes float-slow { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes float-medium { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-15px)} }
@keyframes fade-up { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes marquee-reverse { from{transform:translateX(-50%)} to{transform:translateX(0)} }
@keyframes vertical-marquee { from{transform:translateY(0)} to{transform:translateY(-50%)} }
@keyframes typewriter { 0%{width:0} 50%{width:100%} 75%{width:100%} 100%{width:0} }
@keyframes blink-caret { 50%{border-color:transparent} }
@keyframes blink { 50%{opacity:0} }
@keyframes laser-scan { 0%{top:0} 100%{top:100%} }
@keyframes stage1 { 0%,60%{opacity:1} 80%,100%{opacity:0} }
@keyframes stage2 { 0%,60%{opacity:0} 80%,100%{opacity:1} }
@keyframes ping { 75%,100%{transform:scale(2);opacity:0} }
@keyframes pulse { 50%{opacity:.5} }
@keyframes live-pop {
  0%   { transform: scale(1);    color: inherit; }
  40%  { transform: scale(1.18); color: #4ade80;  }
  100% { transform: scale(1);    color: inherit; }
}
.live-pop { animation: live-pop 0.35s ease-out; }

/* Faster, more energetic dot ping */
.live-dot-ping {
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
}
.live-ticker-wrap strong { display: inline-block; }

/* ===== LANG DROPDOWN ===== */
.lang-btn { display: flex; align-items: center; gap: 6px; }
.lang-btn-code {
  font-size: 0.7rem; font-weight: 700;
  color: rgba(107,114,128,0.55); letter-spacing: 0.04em;
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.13), 0 1px 4px rgba(0,0,0,0.06);
  padding: 8px;
  min-width: 195px;
  z-index: 300;
  opacity: 0;
  transform: translateY(-8px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.lang-dropdown.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 10px;
  font-family: inherit;
  color: var(--black);
  transition: background 0.15s;
  text-align: left;
}
.lang-option:hover { background: rgba(0,0,0,0.04); }
.lang-option.active { color: var(--accent); }
.lang-option.active .lo-code { color: var(--accent); opacity: 0.65; }
.lo-flag { font-size: 1.15rem; line-height: 1; }
.lo-code {
  font-size: 0.7rem; font-weight: 700;
  color: rgba(107,114,128,0.55);
  min-width: 22px; letter-spacing: 0.04em;
}
.lo-name { font-size: 0.9rem; font-weight: 500; flex: 1; }

/* Flag icon sizing */
.lo-flag-img {
  width: 22px !important;
  height: 16px !important;
  border-radius: 3px;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
  display: inline-block;
}

/* Cleaner dropdown option layout */
.lang-option {
  gap: 12px;
  padding: 10px 16px;
}

/* Compact navbar button code */
.lang-btn-code {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(107,114,128,0.6);
  letter-spacing: 0.04em;
}

/* Navbar flag */
#langFlagImg {
  width: 20px !important;
  height: 15px !important;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
  flex-shrink: 0;
}

/* Auth utilities */
.display-none { display: none !important; }

/* Global overrides for Clerk */
.cl-watermark { display: none !important; }
div[class*="cl-internal"][class*="watermark"] { display: none !important; }
