/* ═══ DESIGN TOKENS ═══ */
:root {
  --scrollbar-width: 0px;
}

:root[data-theme="dark"] {
  --bg-primary: #091413;
  --bg-secondary: #0d1f1c;
  --bg-card: rgba(40, 90, 72, 0.12);
  --accent-blue: #408A71;
  --accent-purple: #285A48;
  --accent-gradient: linear-gradient(135deg, #408A71, #B0E4CC);
  --accent-glow: 0 0 30px rgba(64, 138, 113, 0.35);
  --success: #10b981;
  --warning: #f59e0b;
  --text-primary: #f0faf5;
  --text-secondary: #9cbfb0;
  --text-muted: #5a8a78;
  --border: rgba(64, 138, 113, 0.2);
  --border-hover: rgba(64, 138, 113, 0.5);
  --glass: rgba(40, 90, 72, 0.12);
  --glass-border: rgba(64, 138, 113, 0.2);
}

:root[data-theme="light"] {
  --bg-primary: #f0faf5;
  --bg-secondary: #e6f2ec;
  --bg-card: #fff;
  --accent-blue: #408A71;
  --accent-purple: #285A48;
  --accent-gradient: linear-gradient(135deg, #408A71, #B0E4CC);
  --accent-glow: 0 0 30px rgba(64, 138, 113, 0.15);
  --success: #10b981;
  --warning: #f59e0b;
  --text-primary: #091413;
  --text-secondary: #285A48;
  --text-muted: #5a8a78;
  --border: rgba(64, 138, 113, 0.2);
  --border-hover: rgba(64, 138, 113, 0.5);
  --glass: rgba(64, 138, 113, 0.05);
  --glass-border: rgba(64, 138, 113, 0.15);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  overflow-x: hidden
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  scrollbar-gutter: stable;
  transition: background .3s, color .3s
}

body.search-open {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0px);
}

a {
  color: inherit;
  text-decoration: none
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit
}

ul {
  list-style: none
}

img,
video,
svg {
  max-width: 100%;
  height: auto;
  display: block
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem
}

/* ═══ TYPOGRAPHY ═══ */
h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.2
}

.text-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease,
    background .3s ease,
    backdrop-filter .3s ease
}

.navbar.scrolled {
  background: rgba(9, 20, 19, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border)
}

:root[data-theme="light"] .navbar.scrolled {
  background: rgba(248, 250, 252, 0.85)
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.25rem;
  font-weight: 800;
  z-index: 1001
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .logo-img {
    height: 32px;
  }
}

.logo-for-light-mode {
  display: none;
  transform: scale(1.05) translateX(-4px);
  transform-origin: left center;
}

:root[data-theme="light"] .logo-for-light-mode {
  display: block;
}

:root[data-theme="light"] .logo-for-dark-mode {
  display: none;
}

.nav-links {
  display: flex;
  gap: 2rem
}

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  transition: color .2s;
  padding: .5rem 0
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary)
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .75rem
}

.nav-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: all .3s;
  color: var(--text-secondary)
}

.nav-icon-btn:hover {
  background: var(--border-hover);
  transform: scale(1.05);
  color: var(--text-primary)
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: all .3s
}

.theme-toggle:hover {
  background: var(--border-hover);
  transform: scale(1.05)
}

:root[data-theme="dark"] .icon-moon {
  display: none
}

:root[data-theme="light"] .icon-sun {
  display: none
}

.btn-github {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: all .3s
}

.btn-github:hover {
  background: var(--border-hover);
  transform: scale(1.05)
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  z-index: 1001
}

.mobile-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all .3s
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px)
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4, 0, .2, 1)
}

.mobile-menu.open {
  max-height: 400px
}

.mobile-menu a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: .875rem 2rem;
  border-bottom: 1px solid var(--border);
  transition: color .2s
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--text-primary)
}

/* ═══ SEARCH OVERLAY ═══ */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease
}

.search-overlay.open {
  opacity: 1;
  visibility: visible
}

.search-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px)
}

.search-modal {
  position: relative;
  width: 100%;
  max-width: 580px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  margin: 0 1.25rem;
  transform: translateY(-20px) scale(0.97);
  transition: transform .25s ease
}

.search-overlay.open .search-modal {
  transform: translateY(0) scale(1)
}

.search-modal-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted)
}

.search-modal-header input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-family: inherit
}

.search-modal-header input::placeholder {
  color: var(--text-muted)
}

.search-kbd {
  font-size: .7rem;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace
}

.search-results {
  max-height: 50vh;
  overflow-y: auto;
  padding: .5rem
}

.search-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--text-muted);
  font-size: .9rem
}

.search-result-item {
  display: block;
  padding: .875rem 1rem;
  border-radius: 10px;
  transition: background .15s;
  text-decoration: none;
  color: var(--text-primary)
}

.search-result-item:hover,
.search-result-item:focus {
  background: var(--glass)
}

.search-result-title {
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: .25rem
}

.search-result-desc {
  font-size: .8rem;
  color: var(--text-secondary);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.search-result-source {
  font-size: .7rem;
  color: var(--accent-blue);
  margin-top: .35rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px
}

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 1.75rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all .3s;
  border: none;
  cursor: pointer
}

.btn:active {
  transform: scale(.97)
}

.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3)
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--accent-glow)
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--glass-border)
}

.btn-outline:hover {
  border-color: var(--accent-blue);
  background: rgba(59, 130, 246, 0.1)
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6rem 0 4rem
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden
}

.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: .5
}

