:root {
  color-scheme: light;
  --ink: #0f172a;
  --muted: #475569;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --line: #e2e8f0;
  --surface: #ffffff;
  --wash: #f8f9fa;
  --success: #059669;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--wash);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--blue);
}

.shell {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

header {
  padding: 24px 0;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-decoration: none;
}

.links {
  display: flex;
  gap: 20px;
  font-size: 14px;
  font-weight: 700;
}

.links a {
  color: var(--muted);
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 56px;
  min-height: 620px;
  padding: 72px 0 96px;
}

.eyebrow {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 18px 0 24px;
  font-size: clamp(48px, 7vw, 84px);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.lead {
  max-width: 670px;
  color: var(--muted);
  font-size: clamp(19px, 2.4vw, 25px);
  line-height: 1.5;
}

.cta {
  display: inline-flex;
  margin-top: 20px;
  padding: 15px 22px;
  border-radius: 14px;
  background: var(--blue);
  color: white;
  font-weight: 800;
  text-decoration: none;
}

.cta:hover {
  background: var(--blue-dark);
}

.watch-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 24px 60px rgba(22, 43, 90, 0.12);
  transform: rotate(2deg);
}

.watch-card h2 {
  margin: 8px 0 12px;
  font-size: 28px;
  line-height: 1.12;
}

.status {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  background: #e7f5ef;
  color: var(--success);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 96px;
}

.proof article,
.page-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
}

.proof h2 {
  margin-top: 0;
  font-size: 22px;
  line-height: 1.2;
}

.page {
  padding: 54px 0 96px;
}

.page-card {
  max-width: 820px;
  margin: 0 auto;
}

.page-card h1 {
  margin-top: 0;
  font-size: clamp(38px, 6vw, 58px);
}

.page-card h2 {
  margin-top: 36px;
  font-size: 24px;
  line-height: 1.2;
}

.page-card p,
.page-card li {
  color: var(--muted);
}

.callout {
  padding: 18px;
  border-left: 4px solid var(--blue);
  border-radius: 10px;
  background: var(--wash);
}


.nav-cta {
  padding: 6px 14px;
  border-radius: 8px;
  background: var(--blue);
  color: white !important;
  font-weight: 800 !important;
  text-decoration: none;
  transition: background 0.2s ease;
}

.nav-cta:hover {
  background: var(--blue-dark);
}

.cta-group {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border-radius: 12px;
  background: #111827;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  background: #1f2937;
  color: #ffffff;
}

.store-badge-light {
  background: #ffffff;
  color: #111827;
  border: 1px solid var(--line);
}

.store-badge-light:hover {
  background: #f9fafb;
  color: #111827;
}

.play-icon {
  flex-shrink: 0;
}

.badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.badge-sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.8;
  text-transform: uppercase;
}

.badge-main {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin: 10px 0 0;
  letter-spacing: -0.03em;
}

/* Trust & Social Proof Section */
.trust-section {
  padding: 48px 0 80px;
  border-bottom: 1px solid var(--line);
}

.trust-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(16, 28, 53, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(16, 28, 53, 0.08);
}

.stat-rating,
.stat-number {
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 6px;
}

.stars {
  color: #f59e0b;
  font-size: 24px;
  vertical-align: middle;
}

.stat-label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.testimonials-header {
  margin-bottom: 32px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(16, 28, 53, 0.03);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  border-color: rgba(46, 89, 218, 0.3);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 800;
}

.testimonial-quote {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 20px;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--wash);
  padding-top: 14px;
}

.testimonial-author strong {
  font-size: 14px;
  color: var(--ink);
}

.testimonial-author span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

/* Google Alerts Comparison Table Section */
.comparison-section {
  padding: 72px 0 96px;
  border-top: 1px solid var(--line);
}

.section-sub {
  color: var(--muted);
  font-size: 17px;
  max-width: 620px;
  margin: 10px auto 0;
  text-align: center;
}

