/* ============================================================
   Spider Service — Redesigned Stylesheet
   Palette: Dark hero/CTA + warm light content sections
   Accent: Vivid orange #FF6B2C
   Fonts: Unbounded (display) + Inter (body)
   ============================================================ */

:root {
  --accent: #FF6B2C;
  --accent-hover: #E85A1E;
  --accent-light: #FF8A50;
  --accent-pale: #FFF0E8;
  --accent-glow: rgba(255, 107, 44, 0.25);

  --dark: #0C0A09;
  --dark-2: #161412;
  --dark-card: rgba(255, 255, 255, 0.04);
  --dark-border: rgba(255, 255, 255, 0.07);

  --light: #FAF9F6;
  --light-warm: #FDF6F0;
  --white: #FFFFFF;

  --text-on-dark: #F5F5F4;
  --text-muted-on-dark: rgba(245, 245, 244, 0.55);
  --text-on-light: #1C1917;
  --text-muted-on-light: rgba(28, 25, 23, 0.6);

  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-on-light);
  background-color: var(--light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.15;
}
p { margin: 0; }
ul { margin: 0; }

/* Selection */
::selection {
  background: var(--accent);
  color: white;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-hover); }

/* ==================== LAYOUT ==================== */
.container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.container--narrow {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.container--medium {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.section-pad { padding: 96px 0; }
@media (max-width: 768px) { .section-pad { padding: 64px 0; } }

/* ==================== HEADER ==================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(12, 10, 9, 0.5);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  border-bottom-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 20px rgba(0, 0, 0, 0.06);
}
.header-inner {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--text-on-dark);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  text-decoration: none;
  transition: color 0.4s ease;
}
.logo svg { transition: transform 0.3s ease; }
.logo:hover svg { transform: rotate(45deg); }
.site-header.scrolled .logo { color: var(--text-on-light); }
.site-header.scrolled .logo svg circle,
.site-header.scrolled .logo svg path {
  transition: fill 0.4s ease, stroke 0.4s ease;
}

/* Desktop nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(245, 245, 244, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
  border-radius: 4px;
}
.nav-link:hover { color: var(--accent-light); }
.nav-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.site-header.scrolled .nav-link { color: var(--text-muted-on-light); }
.site-header.scrolled .nav-link:hover { color: var(--accent); }

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #ffffff;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 16px var(--accent-glow);
}
@media (min-width: 640px) {
  .header-cta { display: inline-flex; }
}
.header-cta:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 24px rgba(255, 107, 44, 0.35);
}
.header-cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Burger */
.burger {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 0.5rem;
  margin-right: -0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 1024px) { .burger { display: none; } }
.burger-line {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--text-on-dark);
  border-radius: 2px;
  transition: background 0.4s ease;
}
.site-header.scrolled .burger-line { background: var(--text-on-light); }

/* ==================== MOBILE MENU ==================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(12, 10, 9, 0.96);
  backdrop-filter: blur(24px);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-on-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .btn-primary { margin-top: 1rem; }
.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-menu-close svg { stroke: var(--text-on-dark); }

/* ==================== HERO ==================== */
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 5rem;
  background: var(--dark);
}
@media (min-width: 768px) {
  .hero-section {
    padding-top: 160px;
    padding-bottom: 7rem;
  }
}

/* Grid pattern overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 60% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 60% 40%, black 20%, transparent 70%);
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-mobile-img {
  width: 12rem;
  margin-bottom: 1.5rem;
  display: block;
  filter: brightness(0) invert(1) opacity(0.7);
}
@media (min-width: 640px) {
  .hero-mobile-img { display: none; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-on-dark);
}
@media (min-width: 640px) {
  .hero-title { font-size: 2.75rem; }
}
@media (min-width: 1024px) {
  .hero-title { font-size: 3.25rem; }
}

.hero-subtitle {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: var(--text-muted-on-dark);
  line-height: 1.75;
  max-width: 36rem;
}

.hero-features {
  margin-top: 2rem;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.hero-feature-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  background: rgba(255, 107, 44, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.hero-feature-text {
  color: var(--text-muted-on-dark);
  line-height: 1.5;
}
.hero-feature-text strong {
  color: var(--text-on-dark);
}

.hero-ctas {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

/* Hero visual — phone mockup */
.hero-visual {
  display: flex;
  justify-content: center;
}
@media (min-width: 1024px) {
  .hero-visual { justify-content: flex-end; }
}