:root[data-theme="light"] .dot-grid {
  background-image: radial-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px)
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .4;
  animation: float 8s ease-in-out infinite
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-blue);
  top: 10%;
  left: 20%;
  animation-delay: 0s
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: var(--accent-purple);
  top: 40%;
  right: 15%;
  animation-delay: -3s
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: var(--accent-blue);
  bottom: 10%;
  left: 40%;
  animation-delay: -5s
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0)
  }

  33% {
    transform: translate(30px, -30px)
  }

  66% {
    transform: translate(-20px, 20px)
  }
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1.25rem;
  border-radius: 100px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  font-size: .875rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  animation: pulse-border 3s ease-in-out infinite
}

@keyframes pulse-border {

  0%,
  100% {
    border-color: var(--glass-border)
  }

  50% {
    border-color: var(--accent-blue)
  }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.1;
  text-align: center
}

.typing-container {
  position: relative;
  display: inline-block;
  min-height: 1.2em
}

.typing-text {
  position: relative;
  display: inline-block
}

.typing-cursor {
  font-weight: 300;
  color: #fff;
  animation: blink-cursor 1s step-end infinite
}

@keyframes blink-cursor {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
  text-align: center
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scroll-bounce 2s ease-in-out infinite;
  color: var(--text-muted);
  z-index: 2
}

@keyframes scroll-bounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: .6
  }

  50% {
    transform: translateY(10px);
    opacity: 1
  }
}

/* ═══ STAGGER ANIMATION ═══ */
.animate-stagger {
  opacity: 0;
  transform: translateY(20px);
  animation: stagger-in .6s ease forwards
}

.fade-in {
  opacity: 0;
  animation: fade-in 1s ease forwards;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate-stagger,
.fade-in {
  animation-delay: var(--delay, 0ms)
}

@keyframes stagger-in {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0)
}

/* ═══ STATS ═══ */
.stats-section {
  padding: 1.5rem 0
}

.stats-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-top: 2px solid;
  border-image: var(--accent-gradient) 1;
  border-radius: 16px;
  padding: 2rem
}

.stat-item {
  text-align: center
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.stat-label {
  color: var(--text-secondary);
  font-size: .85rem;
  margin-top: .15rem
}

/* ═══ WIGGLE ANIMATION ═══ */
@keyframes wiggle {
  0% {
    transform: rotate(0deg)
  }

  15% {
    transform: rotate(3deg)
  }

  30% {
    transform: rotate(-3deg)
  }

  45% {
    transform: rotate(2deg)
  }

  60% {
    transform: rotate(-1deg)
  }

  75% {
    transform: rotate(1deg)
  }

  100% {
    transform: rotate(0deg)
  }
}

.tool-card:hover .tool-icon-wrapper {
  animation: wiggle .5s ease-in-out
}

.feature-card:hover .feature-icon {
  animation: wiggle .5s ease-in-out
}

.hero-badge:hover {
  animation: wiggle .4s ease-in-out, pulse-border 3s ease-in-out infinite
}

/* ═══ TOOLS SECTION ═══ */
.tools-section {
  padding: 6rem 0
}

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

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: .75rem
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem
}

.tools-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem
}

.search-bar {
  position: relative;
  width: 100%;
  max-width: 480px
}

.search-bar input {
  width: 100%;
  padding: .875rem 1rem .875rem 3rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--glass);
  color: var(--text-primary);
  font-size: 1rem;
  transition: border-color .3s;
  font-family: inherit
}

.search-bar input:focus {
  outline: none;
  border-color: var(--accent-blue)
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted)
}

.filter-pills {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center
}

.filter-pill {
  padding: .5rem 1.25rem;
  border-radius: 100px;
  font-size: .875rem;
  font-weight: 500;
  background: var(--glass);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all .3s;
  cursor: pointer
}

.filter-pill:hover {
  border-color: var(--accent-blue);
  color: var(--text-primary)
}

.filter-pill.active {
  background: var(--accent-gradient);
  color: #fff;
  border-color: transparent
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem
}

/* ═══ TOOL CARD ═══ */
.tool-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  border-radius: 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  transition: all .3s;
  cursor: pointer;
  text-decoration: none
}

.tool-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--accent-glow)
}

.tool-card:hover .tool-icon-wrapper {
  transform: rotate(10deg) scale(1.1)
}

.tool-card--small {
  padding: 1.25rem
}

.tool-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: transform .3s
}

.icon-blue {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6
}

.icon-purple {
  background: rgba(139, 92, 246, 0.15);
  color: #8b5cf6
}

.icon-cyan {
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4
}

.icon-orange {
  background: rgba(249, 115, 22, 0.15);
  color: #f97316
}

.icon-green {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981
}

.icon-pink {
  background: rgba(236, 72, 153, 0.15);
  color: #ec4899
}

.tool-name {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .5rem
}

.badge-free {
  font-size: .65rem;
  padding: 2px 8px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px
}

.tool-desc {
  color: var(--text-secondary);
  font-size: .9rem;
  flex: 1;
  margin-bottom: 1rem
}

.tool-action {
  color: var(--accent-blue);
  font-weight: 600;
  font-size: .875rem
}

.tool-card.hidden {
  display: none
}

/* ═══ FEATURES ═══ */
.features-section {
  padding: 6rem 0
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem
}

.feature-card {
  padding: 2rem;
  border-radius: 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: all .3s
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--accent-glow);
  border-color: var(--border-hover)
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: .75rem
}

.feature-card p {
  color: var(--text-secondary);
  font-size: .95rem;
  line-height: 1.6
}

/* ═══ AD SLOTS ═══ */
.ad-section {
  padding: 3rem 0
}

.ad-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem
}

.ad-label {
  font-size: .7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px
}

.ad-placeholder {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center
}

:root[data-theme="light"] .ad-placeholder {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.1)
}