.table-wrapper {
  overflow-x: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(16, 28, 53, 0.06);
  margin-top: 40px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table thead th {
  background: var(--wash);
  font-size: 14px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 24px;
}

.feature-col {
  width: 38%;
}

.highlight-col {
  width: 34%;
  background: rgba(46, 89, 218, 0.03);
}

tr:hover .highlight-col {
  background: rgba(46, 89, 218, 0.06);
}

.competitor-col {
  width: 28%;
}

.col-header-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.brand-title {
  font-size: 18px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.01em;
  text-transform: none;
}

.recommend-tag {
  background: var(--blue);
  color: white;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.feature-cell strong {
  display: block;
  font-size: 16px;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 2px;
}

.feature-cell span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

.check-cell,
.cross-cell {
  vertical-align: middle;
}

.badge-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e7f5ef;
  color: var(--success);
  font-weight: 800;
  font-size: 14px;
  padding: 4px 10px;
  border-radius: 8px;
}

.badge-cross {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fdf2f2;
  color: #dc2626;
  font-weight: 800;
  font-size: 14px;
  padding: 4px 10px;
  border-radius: 8px;
}

.badge-limited {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fffbe6;
  color: #d97706;
  font-weight: 800;
  font-size: 14px;
  padding: 4px 10px;
  border-radius: 8px;
}

.cell-desc {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.use-cases, .faq-section {
  padding: 64px 0;
  border-top: 1px solid var(--line);
}

.use-cases-grid, .faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.faq-grid {
  grid-template-columns: repeat(2, 1fr);
}

.use-case-card, .faq-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
}

.use-case-card h3, .faq-card h3 {
  margin-top: 0;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.use-case-card p, .faq-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 0;
}

.download-banner {
  padding: 64px 0 96px;
}

.banner-card {
  padding: 48px 36px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.banner-card h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.03em;
  color: #ffffff;
}

.banner-card p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 540px;
  margin: 0 0 28px;
  color: #ffffff;
}

footer {
  padding: 30px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 760px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 42px;
  }

  .watch-card {
    transform: none;
  }

  .proof, .use-cases-grid, .faq-grid, .trust-stats-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .links {
    gap: 12px;
    align-items: center;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 14px 16px;
  }

  .brand-title {
    font-size: 15px;
  }

  .cell-desc {
    font-size: 12px;
  }
}

/* ==========================================================================
   App Screenshot Showcase Section
   ========================================================================== */
.showcase-section {
  padding: 80px 0;
  border-top: 1px solid var(--line);
}

.section-subtitle {
  max-width: 640px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
  text-align: center;
}

.showcase-container {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Tab Switchers */
.showcase-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  background: var(--surface);
  padding: 8px;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 4px 16px rgba(16, 28, 53, 0.04);
}

.showcase-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.showcase-tab:hover {
  color: var(--ink);
  background: var(--wash);
}

.showcase-tab.active {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
  box-shadow: 0 6px 18px rgba(46, 89, 218, 0.28);
}

/* Main Showcase Grid */
.showcase-display {
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: center;
  gap: 56px;
  width: 100%;
  max-width: 940px;
}

/* Realistic Phone Mockup Frame */
.phone-frame-wrapper {
  display: flex;
  justify-content: center;
}

