/* ── VARIABLES & RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:       #09090f;
  --bg2:      #111119;
  --bg3:      #15151f;
  --bg4:      #1c1c28;
  --accent:   #7c6dfa;
  --accent2:  #a594ff;
  --accent3:  #4fffb0;
  --text:     #f0eeff;
  --text2:    #a09ec0;
  --text3:    #5e5d7a;
  --card:     #131320;
  --border:   rgba(124, 109, 250, 0.16);
  --border2:  rgba(124, 109, 250, 0.34);
  --r:        14px;
  --r-sm:     8px;
  --head:     'Inter', sans-serif;
  --body:     'Inter', sans-serif;
}

.light-mode {
  --bg:       #dbdbd7;
  --bg2:      #ddddd4;
  --bg3:      #ddddd4;
  --bg4:      #ddddd4;
  --accent:   #7c6dfa;
  --accent2:  #a594ff;
  --accent3:  #3cb880;
  --text:     #1a1a1a;
  --text2:    #4a4a4a;
  --text3:    #7a7a7a;
  --card:     #ffffff;
  --border:   rgba(110, 132, 255, 0.76);
  --border2:  rgba(73, 65, 65, 0.24);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── HEADER ── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(9, 9, 15, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 16px;
}
.light-mode #site-header {
  background: #dbdbd7;
}
@media (min-width: 768px) {
  #site-header {
    padding: 0 28px;
  }
}
.header-inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  height: 56px;
}
@media (min-width: 768px) {
  .header-inner {
    max-width: 1300px;
  }
}
.logo {
  font-family: var(--head);
  font-weight: 800;
  font-size: 16px;
  white-space: nowrap;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent2), var(--accent3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.search-wrap {
  flex: 1;
  position: relative;
}
.search-wrap input {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 8px 14px 8px 36px;
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.4;
  -webkit-text-size-adjust: 100%;
  outline: none;
  transition: border-color 0.2s;
}

/* ── SEARCH INPUT & DROPDOWN ── */
.search-wrap input::placeholder { color: var(--text3); }
.search-wrap input:focus { border-color: var(--accent); }
.search-icon {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.4;
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--text);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg1);
  border: 1px solid var(--border);
  border-radius: 9px;
  margin-top: 4px;
  max-height: 300px;
  overflow-y: auto;
  display: none;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.search-results.show {
  display: block;
}
.search-result-item {
  padding: 12px 14px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background-color 0.2s;
}
.search-result-item:last-child {
  border-bottom: none;
}
.search-result-item:hover {
  background: var(--bg3);
}
.search-result-name {
  font-weight: 600;
  color: var(--text);
  font-size: 14px;
}
.search-result-category {
  font-size: 12px;
  color: var(--text3);
  margin-top: 2px;
}
.search-highlight {
  animation: searchHighlight 2s ease-in-out;
}
@keyframes searchHighlight {
  0% {
    box-shadow:
      0 0 0 0 var(--accent2),
      0 0 0 0 rgba(165, 148, 255, 0);
    transform: scale(1);
  }
  12.5% {
    box-shadow:
      0 0 0 0 var(--accent2),
      0 0 0 3px rgba(165, 148, 255, 0.3),
      0 0 0 9px rgba(165, 148, 255, 0.15),
      0 0 0 15px rgba(165, 148, 255, 0.05);
    transform: scale(1.01);
  }
  25% {
    box-shadow:
      0 0 0 0 var(--accent2),
      0 0 0 6px rgba(165, 148, 255, 0.6),
      0 0 0 12px rgba(165, 148, 255, 0.2),
      0 0 0 18px rgba(165, 148, 255, 0.1);
    transform: scale(1.02);
  }
  37.5% {
    box-shadow:
      0 0 0 0 var(--accent2),
      0 0 0 3px rgba(165, 148, 255, 0.3),
      0 0 0 9px rgba(165, 148, 255, 0.15),
      0 0 0 15px rgba(165, 148, 255, 0.05);
    transform: scale(1.01);
  }
  50% {
    box-shadow:
      0 0 0 0 var(--accent2),
      0 0 0 0 rgba(165, 148, 255, 0);
    transform: scale(1);
  }
  62.5% {
    box-shadow:
      0 0 0 0 var(--accent2),
      0 0 0 3px rgba(165, 148, 255, 0.3),
      0 0 0 9px rgba(165, 148, 255, 0.15),
      0 0 0 15px rgba(165, 148, 255, 0.05);
    transform: scale(1.01);
  }
  75% {
    box-shadow:
      0 0 0 0 var(--accent2),
      0 0 0 6px rgba(165, 148, 255, 0.6),
      0 0 0 12px rgba(165, 148, 255, 0.2),
      0 0 0 18px rgba(165, 148, 255, 0.1);
    transform: scale(1.02);
  }
  87.5% {
    box-shadow:
      0 0 0 0 var(--accent2),
      0 0 0 3px rgba(165, 148, 255, 0.3),
      0 0 0 9px rgba(165, 148, 255, 0.15),
      0 0 0 15px rgba(165, 148, 255, 0.05);
    transform: scale(1.01);
  }
  100% {
    box-shadow:
      0 0 0 0 var(--accent2),
      0 0 0 0 rgba(165, 148, 255, 0);
    transform: scale(1);
  }
}