.ad-placeholder--leaderboard {
  width: 728px;
  height: 90px;
  max-width: 100%
}

.ad-placeholder--rectangle {
  width: 300px;
  height: 250px
}

.ad-placeholder--mobile {
  width: 320px;
  height: 100px
}

/* ═══ FOOTER ═══ */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
  margin-top: 4rem
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem
}

.footer-tagline {
  color: var(--text-secondary);
  margin: .75rem 0 .25rem
}

.footer-sub {
  color: var(--text-muted);
  font-size: .875rem
}

.footer-col h3 {
  font-size: .875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 1rem
}

.footer-links li {
  margin-bottom: .5rem
}

.footer-links a {
  color: var(--text-secondary);
  font-size: .9rem;
  transition: color .2s
}

.footer-links a:hover {
  color: var(--text-primary)
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: .875rem;
  color: var(--text-muted)
}

.social-icons {
  display: flex;
  gap: .75rem
}

.social-icons a {
  color: var(--text-muted);
  transition: color .2s
}

.social-icons a:hover {
  color: var(--text-primary)
}

/* ═══ TOOL PAGE ═══ */
.tool-header {
  padding: 7rem 0 2rem
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  flex-wrap: wrap
}

.breadcrumb a {
  color: var(--text-secondary);
  transition: color .2s
}

.breadcrumb a:hover {
  color: var(--accent-blue)
}

.breadcrumb .sep {
  color: var(--text-muted)
}

.breadcrumb .current {
  color: var(--text-primary)
}

.tool-title-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem
}

.tool-title-row h1 {
  font-size: clamp(1.5rem, 3vw, 2.25rem)
}

.tool-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 600px
}

.tool-badges {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap
}

.tool-badge {
  padding: .35rem 1rem;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 500;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary)
}

/* ═══ CONVERTER ═══ */
.converter-section {
  padding: 2rem 0 4rem
}

.converter-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: start
}

.converter-panel {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  gap: .75rem;
  flex-wrap: wrap
}

.panel-header label {
  font-weight: 600;
  font-size: .9rem
}

.char-count {
  font-size: .75rem;
  color: var(--text-muted);
  background: var(--glass);
  padding: 2px 8px;
  border-radius: 6px
}

.validation-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: background .3s
}

.validation-dot.valid {
  background: var(--success)
}

.validation-dot.invalid {
  background: #ef4444
}

.code-textarea {
  width: 100%;
  min-height: 350px;
  padding: 1.25rem;
  border: none;
  background: transparent;
  color: var(--text-primary);
  font-family: 'JetBrains Mono', monospace;
  font-size: .875rem;
  line-height: 1.6;
  resize: vertical;
  outline: none
}

.code-textarea::placeholder {
  color: var(--text-muted)
}

.panel-toolbar {
  display: flex;
  gap: .5rem;
  padding: .75rem 1.25rem;
  border-top: 1px solid var(--border)
}

.tool-btn {
  padding: .5rem 1rem;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 500;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  transition: all .2s
}

.tool-btn:hover {
  background: var(--border-hover);
  color: var(--text-primary);
  border-color: var(--accent-blue)
}

.error-message {
  padding: 0 1.25rem;
  font-size: .8rem;
  color: #ef4444;
  max-height: 0;
  overflow: hidden;
  transition: all .3s
}

.error-message.show {
  padding: .75rem 1.25rem;
  max-height: 100px
}

.converter-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 4rem
}

.btn-convert {
  padding: 1rem 2rem;
  border-radius: 12px;
  background: var(--accent-gradient);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: .5rem;
  border: none
}

.btn-convert:hover {
  transform: scale(1.05);
  box-shadow: var(--accent-glow)
}

.btn-convert:active {
  transform: scale(.97)
}

.btn-convert.loading .convert-text,
.btn-convert.loading .convert-arrow {
  opacity: 0
}

.convert-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .6s linear infinite;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -10px 0 0 -10px
}

.btn-convert.loading .convert-spinner {
  display: block
}

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

.direction-toggle {
  padding: .5rem 1rem;
  border-radius: 8px;
  font-size: .8rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  transition: all .3s
}

.direction-toggle:hover {
  border-color: var(--accent-blue)
}

.output-tabs {
  display: flex;
  gap: 0
}

.output-tab {
  padding: .35rem .75rem;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  transition: all .2s;
  cursor: pointer
}

.output-tab.active {
  color: var(--accent-blue);
  border-image: var(--accent-gradient) 1
}

/* ═══ HOW TO USE ═══ */
.how-to-section {
  padding: 4rem 0
}

.steps {
  max-width: 700px;
  margin: 0 auto;
  position: relative
}

.step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1
}

.step-connector {
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: -2.5rem;
  width: 2px;
  background: var(--border)
}

.step:last-child .step-connector {
  display: none
}

.step-content {
  flex: 1
}

.step-icon {
  font-size: 1.5rem;
  margin-bottom: .5rem
}

.step-content h3 {
  font-size: 1.1rem;
  margin-bottom: .35rem
}

.step-content p {
  color: var(--text-secondary);
  font-size: .9rem
}

/* ═══ FAQ ═══ */
.faq-section {
  padding: 4rem 0
}

.faq-list {
  max-width: 700px;
  margin: 0 auto
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: .75rem;
  overflow: hidden;
  transition: border-color .3s
}

.faq-item:hover {
  border-color: var(--border-hover)
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer
}

.faq-icon {
  font-size: 1.25rem;
  transition: transform .3s;
  color: var(--text-muted)
}

.faq-item.open .faq-icon {
  transform: rotate(45deg)
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-item.open .faq-answer {
  max-height: 800px;
}

.faq-answer p {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-secondary);
  font-size: .9rem;
  line-height: 1.7
}