.phone-frame {
  position: relative;
  width: 300px;
  height: 610px;
  background: #0f172a;
  border-radius: 46px;
  padding: 12px;
  box-shadow: 
    0 25px 60px -10px rgba(16, 28, 53, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 12px 24px -6px rgba(0, 0, 0, 0.3);
  border: 4px solid #1e293b;
}

.phone-camera {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 13px;
  height: 13px;
  background: #000000;
  border-radius: 50%;
  z-index: 10;
  border: 1.5px solid #334155;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #020617;
  border-radius: 34px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.phone-screenshot.fade-out {
  opacity: 0.2;
  transform: scale(0.97);
}

.phone-home-bar {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  z-index: 10;
}

/* Feature Details Panel */
.showcase-details {
  position: relative;
}

.detail-card {
  display: none;
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 12px 36px rgba(16, 28, 53, 0.05);
  animation: fadeInDetail 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.detail-card.active {
  display: block;
}

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

.detail-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  background: #eef2ff;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.detail-card h3 {
  font-size: 26px;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.detail-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 22px;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.detail-list li span {
  color: var(--blue);
  font-weight: 900;
}

/* ==========================================================================
   Interactive Watch Simulator Section
   ========================================================================== */
.simulator-section {
  padding: 80px 0;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--wash) 0%, #edf2fc 100%);
}

.simulator-container {
  max-width: 840px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Preset Chips */
.preset-label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 10px;
}

.preset-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.chip {
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chip:hover {
  border-color: var(--blue);
  background: #f0f4ff;
  color: var(--blue);
}

.chip.active {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
  box-shadow: 0 4px 14px rgba(46, 89, 218, 0.25);
}

/* Search Input Form */
.simulator-form {
  width: 100%;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: 20px;
  padding: 6px 6px 6px 18px;
  box-shadow: 0 8px 24px rgba(16, 28, 53, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-wrapper:focus-within {
  border-color: var(--blue);
  box-shadow: 0 8px 28px rgba(46, 89, 218, 0.18);
}

.search-icon {
  color: var(--muted);
  margin-right: 12px;
  flex-shrink: 0;
}

#sim-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.sim-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 14px;
  background: var(--blue);
  color: #ffffff;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

.sim-submit-btn:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

/* Simulator Output Area & Card */
.simulator-output-area {
  position: relative;
  min-height: 280px;
}

.sim-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 60px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(16, 28, 53, 0.04);
}

.sim-loading.hidden {
  display: none;
}

.spinner {
  width: 36px;
  height: 36px;
  border: 3.5px solid var(--wash);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
}

.sim-result-card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(16, 28, 53, 0.08);
  transition: opacity 0.3s ease;
}

.sim-result-card.hidden {
  display: none;
}

.sim-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.sim-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e7f5ef;
  color: var(--success);
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(20, 119, 90, 0.7);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(20, 119, 90, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(20, 119, 90, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(20, 119, 90, 0); }
}

.sim-schedule-tag {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.sim-card-title {
  font-size: 26px;
  margin: 0 0 20px;
  letter-spacing: -0.03em;
}

.sim-ai-summary {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 24px;
}

.sim-ai-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  margin-bottom: 14px;
  font-size: 15px;
}

.ai-sparkle-icon {
  color: var(--blue);
}

.sim-highlights {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sim-highlights li {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}

.sim-sources-block {
  margin-bottom: 28px;
}

.sources-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 10px;
}

.sim-sources-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.source-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 10px;
  background: var(--wash);
  border: 1px solid var(--line);
  color: var(--blue);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.source-chip:hover {
  background: #eef2ff;
  border-color: var(--blue);
  text-decoration: none;
}

.sim-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  border-radius: 18px;
  background: linear-gradient(135deg, #101c35 0%, #1e293b 100%);
  color: #ffffff;
}

.sim-cta-info strong {
  display: block;
  font-size: 16.5px;
  margin-bottom: 3px;
}

.sim-cta-info p {
  margin: 0;
  font-size: 14px;
  color: #94a3b8;
}

.sim-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 11px 20px;
  border-radius: 12px;
  background: var(--blue);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.1s ease;
}

.sim-cta-btn:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

/* Responsive Overrides */
@media (max-width: 760px) {
  .showcase-display {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .phone-frame-wrapper {
    width: 100%;
  }

  .phone-frame {
    width: 270px;
    height: 550px;
  }

  .showcase-tabs {
    flex-direction: column;
    width: 100%;
  }

  .showcase-tab {
    width: 100%;
    justify-content: center;
  }

  .input-wrapper {
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 12px;
  }

  .search-icon {
    display: none;
  }

  .sim-submit-btn {
    width: 100%;
    justify-content: center;
  }

  .sim-cta-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
}

/* Articles Grid & Cards */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.article-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(16, 28, 53, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(16, 28, 53, 0.08);
}

.article-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: 999px;
  background: #eef2ff;
  color: var(--blue);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.article-card h2 {
  font-size: 20px;
  margin: 0 0 12px;
  line-height: 1.3;
}

.article-card h2 a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.15s ease;
}

.article-card h2 a:hover {
  color: var(--blue);
}

.article-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 24px;
  flex-grow: 1;
}

.article-meta {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  border-top: 1px solid var(--wash);
  padding-top: 16px;
}

.article-detail-card {
  max-width: 820px;
  margin: 0 auto;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 12px 40px rgba(16, 28, 53, 0.05);
}

.article-detail-card h1 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 12px 0 20px;
}

