
:root {
  --bg: #050816;
  --bg-card: #0b1020;
  --accent: #4f8bff;
  --accent-2: #ff3fb4;
  --text: #ffffff;
  --muted: #a3adc2;
  --border: rgba(255, 255, 255, 0.08);
  --radius-lg: 18px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.45);
}
*,
*::before,
*::after { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(79,139,255,0.26) 0, transparent 55%),
    radial-gradient(circle at top right, rgba(255,63,180,0.20) 0, transparent 55%),
    radial-gradient(circle at bottom, rgba(16,185,129,0.08) 0, transparent 60%),
    #050816;
  min-height: 100%;
}
body { display: flex; flex-direction: column; }
a { color: inherit; text-decoration: none; }
.app-shell { min-height: 100vh; display: flex; flex-direction: column; }
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 64px;
  backdrop-filter: blur(20px);
  background: linear-gradient(to bottom, rgba(5, 8, 22, 0.96), rgba(5, 8, 22, 0.7));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-left { display: flex; align-items: center; gap: 10px; }
.logo-dragon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background:#0b1020;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.12), 0 12px 24px rgba(0,0,0,0.4);
  font-size: 18px;
}
.logo-text-main { font-weight: 700; letter-spacing: 0.02em; font-size: 17px; }
.logo-text-sub { font-size: 12px; color: var(--muted); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
}
.nav-links a { color: var(--muted); padding: 4px 0; }
.nav-links a:hover { color: #e4ecff; }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.btn {
  border-radius: 999px;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: 0.17s ease-out;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  border:1px solid rgba(60,60,60,0.6);
  color: var(--muted);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); color: #fff; }
.btn-sm { padding: 6px 12px; font-size: 12px; }
.lang-toggle {
  padding: 4px 10px;
  border-radius: 999px;
  border:1px solid rgba(60,60,60,0.6);
  background: rgba(5, 8, 22, 0.8);
  font-size: 11px;
  cursor: pointer;
  color: var(--muted);
}
.lang-toggle span.active { color: #fff; }
.main { flex: 1; }
.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 26px 20px 60px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  margin-top: 30px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  background: rgba(8, 12, 28, 0.9);
  border:1px solid rgba(60,60,60,0.6);
  color: var(--muted);
}
.hero-pill-badge {
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(64, 180, 255, 0.12);
  color: #9cd5ff;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-title {
  font-size: 34px;
  line-height: 1.18;
  margin: 16px 0 10px;
}
.hero-subtitle {
  color: var(--muted);
  font-size: 14px;
  max-width: 420px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.hero-meta {
  display: flex;
  gap: 18px;
  margin-top: 16px;
  font-size: 11px;
  color: var(--muted);
  flex-wrap: wrap;
}
.hero-meta strong { color: #fff; }
.hero-dragon-card {
  border-radius: 26px;
  padding: 18px;
  background:#0b1020;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
  border:1px solid rgba(60,60,60,0.6);
  position: relative;
  overflow: hidden;
}
.hero-dragon {
  position: absolute;
  right: -8px;
  top: -6px;
  width: 180px;
  opacity: 0.97;
}
.hero-dragon-card-inner { position: relative; z-index: 1; }
.hero-dragon-title { font-size: 14px; margin: 8px 0; }
.hero-dragon-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(6, 14, 40, 0.8);
  border:1px solid rgba(60,60,60,0.6);
  font-size: 10px;
  color: var(--muted);
}
.hero-dragon-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.stat-card {
  border-radius: 14px;
  padding: 10px;
  background: rgba(5, 9, 26, 0.92);
  border:1px solid rgba(60,60,60,0.6);
  font-size: 11px;
}
.stat-label { color: var(--muted); font-size: 10px; }
.stat-value { font-size: 15px; font-weight: 700; }
.stat-tag { font-size: 9px; margin-top: 2px; color: #9cd5ff; }
.hero-footnote {
  margin-top: 10px;
  font-size: 11px;
  color: var(--muted);
}
.section { margin-top: 40px; }
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}
.section-title { font-size: 18px; font-weight: 600; }
.section-kicker { font-size: 11px; color: var(--muted); }
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.card {
  border-radius: var(--radius-lg);
  background: rgba(8, 12, 30, 0.95);
  border:1px solid rgba(60,60,60,0.6);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.45);
  padding: 14px;
  font-size: 13px;
}
.card-title { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.card-body { color: var(--muted); font-size: 12px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.price-card {
  border-radius: 20px;
  background: linear-gradient(145deg, #090c20, #050616);
  border:1px solid rgba(60,60,60,0.6);
  padding: 18px 16px 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
}
.price-card.popular { border-color: rgba(255, 63, 180, 0.95); }
.price-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.price-name { font-size: 16px; font-weight: 600; margin: 4px 0 6px; }
.price-value { font-size: 22px; font-weight: 700; }
.price-period { font-size: 11px; color: var(--muted); }
.price-feature-list {
  margin: 10px 0 12px;
  padding-left: 18px;
  font-size: 12px;
  color: var(--muted);
}
.helper-text { margin-top: 10px; font-size: 11px; color: var(--muted); }
.form { margin-top: 18px; display: grid; gap: 12px; }
.form-row { display: flex; flex-direction: column; gap: 4px; }
.label { font-size: 12px; color: var(--muted); }
.input, .select, .textarea {
  border-radius: 12px;
  background: rgba(8, 12, 30, 0.9);
  border:1px solid rgba(60,60,60,0.6);
  padding: 8px 10px;
  font-size: 13px;
  color: #fff;
  outline: none;
}
.footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 20px 18px;
  font-size: 11px;
  color: var(--muted);
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-dragon { position: static; width: 160px; display: block; margin: 0 auto; }
}
@media (max-width: 768px) {
  .nav-inner { padding-inline: 14px; }
  .cards-3, .pricing-grid { grid-template-columns: minmax(0, 1fr); }
  .page { padding-inline: 14px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 26px; }
}


/* Mobile tuning for nav login / signup and hero */
@media (max-width: 768px) {
  .nav-inner {
    flex-wrap: wrap;
    row-gap: 8px;
  }
  .nav-left {
    flex: 1 1 100%;
  }
  .nav-cta {
    flex: 1 1 100%;
    justify-content: flex-end;
  }
  .nav-cta .btn-sm,
  .nav-cta .btn {
    padding: 4px 10px;
    font-size: 11px;
  }
  .lang-toggle {
    padding: 3px 8px;
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .nav-cta {
    justify-content: flex-start;
    gap: 8px;
  }
  .nav-cta .btn-sm,
  .nav-cta .btn {
    padding: 4px 8px;
    font-size: 10px;
  }
  .hero-title { font-size: 24px; }
  .hero-subtitle { font-size: 13px; }
  .hero-meta { font-size: 10px; }
}


/* Rodi AI chat */
.rd-chat-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
}

.rd-chat-window {
  border-radius: 12px;
  padding: 12px;
  max-height: 420px;
  overflow-y: auto;
  background:#0b1020;
  border:1px solid rgba(60,60,60,0.6);
}

.rd-chat-message {
  margin-bottom: 10px;
}

.rd-chat-label {
  font-size: 11px;
  opacity: 0.7;
  margin-bottom: 2px;
}

.rd-chat-bubble {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.4;
}

.rd-chat-message-user .rd-chat-bubble {
  background: #2563eb;
  color: #fff;
  border-bottom-right-radius: 2px;
}

.rd-chat-message-rodi .rd-chat-bubble {
  background: rgba(15,23,42,0.9);
  border:1px solid rgba(60,60,60,0.6);
  border-bottom-left-radius: 2px;
}

.rd-chat-form {
  display: flex;
  gap: 8px;
}

.rd-chat-status {
  font-size: 12px;
  opacity: 0.8;
}

.rd-chat-note {
  font-size: 12px;
  opacity: 0.7;
}

/* Rodi AI chat formatting improvements */

.rd-chat-bubble {
  white-space: normal;
  line-height: 1.7;
  font-size: 14px;
}

.rd-chat-bubble p {
  margin: 0 0 8px;
}

.rd-chat-bubble strong {
  display: inline-block;
  margin-bottom: 2px;
}


/* =========================
   Rodi AI page layout (chat + product sidebar)
   ========================= */

.rd-main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 26px 20px 56px;
}

.rd-header {
  margin-bottom: 18px;
}

.rd-header h1 {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 700;
}

.rd-subtitle {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.rd-ai-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 2.1fr) minmax(260px, 1.1fr);
  gap: 18px;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .rd-ai-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .rd-ai-sidebar {
    order: -1;
    max-width: 100%;
  }
}

.rd-chat-card {
  max-width: none;
  min-height: 380px;
}

/* Sidebar card */

.rd-ai-side-card {
  font-size: 13px;
}

.rd-ai-side-header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.rd-ai-side-title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 600;
}

.rd-ai-side-subtitle {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.rd-ai-badge {
  align-self: flex-start;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  background: rgba(79, 139, 255, 0.16);
  color: #c7d2ff;
}

/* Product info block */

.rd-ai-product-empty {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}

.rd-ai-product {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  align-items: flex-start;
}

.rd-ai-product-image-wrap {
  width: 86px;
  height: 86px;
  border-radius: 12px;
  overflow: hidden;
  background: #020617;
  border:1px solid rgba(60,60,60,0.6);
  flex-shrink: 0;
}

.rd-ai-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rd-ai-product-main {
  flex: 1;
  min-width: 0;
}

.rd-ai-product-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}