/* ═══ RELATED ═══ */
.related-section {
  padding: 4rem 0
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem
}

/* ═══ TOAST ═══ */
.toast-container {
  position: fixed;
  top: 5rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: .5rem
}

.toast {
  padding: 1rem 1.5rem;
  border-radius: 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--success);
  color: var(--success);
  font-size: .9rem;
  font-weight: 500;
  animation: slide-in .3s ease, fade-out .3s ease 2.7s forwards;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3)
}

@keyframes slide-in {
  from {
    transform: translateX(100%);
    opacity: 0
  }

  to {
    transform: translateX(0);
    opacity: 1
  }
}

@keyframes fade-out {
  to {
    transform: translateX(100%);
    opacity: 0
  }
}

/* ═══ RESPONSIVE ═══ */
@media(max-width:1024px) {

  .tools-grid,
  .features-grid,
  .related-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .converter-layout {
    grid-template-columns: 1fr;
    gap: 1rem
  }

  .converter-controls {
    flex-direction: row;
    padding-top: 0
  }

  .stats-card {
    grid-template-columns: repeat(2, 1fr)
  }

  .hero {
    min-height: 90vh;
    padding: 7rem 0 5rem
  }

  .orb-1 {
    width: 300px;
    height: 300px
  }

  .orb-2 {
    width: 250px;
    height: 250px
  }

  .orb-3 {
    width: 200px;
    height: 200px
  }

  .scroll-indicator {
    bottom: 1.5rem
  }
}

@media(max-width:768px) {
  .nav-links {
    display: none
  }

  .mobile-menu-btn {
    display: flex
  }

  .mobile-menu {
    display: flex
  }

  .btn-github {
    display: none
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }

  .hero {
    min-height: auto;
    padding: 5.5rem 0 3rem
  }

  .hero-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    text-align: center
  }

  .hero-badge {
    margin-bottom: 1rem;
    font-size: .8rem
  }

  .hero-subtitle {
    margin-bottom: 1.25rem;
    font-size: .95rem
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center
  }

  .hero-content {
    align-items: center;
    text-align: center
  }

  .container {
    padding: 0 1.25rem
  }

  .ad-placeholder--leaderboard {
    width: 320px;
    height: 100px
  }

  .stats-section {
    padding: 1rem 0
  }

  .stats-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.25rem
  }

  .stat-number {
    font-size: 1.75rem
  }

  .stat-label {
    font-size: .8rem
  }

  .orb-1 {
    width: 180px;
    height: 180px;
    top: 5%;
    left: 5%
  }

  .orb-2 {
    width: 150px;
    height: 150px;
    right: 5%
  }

  .orb-3 {
    width: 120px;
    height: 120px
  }

  .scroll-indicator {
    bottom: 1rem
  }

  .scroll-indicator svg {
    width: 20px;
    height: 20px
  }

  .section-header {
    margin-bottom: 2rem
  }

  .tools-section {
    padding: 3rem 0
  }

  .features-section {
    padding: 3rem 0
  }
}

@media(max-width:480px) {

  .tools-grid,
  .features-grid,
  .related-grid {
    grid-template-columns: 1fr
  }

  .hero {
    padding: 5rem 0 2.5rem
  }

  .hero-title {
    font-size: 1.6rem
  }

  .hero-badge {
    font-size: .7rem;
    padding: .35rem .75rem
  }

  .hero-subtitle {
    font-size: .85rem;
    margin-bottom: 1rem
  }

  .hero-ctas .btn {
    font-size: .9rem;
    padding: .75rem 1.5rem
  }

  .stats-card {
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
    padding: 1rem
  }

  .stat-number {
    font-size: 1.5rem
  }

  .scroll-indicator {
    bottom: .5rem
  }

  .scroll-indicator svg {
    width: 16px;
    height: 16px
  }
}

@media(hover:none) {
  .tool-card:hover {
    transform: none;
    box-shadow: none
  }

  .btn-primary:hover {
    transform: none
  }

  .feature-card:hover {
    transform: none;
    box-shadow: none
  }
}

.tools-list-page {
  padding-bottom: 4rem
}

.tool-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  border-radius: 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  transition: all .3s;
  cursor: pointer;
  text-decoration: none
}

.tool-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--accent-glow)
}

.tool-card:hover .tool-icon-wrapper {
  animation: wiggle .5s ease-in-out
}

.tool-card.hidden {
  display: none
}

.tool-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: transform .3s
}

.icon-blue {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6
}

.icon-purple {
  background: rgba(139, 92, 246, 0.15);
  color: #8b5cf6
}

.icon-cyan {
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4
}

.icon-orange {
  background: rgba(249, 115, 22, 0.15);
  color: #f97316
}

.icon-green {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981
}

.icon-pink {
  background: rgba(236, 72, 153, 0.15);
  color: #ec4899
}

.tool-name {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .5rem
}

.badge-free {
  font-size: .65rem;
  padding: 2px 8px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px
}

.tool-desc {
  color: var(--text-secondary);
  font-size: .9rem;
  flex: 1;
  margin-bottom: 1rem
}

.tool-action {
  color: var(--accent-blue);
  font-weight: 600;
  font-size: .875rem
}

.features-section {
  padding: 6rem 0
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem
}

.feature-card {
  padding: 2rem;
  border-radius: 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: all .3s
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--accent-glow);
  border-color: var(--border-hover)
}

.feature-card:hover .feature-icon {
  animation: wiggle .5s ease-in-out
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: .75rem
}

.feature-card p {
  color: var(--text-secondary);
  font-size: .95rem;
  line-height: 1.6
}