.article-detail-card h2 {
  font-size: 24px;
  margin-top: 36px;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.article-detail-card h3 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 10px;
}

.article-detail-card p,
.article-detail-card li {
  color: var(--ink);
  font-size: 16.5px;
  line-height: 1.65;
}

.article-detail-card code {
  background: var(--wash);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 14.5px;
  color: var(--blue);
}

.article-detail-card blockquote {
  margin: 20px 0;
  padding: 16px 20px;
  border-left: 4px solid var(--blue);
  background: var(--wash);
  border-radius: 0 12px 12px 0;
}

@media (max-width: 760px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }
}

/* SEO Topic Hub & Keyword Directory */
.seo-topic-hub {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.topic-hub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.hub-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hub-card:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
  box-shadow: 0 10px 24px rgba(46, 89, 218, 0.12);
  text-decoration: none;
}

.hub-icon {
  font-size: 26px;
  line-height: 1;
}

.hub-text strong {
  display: block;
  font-size: 15px;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 4px;
}

.hub-text span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

@media (max-width: 760px) {
  .topic-hub-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   CRO Trust Badges & Micro-Proof
   ========================================================================== */
.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.hero-trust-badges span.sep {
  opacity: 0.4;
}

.hero-trust-badges .trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(46, 89, 218, 0.06);
  padding: 4px 10px;
  border-radius: 20px;
  color: var(--ink);
}

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

.qr-trigger-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.qr-trigger-btn:hover {
  border-color: var(--blue);
  background: var(--wash);
  transform: translateY(-1px);
}

/* ==========================================================================
   QR Code Desktop Modal
   ========================================================================== */
.qr-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(16, 28, 53, 0.75);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.qr-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.qr-modal-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 36px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.2s ease;
}

.qr-modal-backdrop.active .qr-modal-card {
  transform: scale(1);
}

.qr-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
}

.qr-code-box {
  background: #fff;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: inline-block;
  margin: 20px 0;
}

.qr-code-box svg {
  display: block;
}

/* ==========================================================================
   iOS & Web Waitlist / Email Capture Section
   ========================================================================== */
.waitlist-section {
  padding: 60px 0;
}

.waitlist-card {
  background: linear-gradient(135deg, #101c35 0%, #1e3a8a 100%);
  border-radius: 24px;
  padding: 48px;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 20px 48px rgba(16, 28, 53, 0.15);
}

.waitlist-info .eyebrow {
  color: #93c5fd;
}

.waitlist-info h2 {
  color: #ffffff;
  margin: 12px 0 16px;
  font-size: clamp(28px, 4vw, 38px);
  letter-spacing: -0.03em;
}

.waitlist-info p {
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.waitlist-form-wrapper {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(10px);
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.waitlist-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: all 0.2s ease;
}

.waitlist-input:focus {
  border-color: #60a5fa;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.3);
}

.waitlist-btn {
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  background: #2563eb;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.waitlist-btn:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.waitlist-success {
  display: none;
  background: rgba(20, 119, 90, 0.2);
  border: 1px solid rgba(52, 211, 153, 0.4);
  color: #a7f3d0;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

.waitlist-success.show {
  display: block;
}

.waitlist-note {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 8px;
  text-align: center;
}

@media (max-width: 860px) {
  .waitlist-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
}

/* ==========================================================================
   Watch Templates Gallery
   ========================================================================== */
.templates-section {
  padding: 60px 0;
}

.template-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 32px;
  justify-content: center;
}

.template-category-tab {
  padding: 10px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.template-category-tab:hover {
  border-color: var(--blue);
  color: var(--ink);
}

.template-category-tab.active {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
  box-shadow: 0 4px 12px rgba(46, 89, 218, 0.25);
}

.templates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.template-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.template-card:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  box-shadow: 0 12px 28px rgba(46, 89, 218, 0.12);
}

.template-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.template-category-badge {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 8px;
  background: var(--wash);
  color: var(--blue);
}

.template-frequency-badge {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.template-card h3 {
  font-size: 17px;
  margin: 0;
  color: var(--ink);
  line-height: 1.3;
}

.template-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
}

.template-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.template-action-btn:hover {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
}

/* ==========================================================================
   Autonomous vs Chat Engines (Objection Buster)
   ========================================================================== */
.autonomous-vs-chat {
  padding: 60px 0;
}

.vs-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}

.vs-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
}