.rd-ai-product-price {
  font-size: 12px;
  color: #e5e7eb;
  margin-bottom: 3px;
}

.rd-ai-product-meta {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 6px;
}

.rd-ai-product-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #93c5fd;
  text-decoration: none;
}

.rd-ai-product-link::after {
  content: "↗";
  font-size: 11px;
}

/* Chat window tweaks for AI page */

.rd-chat-window {
  max-height: 420px;
}

.rd-chat-status {
  font-size: 12px;
  color: var(--muted);
  min-height: 16px;
  margin-top: 4px;
}


/* Rodi AI media thumbnails (images + videos) */
.rd-ai-product-media {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rd-ai-media-label {
  font-size: 11px;
  color: var(--muted);
}

.rd-ai-media-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

.rd-ai-thumb-link {
  display: inline-flex;
  border-radius: 8px;
  overflow: hidden;
  border:1px solid rgba(60,60,60,0.6);
}

.rd-ai-thumb {
  width: 52px;
  height: 52px;
  object-fit: cover;
  display: block;
}

.rd-ai-video-link {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.15);
  color: #bfdbfe;
  text-decoration: none;
}


/* Rodi AI media download additions */

.rd-ai-media-download-wrap {
  margin-top: 8px;
  display: flex;
  justify-content: flex-start;
}

/* زر خاص بخطة PRO - افتراضياً نظهره، ولو حبيت لاحقاً نضيف منطق إخفاء/قفل */
.rd-pro-only {
  position: relative;
}
.rd-pro-only::after {
  content: " PRO";
  font-size: 11px;
  opacity: 0.9;
  margin-left: 4px;
}


/* Extra mobile tuning for home hero & dragon card */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }
  .hero-main {
    text-align: left;
  }
  .hero-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-grid {
    gap: 16px;
  }
  .hero-title {
    font-size: 24px;
    line-height: 1.25;
  }
  .hero-subtitle {
    font-size: 13px;
  }
  .hero-dragon {
    position: static;
    width: 150px;
    margin: 0 auto;
    display: block;
  }
  .hero-dragon-card {
    margin-top: 6px;
  }
}



/* RodiDrop Ultra Mobile Optimization */
@media (max-width: 768px) {
  body { padding: 10px 12px 80px !important; }
  .hero-grid { display: flex !important; flex-direction: column !important; gap: 16px !important; }
  img.hero-dragon { width: 70% !important; max-width: 220px !important; margin: 0 auto !important; }
  h1, .hero-title { font-size: 24px !important; line-height: 1.35 !important; }
  .hero-subtitle { font-size: 14px !important; }
  .hero-actions, .waitlist-form { flex-direction: column !important; width: 100% !important; }
  .btn.btn-primary { width: 100% !important; font-size: 15px !important; }
  input, .form-input { width: 100% !important; font-size: 15px !important; padding: 10px !important; }
  .hero-badges { flex-direction: column !important; gap: 8px !important; }
}@media (max-width: 480px) {
  h1, .hero-title { font-size: 20px !important; }
  img.hero-dragon { width: 65% !important; }
}



/* ==== RodiDrop Micro-Animations v1 ==== */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(15px); }
  to { opacity:1; transform:translateY(0); }
}
.hero-section, .hero-title, .hero-dragon, .hero-actions, .hero-badges {
  animation: fadeInUp 0.8s ease both;
}



/* Fixed send button & input bar */
.rd-chat-form {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0b0e14;
  padding: 10px 14px;
  display: flex;
  gap: 10px;
  z-index: 9999;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.rd-chat-window {
  padding-bottom: 110px !important; /* space for fixed bar */
}


/* Rodi Analytics simple dropdown (no extra pages) */
.nav-dropdown {
  position: relative;
  display: inline-block;
}
.nav-dropbtn {
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0 8px;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 170px;
  background: #050816;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(15,23,42,0.8);
  padding: 6px 0;
  z-index: 50;
}
.nav-dropdown-menu a {
  display: block;
  padding: 6px 12px;
  font-size: 13px;
  text-decoration: none;
  color: #e5e7eb;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  background: rgba(59,130,246,0.18);
}
.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

/* ===== Stage 9.5 – Global Mobile Polish (no worker touch) ===== */

/* جوال متوسط – يمسّك كل site شوي أريح */
@media (max-width: 640px) {
  .app-shell {
    padding-top: 60px;
  }

  .nav-inner {
    padding-inline: 12px;
    gap: 10px;
  }

  .nav-left {
    gap: 8px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 6px;
  }

  .nav-cta {
    padding-inline: 10px;
  }

  .page {
    padding-inline: 14px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .cards-3,
  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* موبايل صغير جداً – يخفف الزحمة */
@media (max-width: 420px) {
  .hero-title {
    font-size: 22px;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 13px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    text-align: center;
  }

  .hero-badges {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}


/* ===== Stage 9.6 – Mobile Deep Polish (nav + hero) ===== */
@media (max-width: 768px) {
  .nav-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .nav-inner {
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
    row-gap: 4px;
    column-gap: 12px;
    font-size: 12px;
  }

  .nav-cta {
    margin-top: 6px;
  }
}

@media (max-width: 640px) {
  .hero-grid {
    align-items: flex-start;
    gap: 16px;
  }

  .hero-dragon-card {
    margin-top: 8px;
  }

  .hero-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .page {
    padding-top: 20px;
    padding-bottom: 36px;
  }
}

@media (max-width: 420px) {
  .nav-links {
    font-size: 11px;
  }

  .logo-text-main {
    font-size: 14px;
  }

  .logo-text-sub {
    font-size: 11px;
  }
}


/* ===== Stage 9.7 – Mobile Polish (Analyzer + Rodi AI + Tools/Winning cards) ===== */

/* Product Analyzer – tighter mobile behavior */
@media (max-width: 640px) {
  .rd-content {
    padding-inline: 14px;
  }

  .rd-analyze-input-card {
    padding: 14px 14px 16px;
  }

  .rd-url-row {
    flex-direction: column;
    align-items: stretch;
  }

  .rd-url-row input[type="text"],
  .rd-url-input {
    width: 100%;
  }

  .rd-url-row .rd-btn-primary,
  .rd-url-row button {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }

  .rd-metrics {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }
}

@media (max-width: 420px) {
  .rd-analyze-input-card {
    padding-inline: 12px;
  }

  .rd-label {
    font-size: 11px;
  }
}

/* Rodi AI chat – very small screens */
@media (max-width: 640px) {
  .rd-main {
    padding-inline: 14px;
  }

  .rd-ai-layout {
    gap: 14px;
  }

  .rd-chat-card {
    padding: 12px 12px 80px;
  }

  .rd-chat-input-wrap {
    padding-inline: 10px;
  }
}

@media (max-width: 420px) {
  .rd-chat-input-row {
    flex-direction: column;
    gap: 8px;
  }

  .rd-chat-input-row textarea {
    width: 100%;
  }

  .rd-chat-input-row .rd-btn-primary {
    width: 100%;
    justify-content: center;
  }
}

/* Tools / Winning cards – single column and softer padding on mobile */
@media (max-width: 768px) {
  .cards-3 {
    grid-template-columns: minmax(0,1fr);
  }
}

@media (max-width: 640px) {
  .section {
    padding-inline: 14px;
  }

  .card {
    padding: 14px 14px 16px;
  }
}


/* ===== Stage 11 – UI Polish (visual only, no logic) ===== */

/* Softer global typography & smoothing */
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Sections breathing space */
.section,
.page {
  scroll-margin-top: 80px;
}

/* Card polish */
.card,
.price-card,
.rd-card,
.rd-ai-side-card,
.rd-chat-card {
  transition: box-shadow 0.18s ease, transform 0.14s ease, border-color 0.16s ease, background 0.16s ease;
}

.card:hover,
.price-card:hover,
.rd-card:hover,
.rd-ai-side-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.82);
}

/* CTA emphasis */
.btn-primary,
.rd-btn-primary {
  transition: box-shadow 0.18s ease, transform 0.14s ease, background 0.18s ease;
}

.btn-primary:hover,
.rd-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(55, 124, 255, 0.75);
}

/* Subtle outline on focusable elements */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(99,102,241,0.95);
  outline-offset: 2px;
}

/* Hero & navbar subtle polish */
.hero-dragon-card {
  backdrop-filter: blur(18px);
}

.hero-dragon {
  filter: drop-shadow(0 16px 35px rgba(15,23,42,0.95));
}

.nav {
  box-shadow: 0 10px 30px rgba(0,0,0,0.65);
}

/* Dashboard chips & badges */
.rd-chip,
.rd-filter-pill {
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.12s ease;
}

.rd-filter-pill:hover,
.rd-chip:hover {
  transform: translateY(-1px);
}

/* Winning product cards */
.rd-product-card {
  transition: box-shadow 0.2s ease, transform 0.16s ease;
}

.rd-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.9);
}

/* Tools cards (inline ones) */
.tools-grid-card {
  transition: box-shadow 0.18s ease, transform 0.14s ease, border-color 0.16s ease;
}
.tools-grid-card:hover {
  transform: translateY(-2px);
}