/* ── THEME TOGGLE ── */
.theme-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--r-sm);
  color: var(--text2);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-toggle-btn:hover {
  background: var(--bg3);
  color: var(--text);
}
.theme-icon {
  width: 18px;
  height: 18px;
}

/* ── HERO ── */
#hero {
  padding: 40px 16px 32px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  #hero {
    padding: 40px 28px 32px;
    max-width: 1300px;
  }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  justify-items: center;
  text-align: center;
}
.hero-copy {
  max-width: 720px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(124, 109, 250, 0.1);
  border: 1px solid rgba(124, 109, 250, 0.22);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 16px;
}
.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent3);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.75); }
}
h1 {
  font-family: var(--head);
  font-size: clamp(28px, 5.5vw, 44px);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 14px;
}
h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent2), var(--accent3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-copy p {
  color: var(--text2);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 24px;
}
.cta-group { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.btn-primary {
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-family: var(--head);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 22px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  width: fit-content;
  transition: all 0.2s;
}
.btn-primary:hover {
  background: var(--accent2);
  transform: translateY(-2px);
}
.btn-sub {
  font-size: 11px;
  color: var(--text3);
}

/* Hero visual */
.hero-visual {
  display: none;
}
.visual-top {
  padding: 24px;
  background: linear-gradient(135deg, #1a1535 0%, #0c1d2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  position: relative;
  overflow: hidden;
}
.visual-top::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,109,250,0.22), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slideshow-container {
  position: relative;
  width: 100%;
  max-width: 520px;
  min-height: 220px;
  display: grid;
  place-items: center;
}
.hero-feature-link {
  display: block;
  width: 100%;
  height: 100%;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  cursor: pointer;
}
.slide.active {
  opacity: 1;
  transform: translateY(0);
  z-index: 1;
}
.slide-emoji {
  font-size: 44px;
  margin-bottom: 18px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.12);
}
.slide-name {
  font-family: var(--head);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
}
.slide-desc {
  color: rgba(255,255,255,0.84);
  font-size: 15px;
  line-height: 1.7;
  max-width: 340px;
}
.slide-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, background 0.2s ease;
}
.slide-link:hover {
  transform: translateY(-1px);
  background: #5f62ff;
}
@media (max-width: 640px) {
  .slide-arrow {
    width: 30px;
    height: 30px;
    left: 10px;
    right: 10px;
  }
  .slide-desc {
    font-size: 14px;
    max-width: 280px;
  }
  .slide-name {
    font-size: 22px;
  }
  .slide-arrow-left {
    left: 8px;
  }
  .slide-arrow-right {
    right: 8px;
  }
}
.mockup-window {
  background: var(--bg4);
  border-radius: 10px;
  border: 1px solid var(--border);
  width: 78%;
  padding: 12px;
  position: relative;
  z-index: 1;
}
.mockup-dots { display: flex; gap: 5px; margin-bottom: 10px; }
.mockup-dots span { width: 7px; height: 7px; border-radius: 50%; }
.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }
.mline {
  height: 6px;
  border-radius: 3px;
  background: rgba(124, 109, 250, 0.2);
  margin-bottom: 7px;
}
.mline.short  { width: 55%; }
.mline.med    { width: 75%; }
.mline.accent { background: rgba(79, 255, 176, 0.18); }
.visual-bottom {
  padding: 11px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
}
.feat-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent3);
}
.feat-day { font-size: 11px; color: var(--text3); }

/* ── SECTION SHARED ── */
#tools-section,
#top-tools-section,
#blog-section {
  padding: 0 16px 32px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  #tools-section,
  #top-tools-section,
  #blog-section {
    padding: 0 28px 32px;
    max-width: 1300px;
  }
}
.section-head { margin-bottom: 18px; }
.section-copy {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
  margin-top: 8px;
  max-width: 720px;
}
.section-title {
  font-family: var(--head);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 9px;
}
.section-title::before {
  content: '';
  display: block;
  width: 3px;
  height: 16px;
  border-radius: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--accent3));
}

/* ── TOOLS I USE DAILY GRID ── */
.tools-scroll {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding-bottom: 6px;
}
@media (min-width: 1024px) {
  .tools-scroll {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ── TOP TOOLS SECTION GRID ── */
.top-tools-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  padding-bottom: 6px;
}
@media (min-width: 768px) {
  .top-tools-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .top-tools-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

/* ── TOOL CARD STYLES ── */
.tool-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.tool-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,109,250,0.06), transparent);
  opacity: 0;
  transition: opacity 0.22s;
}
.tool-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  text-decoration: none;
}
.tool-card:hover::after { opacity: 1; }
.tool-card.placeholder { opacity: 0.45; border-style: dashed; }