.vs-card.highlight {
  border: 2px solid var(--blue);
  background: #f8faff;
  box-shadow: 0 12px 32px rgba(46, 89, 218, 0.1);
  position: relative;
}

.vs-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.vs-badge.recommended {
  background: var(--blue);
  color: #ffffff;
}

.vs-badge.traditional {
  background: #e2e8f0;
  color: #475569;
}

.vs-card h3 {
  font-size: 22px;
  margin: 0 0 12px;
  color: var(--ink);
}

.vs-card p.vs-sub {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 20px;
}

.vs-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vs-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.4;
}

.vs-features-list li span.icon-check {
  color: var(--success);
  font-weight: 900;
  flex-shrink: 0;
}

.vs-features-list li span.icon-cross {
  color: #ef4444;
  font-weight: 900;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .vs-comparison-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Article Hub Filtering & Live Search
   ========================================================================== */
.article-controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.article-search-wrapper {
  position: relative;
  max-width: 560px;
}

.article-search-wrapper input {
  width: 100%;
  padding: 14px 18px 14px 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  outline: none;
  transition: all 0.2s ease;
}

.article-search-wrapper input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(46, 89, 218, 0.15);
}

.article-search-wrapper svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}

.category-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-pill {
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.category-pill:hover {
  border-color: var(--blue);
  color: var(--ink);
}

.category-pill.active {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
}

.article-card.filtered-out {
  display: none !important;
}

/* ==========================================================================
   Article Detail: Breadcrumbs & Related Guides
   ========================================================================== */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--blue);
  text-decoration: underline;
}

.breadcrumbs span.sep {
  opacity: 0.5;
}

.related-guides-section {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.related-guides-section h3 {
  font-size: 22px;
  margin: 0 0 20px;
  color: var(--ink);
}

.related-guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.related-guide-card {
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  transition: all 0.2s ease;
}

.related-guide-card:hover {
  background: var(--surface);
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(46, 89, 218, 0.1);
  text-decoration: none;
}

.related-guide-card .tag {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--blue);
}

.related-guide-card strong {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.4;
}

.related-guide-card .read-time {
  font-size: 12px;
  color: var(--muted);
}

.article-waitlist-box {
  margin-top: 40px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
  text-align: center;
}