/* Mobile-specific polish */
@media (max-width: 640px) {
  .nav {
    box-shadow: 0 6px 22px rgba(0,0,0,0.7);
  }
  .card,
  .rd-card,
  .price-card {
    border-radius: 16px;
  }
}


/* ===== Stage 12 – Light/Dark theme system ===== */

/* Light theme overrides when data-theme="light" on <html> */
:root[data-theme="light"] {
  --text: #0f172a;
  --muted: #6b7280;
}

:root[data-theme="light"] html,
:root[data-theme="light"] body {
  background: #f3f4f6;
  color: var(--text);
}

/* Main shell + nav + footer in light mode */
:root[data-theme="light"] .app-shell {
  background: radial-gradient(circle at top left, rgba(148,163,184,0.25), #e5e7eb);
}

:root[data-theme="light"] .nav {
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid rgba(148,163,184,0.35);
  box-shadow: 0 8px 24px rgba(15,23,42,0.15);
}

:root[data-theme="light"] .logo-text-main {
  color: #0f172a;
}
:root[data-theme="light"] .logo-text-sub {
  color: #4b5563;
}

/* Generic cards in light */
:root[data-theme="light"] .card,
:root[data-theme="light"] .rd-card,
:root[data-theme="light"] .price-card,
:root[data-theme="light"] .hero-dragon-card,
:root[data-theme="light"] .rd-chat-window,
:root[data-theme="light"] .rd-ai-side-card,
:root[data-theme="light"] .rd-product-card {
  background: #ffffff;
  border-color: rgba(148,163,184,0.55);
  box-shadow: 0 16px 40px rgba(15,23,42,0.12);
}

/* Sidebar & dashboard shell */
:root[data-theme="light"] .rd-sidebar {
  background: #f9fafb;
  border-color: rgba(148,163,184,0.55);
}
:root[data-theme="light"] .rd-layout {
  background: radial-gradient(circle at top left, rgba(191,219,254,0.5), #e5e7eb);
}

/* Text accents in light mode */
:root[data-theme="light"] .section-kicker,
:root[data-theme="light"] .rd-label,
:root[data-theme="light"] .rd-filter-label {
  color: #6b7280;
}

:root[data-theme="light"] .hero-subtitle,
:root[data-theme="light"] .section-subtitle {
  color: #4b5563;
}

/* Footer */
:root[data-theme="light"] .footer {
  border-top: 1px solid rgba(148,163,184,0.45);
  background: #f9fafb;
  color: #4b5563;
}

/* Theme toggle button */
.theme-toggle {
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.5);
  background: rgba(15,23,42,0.9);
  color: #e5e7eb;
  padding: 5px 10px;
  font-size: 11px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

:root[data-theme="light"] .theme-toggle {
  background: #ffffff;
  color: #111827;
}



/* ===== Stage 12.5 – Light Mode Contrast Upgrade ===== */

:root[data-theme="light"] {
  --text: #1f2937;
  --muted: #4b5563;
}

/* darker bg */
:root[data-theme="light"] html,
:root[data-theme="light"] body {
  background: #E3E6EB;
  color: var(--text);
}

/* cards stronger */
:root[data-theme="light"] .card,
:root[data-theme="light"] .rd-card,
:root[data-theme="light"] .price-card,
:root[data-theme="light"] .hero-dragon-card,
:root[data-theme="light"] .rd-chat-window,
:root[data-theme="light"] .rd-ai-side-card,
:root[data-theme="light"] .rd-product-card {
  background: #ffffff;
  border: 1px solid rgba(120,130,150,0.35);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* navbar clearer */
:root[data-theme="light"] .nav {
  background: #ffffff;
  border-bottom: 1px solid rgba(120,130,150,0.4);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* hero refine */
:root[data-theme="light"] .hero-dragon-card {
  background: #ffffffcc;
}

/* buttons */
:root[data-theme="light"] .btn-primary,
:root[data-theme="light"] .rd-btn-primary {
  background: #4f46e5;
  color: #fff;
}

:root[data-theme="light"] .btn-primary:hover,
:root[data-theme="light"] .rd-btn-primary:hover {
  box-shadow: 0 12px 28px rgba(79,70,229,0.35);
}


/* ===== Stage 13 – Micro Motion Layer (global, no logic changes) ===== */

/* Smooth scrolling for in-page sections */
html {
  scroll-behavior: smooth;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Soft entrance animation for cards & hero elements */
@keyframes fadeUpSoft {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Chat message reveal */
@keyframes chatBubbleIn {
  from {
    opacity: 0;
    transform: translateY(4px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Apply entrance animation once on load for key surfaces */
@media (prefers-reduced-motion: no-preference) {
  .hero-main,
  .hero-dragon-card,
  .card,
  .rd-card,
  .price-card,
  .rd-product-card,
  .rd-ai-side-card,
  .rd-chat-card {
    animation: fadeUpSoft 0.6s ease-out both;
  }

  .rd-chat-message {
    animation: chatBubbleIn 0.28s ease-out;
  }
}

/* Button press feedback */
.btn,
.btn-primary,
.btn-ghost,
.rd-btn,
.rd-btn-primary {
  transition: transform 0.12s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.16s ease;
}

.btn:active,
.btn-primary:active,
.btn-ghost:active,
.rd-btn:active,
.rd-btn-primary:active {
  transform: translateY(1px) scale(0.97);
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

/* Slight nav hover / focus feel */
.nav-links a {
  transition: color 0.16s ease, transform 0.12s ease, text-shadow 0.16s ease;
}

.nav-links a:hover {
  transform: translateY(-1px);
  text-shadow: 0 0 18px rgba(148,163,255,0.55);
}


/* ===== Stage 13.2 – Page-specific micro motion (subtle) ===== */

/* Beast score / KPI pulse on hover */
.rd-metric,
.kpi-card,
.hero-stat-card {
  transition: transform 0.14s ease, box-shadow 0.18s ease, border-color 0.16s ease;
}

.rd-metric:hover,
.kpi-card:hover,
.hero-stat-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(0,0,0,0.75);
}

/* Product image gentle parallax in winning/products grids */
.rd-product-card-img,
.rd-product-image {
  transition: transform 0.18s ease;
}

.rd-product-card:hover .rd-product-card-img,
.rd-product-card:hover .rd-product-image {
  transform: translateY(-2px);
}

/* Tabs slider underline soft motion */
.rd-tabs,
.tabs {
  position: relative;
}

.rd-tab,
.tab-pill {
  transition: background 0.16s ease, color 0.12s ease, transform 0.12s ease;
}

.rd-tab:hover,
.tab-pill:hover {
  transform: translateY(-1px);
}

/* Analyzer URL input focus glow */
.rd-url-input {
  transition: box-shadow 0.18s ease, border-color 0.16s ease, background 0.16s ease;
}

.rd-url-input:focus-visible {
  box-shadow: 0 0 0 1px rgba(96,165,250,0.9), 0 14px 35px rgba(15,23,42,0.95);
  border-color: rgba(96,165,250,0.9);
}

/* Dashboard sidebar nav hover */
.rd-nav-link,
.rd-sidebar a {
  transition: background 0.16s ease, color 0.12s ease, transform 0.12s ease;
}

.rd-nav-link:hover,
.rd-sidebar a:hover {
  transform: translateX(1px);
}

/* Chat input subtle focus */
.rd-chat-input-row textarea {
  transition: box-shadow 0.18s ease, border-color 0.16s ease, background 0.16s ease;
}

.rd-chat-input-row textarea:focus-visible {
  box-shadow: 0 0 0 1px rgba(129,140,248,0.95), 0 16px 40px rgba(15,23,42,0.9);
  border-color: rgba(129,140,248,0.95);
}


/* ============================
   RodiDrop · New Home (WeTracked-style)
   ============================ */


.wt-hero {
  padding: 68px 0 52px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(79,139,255,0.38) 0, transparent 55%),
    radial-gradient(circle at top right, rgba(255,63,180,0.26) 0, transparent 58%),
    radial-gradient(circle at bottom, rgba(15,23,42,0.96) 0, transparent 70%);
}

.wt-hero::before,
.wt-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.75;
  pointer-events: none;
}
.wt-hero::before {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle at 30% 30%, rgba(79,139,255,0.75), transparent 65%);
  top: -120px;
  left: -140px;
}
.wt-hero::after {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 30% 30%, rgba(236,72,153,0.7), transparent 65%);
  bottom: -200px;
  right: -160px;
}



.wt-hero-inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(15,23,42,0.96), rgba(15,23,42,0.94)),
    radial-gradient(circle at top, rgba(129,140,248,0.26), transparent 60%);
  border: 1px solid rgba(148,163,184,0.5);
  box-shadow:
    0 26px 80px rgba(0,0,0,0.92),
    0 0 0 1px rgba(15,23,42,0.9);
  overflow: hidden;
}

.wt-hero-inner::before,
.wt-hero-inner::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.6;
  pointer-events: none;
}
.wt-hero-inner::before {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at 30% 20%, rgba(79,139,255,0.65), transparent 65%);
  top: -60px;
  right: 24%;
}
.wt-hero-inner::after {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at 20% 40%, rgba(236,72,153,0.6), transparent 65%);
  bottom: -120px;
  left: -60px;
}