.ad-section {
  padding: 3rem 0
}

.ad-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem
}

.ad-label {
  font-size: .7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px
}

.ad-placeholder {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center
}

.ad-placeholder--leaderboard {
  width: 728px;
  height: 90px;
  max-width: 100%
}

.ad-placeholder--rectangle {
  width: 300px;
  height: 250px
}

.ad-placeholder--mobile {
  width: 320px;
  height: 100px
}

.tool-header {
  padding: 7rem 0 2rem
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  flex-wrap: wrap
}

.breadcrumb a {
  color: var(--text-secondary);
  transition: color .2s
}

.breadcrumb a:hover {
  color: var(--accent-blue)
}

.breadcrumb .sep {
  color: var(--text-muted)
}

.breadcrumb .current {
  color: var(--text-primary)
}

.tool-title-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem
}

.tool-title-row h1 {
  font-size: clamp(1.5rem, 3vw, 2.25rem)
}

.tool-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 600px
}

.tool-badges {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap
}

.tool-badge {
  padding: .35rem 1rem;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 500;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary)
}

.converter-section {
  padding: 2rem 0 4rem
}

.converter-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: start
}

.converter-panel {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  gap: .75rem;
  flex-wrap: wrap
}

.panel-header label {
  font-weight: 600;
  font-size: .9rem
}

.char-count {
  font-size: .75rem;
  color: var(--text-muted);
  background: var(--glass);
  padding: 2px 8px;
  border-radius: 6px
}

.validation-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: background .3s
}

.validation-dot.valid {
  background: var(--success)
}

.validation-dot.invalid {
  background: #ef4444
}

.code-textarea {
  width: 100%;
  min-height: 350px;
  padding: 1.25rem;
  border: none;
  background: transparent;
  color: var(--text-primary);
  font-family: 'JetBrains Mono', monospace;
  font-size: .875rem;
  line-height: 1.6;
  resize: vertical;
  outline: none
}

.code-textarea::placeholder {
  color: var(--text-muted)
}

.panel-toolbar {
  display: flex;
  gap: .5rem;
  padding: .75rem 1.25rem;
  border-top: 1px solid var(--border)
}

.tool-btn {
  padding: .5rem 1rem;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 500;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  transition: all .2s
}

.tool-btn:hover {
  background: var(--border-hover);
  color: var(--text-primary);
  border-color: var(--accent-blue)
}

.error-message {
  padding: 0 1.25rem;
  font-size: .8rem;
  color: #ef4444;
  max-height: 0;
  overflow: hidden;
  transition: all .3s
}

.error-message.show {
  padding: .75rem 1.25rem;
  max-height: 100px
}

.converter-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 4rem
}

.btn-convert {
  padding: 1rem 2rem;
  border-radius: 12px;
  background: var(--accent-gradient);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: .5rem;
  border: none
}

.btn-convert:hover {
  transform: scale(1.05);
  box-shadow: var(--accent-glow)
}

.btn-convert:active {
  transform: scale(.97)
}

.btn-convert.loading .convert-text,
.btn-convert.loading .convert-arrow {
  opacity: 0
}

.convert-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .6s linear infinite;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -10px 0 0 -10px
}

.btn-convert.loading .convert-spinner {
  display: block
}

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

.direction-toggle {
  padding: .5rem 1rem;
  border-radius: 8px;
  font-size: .8rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  transition: all .3s
}

.direction-toggle:hover {
  border-color: var(--accent-blue)
}

.output-tabs {
  display: flex;
  gap: 0
}

.output-tab {
  padding: .35rem .75rem;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  transition: all .2s;
  cursor: pointer
}

.output-tab.active {
  color: var(--accent-blue);
  border-image: var(--accent-gradient) 1
}

.how-to-section {
  padding: 4rem 0
}

.steps {
  max-width: 700px;
  margin: 0 auto;
  position: relative
}

.step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1
}

.step-connector {
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: -2.5rem;
  width: 2px;
  background: var(--border)
}

.step:last-child .step-connector {
  display: none
}

.step-content {
  flex: 1
}

.step-icon {
  font-size: 1.5rem;
  margin-bottom: .5rem
}

.step-content h3 {
  font-size: 1.1rem;
  margin-bottom: .35rem
}

.step-content p {
  color: var(--text-secondary);
  font-size: .9rem
}

.faq-section {
  padding: 4rem 0
}

.faq-list {
  max-width: 700px;
  margin: 0 auto
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: .75rem;
  overflow: hidden;
  transition: border-color .3s
}

.faq-item:hover {
  border-color: var(--border-hover)
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer
}

.faq-icon {
  font-size: 1.25rem;
  transition: transform .3s;
  color: var(--text-muted)
}

.faq-item.open .faq-icon {
  transform: rotate(45deg)
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease
}

.faq-answer p {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-secondary);
  font-size: .9rem;
  line-height: 1.7
}

.related-section {
  padding: 4rem 0
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem
}

.toast-container {
  position: fixed;
  top: 5rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: .5rem
}

.toast {
  padding: 1rem 1.5rem;
  border-radius: 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--success);
  color: var(--success);
  font-size: .9rem;
  font-weight: 500;
  animation: slide-in .3s ease, fade-out .3s ease 2.7s forwards;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3)
}

@keyframes slide-in {
  from {
    transform: translateX(100%);
    opacity: 0
  }

  to {
    transform: translateX(0);
    opacity: 1
  }
}

@keyframes fade-out {
  to {
    transform: translateX(100%);
    opacity: 0
  }
}