.article-waitlist-box h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.article-waitlist-box p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.simulator-copy-prompt {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.copy-prompt-btn {
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.copy-prompt-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* ==========================================================================
   Mobile Smart App Banner
   ========================================================================== */
.smart-app-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 16px;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.smart-app-banner.visible {
  transform: translateY(0);
}

.smart-banner-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.smart-banner-close {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 20px;
  line-height: 1;
  padding: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.smart-banner-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #0e47ec;
  padding: 2px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.smart-banner-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.smart-banner-title {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.smart-banner-sub {
  color: #94a3b8;
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.smart-banner-stars {
  color: #fbbf24;
  font-size: 11px;
  letter-spacing: -1px;
}

.smart-banner-cta {
  background: #2563eb;
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 800;
  padding: 9px 16px;
  border-radius: 9999px;
  text-decoration: none;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.smart-banner-cta:active {
  transform: scale(0.96);
  background: #1d4ed8;
}

/* ==========================================================================
   Multi-Channel Desktop Share Actions (Inside QR Modal)
   ========================================================================== */
.qr-share-channels {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qr-share-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.qr-share-buttons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.qr-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid var(--line);
  background: var(--wash);
  color: var(--ink);
  transition: all 0.2s ease;
}

.qr-share-btn:hover {
  background: #ffffff;
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}

.qr-share-btn.whatsapp {
  color: #15803d;
  background: #f0fdf4;
  border-color: #bbf7d0;
}
.qr-share-btn.whatsapp:hover {
  background: #dcfce7;
  border-color: #86efac;
}

.qr-copy-feedback {
  display: none;
  color: var(--success);
  font-size: 11px;
  font-weight: 700;
  margin-top: 4px;
}
.qr-copy-feedback.show {
  display: block;
}

/* ==========================================================================
   In-Article Interactive Watch Simulator Widget
   ========================================================================== */
.article-simulator-widget {
  margin: 36px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 20px;
  padding: 28px;
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-simulator-widget .widget-eyebrow {
  color: #60a5fa;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-simulator-widget h3 {
  margin: 6px 0 12px;
  font-size: 20px;
  color: #ffffff;
}

.article-simulator-widget p {
  color: #94a3b8;
  font-size: 14px;
  margin: 0 0 18px;
  line-height: 1.5;
}

.widget-result-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 20px;
}

.widget-signal-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  color: #38bdf8;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.widget-bullets {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  color: #e2e8f0;
  line-height: 1.6;
}

.widget-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.widget-play-btn {
  background: #2563eb;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 800;
  padding: 12px 22px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
  transition: all 0.2s ease;
}

.widget-play-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

.widget-try-web-btn {
  color: #94a3b8;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}
.widget-try-web-btn:hover {
  color: #ffffff;
}

/* ==========================================================================
   Programmatic Watch Hub & Template Pages Styles
   ========================================================================== */
.watch-hub-hero {
  text-align: center;
  padding: 48px 0 32px;
}

.watch-template-card-preview {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
  margin: 24px 0 48px;
}

.watch-tag-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.watch-freq-badge {
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
}

.watch-source-badge {
  background: #f0fdf4;
  color: #15803d;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
}

/* ==========================================================================
   Vertical Landing Pages & Custom Niche Showcase Styles
   ========================================================================== */
.vertical-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
  padding: 56px 0 64px;
}

@media (max-width: 900px) {
  .vertical-hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
    padding: 32px 0 48px;
  }
}

.vertical-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.vertical-hero h1 {
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0 0 18px;
  color: var(--ink);
}

.vertical-hero .lead {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 620px;
}

@media (max-width: 900px) {
  .vertical-hero .lead {
    margin-left: auto;
    margin-right: auto;
  }
}

.vertical-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .vertical-cta-group {
    justify-content: center;
  }
}

.vertical-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .vertical-social-proof {
    justify-content: center;
  }
}

.vertical-stars {
  color: #f59e0b;
  font-weight: 900;
}

/* Vertical Live Signal Box in Hero */
.vertical-hero-card {
  background: #0f172a;
  color: #f8fafc;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  position: relative;
  overflow: hidden;
}

.vertical-hero-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.35) 0%, rgba(37, 99, 235, 0) 70%);
  pointer-events: none;
}

.vertical-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vertical-card-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #93c5fd;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.vertical-card-time {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 600;
}

.vertical-signal-title {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 12px;
  color: #ffffff;
  line-height: 1.3;
}

.vertical-signal-takeaway {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 16px;
}

.vertical-signal-takeaway-head {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #60a5fa;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.vertical-signal-takeaway ul {
  margin: 0;
  padding-left: 18px;
  color: #cbd5e1;
  font-size: 13.5px;
  line-height: 1.55;
}

.vertical-signal-takeaway li {
  margin-bottom: 6px;
}

.vertical-signal-takeaway li:last-child {
  margin-bottom: 0;
}

.vertical-signal-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #94a3b8;
  flex-wrap: wrap;
  gap: 8px;
}