.wt-hero-copy {
  max-width: 560px;
}
.wt-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(10,16,36,0.95);
  border: 1px solid rgba(148,163,184,0.55);
  font-size: 11px;
  color: #cbd5f5;
}
.wt-hero-pill-label {
  padding: 2px 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffb300, #ff6f00);
  color: #111827;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.wt-hero-title {
  font-size: 34px;
  line-height: 1.15;
  margin: 16px 0 10px;
  letter-spacing: -0.03em;
}
.wt-hero-title span {
  background: linear-gradient(135deg, #e5d4ff, #ffb6ff);
  -webkit-background-clip: text;
  color: transparent;
}
.wt-hero-subtitle {
  font-size: 14px;
  color: var(--muted);
  max-width: 480px;
}
.wt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.wt-btn-primary {
  background: linear-gradient(135deg, #7c4dff, #ff3fb4);
  color: #fff;
  box-shadow: 0 14px 30px rgba(0,0,0,0.7);
}
.wt-btn-ghost {
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.4);
}
.wt-hero-trust {
  margin-top: 18px;
  font-size: 11px;
  color: var(--muted);
}
.wt-hero-trust-pills {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.wt-hero-trust-pills span {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,0.9);
  border: 1px solid rgba(55,65,81,0.7);
  font-size: 10px;
}


.wt-hero-mockup {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 14px;
}

.wt-hero-mockup-card {
  position: relative;
  border-radius: 22px;
  padding: 14px 14px 12px;
  background:
    radial-gradient(circle at top left, rgba(129,140,248,0.35), transparent 60%),
    radial-gradient(circle at bottom right, rgba(236,72,153,0.3), transparent 60%),
    rgba(15,23,42,0.98);
  border: 1px solid rgba(148,163,184,0.55);
  box-shadow:
    0 20px 55px rgba(0,0,0,0.95),
    0 0 0 1px rgba(15,23,42,0.98);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.wt-hero-mockup-card::before {
  content: "";
  position: absolute;
  inset: -40px -30px auto;
  background:
    radial-gradient(circle at top, rgba(129,140,248,0.6), transparent 65%),
    radial-gradient(circle at bottom, rgba(236,72,153,0.45), transparent 70%);
  opacity: 0.9;
  filter: blur(14px);
  z-index: -1;
}

.wt-hero-mockup::before {
  content: "";
  position: absolute;
  inset: -40px -20px auto;
  background:
    radial-gradient(circle at top, rgba(129,140,248,0.55), transparent 60%),
    radial-gradient(circle at bottom, rgba(236,72,153,0.35), transparent 65%);
  opacity: 0.9;
  filter: blur(10px);
  z-index: -1;
}

/* orbit strip under hero card */
.wt-hero-orbit-strip {
  border-radius: 999px;
  padding: 10px 12px;
  background:
    radial-gradient(circle at left, rgba(56,189,248,0.35), transparent 55%),
    radial-gradient(circle at right, rgba(244,114,182,0.45), transparent 55%),
    rgba(15,23,42,0.98);
  border: 1px solid rgba(148,163,184,0.6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(15,23,42,0.95);
}
.wt-hero-orbit-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wt-hero-orbit-kicker {
  font-size: 11px;
  color: #e5e7eb;
}
.wt-hero-orbit-sub {
  font-size: 10px;
  color: var(--muted);
}
.wt-hero-orbit-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}
.wt-orbit-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.85);
  border: 1px solid rgba(148,163,184,0.7);
  background: radial-gradient(circle at top, #020617, #020617);
}
.wt-orbit-meta {
  background: radial-gradient(circle at top, #1d4ed8, #020617);
}
.wt-orbit-tiktok {
  background: radial-gradient(circle at top, #ec4899, #020617);
}
.wt-orbit-shopify {
  background: radial-gradient(circle at top, #22c55e, #022c22);
}
.wt-orbit-snap {
  background: radial-gradient(circle at top, #eab308, #422006);
}
.wt-orbit-icon span {
  font-size: 13px;
}

/* hero orbit responsive */
@media (max-width: 768px) {
  .wt-hero-orbit-strip {
    padding: 9px 10px;
  }
  .wt-hero-orbit-sub {
    display: none;
  }
}

.wt-hero-card {
  width: 100%;
  max-width: 380px;
  border-radius: 24px;
  padding: 16px 16px 14px;
  background: radial-gradient(circle at top, #111827 0, #020617 52%);
  border: 1px solid rgba(148,163,184,0.5);
  box-shadow: 0 24px 46px rgba(0,0,0,0.9);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wt-hero-card-header {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: flex-start;
}
.wt-hero-card-title {
  font-size: 13px;
  font-weight: 600;
}
.wt-hero-card-sub {
  font-size: 11px;
  color: var(--muted);
}
.wt-hero-chip {
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(79,139,255,0.18);
  color: #c7d2ff;
}
.wt-hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
}
.wt-hero-metrics-row {
  margin-top: 0;
}
.wt-hero-metric {
  border-radius: 14px;
  padding: 8px 10px;
  background: rgba(15,23,42,0.98);
  border: 1px solid rgba(55,65,81,0.9);
}
.wt-hero-metric-label {
  font-size: 11px;
  color: var(--muted);
}
.wt-hero-metric-value {
  font-size: 16px;
  font-weight: 600;
  margin-top: 4px;
}
.wt-score-good {
  color: #22c55e;
}
.wt-score-warm {
  color: #fbbf24;
}
.wt-hero-metric-tag {
  margin-top: 2px;
  font-size: 10px;
  color: var(--muted);
}
.wt-hero-footer {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.wt-hero-avatar {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #ffe082 0, #ff8f00 40%, #6d28d9 80%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wt-hero-note {
  font-size: 11px;
}
.wt-hero-note-title {
  font-weight: 600;
  margin-bottom: 2px;
}

/* Sections */
.wt-section {
  padding: 36px 0;
}
.wt-section:nth-of-type(odd) {
  background: radial-gradient(circle at top left, rgba(15,23,42,0.65) 0, transparent 55%);
}
.wt-section-header {
  max-width: 720px;
  margin: 0 auto 18px;
  padding: 0 18px;
}
.wt-section-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 4px;
}
.wt-section-title {
  font-size: 24px;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.wt-section-subtitle {
  font-size: 13px;
  color: var(--muted);
}

/* How it works */
.wt-how {
  padding-top: 22px;
}
.wt-how-grid {
  max-width: 960px;
  margin: 12px auto 0;
  padding: 0 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.wt-step {
  border-radius: 18px;
  background: rgba(10,16,36,0.98);
  border: 1px solid rgba(55,65,81,0.9);
  padding: 14px 14px 12px;
  font-size: 13px;
}
.wt-step-number {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 4px;
}
.wt-step-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}
.wt-step-body {
  font-size: 12px;
  color: var(--muted);
}

/* Features */
.wt-features-grid {
  max-width: 1040px;
  margin: 10px auto 0;
  padding: 0 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.wt-feature-card {
  border-radius: 18px;
  background: rgba(8,12,30,0.98);
  border: 1px solid rgba(51,65,85,0.9);
  padding: 14px;
  font-size: 13px;
}
.wt-feature-card h3 {
  font-size: 14px;
  margin-bottom: 6px;
}
.wt-feature-card p {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}
.wt-card-link {
  font-size: 12px;
  color: #93c5fd;
}

/* Pricing preview */
.wt-pricing-preview {
  padding-top: 30px;
}
.wt-pricing-grid {
  max-width: 880px;
  margin: 12px auto 0;
  padding: 0 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.wt-price-card {
  border-radius: 18px;
  background: rgba(10,16,36,0.98);
  border: 1px solid rgba(51,65,85,0.9);
  padding: 14px 14px 12px;
}
.wt-price-popular {
  border-color: rgba(255,63,180,0.95);
  box-shadow: 0 20px 40px rgba(15,23,42,0.9);
}
.wt-price-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.wt-price-value {
  margin-top: 6px;
  font-size: 20px;
  font-weight: 700;
}
.wt-price-value span {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}
.wt-price-note {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}
.wt-pricing-cta {
  margin-top: 14px;
  text-align: center;
}

/* Final CTA */
.wt-final-cta {
  padding-bottom: 46px;
}
.wt-final-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 18px;
  text-align: center;
}
.wt-final-actions {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Mobile */
@media (max-width: 880px) {
  .wt-hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
  }
}
@media (max-width: 640px) {
  .wt-hero {
    padding: 40px 0 30px;
  }
  .wt-hero-inner {
    padding-inline: 16px;
  }
  .wt-hero-title {
    font-size: 26px;
  }
  .wt-hero-subtitle {
    font-size: 13px;
    max-width: none;
  }
  .wt-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .wt-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .wt-hero-trust {
    font-size: 10px;
  }
  .wt-hero-trust-pills span {
    font-size: 9px;
  }
  .wt-hero-card {
    max-width: 100%;
  }
  .wt-section {
    padding: 28px 0;
  }
  .wt-section-header {
    padding-inline: 16px;
  }
  .wt-section-title {
    font-size: 20px;
  }
  .wt-how-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .wt-features-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .wt-pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .wt-final-inner {
    padding-inline: 16px;
  }
}


.wt-hero-checks {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
}
.wt-hero-checks span {
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(15,23,42,0.9);
  border: 1px solid rgba(55,65,81,0.8);
}
.wt-hero-rating {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
}
.wt-hero-stars {
  font-size: 13px;
}
@media (max-width: 640px) {
  .wt-hero-checks {
    flex-direction: column;
    align-items: flex-start;
  }
  .wt-hero-rating {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ORBIT VISUAL */
.wt-orbit {
  padding: 10px 0 34px;
}
.wt-orbit-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}
.wt-orbit-copy .wt-section-title {
  font-size: 20px;
}
.wt-orbit-visual {
  position: relative;
  width: 260px;
  height: 260px;
  margin: 0 auto;
  border-radius: 999px;
  background: radial-gradient(circle at top, rgba(56,189,248,0.12), transparent 65%),
              radial-gradient(circle at bottom, rgba(236,72,153,0.14), transparent 70%),
              rgba(15,23,42,0.98);
  box-shadow: 0 24px 60px rgba(0,0,0,0.9);
  overflow: hidden;
}
.wt-orbit-ring {
  position: absolute;
  inset: 20px;
  border-radius: 999px;
  border: 1px dashed rgba(148,163,184,0.45);
}
.wt-orbit-ring-inner {
  inset: 54px;
  border-style: solid;
  border-color: rgba(148,163,184,0.34);
}
.wt-orbit-center {
  position: absolute;
  inset: 104px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #4f46e5 0, #0f172a 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 13px;
  color: #e5e7eb;
  text-transform: uppercase;
  box-shadow: 0 0 0 1px rgba(148,163,184,0.6);
}

/* Icons positioned around orbit */
.wt-orbit-icon {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: rgba(15,23,42,0.98);
  border: 1px solid rgba(148,163,184,0.6);
  color: #e5e7eb;
  box-shadow: 0 12px 26px rgba(0,0,0,0.85);
  animation: wt-orbit-float 4s ease-in-out infinite alternate;
}
.wt-orbit-icon-meta { top: 20px; left: 50%; transform: translateX(-50%); }
.wt-orbit-icon-tiktok { top: 96px; right: 10px; }
.wt-orbit-icon-shopify { bottom: 26px; right: 46px; }
.wt-orbit-icon-snap { bottom: 26px; left: 46px; }
.wt-orbit-icon-pinterest { top: 96px; left: 10px; }

@keyframes wt-orbit-float {
  0% { transform: translate3d(0,0,0); }
  100% { transform: translate3d(0,-6px,0); }
}

/* Activity toast */
.wt-orbit-toast {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  width: 82%;
  border-radius: 16px;
  background: rgba(15,23,42,0.98);
  border: 1px solid rgba(59,130,246,0.8);
  padding: 7px 9px;
  font-size: 10px;
  color: #e5e7eb;
  box-shadow: 0 18px 40px rgba(0,0,0,0.9);
  animation: wt-orbit-toast 5s ease-in-out infinite;
}
.wt-orbit-toast-name {
  font-weight: 600;
  margin-bottom: 2px;
}
.wt-orbit-toast-body {
  color: var(--muted);
}

@keyframes wt-orbit-toast {
  0% { opacity: 0; transform: translate3d(-50%, 10px, 0); }
  10% { opacity: 1; transform: translate3d(-50%, 0, 0); }
  60% { opacity: 1; transform: translate3d(-50%, 0, 0); }
  100% { opacity: 0; transform: translate3d(-50%, 10px, 0); }
}

/* simple fade-up on hero + orbit */
.wt-hero-inner,
.wt-orbit-inner {
  opacity: 0;
  transform: translateY(10px);
  animation: wt-fade-up 0.8s ease-out forwards;
}
.wt-orbit-inner {
  animation-delay: 0.12s;
}
@keyframes wt-fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media (max-width: 880px) {
  .wt-orbit-inner {
    grid-template-columns: minmax(0, 1fr);
    text-align: left;
  }
}
@media (max-width: 640px) {
  .wt-orbit {
    padding: 6px 0 26px;
  }
  .wt-orbit-inner {
    padding-inline: 16px;
  }
  .wt-orbit-visual {
    width: 230px;
    height: 230px;
  }
}


/* SOCIAL PROOF */
.wt-social {
  padding: 10px 0 36px;
}
.wt-social-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
  gap: 22px;
  align-items: center;
}
.wt-social-metrics {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.wt-social-metric-number {
  font-size: 20px;
  font-weight: 700;
}
.wt-social-metric-label {
  font-size: 11px;
  color: var(--muted);
}
.wt-social-card {
  border-radius: 22px;
  background: radial-gradient(circle at top, rgba(79,139,255,0.24), transparent 55%),
              radial-gradient(circle at bottom, rgba(255,63,180,0.16), transparent 55%),
              rgba(8,12,30,0.98);
  border: 1px solid rgba(148,163,184,0.55);
  box-shadow: 0 24px 50px rgba(0,0,0,0.9);
  padding: 16px 16px 14px;
  font-size: 12px;
}
.wt-social-user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.wt-social-avatar {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #facc15 0, #f97316 40%, #4f46e5 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.wt-social-name {
  font-weight: 600;
  font-size: 13px;
}
.wt-social-tag {
  font-size: 11px;
  color: var(--muted);
}
.wt-social-quote {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}
.wt-social-stars {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.wt-social-stars span {
  font-size: 11px;
  color: var(--muted);
}

/* Glow upgrades for features cards */
.wt-features-grid {
  max-width: 1040px;
  margin: 10px auto 0;
  padding: 0 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.wt-feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: radial-gradient(circle at top, rgba(79,139,255,0.18), transparent 60%),
              rgba(8,12,30,0.98);
  border: 1px solid rgba(51,65,85,0.9);
  padding: 14px;
  font-size: 13px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.85);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}
.wt-feature-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top, rgba(79,139,255,0.2), transparent 60%);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.wt-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(129,140,248,0.95);
  box-shadow: 0 24px 60px rgba(0,0,0,0.95);
}
.wt-feature-card:hover::before {
  opacity: 1;
}

/* Mobile adjustments */
@media (max-width: 880px) {
  .wt-social-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 640px) {
  .wt-social {
    padding: 4px 0 26px;
  }
  .wt-social-inner {
    padding-inline: 16px;
  }
  .wt-social-metrics {
    gap: 12px;
  }
}



.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-login-link {
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.45);
  color: var(--muted);
  transition: 0.17s ease-out;
}
.nav-login-link:hover {
  color: #ffffff;
  border-color: rgba(129,140,248,0.95);
  background: rgba(15,23,42,0.96);
}

/* Mobile: nav not sticky to keep hero clean */
@media (max-width: 768px) {
  .nav {
    position: static;
    background: linear-gradient(to bottom, rgba(5,8,22,0.96), rgba(5,8,22,0.0));
    border-bottom-color: rgba(255,255,255,0.04);
  }
}



/* Rodi AI live demo section */

/* Stage23 – Rodi AI demo visual upgrade */
.wt-ai-demo {
  position: relative;
  padding: 80px 0 74px;
  overflow: hidden;
}
.wt-ai-demo::before,
.wt-ai-demo::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.45;
  pointer-events: none;
}
.wt-ai-demo::before {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle at 30% 30%, rgba(94,234,212,0.6), transparent 65%);
  top: -140px;
  left: -120px;
}
.wt-ai-demo::after {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 60% 70%, rgba(129,140,248,0.6), transparent 65%);
  bottom: -200px;
  right: -180px;
}
.wt-ai-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
}
.wt-ai-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: 30px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .wt-ai-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

.wt-ai-chat {
  position: relative;
  border-radius: 24px;
  padding: 16px 16px 12px;
  background:
    radial-gradient(circle at top left, rgba(129,140,248,0.42), transparent 60%),
    radial-gradient(circle at bottom right, rgba(236,72,153,0.32), transparent 60%),
    rgba(15,23,42,0.98);
  box-shadow:
    0 24px 60px rgba(15,23,42,0.95),
    0 0 0 1px rgba(15,23,42,0.98);
  border: 1px solid rgba(148,163,184,0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  min-height: 340px;
  overflow: hidden;
}
.wt-ai-chat::before {
  content: "";
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(circle at top, rgba(129,140,248,0.45), transparent 65%),
    radial-gradient(circle at bottom, rgba(236,72,153,0.4), transparent 70%);
  opacity: 0.7;
  filter: blur(20px);
  z-index: -1;
}
.wt-ai-chat-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 11px;
  color: var(--muted);
}
.wt-ai-chat-title {
  margin-left: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e5e7eb;
}

.wt-ai-msg {
  max-width: 100%;
  font-size: 13px;
  line-height: 1.55;
  border-radius: 16px;
  padding: 9px 12px;
}
.wt-ai-msg-user {
  align-self: flex-end;
  background: linear-gradient(135deg, rgba(59,130,246,0.95), rgba(129,140,248,0.95));
  color: #e0f2fe;
  box-shadow: 0 10px 26px rgba(37,99,235,0.65);
}
.wt-ai-msg-rodi {
  align-self: flex-start;
  background: rgba(15,23,42,0.96);
  border: 1px solid rgba(148,163,184,0.65);
}
.wt-ai-msg-rodi em {
  font-style: normal;
  color: #f97316;
}

/* typing bubble */
.wt-ai-typing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--muted);
}
.wt-ai-typing-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(148,163,184,0.9);
  animation: wt-ai-dot 1.2s ease-in-out infinite;
}
.wt-ai-typing-dot:nth-child(2) { animation-delay: 0.18s; }
.wt-ai-typing-dot:nth-child(3) { animation-delay: 0.36s; }