@keyframes wiggle {
  0% {
    transform: rotate(0)
  }

  15% {
    transform: rotate(3deg)
  }

  30% {
    transform: rotate(-3deg)
  }

  45% {
    transform: rotate(2deg)
  }

  60% {
    transform: rotate(-1deg)
  }

  75% {
    transform: rotate(1deg)
  }

  100% {
    transform: rotate(0)
  }
}

/* ═══ FOOTER ═══ */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
  margin-top: 4rem
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem
}

.footer-tagline {
  color: var(--text-secondary);
  margin: .75rem 0 .25rem
}

.footer-sub {
  color: var(--text-muted);
  font-size: .875rem
}

.footer-col h3 {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 1rem
}

.footer-links li {
  margin-bottom: .5rem
}

.footer-links a {
  color: var(--text-secondary);
  font-size: .875rem;
  transition: color .2s
}

.footer-links a:hover {
  color: var(--text-primary)
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: .875rem;
  color: var(--text-muted)
}

.social-icons {
  display: flex;
  gap: .75rem
}

.social-icons a {
  color: var(--text-muted);
  transition: color .2s
}

.social-icons a:hover {
  color: var(--text-primary)
}

@media(max-width:1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

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

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }
}

/* ═══ SINGLE PAGE / CONTENT PAGES ═══ */
.single-page {
  padding-top: 7rem;
  padding-bottom: 4rem;
  min-height: 70vh
}

.page-header {
  margin-bottom: 2.5rem
}

.page-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-top: .75rem;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block
}

.page-content {
  max-width: 800px
}

.page-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border)
}

.page-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 2rem 0 .75rem;
  color: var(--text-primary)
}

.page-content p {
  color: var(--text-secondary);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 1rem
}

.page-content ul,
.page-content ol {
  color: var(--text-secondary);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  padding-left: 1.5rem
}

.page-content ul {
  list-style: disc
}

.page-content ol {
  list-style: decimal
}

.page-content li {
  margin-bottom: .35rem
}

.page-content strong {
  color: var(--text-primary);
  font-weight: 600
}

.page-content a {
  color: var(--accent-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s
}

.page-content a:hover {
  color: var(--accent-purple)
}

.page-content blockquote {
  border-left: 3px solid var(--accent-blue);
  padding: .75rem 1.25rem;
  margin: 1.5rem 0;
  background: var(--glass);
  border-radius: 0 8px 8px 0;
  color: var(--text-secondary);
  font-style: italic
}

.page-content code {
  font-family: 'JetBrains Mono', monospace;
  font-size: .85em;
  padding: .15em .4em;
  border-radius: 4px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--accent-blue)
}

.page-content pre {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  overflow-x: auto;
  margin: 1.5rem 0
}

.page-content pre code {
  background: none;
  border: none;
  padding: 0;
  color: var(--text-primary)
}

.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: .9rem
}

.page-content th,
.page-content td {
  padding: .75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border)
}

.page-content th {
  color: var(--text-primary);
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  background: var(--glass)
}

.page-content td {
  color: var(--text-secondary)
}

.page-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0
}

.page-content em {
  color: var(--text-muted)
}

/* ═══ CONTACT CARDS ═══ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0
}

.contact-card {
  padding: 2rem;
  border-radius: 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: all .3s
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--accent-glow)
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem
}

.contact-card h3 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
  color: var(--text-primary)
}

.contact-card p {
  color: var(--text-secondary);
  font-size: .9rem;
  margin-bottom: 1rem
}

.contact-card .btn {
  font-size: .85rem;
  padding: .6rem 1.25rem
}

@media(max-width:768px) {
  .contact-cards {
    grid-template-columns: 1fr
  }
}

/* ═══════════════════════════════════════════
   REGEX TESTER — Tool-specific styles
   Append this block to your main.css
   ═══════════════════════════════════════════ */

/* ── Pattern Row ── */
.regex-tool-section {
  padding: 2rem 0 4rem;
}

.regex-pattern-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.regex-pattern-panel {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .3s;
}

.regex-pattern-panel:focus-within {
  border-color: var(--border-hover);
  box-shadow: var(--accent-glow);
}

/* ── Pattern Input with slashes ── */
.regex-input-wrapper {
  display: flex;
  align-items: center;
  padding: .75rem 1.25rem;
  gap: .5rem;
}

.regex-slash {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.4rem;
  color: var(--accent-blue);
  font-weight: 500;
  line-height: 1;
  flex-shrink: 0;
  opacity: .7;
}

.regex-pattern-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--accent-blue);
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.05rem;
  font-weight: 500;
  min-width: 0;
  caret-color: var(--accent-blue);
}

.regex-pattern-input::placeholder {
  color: var(--text-muted);
  font-weight: 400;
}

/* ── Flags ── */
.regex-flags {
  display: flex;
  gap: .35rem;
  flex-shrink: 0;
}

.flag-btn {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  font-family: 'JetBrains Mono', monospace;
  font-size: .85rem;
  font-weight: 600;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  transition: all .2s;
  cursor: pointer;
}

.flag-btn:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}

.flag-btn.active {
  background: rgba(59, 130, 246, 0.15);
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}

/* ── Quick Patterns Library ── */
.regex-patterns-library {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}