.phone-wrap {
  position: relative;
}
/* Orange glow behind phone */
.phone-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110%;
  height: 110%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 107, 44, 0.15) 0%, rgba(255, 107, 44, 0.05) 40%, transparent 70%);
  z-index: 0;
  filter: blur(20px);
  pointer-events: none;
}

.phone-frame {
  position: relative;
  z-index: 1;
  width: 300px;
  background: #1C1C1E;
  border-radius: 36px;
  padding: 0.75rem;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 24px 80px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(255, 107, 44, 0.08);
}
@media (min-width: 640px) {
  .phone-frame { width: 340px; }
}

.phone-screen {
  background: linear-gradient(160deg, #A8C48A 0%, #8DB574 30%, #7BAE7F 60%, #6DA48D 100%);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.phone-header {
  background: #517DA2;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.phone-bot-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.phone-bot-name {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
}
.phone-bot-label {
  color: rgba(255, 255, 255, 0.60);
  font-size: 0.75rem;
}
.phone-messages {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 360px;
  gap: 0.75rem;
  position: relative;
}
.phone-messages::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('tgbackground.svg') center / 180% repeat;
  opacity: 0.15;
  pointer-events: none;
}
.phone-msg {
  background: #ffffff;
  border-radius: 0.75rem 0.75rem 0.75rem 0.25rem;
  padding: 0.75rem 1rem;
  max-width: 260px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 1;
}
.phone-msg--faded { opacity: 0.55; max-width: 240px; }
.phone-msg-chat {
  color: #3A8FD6;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.phone-msg-text {
  color: #1a1a1a;
  font-size: 0.875rem;
  line-height: 1.5;
}
.phone-msg-time {
  color: rgba(0, 0, 0, 0.30);
  font-size: 0.625rem;
  margin-top: 0.5rem;
  text-align: right;
}
.phone-msg-lead-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.phone-msg-lead-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(255, 107, 44, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-msg-lead-icon span { font-size: 0.75rem; }
.phone-msg-lead-label {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
}
.phone-msg-meta {
  color: #555;
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}
.phone-msg-meta span { color: #1a1a1a; font-weight: 500; }
.phone-msg-cta {
  background: var(--accent);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  padding: 0.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-top: 0.5rem;
}
.phone-msg-cta:hover { background: var(--accent-hover); }

/* Decorative elements behind phone */
.phone-deco-bottom {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  width: 6rem;
  height: 6rem;
  background: rgba(255, 107, 44, 0.08);
  border-radius: 1rem;
  z-index: 0;
  transform: rotate(-6deg);
}
.phone-deco-top {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  width: 4rem;
  height: 4rem;
  background: rgba(255, 107, 44, 0.06);
  border-radius: 0.75rem;
  z-index: 0;
  transform: rotate(12deg);
}

/* ==================== STATS BAR ==================== */
.stats-bar {
  position: relative;
  margin-top: -2.5rem;
  z-index: 20;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.stats-inner {
  background: rgba(22, 20, 18, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .stats-inner { grid-template-columns: repeat(4, 1fr); }
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(245, 245, 244, 0.45);
  margin-top: 0.375rem;
  font-weight: 500;
}
.stats-note {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
  color: var(--text-muted-on-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==================== PROBLEM SECTION ==================== */
.problem-section {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.problem-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .problem-grid { grid-template-columns: repeat(3, 1fr); }
}
.problem-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  backdrop-filter: blur(8px);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.problem-card:hover {
  border-color: rgba(255, 107, 44, 0.15);
  background: rgba(255, 255, 255, 0.06);
}
.problem-card-icon { font-size: 1.875rem; margin-bottom: 1rem; }
.problem-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 0.75rem;
}
.problem-card-text {
  color: var(--text-muted-on-dark);
  line-height: 1.7;
  font-size: 0.925rem;
}

/* Section headers */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header--wide { margin-bottom: 4rem; }
.section-title {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--text-on-light);
  letter-spacing: -0.03em;
  line-height: 1.2;
}
@media (min-width: 640px) {
  .section-title { font-size: 2rem; }
}
.section-title--white { color: var(--text-on-dark); }
.section-subtitle {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--text-muted-on-light);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ==================== FEATURES SECTION ==================== */
.features-section {
  background: var(--light);
  position: relative;
}
.feature-block {
  display: grid;
  gap: 1rem;
  align-items: center;
  margin-bottom: 5rem;
}
@media (min-width: 1024px) {
  .feature-block {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
.feature-block:last-child { margin-bottom: 0; }

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-pale);
  color: var(--accent-hover);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-on-light);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.feature-text {
  color: var(--text-muted-on-light);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.feature-text + .feature-text { margin-top: -0.5rem; }
.feature-text--emphasis {
  font-weight: 600;
  color: rgba(28, 25, 23, 0.7);
}
.feature-image-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
}
.feature-image-wrap img {
  border-radius: var(--radius-md);
  width: 100%;
}
.feature-image-bare img {
  width: 100%;
  display: block;
}
.feature-image-caption {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted-on-light);
  font-style: italic;
}

/* Reversed layout */
@media (min-width: 1024px) {
  .feature-block--reversed .feature-content { order: 2; }
  .feature-block--reversed .feature-image-wrap { order: 1; }
  .feature-block--reversed .tg-chat-mockup { order: 1; }
}

/* ==================== TG CHAT MOCKUP ==================== */
.tg-chat-mockup {
  background: #0E1621;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.04);
  position: relative;
}
.tg-chat-header {
  background: #17212B;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.tg-chat-header-icon { font-size: 1.25rem; }
.tg-chat-header-name {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
}
.tg-chat-header-members {
  color: rgba(255, 255, 255, 0.40);
  font-size: 0.75rem;
}
.tg-chat-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}
.tg-chat-body::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('tgbackground.svg') center / 140% repeat;
  filter: invert(1);
  opacity: 0.06;
  pointer-events: none;
}
.tg-bubble {
  background: #182533;
  border-radius: 0.75rem 0.75rem 0.75rem 0.25rem;
  padding: 0.5rem 0.75rem;
  max-width: 90%;
  position: relative;
  z-index: 1;
}
.tg-bubble--reject { }
.tg-bubble--pass {
  opacity: 1;
  border-left: 3px solid #22c55e;
}
.tg-bubble-author {
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.125rem;
}
.tg-bubble-author--1 { color: #E8A882; }
.tg-bubble-author--2 { color: #7EB8E0; }
.tg-bubble-author--3 { color: #B39DDB; }
.tg-bubble-author--4 { color: #81C784; }
.tg-bubble-text {
  color: rgba(255, 255, 255, 0.90);
  font-size: 0.875rem;
  line-height: 1.5;
}
.tg-bubble-meta {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.25rem;
}
.tg-bubble-time {
  color: rgba(255, 255, 255, 0.20);
  font-size: 0.625rem;
}
.tg-badge {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-pill);
  margin-top: 0.375rem;
  display: inline-block;
}
.tg-badge--reject {
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
}
.tg-badge--pass {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
}

/* ==================== HOW IT WORKS ==================== */
.how-section {
  background: var(--light-warm);
}
.steps { display: flex; flex-direction: column; gap: 3rem; }
.step { position: relative; display: flex; gap: 1.5rem; }
.step-number-wrap { flex-shrink: 0; position: relative; }
.step-number {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-md);
  background: var(--accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.step-connector {
  position: absolute;
  left: 28px;
  top: 56px;
  bottom: -32px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), rgba(255, 107, 44, 0.15));
}
.step-body { padding-bottom: 3rem; }
.step:last-child .step-body { padding-bottom: 0; }
.step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-on-light);
  margin-bottom: 0.5rem;
}
.step-text {
  color: var(--text-muted-on-light);
  line-height: 1.7;
}
.step-text a {
  color: var(--accent);
  font-weight: 500;
}
.step-text a:hover { text-decoration: underline; }
.section-cta { text-align: center; margin-top: 3rem; }

/* ==================== DEMO SECTION ==================== */
.demo-section { background: var(--light); }
.demo-visual {
  display: flex;
  justify-content: center;
}
.demo-image-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  max-width: 28rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}
.demo-image-wrap img {
  border-radius: var(--radius-md);
  width: 100%;
}
.demo-visual .demo-image-bare {
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}
.demo-caption {
  text-align: center;
  margin-top: 1rem;
  color: var(--text-muted-on-light);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ==================== COUNTRIES ==================== */
.countries-section { background: var(--light); }
.countries-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .countries-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .countries-grid { grid-template-columns: repeat(4, 1fr); }
}
.country-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03), 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.country-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 8px 32px rgba(255, 107, 44, 0.1);
  border-color: rgba(255, 107, 44, 0.15);
}
.country-card:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
.country-card--new {
  background: var(--accent-pale);
  border-style: dashed;
  border-width: 2px;
  border-color: rgba(255, 107, 44, 0.25);
  box-shadow: none;
}
.country-card--new:hover { box-shadow: none; }
.country-flag { font-size: 1.5rem; flex-shrink: 0; }
.country-info { min-width: 0; }
.country-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-on-light);
  font-size: 0.8rem;
  line-height: 1.25;
}
.country-name--muted { color: var(--accent-hover); }
.country-chats {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 0.125rem;
}
.country-chats span { color: var(--text-muted-on-light); font-weight: 500; }
.country-chats--new { color: var(--accent); font-size: 0.85rem; margin-top: 0.125rem; }
.countries-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-muted-on-light);
}
.countries-note a {
  color: var(--accent);
  font-weight: 500;
}
.countries-note a:hover { text-decoration: underline; }