@keyframes wt-ai-dot {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(-3px); opacity: 1; }
}

/* subtle float for the whole chat card */
@keyframes wt-ai-float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-4px); }
}
.wt-ai-chat {
  animation: wt-ai-float 5s ease-in-out infinite alternate;
}

/* mobile tweaks */
@media (max-width: 900px) {
  .wt-ai-inner {
    padding-inline: 18px;
  }
  .wt-ai-chat {
    order: -1;
    margin-bottom: 10px;
  }
}

.wt-ai-copy {
  max-width: 620px;
}
.wt-ai-bullets {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
  display: grid;
  gap: 8px;
}
.wt-ai-bullets li {
  font-size: 14px;
  color: var(--muted);
  position: relative;
  padding-left: 20px;
}
.wt-ai-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 13px;
  color: #4ade80;
}
.wt-ai-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.wt-ai-chat {
  border-radius: 24px;
  padding: 18px 18px 14px;
  background: radial-gradient(circle at top left, rgba(129,140,248,0.35), transparent 55%),
              radial-gradient(circle at bottom right, rgba(236,72,153,0.28), transparent 55%),
              rgba(15,23,42,0.98);
  box-shadow: 0 22px 60px rgba(15,23,42,0.9);
  border: 1px solid rgba(148,163,184,0.35);
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.wt-ai-chat-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 11px;
  color: var(--muted);
}
.wt-ai-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  opacity: 0.85;
}
.wt-ai-dot-red { background: #f97373; }
.wt-ai-dot-amber { background: #facc15; }
.wt-ai-dot-green { background: #4ade80; }
.wt-ai-chat-title {
  margin-left: 4px;
}

.wt-ai-chat-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 4px 10px 0;
  overflow: hidden;
}
.wt-ai-msg {
  max-width: 100%;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 16px;
  padding: 10px 12px;
}
.wt-ai-msg-user {
  align-self: flex-end;
  background: rgba(30,64,175,0.95);
  color: #e0f2fe;
}
.wt-ai-msg-rodi {
  align-self: flex-start;
  background: rgba(15,23,42,0.95);
  border: 1px solid rgba(148,163,184,0.55);
}
.wt-ai-msg-rodi em {
  font-style: normal;
  color: #e879f9;
}

.wt-ai-chat-input {
  margin-top: 10px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.6);
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  background: rgba(15,23,42,0.9);
}
.wt-ai-input-placeholder {
  opacity: 0.9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wt-ai-input-cta {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.7);
}

@media (max-width: 900px) {
  .wt-ai-inner {
    grid-template-columns: minmax(0,1fr);
  }
  .wt-ai-chat {
    order: -1;
  }
}


/* Stage22 – hero visual upgrade */

@media (max-width: 880px) {
  .wt-hero-inner {
    grid-template-columns: minmax(0, 1fr);
    padding: 18px 16px;
    border-radius: 22px;
  }
}

@media (max-width: 520px) {
  .wt-hero {
    padding: 54px 0 32px;
  }
  .wt-hero-title {
    font-size: 24px;
  }
}



/* Stage24 – Orbit strip + cards glow upgrade */

/* Hero orbit strip – more depth + subtle motion */
.wt-hero-orbit-strip {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  padding: 11px 14px;
  background:
    radial-gradient(circle at left, rgba(56,189,248,0.42), transparent 55%),
    radial-gradient(circle at right, rgba(244,114,182,0.52), transparent 55%),
    rgba(15,23,42,0.98);
  border: 1px solid rgba(148,163,184,0.75);
  box-shadow:
    0 18px 42px rgba(15,23,42,0.98),
    0 0 0 1px rgba(15,23,42,0.96);
}
.wt-hero-orbit-strip::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 10% 50%, rgba(56,189,248,0.35), transparent 60%),
    radial-gradient(circle at 90% 50%, rgba(244,114,182,0.35), transparent 60%);
  opacity: 0.7;
  filter: blur(14px);
  pointer-events: none;
}