.patterns-label {
  font-size: .8rem;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.patterns-chips {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.pattern-chip {
  padding: .35rem .9rem;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 500;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  transition: all .2s;
  cursor: pointer;
  white-space: nowrap;
}

.pattern-chip:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  transform: translateY(-1px);
}

/* ── Main Layout ── */
.regex-main-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

/* ── Test String Editor with highlight overlay ── */
.regex-editor-wrapper {
  position: relative;
  min-height: 300px;
}

.regex-highlight-layer {
  position: absolute;
  inset: 0;
  padding: 1.25rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: .875rem;
  line-height: 1.6;
  color: transparent;
  pointer-events: none;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow: hidden;
  border: none;
}

.regex-highlight-layer mark {
  background: rgba(251, 191, 36, 0.35);
  color: transparent;
  border-radius: 2px;
  border-bottom: 2px solid #fbbf24;
  /* Cycle through colors for multiple groups */
}

.regex-highlight-layer mark.match-0 {
  background: rgba(59, 130, 246, 0.25);
  border-bottom-color: #3b82f6;
}

.regex-highlight-layer mark.match-1 {
  background: rgba(139, 92, 246, 0.25);
  border-bottom-color: #8b5cf6;
}

.regex-highlight-layer mark.match-2 {
  background: rgba(16, 185, 129, 0.25);
  border-bottom-color: #10b981;
}

.regex-highlight-layer mark.match-3 {
  background: rgba(249, 115, 22, 0.25);
  border-bottom-color: #f97316;
}

.regex-highlight-layer mark.match-4 {
  background: rgba(236, 72, 153, 0.25);
  border-bottom-color: #ec4899;
}

.regex-highlight-layer mark.match-5 {
  background: rgba(6, 182, 212, 0.25);
  border-bottom-color: #06b6d4;
}

.regex-test-textarea {
  position: relative;
  z-index: 1;
  background: transparent !important;
  resize: vertical;
  min-height: 300px;
}

/* ── Results Panel ── */
.results-tab-content {
  min-height: 250px;
}

.results-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  gap: .75rem;
  color: var(--text-muted);
  font-size: .9rem;
  text-align: center;
  padding: 1rem;
}

.results-empty-icon {
  font-size: 2.5rem;
  opacity: .5;
}

/* ── Matches List ── */
.matches-list {
  padding: .75rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  max-height: 320px;
  overflow-y: auto;
}

.match-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .65rem 1rem;
  border-radius: 10px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: border-color .2s;
  animation: fade-in-up .2s ease both;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.match-item:hover {
  border-color: var(--border-hover);
}

.match-badge {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  font-size: .7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  margin-top: 1px;
}

.match-badge-0 {
  background: #3b82f6;
}

.match-badge-1 {
  background: #8b5cf6;
}

.match-badge-2 {
  background: #10b981;
}

.match-badge-3 {
  background: #f97316;
}

.match-badge-4 {
  background: #ec4899;
}

.match-badge-5 {
  background: #06b6d4;
}

.match-info {
  flex: 1;
  min-width: 0;
}

.match-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: .85rem;
  color: var(--text-primary);
  word-break: break-all;
  margin-bottom: .2rem;
}

.match-meta {
  font-size: .72rem;
  color: var(--text-muted);
}

/* ── Groups Table ── */
.groups-table-wrapper {
  padding: .75rem;
  overflow-x: auto;
  max-height: 320px;
  overflow-y: auto;
}

.groups-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .82rem;
}

.groups-table th,
.groups-table td {
  padding: .6rem .9rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.groups-table th {
  color: var(--text-muted);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  background: var(--glass);
  position: sticky;
  top: 0;
}

.groups-table td {
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-secondary);
  word-break: break-all;
}

.groups-table td:first-child {
  color: var(--text-muted);
  width: 50px;
  text-align: center;
}

.groups-table td:nth-child(2) {
  color: var(--accent-blue);
}

/* ── Replace Tab ── */
.replace-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: block;
  margin-bottom: .4rem;
}

.replace-input {
  width: 100%;
  padding: .65rem 1rem;
  border-radius: 10px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: 'JetBrains Mono', monospace;
  font-size: .875rem;
  outline: none;
  transition: border-color .2s;
}

.replace-input:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.replace-input::placeholder {
  color: var(--text-muted);
}

/* ── Regex Info Bar ── */
.regex-info-bar {
  display: flex;
  gap: 0;
  margin-top: 1.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  flex-wrap: wrap;
}

.regex-info-item {
  flex: 1;
  padding: .875rem 1.25rem;
  border-right: 1px solid var(--border);
  min-width: 120px;
}

.regex-info-item:last-child {
  border-right: none;
}

.regex-info-label {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-muted);
  margin-bottom: .3rem;
}

.regex-info-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: .9rem;
  color: var(--text-primary);
  word-break: break-all;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .regex-main-layout {
    grid-template-columns: 1fr;
  }

  .regex-input-wrapper {
    flex-wrap: wrap;
    gap: .5rem;
  }

  .regex-slash {
    font-size: 1.2rem;
  }

  .regex-flags {
    order: 3;
    width: 100%;
    justify-content: flex-end;
    padding-top: .25rem;
  }

  .regex-patterns-library {
    flex-direction: column;
    align-items: flex-start;
  }

  .regex-info-bar {
    flex-direction: column;
  }

  .regex-info-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .regex-info-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .pattern-chip {
    font-size: .72rem;
    padding: .3rem .7rem;
  }

  .flag-btn {
    width: 28px;
    height: 28px;
    font-size: .78rem;
  }
}