/* ==================== NICHES ==================== */
.niches-section {}
.niches-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.niches-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-muted-on-light);
}
.niches-note a {
  color: var(--accent);
  font-weight: 500;
}
.niches-note a:hover { text-decoration: underline; }
.niches-more-link { text-align: center; margin-top: 1rem; }

/* Chips */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-on-light);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}
.chip:hover {
  border-color: rgba(255, 107, 44, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(255, 107, 44, 0.08);
}
.chip:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.chip--more {
  background: var(--accent-pale);
  border-color: rgba(255, 107, 44, 0.2);
  color: var(--accent-hover);
  font-weight: 600;
}

/* ==================== KEYWORDS ==================== */
.keywords-section {}
.keywords-card {
  padding: 40px;
  background: var(--dark) !important;
  color: var(--text-on-dark) !important;
  border-color: var(--dark-border) !important;
}
.keywords-card:hover {
  transform: none;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.2);
}
.keywords-card .feature-text {
  color: var(--text-muted-on-dark);
}
.keywords-card .feature-text em {
  color: rgba(245, 245, 244, 0.75);
}
.keywords-card .feature-text strong {
  color: var(--accent-light);
}
.keywords-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-on-dark);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  text-align: left;
}
.keywords-highlight {
  background: rgba(255, 107, 44, 0.08);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: 1px solid rgba(255, 107, 44, 0.12);
  margin-top: 1.5rem;
}
.keywords-highlight-text {
  color: var(--accent-light);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

/* ==================== PRICING ==================== */
.pricing-section {
  background: var(--light);
  position: relative;
}
.pricing-wrap { max-width: 32rem; margin-left: auto; margin-right: auto; }
.pricing-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 2px solid rgba(255, 107, 44, 0.12);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
  border-color: rgba(255, 107, 44, 0.3);
  box-shadow: 0 8px 48px rgba(255, 107, 44, 0.1), 0 0 0 1px rgba(255, 107, 44, 0.1);
}
.pricing-tag {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--text-on-light);
  letter-spacing: -0.04em;
}
.pricing-period {
  color: var(--text-muted-on-light);
  font-weight: 500;
}
.pricing-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.pricing-feature-check {
  color: var(--accent);
  margin-top: 0.125rem;
  flex-shrink: 0;
  font-weight: 700;
}
.pricing-feature-text { color: var(--text-muted-on-light); }
.pricing-btn-full {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.pricing-notes {
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-muted-on-light);
}
.pricing-note-icon { flex-shrink: 0; margin-top: 0.125rem; }
.pricing-note a { color: var(--accent); font-weight: 500; }
.pricing-note a:hover { text-decoration: underline; }
.pricing-footer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.75rem;
  color: rgba(28, 25, 23, 0.35);
  font-style: italic;
}