/* Hero orbit icons with ring */
.wt-hero-orbit-icons {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wt-hero-orbit-icons::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  border: 1px dashed rgba(148,163,184,0.6);
  opacity: 0.7;
}

.wt-orbit-icon {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.9);
  border: 1px solid rgba(148,163,184,0.85);
  background: radial-gradient(circle at top, #020617, #020617);
  animation: wt-orbit-float-soft 4.5s ease-in-out infinite alternate;
}
.wt-orbit-icon:nth-child(2) { animation-delay: 0.2s; }
.wt-orbit-icon:nth-child(3) { animation-delay: 0.4s; }
.wt-orbit-icon:nth-child(4) { animation-delay: 0.6s; }

.wt-orbit-meta {
  background: radial-gradient(circle at top, #1d4ed8, #020617);
}
.wt-orbit-tiktok {
  background: radial-gradient(circle at top, #ec4899, #020617);
}
.wt-orbit-shopify {
  background: radial-gradient(circle at top, #22c55e, #022c22);
}
.wt-orbit-snap {
  background: radial-gradient(circle at top, #eab308, #422006);
}
.wt-orbit-icon span {
  font-size: 13px;
}

@keyframes wt-orbit-float-soft {
  0% { transform: translateY(0); }
  100% { transform: translateY(-4px); }
}

/* Features grid – glass cards */
.wt-features-grid {
  max-width: 1040px;
  margin: 18px auto 0;
  padding: 0 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.wt-feature-card {
  position: relative;
  border-radius: 18px;
  background:
    radial-gradient(circle at top, rgba(56,189,248,0.18), transparent 60%),
    radial-gradient(circle at bottom, rgba(244,114,182,0.16), transparent 65%),
    rgba(8,12,30,0.98);
  border: 1px solid rgba(51,65,85,0.95);
  padding: 14px 14px 12px;
  font-size: 13px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.9);
  overflow: hidden;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, border-color 0.15s ease-out;
}
.wt-feature-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top, rgba(56,189,248,0.25), transparent 60%);
  opacity: 0;
  transition: opacity 0.18s ease-out;
}
.wt-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(129,140,248,0.95);
  box-shadow: 0 24px 60px rgba(0,0,0,0.95);
}
.wt-feature-card:hover::before {
  opacity: 1;
}

/* Pricing cards – highlight one as main */
.wt-price-card {
  position: relative;
  border-radius: 20px;
  background:
    radial-gradient(circle at top, rgba(56,189,248,0.16), transparent 60%),
    rgba(10,16,36,0.98);
  border: 1px solid rgba(51,65,85,0.95);
  padding: 16px 14px 14px;
  box-shadow: 0 20px 46px rgba(0,0,0,0.9);
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out, border-color 0.16s ease-out;
}
.wt-price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(129,140,248,0.95);
  box-shadow: 0 26px 68px rgba(0,0,0,0.96);
}
.wt-price-popular {
  border-color: rgba(244,114,182,0.9);
  box-shadow:
    0 28px 70px rgba(15,23,42,0.96),
    0 0 0 1px rgba(248,250,252,0.05);
}

/* Responsive tweaks for cards */
@media (max-width: 960px) {
  .wt-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .wt-features-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}



/* Stage25 – How Rodi works section */
.wt-how-rodi {
  padding: 68px 0 70px;
  position: relative;
  overflow: hidden;
}
.wt-how-rodi::before,
.wt-how-rodi::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.45;
  pointer-events: none;
}
.wt-how-rodi::before {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 20% 20%, rgba(56,189,248,0.6), transparent 65%);
  top: -200px;
  left: -140px;
}
.wt-how-rodi::after {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 80% 80%, rgba(236,72,153,0.55), transparent 65%);
  bottom: -220px;
  right: -160px;
}

.wt-how-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
}

.wt-how-header {
  max-width: 640px;
  margin-bottom: 26px;
}

.wt-how-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.wt-how-step {
  position: relative;
  border-radius: 20px;
  padding: 14px 14px 12px;
  background:
    radial-gradient(circle at top, rgba(56,189,248,0.18), transparent 60%),
    radial-gradient(circle at bottom, rgba(244,114,182,0.15), transparent 65%),
    rgba(10,16,36,0.98);
  border: 1px solid rgba(51,65,85,0.95);
  box-shadow: 0 22px 55px rgba(0,0,0,0.9);
  font-size: 13px;
  overflow: hidden;
}
.wt-how-step::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top, rgba(56,189,248,0.24), transparent 60%);
  opacity: 0;
  transition: opacity 0.22s ease-out;
}
.wt-how-step:hover::before {
  opacity: 1;
}

.wt-how-step-badge {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  background: radial-gradient(circle at top, rgba(59,130,246,0.95), rgba(129,140,248,0.9));
  box-shadow: 0 12px 26px rgba(37,99,235,0.7);
  margin-bottom: 8px;
}

.wt-how-step-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}
.wt-how-step-text {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}

.wt-how-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.wt-how-tags span {
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 11px;
  border: 1px solid rgba(148,163,184,0.6);
  background: rgba(15,23,42,0.96);
}