/* ═══ HERO MOBILE FIXES (≤ 480px) ═══ */
@media (max-width: 480px) {

  /* Hero container */
  .hero {
    min-height: 100svh;
    height: auto;
    padding: 5rem 0 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Hero content wrapper */
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 0 1.25rem;
    width: 100%;
  }

  /* Hero badge — allow wrapping on small screens */
  .hero-badge {
    font-size: 0.78rem;
    padding: 0.4rem 1rem;
    max-width: 280px;
    text-align: center;
    white-space: normal;
    line-height: 1.4;
  }

  /* H1 heading — smaller clamp so text fits on 2 lines, not 1 word per line */
  .hero h1,
  .hero-title,
  .hero-title-img {
    font-size: clamp(1.5rem, 7.5vw, 2rem);
    line-height: 1.2;
    text-align: center;
    margin: 0;
    word-break: normal;
    overflow-wrap: break-word;
    overflow: hidden;
    width: 100%;
  }

  .hero h1 br {
    display: block;
  }

  /* Typing animation — inline so it flows with the h1, not a separate block */
  #typing-target {
    display: inline;
    font-size: clamp(1.5rem, 7.5vw, 2rem);
    line-height: 1.2;
    word-break: keep-all;
    overflow-wrap: normal;
    white-space: normal;
  }

  /* Subheadline — tighter to save vertical space */
  .hero-subtitle,
  .hero-sub {
    font-size: 0.82rem;
    line-height: 1.55;
    text-align: center;
    padding: 0 0.5rem;
    margin: 0;
    max-width: 300px;
    color: var(--text-secondary);
  }

  /* CTA buttons — matches .hero-ctas in hero.html */
  .hero-ctas {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .hero-ctas a,
  .hero-ctas .btn,
  .hero-ctas .btn-join {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 12px;
    min-height: 48px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
  }

  /* Social proof */
  .social-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    text-align: center;
    color: var(--text-muted);
  }

  .social-proof-text {
    font-size: 0.82rem;
    text-align: center;
  }

  .avatar-stack {
    justify-content: center;
    margin: 0 auto;
  }

  .stars {
    font-size: 0.85rem;
  }

  /* Scroll indicator — not needed on mobile */
  .scroll-indicator {
    display: none;
  }

  /* Background orbs — smaller, less intrusive */
  .orb {
    opacity: 0.12;
  }

  .orb-1 {
    width: 180px;
    height: 180px;
    top: -30px;
    left: -60px;
  }

  .orb-2 {
    width: 180px;
    height: 180px;
    bottom: -30px;
    right: -60px;
  }

  .orb-3 {
    display: none;
  }
}

/* ═══ STATS BAR MOBILE FIXES (≤ 480px) ═══ */
@media (max-width: 480px) {

  /* Stats section padding */
  .stats-section {
    padding: 0;
  }

  .stats-card {
    padding: 0 !important;
    gap: 0 !important;
    border-radius: 0 !important;
    /* Override inline flex to grid */
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto auto !important;
    justify-content: unset !important;
    flex-wrap: unset !important;
  }

  /* Each stat item — 2×2 grid with border dividers */
  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem 1rem;
    border: none;
    border-radius: 0;
  }

  .stat-item:nth-child(1) {
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
  }

  .stat-item:nth-child(2) {
    border-bottom: 1px solid var(--border);
    border-left: 1px solid var(--border);
  }

  .stat-item:nth-child(3) {
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
  }

  .stat-item:nth-child(4) {
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
  }

  /* Stat number */
  .stat-number {
    font-size: clamp(1.75rem, 8vw, 2.25rem) !important;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.4rem;
  }

  /* Stat label */
  .stat-label {
    font-size: 0.78rem !important;
    color: var(--text-muted);
    line-height: 1.3;
    text-align: center;
  }

  /* Hide any explicit dividers */
  .stat-divider {
    display: none;
  }
}

/* ═══ HERO MOBILE SPACING & FONT SIZE OVERRIDES (≤ 480px) ═══ */
@media (max-width: 480px) {

  .navbar {
    height: 56px;
    min-height: 56px;
    padding: 0 1rem;
  }

  .nav-container {
    height: 56px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0;
  }

  .logo {
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-right: auto;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
  }

  .nav-icon-btn,
  .theme-toggle,
  .mobile-menu-btn {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
  }

  .nav-icon-btn svg,
  .theme-toggle svg,
  .mobile-menu-btn svg {
    width: 16px;
    height: 16px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    height: 100svh;
    min-height: 100svh;
    max-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    position: relative;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    flex: 1;
    padding: 4.5rem 1.25rem 4rem;
    gap: 1rem;
    overflow: hidden;
    position: relative;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.875rem;
    margin: 0;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .hero h1,
  .hero-title,
  [class*="hero-title"] {
    font-size: clamp(1.6rem, 7.5vw, 2rem);
    line-height: 1.15;
    text-align: center;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
  }

  .hero h1 span,
  #typing-target,
  .hero-title-line,
  [class*="hero-title-line"] {
    font-size: clamp(1.6rem, 7.5vw, 2rem);
    line-height: 1.15;
    display: inline;
  }

  .hero-subtitle,
  .hero-sub,
  [class*="hero-subtitle"] {
    font-size: 0.78rem;
    line-height: 1.45;
    text-align: center;
    padding: 0;
    margin: 0 auto;
    max-width: 280px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-shrink: 0;
  }

  .hero-cta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    width: 100%;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
  }

  .hero-cta .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 0.7rem 1.25rem;
    font-size: 0.875rem;
    min-height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
  }

  .social-proof,
  .hero-social-proof,
  [class*="social-proof"],
  .hero-input-group {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    font-size: 0.72rem;
    color: var(--text-muted);
    padding: 0 1rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
  }

  .avatar-stack {
    display: none;
  }

  .stars {
    display: none;
  }

  .scroll-indicator,
  [class*="scroll-indicator"] {
    display: none;
  }

  .orb {
    opacity: 0.1;
  }

  .orb-1 {
    width: 150px;
    height: 150px;
    top: -40px;
    left: -50px;
  }

  .orb-2 {
    width: 150px;
    height: 150px;
    bottom: -40px;
    right: -50px;
  }

  .orb-3 {
    display: none;
  }

  .dot-grid {
    display: none;
  }
}