.vertical-citations-list {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.vertical-citation-tag {
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 11px;
  color: #e2e8f0;
}

/* Real App Showcase Block */
.vertical-app-showcase {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 48px 36px;
  margin: 48px 0;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.04);
}

.vertical-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.vertical-section-head h2 {
  font-size: clamp(26px, 3.6vw, 38px);
  letter-spacing: -0.03em;
  margin: 10px 0 12px;
}

.vertical-section-head p {
  color: var(--muted);
  font-size: 16px;
  margin: 0;
}

.vertical-screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.vertical-screen-item {
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vertical-screen-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.vertical-screen-frame {
  width: 100%;
  max-width: 220px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 2px solid #0f172a;
  background: #020617;
  margin-bottom: 16px;
}

.vertical-screen-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.vertical-screen-item h4 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
}

.vertical-screen-item p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}

/* Presets Catalog Grid */
.vertical-presets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.vertical-preset-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.2s ease;
  position: relative;
}

.vertical-preset-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.08);
  transform: translateY(-2px);
}

.vertical-preset-top {
  margin-bottom: 16px;
}

.vertical-preset-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.vertical-preset-freq {
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
}

.vertical-preset-prompt {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  color: #334155;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  margin: 12px 0 0;
  line-height: 1.45;
}

.vertical-preset-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}

/* Comparison Table */
.vertical-compare-wrapper {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  margin: 40px 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.vertical-compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

.vertical-compare-table th,
.vertical-compare-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

.vertical-compare-table th {
  background: #f8fafc;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vertical-compare-table th.highlight,
.vertical-compare-table td.highlight {
  background: #eff6ff;
  color: #1e3a8a;
  font-weight: 700;
}

.vertical-compare-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 768px) {
  .vertical-compare-wrapper {
    overflow-x: auto;
  }
}

/* Niche Cross-Directory Hub Section */
.vertical-niche-hub {
  background: #0b1120;
  color: #ffffff;
  border-radius: 28px;
  padding: 48px 36px;
  margin: 64px 0 48px;
}

.vertical-niche-hub h2 {
  color: #ffffff;
  font-size: 28px;
  margin: 8px 0 12px;
  text-align: center;
}

.vertical-niche-hub p {
  color: #94a3b8;
  font-size: 15px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

.vertical-niche-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.vertical-niche-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 18px 20px;
  color: #ffffff;
  text-decoration: none;
  display: block;
  transition: all 0.2s ease;
}

.vertical-niche-card:hover {
  background: rgba(37, 99, 235, 0.2);
  border-color: #60a5fa;
  transform: translateY(-2px);
}

.vertical-niche-icon {
  font-size: 24px;
  margin-bottom: 8px;
  display: block;
}

.vertical-niche-card h4 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
}

.vertical-niche-card span {
  font-size: 12px;
  color: #94a3b8;
  display: block;
  line-height: 1.35;
}

/* Language Switcher */
.lang-switcher-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(15, 23, 42, 0.6);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.lang-switcher-bar span {
  color: var(--muted);
  font-weight: 600;
  margin-right: 4px;
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.lang-pill:hover,
.lang-pill.active {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
}

/* RTL Support */
[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] nav .links {
  margin-right: auto;
  margin-left: 0;
}

[dir="rtl"] .hero-points li,
[dir="rtl"] .vertical-signal-takeaway li {
  padding-left: 0;
  padding-right: 4px;
}

/* Global Editions Showcase Section */
.global-editions-section {
  margin: 56px 0;
  padding: 40px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  text-align: center;
}

.global-editions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 28px;
  text-align: left;
}

[dir="rtl"] .global-editions-grid {
  text-align: right;
}

.global-edition-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--line);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s ease;
}

.global-edition-card:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
}

.edition-flag {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}

.edition-info strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.edition-info span {
  font-size: 13px;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}

.footer-lang-container {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
}

.footer-lang-container a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-lang-container a:hover {
  color: var(--blue);
}

[dir="rtl"] .citation-tag,
[dir="rtl"] .vertical-citation-tag {
  direction: ltr;
}

[dir="rtl"] .badge-sub,
[dir="rtl"] .badge-main {
  text-align: right;
}