/* Responsive */
@media (max-width: 1024px) {
  .wt-how-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .wt-how-rodi {
    padding: 54px 0 58px;
  }
  .wt-how-inner {
    padding-inline: 18px;
  }
  .wt-how-header {
    margin-bottom: 20px;
  }
  .wt-how-steps {
    grid-template-columns: minmax(0, 1fr);
  }
}



/* RodiDrop tools snapshot section */
.wt-tools-showcase {
  padding: 72px 0 60px;
  position: relative;
}

.wt-tools-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
}

.wt-tools-header {
  max-width: 720px;
  margin: 0 auto 26px;
  text-align: center;
}

.wt-tools-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.wt-tool-card {
  position: relative;
  border-radius: 18px;
  padding: 16px 14px 14px;
  background:
    radial-gradient(circle at top, rgba(56,189,248,0.16), transparent 60%),
    radial-gradient(circle at bottom, rgba(244,114,182,0.14), transparent 65%),
    rgba(12,18,40,0.98);
  border: 1px solid rgba(51,65,85,0.95);
  box-shadow: 0 18px 46px rgba(0,0,0,0.9);
  font-size: 13px;
}

.wt-tool-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.wt-tool-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 10px;
}

.wt-tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.wt-tool-tags span {
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 11px;
  border: 1px solid rgba(148,163,184,0.75);
  background: rgba(15,23,42,0.98);
}

/* responsive */
@media (max-width: 1024px) {
  .wt-tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .wt-tools-showcase {
    padding: 56px 0 46px;
  }
  .wt-tools-inner {
    padding: 0 18px;
  }
  .wt-tools-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}



/* RodiDrop – Social proof (stats + reviews under pricing) */
.wt-social-proof {
  padding: 72px 0 70px;
  position: relative;
}

.wt-social-proof .wt-social-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
}

/* Header */
.wt-social-header {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

/* Stats */
.wt-social-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 40px;
}

.wt-stat-card {
  padding: 18px 14px 16px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top, rgba(56,189,248,0.14), transparent 60%),
    radial-gradient(circle at bottom, rgba(244,114,182,0.12), transparent 65%),
    rgba(12,18,40,0.98);
  border: 1px solid rgba(51,65,85,0.95);
  text-align: center;
  box-shadow: 0 18px 45px rgba(0,0,0,0.9);
}

.wt-stat-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 4px;
}

.wt-stat-card p {
  font-size: 13px;
  color: var(--muted);
}

/* Reviews */
.wt-social-reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.wt-review-card {
  border-radius: 18px;
  padding: 18px 16px;
  background:
    radial-gradient(circle at top, rgba(56,189,248,0.12), transparent 55%),
    rgba(15,22,42,0.98);
  border: 1px solid rgba(51,65,85,0.95);
  box-shadow: 0 18px 46px rgba(0,0,0,0.9);
}

.wt-review-stars {
  font-size: 14px;
  color: #fce7f3;
  margin-bottom: 6px;
}

.wt-review-body {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.wt-review-author {
  font-size: 12px;
  color: rgba(148,163,184,0.9);
}

/* Responsive */
@media (max-width: 1024px) {
  .wt-social-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .wt-social-reviews {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .wt-social-stats {
    grid-template-columns: minmax(0, 1fr);
  }
  .wt-social-reviews {
    grid-template-columns: minmax(0, 1fr);
  }
}



/* RodiDrop – FAQ / Objections section */
.wt-faq {
  padding: 72px 0 70px;
  position: relative;
}

.wt-faq-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
}

.wt-faq-header {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.wt-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.wt-faq-item {
  border-radius: 18px;
  padding: 16px 16px 14px;
  background:
    radial-gradient(circle at top, rgba(56,189,248,0.12), transparent 60%),
    rgba(15,23,42,0.98);
  border: 1px solid rgba(51,65,85,0.95);
  box-shadow: 0 18px 46px rgba(0,0,0,0.9);
}

.wt-faq-item h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.wt-faq-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .wt-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .wt-faq {
    padding: 60px 0 60px;
  }
  .wt-faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}



/* RodiDrop – Strong final CTA above footer */
.wt-final-cta-strong {
  position: relative;
  padding: 64px 0 72px;
}

.wt-final-cta-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 28px 24px 26px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(248,113,174,0.26), transparent 55%),
    radial-gradient(circle at top right, rgba(56,189,248,0.24), transparent 55%),
    radial-gradient(circle at bottom, rgba(129,140,248,0.22), transparent 60%),
    rgba(15,23,42,0.98);
  border: 1px solid rgba(148,163,184,0.55);
  box-shadow:
    0 0 0 1px rgba(15,23,42,0.8),
    0 32px 90px rgba(15,23,42,0.95);
  text-align: center;
}

.wt-final-cta-title {
  font-size: 26px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.wt-final-cta-subtitle {
  font-size: 14px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 22px;
}

.wt-final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.wt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
}

.wt-btn-primary {
  color: #020617;
  background: linear-gradient(90deg, #f97316, #ec4899, #38bdf8);
  box-shadow: 0 18px 45px rgba(248,113,113,0.45);
}

.wt-btn-primary:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

.wt-btn-ghost {
  color: #e5e7eb;
  border: 1px solid rgba(148,163,184,0.7);
  background: rgba(15,23,42,0.8);
  backdrop-filter: blur(14px);
}

.wt-btn-ghost:hover {
  transform: translateY(-1px);
  border-color: rgba(248,250,252,0.95);
}

.wt-final-cta-footnote {
  font-size: 12px;
  color: rgba(148,163,184,0.9);
}

/* responsive */
@media (max-width: 640px) {
  .wt-final-cta-inner {
    padding: 24px 18px 24px;
  }
  .wt-final-cta-title {
    font-size: 22px;
  }
  .wt-final-cta-actions {
    flex-direction: column;
  }
  .wt-btn {
    width: 100%;
  }
}



/* Hybrid hero layout: AI chat + dashboard */
.wt-hero-mockup-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}

.wt-hero-chat-card {
  border-radius: 18px;
  padding: 14px 14px 12px;
  background:
    radial-gradient(circle at top left, rgba(56,189,248,0.26), transparent 60%),
    radial-gradient(circle at bottom right, rgba(244,114,182,0.24), transparent 60%),
    rgba(10,16,36,0.98);
  border: 1px solid rgba(148,163,184,0.7);
  box-shadow: 0 20px 45px rgba(15,23,42,0.95);
}

.wt-hero-chat-header {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 10px;
}

.wt-hero-chat-title {
  font-size: 13px;
  font-weight: 600;
}

.wt-hero-chat-sub {
  font-size: 11px;
  color: var(--muted);
}

.wt-hero-chat-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wt-hero-bubble {
  border-radius: 14px;
  padding: 8px 9px;
  font-size: 12px;
  line-height: 1.5;
}

.wt-hero-bubble-user {
  align-self: flex-start;
  background: rgba(15,23,42,0.96);
  border: 1px solid rgba(148,163,184,0.7);
}

.wt-hero-bubble-ai {
  align-self: flex-end;
  background: linear-gradient(135deg, rgba(56,189,248,0.15), rgba(244,114,182,0.2));
  border: 1px solid rgba(125,211,252,0.9);
}

/* dashboard mini grid */
.wt-hero-dashboard {
  margin-top: 4px;
}

.wt-hero-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.wt-hero-dashboard-item {
  border-radius: 12px;
  padding: 8px 9px;
  background: rgba(15,23,42,0.98);
  border: 1px solid rgba(51,65,85,0.9);
}

.wt-hero-dashboard-label {
  font-size: 11px;
  color: var(--muted);
}

.wt-hero-dashboard-value {
  font-size: 15px;
  font-weight: 600;
  margin-top: 4px;
}

.wt-hero-dashboard-tag {
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
}

/* responsive hybrid adjustments */
@media (max-width: 900px) {
  .wt-hero-inner {
    flex-direction: column;
  }
  .wt-hero-mockup {
    margin-top: 26px;
  }
}

@media (max-width: 640px) {
  .wt-hero-dashboard-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}



/* Stage 29 – subtle fade-up + motion */

[data-animate="fade-up"] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

[data-animate="fade-up"].is-animated {
  opacity: 1;
  transform: translateY(0);
}

/* optional small stagger for direct children */
[data-animate="fade-up"].is-animated > * {
  transition-delay: 0.04s;
}



/* Stage 30 – mobile refinement */
@media (max-width: 640px) {
  .wt-hero {
    padding: 46px 0 32px;
  }
  .wt-hero-inner {
    flex-direction: column;
    gap: 22px;
  }
  .wt-hero-copy {
    padding-right: 0;
  }
  .wt-hero-title {
    font-size: 24px;
    line-height: 1.25;
  }
  .wt-hero-subtitle {
    font-size: 13px;
    max-width: none;
  }
  .wt-hero-actions {
    flex-direction: column;
  }
  .wt-hero-actions .btn,
  .wt-hero-actions .wt-btn-primary,
  .wt-hero-actions .wt-btn-ghost {
    width: 100%;
    justify-content: center;
  }
  .wt-hero-checks {
    flex-wrap: wrap;
    gap: 6px;
  }
  .wt-hero-orbit-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .wt-hero-orbit-label {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .wt-hero-title {
    font-size: 22px;
  }
  .wt-section-title {
    font-size: 20px;
  }
  .wt-section-subtitle {
    font-size: 13px;
  }
  .wt-social-stats,
  .wt-social-reviews,
  .wt-tools-grid {
    gap: 14px;
  }
  .wt-tools-inner,
  .wt-social-inner,
  .wt-faq-inner,
  .wt-final-cta-inner {
    padding-inline: 16px;
  }
}



/* Rodi AI chat header + quick prompts */
.rd-ai-chat-header {
  margin-bottom: 10px;
}
.rd-ai-chat-title {
  font-size: 16px;
  margin: 0 0 4px;
}
.rd-ai-chat-subtitle {
  margin: 0 0 6px;
  font-size: 12px;
  color: var(--muted);
}
.rd-ai-chat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.rd-ai-chat-pills span {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.6);
}