/* ==================== REVIEWS ==================== */
.reviews-section {
  background: var(--dark);
  overflow: hidden;
}
.reviews-section .section-title { color: var(--text-on-dark); }
.reviews-section .section-subtitle { color: var(--text-muted-on-dark); }

.reviews-track {
  position: relative;
  /* Fade edges */
  mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%);
}
.reviews-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 max(1.5rem, calc((100vw - 80rem) / 2 + 1.5rem));
  padding-bottom: 1rem;
  scrollbar-width: none;
}
.reviews-scroll::-webkit-scrollbar { display: none; }

.review-card {
  flex-shrink: 0;
  width: 280px;
  scroll-snap-align: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 44, 0.2);
}
.review-img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 640px) {
  .review-card { width: 320px; }
}
@media (min-width: 1024px) {
  .review-card { width: 340px; }
}

/* ==================== EXTRA FEATURES ==================== */
.extra-features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}
.extra-feature-card {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
@media (min-width: 640px) {
  .extra-feature-card {
    width: calc(50% - 10px);
    display: block;
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .extra-feature-card { width: calc(33.333% - 14px); }
}
.extra-feature-icon {
  font-size: 1.875rem;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .extra-feature-icon { margin-bottom: 0.75rem; }
}
.extra-feature-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-on-light);
  margin-bottom: 0.25rem;
}
@media (min-width: 640px) {
  .extra-feature-title { margin-bottom: 0.5rem; }
}
.extra-feature-text {
  font-size: 0.85rem;
  color: var(--text-muted-on-light);
  line-height: 1.65;
}
.extra-feature-card { padding: 20px 24px; }