/* ── TOOL CARD CONTENT ── */
.tool-logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.tool-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tool-name {
  font-family: var(--head);
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
}
.tool-benefit { font-size: 13px; color: var(--text3); line-height: 1.4; }
.tool-arrow {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 14px;
  color: var(--accent2);
  opacity: 0;
  transition: opacity 0.2s;
}
.tool-card:hover .tool-arrow { opacity: 1; }

/* ── ACCORDION ── */
.no-results {
  text-align: center;
  padding: 44px 0;
  color: var(--text3);
  font-size: 14px;
  display: none;
}
.acc-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 9px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.acc-item.open { border-color: var(--border2); }
.acc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  cursor: pointer;
  user-select: none;
}
.day-badge {
  flex-shrink: 0;
  background: rgba(124, 109, 250, 0.1);
  border: 1px solid rgba(124, 109, 250, 0.2);
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 10px;
  font-family: var(--head);
  font-weight: 700;
  color: var(--accent2);
  white-space: nowrap;
}
.acc-title {
  flex: 1;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}
.tag {
  font-size: 9px;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.tag-ai           { background: rgba(124,109,250,0.12); color: var(--accent2); }
.tag-productivity { background: rgba(79,255,176,0.1);  color: var(--accent3); }
.tag-marketing    { background: rgba(255,182,56,0.1);  color: #ffb638; }
.tag-privacy      { background: rgba(78,205,196,0.1);  color: #4ecdc4; }
.tag-design       { background: rgba(255,107,107,0.1); color: #ff6b6b; }
.chevron {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--text3);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.acc-item.open .chevron {
  transform: rotate(180deg);
  stroke: var(--accent2);
}
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s cubic-bezier(0.4, 0, 0.2, 1);
}
.acc-item.open .acc-body { max-height: 220px; }
.acc-content {
  padding: 0 15px 16px;
  border-top: 1px solid var(--border);
}
.acc-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
  margin: 13px 0 15px;
}
.acc-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  font-family: var(--head);
  font-weight: 700;
  font-size: 12px;
  padding: 9px 16px;
  border-radius: 7px;
  text-decoration: none;
  transition: all 0.2s;
}
.acc-cta:hover {
  background: var(--accent2);
  transform: translateY(-1px);
}
.acc-cta svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
}

/* ── TABS ── */
.tabs { margin-top: 18px; }
.tab-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 4px;
  gap: 4px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .tab-buttons {
    display: flex;
    overflow-x: visible;
  }
}
.tab-btn {
  flex-shrink: 0;
  background: transparent;
  border: none;
  border-radius: calc(var(--r) - 4px);
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text2);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  width: 100%;
}
@media (min-width: 768px) {
  .tab-btn {
    flex: 1;
    font-size: 13px;
    padding: 10px 16px;
    width: auto;
  }
}
.tab-btn.active {
  background: var(--accent);
  color: #fff;
}
.tab-btn:hover:not(.active) {
  background: rgba(124, 109, 250, 0.1);
  color: var(--accent2);
}
.tool-item.hidden {
  display: none;
}
.tabs-grid {
  display: grid;
  gap: 20px;
}
.vertical-tabs-wrapper {
  display: block;
}
.vertical-tabs {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
}
.vertical-tabs.active {
  display: grid;
}
.vertical-tab {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 12px 14px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: var(--text2);
  cursor: pointer;
  transition: all 0.2s;
}
.vertical-tab.active {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}
.vertical-tab:hover:not(.active) {
  background: rgba(124, 109, 250, 0.1);
  color: var(--accent2);
}
@media (min-width: 768px) {
  .tabs-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    align-items: start;
  }
  .vertical-tabs {
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }
}
.tab-content { }
.tab-pane {
  display: none;
}
.tab-pane.active {
  display: block;
}
.tool-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tool-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px;
  transition: border-color 0.2s;
}
.tool-item:hover {
  border-color: var(--accent);
}
.tool-item .tool-logo {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  border: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.tool-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tool-item .tool-name {
  font-family: var(--head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.tool-desc {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 16px;
}
.tool-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  font-family: var(--head);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  align-self: flex-start;
  transition: all 0.2s;
}
.tool-cta:hover {
  background: var(--accent2);
  transform: translateY(-1px);
}
.tool-cta svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
}

/* ── STICKY CTA ── */
#sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  padding: 10px 16px 18px;
  background: linear-gradient(to top, rgba(9,9,15,1) 55%, transparent);
  pointer-events: none;
}
.light-mode #sticky-cta {
  background: linear-gradient(to top, rgba(255,255,255,1) 55%, transparent);
}
#sticky-cta a {
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  max-width: 500px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--accent), #9b6dfa);
  color: #fff;
  font-family: var(--head);
  font-weight: 700;
  font-size: 14px;
  padding: 15px 20px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(124, 109, 250, 0.38);
  transition: all 0.22s;
}
#sticky-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 38px rgba(124, 109, 250, 0.5);
}
.sticky-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent3);
  animation: pulse 2s infinite;
}