.rd-chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 6px;
}
.rd-chat-quick-btn {
  font-size: 11px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.6);
  background: rgba(15,23,42,0.9);
  padding: 4px 9px;
  cursor: pointer;
}
.rd-chat-quick-btn:hover {
  border-color: rgba(94,234,212,0.9);
}

@media (max-width: 720px) {
  .rd-ai-chat-title {
    font-size: 15px;
  }
  .rd-ai-chat-subtitle {
    font-size: 11px;
  }
  .rd-chat-quick {
    flex-direction: column;
  }
}



/* Rodi AI page – align with home UI */
.wt-ai-hero {
  padding-top: 42px;
  padding-bottom: 28px;
}

.wt-ai-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.6fr);
  gap: 24px;
  align-items: center;
}

.wt-ai-hero-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-soft);
  margin-bottom: 6px;
}

.wt-ai-hero-title {
  font-size: 26px;
  line-height: 1.25;
  margin-bottom: 8px;
}

.wt-ai-hero-subtitle {
  font-size: 13px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 10px;
}

.wt-ai-hero-list {
  font-size: 12px;
  color: var(--muted);
  padding-left: 18px;
}

.wt-ai-hero-list li {
  margin-bottom: 4px;
}

.wt-ai-hero-side {
  display: flex;
  justify-content: flex-end;
}

.wt-ai-hero-chat-preview {
  border-radius: 18px;
  padding: 12px 13px;
  background:
    radial-gradient(circle at top left, rgba(56,189,248,0.25), transparent 55%),
    radial-gradient(circle at bottom right, rgba(244,114,182,0.2), transparent 55%),
    rgba(10,16,36,0.98);
  border: 1px solid rgba(148,163,184,0.7);
  box-shadow: 0 22px 45px rgba(15,23,42,0.85);
  max-width: 360px;
}

.wt-ai-hero-chat-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 11px;
  color: var(--muted);
}

.wt-ai-hero-chat-label {
  font-weight: 600;
}

.wt-ai-hero-chat-bubbles {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wt-ai-hero-bubble {
  font-size: 12px;
  line-height: 1.6;
  border-radius: 14px;
  padding: 8px 9px;
}

.wt-ai-hero-bubble-user {
  background: rgba(15,23,42,0.96);
  border: 1px solid rgba(148,163,184,0.7);
}

.wt-ai-hero-bubble-rodi {
  background: linear-gradient(135deg, rgba(56,189,248,0.18), rgba(244,114,182,0.22));
  border: 1px solid rgba(125,211,252,0.9);
}

/* body wrapper for chat layout */
.wt-ai-body {
  padding-top: 4px;
  padding-bottom: 32px;
}

/* responsive */
@media (max-width: 900px) {
  .wt-ai-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .wt-ai-hero-side {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .wt-ai-hero {
    padding-top: 32px;
    padding-bottom: 20px;
  }
  .wt-ai-hero-title {
    font-size: 22px;
  }
  .wt-ai-hero-subtitle {
    font-size: 12px;
  }
}


/* ===== Stage 37 – Analytics as account overview header ===== */
.rd-account-header {
  max-width: 1120px;
  margin: 0 auto 18px auto;
  padding: 10px 16px 4px 16px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}
.rd-account-main {
  flex: 1.4;
}
.rd-account-kicker {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(148,163,184,0.9);
  margin: 0 0 4px 0;
}
.rd-account-title {
  font-size: 20px;
  line-height: 1.35;
  margin: 0 0 6px 0;
}
.rd-account-sub {
  font-size: 12px;
  color: #94a3b8;
  max-width: 460px;
  margin: 0;
}
.rd-account-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
  justify-content: flex-start;
  font-size: 11px;
}
.rd-account-pill {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.6);
  background: rgba(15,23,42,0.9);
  color: #e5e7eb;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.rd-account-pill span {
  font-weight: 600;
}
.rd-account-pill-soft {
  border-color: rgba(52,211,153,0.6);
  background: rgba(6,95,70,0.6);
  color: #bbf7d0;
}

/* mobile tweaks */
@media (max-width: 768px) {
  .rd-account-header {
    flex-direction: column;
    align-items: flex-start;
    padding-inline: 12px;
  }
  .rd-account-meta {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
  }
}


/* ===== Stage 40 – Rodi Tools hub header & grid ===== */
.rd-tools-header {
  max-width: 1120px;
  margin: 0 auto 18px auto;
  padding: 10px 16px 4px 16px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}
.rd-tools-main {
  flex: 1.5;
}
.rd-tools-kicker {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(148,163,184,0.9);
  margin: 0 0 4px 0;
}
.rd-tools-title {
  font-size: 20px;
  line-height: 1.35;
  margin: 0 0 6px 0;
}
.rd-tools-sub {
  font-size: 12px;
  color: #94a3b8;
  max-width: 460px;
  margin: 0;
}
.rd-tools-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
  justify-content: flex-start;
  font-size: 11px;
}
.rd-tools-pill {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.6);
  background: rgba(15,23,42,0.9);
  color: #e5e7eb;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.rd-tools-pill span {
  font-weight: 600;
}
.rd-tools-pill-soft {
  border-color: rgba(129,140,248,0.7);
  background: rgba(30,64,175,0.45);
  color: #e0e7ff;
}

.rd-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

/* mobile tweaks */
@media (max-width: 768px) {
  .rd-tools-header {
    flex-direction: column;
    align-items: flex-start;
    padding-inline: 12px;
  }
  .rd-tools-meta {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
  }
  .rd-tools-grid {
    padding-inline: 10px;
  }
}

/* Stage42 referral header */
.rd-ref-header{max-width:1120px;margin:0 auto 18px;padding:10px 16px 4px;display:flex;justify-content:space-between;gap:18px;align-items:flex-start;}
.rd-ref-main{flex:1.5;}
.rd-ref-kicker{font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:#9ca3af;margin:0 0 4px;}
.rd-ref-title{font-size:20px;line-height:1.35;margin:0 0 6px;}
.rd-ref-sub{font-size:12px;color:#94a3b8;max-width:460px;margin:0;}
.rd-ref-meta{display:flex;flex-direction:column;gap:6px;align-items:flex-end;font-size:11px;}
.rd-ref-pill{padding:4px 10px;border-radius:999px;border:1px solid rgba(148,163,184,.6);background:rgba(15,23,42,.9);color:#e5e7eb;}
.rd-ref-pill-soft{border-color:rgba(167,139,250,.6);background:rgba(76,29,149,.45);color:#ede9fe;}
@media(max-width:768px){.rd-ref-header{flex-direction:column;align-items:flex-start}.rd-ref-meta{flex-direction:row;flex-wrap:wrap;gap:6px}}


/* Stage46 – Rodi AI sidebar chat layout */
.rd-ai-sidebar {
  border-radius: 18px;
  padding: 14px 12px 12px;
  background: radial-gradient(circle at top left, rgba(56,189,248,0.12), transparent 55%), rgba(15,23,42,0.96);
  border: 1px solid rgba(148,163,184,0.35);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
}
.rd-ai-sidebar-header {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rd-ai-sidebar-logo {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 0, #38bdf8, #6366f1);
  box-shadow: 0 0 0 1px rgba(15,23,42,0.9), 0 10px 30px rgba(15,23,42,0.9);
}
.rd-ai-sidebar-text {
  display: flex;
  flex-direction: column;
}
.rd-ai-sidebar-title {
  font-size: 13px;
  font-weight: 600;
}
.rd-ai-sidebar-sub {
  font-size: 11px;
  color: var(--muted);
}
.rd-ai-sidebar-new {
  margin-top: 4px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.6);
  background: rgba(15,23,42,0.9);
  color: #e5e7eb;
  font-size: 12px;
  text-align: left;
  cursor: pointer;
}
.rd-ai-sidebar-new:hover {
  background: rgba(30,64,175,0.85);
}
.rd-ai-sidebar-section {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rd-ai-sidebar-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(148,163,184,0.9);
}
.rd-ai-sidebar-item {
  padding: 6px 8px;
  border-radius: 10px;
  border: 1px solid rgba(51,65,85,0.9);
  background: rgba(15,23,42,0.92);
  color: #e5e7eb;
  text-align: left;
  cursor: pointer;
  white-space: normal;
}
.rd-ai-sidebar-item:hover {
  border-color: rgba(129,140,248,0.9);
  background: rgba(15,23,42,1);
}
.rd-ai-sidebar-footer {
  margin-top: 8px;
  font-size: 10px;
  color: rgba(148,163,184,0.9);
}

/* mobile tweaks */
@media (max-width: 640px) {
  .rd-ai-sidebar {
    padding-inline: 10px;
  }
}