/* ==================== FAQ ==================== */
.faq-section { background: var(--light); }
.faq-item { border-bottom: 1px solid rgba(0, 0, 0, 0.06); }
.faq-q {
  padding: 24px 0;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s ease;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--text-on-light);
  font-family: var(--font-body);
}
.faq-q:hover { color: var(--accent); }
.faq-q:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
.faq-chevron {
  width: 20px; height: 20px; flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: var(--accent);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
}
.faq-item.open .faq-a { max-height: 300px; opacity: 1; }
.faq-answer-text {
  padding-bottom: 1.5rem;
  color: var(--text-muted-on-light);
  line-height: 1.7;
}

/* ==================== FINAL CTA ==================== */
.cta-section {
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: var(--dark);
}
/* Radial glow in CTA */
.cta-bg::after {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 44, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  z-index: 10;
  text-align: center;
}
.cta-title {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--text-on-dark);
  letter-spacing: -0.03em;
  line-height: 1.2;
}
@media (min-width: 640px) {
  .cta-title { font-size: 2rem; }
}
.cta-subtitle {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  color: var(--text-muted-on-dark);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-buttons {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .cta-buttons { flex-direction: row; }
}
.cta-btn-main {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: 0 0 24px var(--accent-glow), 0 4px 20px rgba(0, 0, 0, 0.2);
}
.cta-btn-main:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 36px rgba(255, 107, 44, 0.35), 0 8px 28px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}
.cta-btn-main:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.cta-qr-block {
  display: none;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
}
@media (min-width: 768px) {
  .cta-qr-block { display: flex; }
}
.cta-qr-img {
  border-radius: var(--radius-sm);
  width: 4rem;
  height: 4rem;
}
.cta-qr-text { text-align: left; }
.cta-qr-label {
  color: rgba(255, 255, 255, 0.90);
  font-size: 0.875rem;
  font-weight: 600;
}
.cta-qr-hint {
  color: rgba(255, 255, 255, 0.40);
  font-size: 0.75rem;
}
.cta-contact {
  margin-top: 2rem;
  color: rgba(245, 245, 244, 0.35);
  font-size: 0.875rem;
}
.cta-contact a {
  color: rgba(245, 245, 244, 0.55);
  text-decoration: underline;
  transition: color 0.2s ease;
}
.cta-contact a:hover { color: rgba(245, 245, 244, 0.80); }

/* ==================== FOOTER ==================== */
.site-footer {
  background: #060504;
  color: rgba(245, 245, 244, 0.55);
  padding-top: 4rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-inner {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-on-dark);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  text-decoration: none;
  margin-bottom: 1rem;
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(245, 245, 244, 0.35);
  line-height: 1.6;
}
.footer-col-title {
  color: var(--text-on-dark);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.footer-col-title--spaced { margin-top: 1.5rem; }
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  font-size: 0.85rem;
}
.footer-nav a {
  color: rgba(245, 245, 244, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-nav a:hover { color: var(--accent-light); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; }
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(245, 245, 244, 0.25);
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.8rem;
}
.footer-social a {
  color: rgba(245, 245, 244, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-social a:hover { color: var(--accent-light); }

/* ==================== BLOBS ==================== */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.10;
  animation: blobFloat 20s ease-in-out infinite;
  pointer-events: none;
}
.blob--hero-right {
  width: 600px; height: 600px;
  background: var(--accent);
  top: -160px; right: -160px;
}
.blob--hero-left {
  width: 400px; height: 400px;
  background: var(--accent-light);
  bottom: 0; left: -10%;
  opacity: 0.06;
}
.blob--problem {
  width: 400px; height: 400px;
  background: var(--accent);
  top: -10%; right: -5%;
  opacity: 0.05;
}
.blob--cta-right {
  width: 500px; height: 500px;
  background: var(--accent);
  top: -160px; right: -80px;
  opacity: 0.06;
}
.blob--cta-left {
  width: 300px; height: 300px;
  background: var(--accent-light);
  bottom: 0; left: -5%;
  opacity: 0.05;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* ==================== ANIMATIONS ==================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-children.visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(2) { transition-delay: 80ms; opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(3) { transition-delay: 160ms; opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(4) { transition-delay: 240ms; opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(5) { transition-delay: 320ms; opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(6) { transition-delay: 400ms; opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(7) { transition-delay: 480ms; opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(8) { transition-delay: 560ms; opacity: 1; transform: translateY(0); }

/* ==================== BUTTONS ==================== */
.btn-primary {
  background: var(--accent);
  color: white;
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 0 20px var(--accent-glow), 0 4px 16px rgba(255, 107, 44, 0.15);
  text-decoration: none;
  cursor: pointer;
  border: none;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 32px rgba(255, 107, 44, 0.35), 0 8px 28px rgba(255, 107, 44, 0.2);
}
.btn-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 0 12px var(--accent-glow);
}
.btn-primary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.btn-secondary {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease, color 0.2s ease;
}
.btn-secondary:hover { color: var(--accent-hover); transform: translateX(4px); }
.btn-secondary:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 4px; }

/* Hero-specific button overrides for dark bg */
.hero-section .btn-secondary {
  color: rgba(245, 245, 244, 0.6);
}
.hero-section .btn-secondary:hover {
  color: var(--accent-light);
}

/* ==================== CARDS ==================== */
.card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03), 0 8px 32px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04), 0 16px 48px rgba(0, 0, 0, 0.06);
}

/* ==================== UTILITIES ==================== */
.section-content-relative {
  position: relative;
  z-index: 10;
}

/* Grain texture */
.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px;
}

/* Stat num light variant (unused now but kept for compat) */
.stat-num-light {
  background: linear-gradient(135deg, var(--accent-light), #FFD4B8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Telegram message mockup (if used elsewhere) */
.tg-message {
  background: var(--white);
  border-radius: 12px 12px 12px 4px;
  padding: 12px 16px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  max-width: 320px;
}
.tg-message-own {
  background: #EFFDDE;
  border-radius: 12px 12px 4px 12px;
  margin-left: auto;
}
