:root {
  /* colors */
  --bg-dark: #050505;
  --bg-card: rgba(255, 255, 255, 0.03);
  --text-main: #F0F0F0;
  --text-muted: #888888;

  /* accents*/
  --accent-primary: #55ff63;
  --accent-secondary: #2fff40;
  --accent-gradient: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));

  /* typography */
  --font-main: 'Outfit', sans-serif;

  /* spacing */
  --container-width: 1400px;
  --section-spacing: 120px;

  /* animation */
  --transition-smooth: cubic-bezier(0.2, 0.65, 0.3, 0.9);
  --duration-fast: 0.6s;
  --duration-med: 0.8s;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}

html {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  background-image:
    radial-gradient(at 10% 10%, rgba(85, 255, 99, 0.03) 0px, transparent 50%),
    radial-gradient(at 90% 90%, rgba(47, 255, 64, 0.03) 0px, transparent 50%);
  color: var(--text-main);
}

body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section {
  padding: var(--section-spacing) 0;
  position: relative;
  z-index: 10;
}


html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

.reveal-text {
  opacity: 0;
  transform: translateY(100%);
  clip-path: polygon(-20% -20%, 120% -20%, 120% 150%, -20% 150%);
  padding-bottom: 0.2em;
  margin-bottom: -0.2em;
  transition: transform var(--duration-med) var(--transition-smooth), opacity var(--duration-med) ease;
}

.reveal-text.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all var(--duration-med) var(--transition-smooth);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: all var(--duration-med) var(--transition-smooth);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.accent-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dud {
  color: var(--accent-secondary);
  opacity: 0.7;
}

.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 600px;
  padding: 12px 30px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.logo-img {
  height: 40px;
  width: auto;
  max-height: 40px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.nav-link span {
  color: var(--accent-primary);
  margin-right: 5px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--text-main);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--transition-smooth);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-contact {
  display: none;
}

@media (max-width: 768px) {
  .navbar {
    max-width: none;
    padding: 10px 20px;
  }

  .nav-links {
    gap: 15px;
  }

  .nav-link {
    font-size: 0.75rem;
  }

  .logo-img {
    height: 32px;
    max-height: 32px;
  }
}

@media (max-width: 600px) {

  .nav-links {
    gap: 12px;
  }

  .nav-link {
    font-size: 0.7rem;
  }

  .nav-link span {
    display: none;
  }
}

@media (max-width: 480px) {

  .nav-links {
    gap: 10px;
  }

  .nav-link {
    font-size: 0.65rem;
  }
}

.hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-accent {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 234, 211, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
}

.hero-overline {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-primary);
  margin-bottom: 20px;
  display: block;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.9;
  font-weight: 700;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
}

.hero-footer {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--accent-primary);
  color: var(--bg-dark);
  border-radius: 100px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  transition: transform 0.3s var(--transition-smooth), box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgb(85, 255, 99, 0.2);
}

.btn-primary .icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.btn-primary:hover .icon {
  transform: rotate(-45deg);
}

.stat-badge {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-header {
  margin-bottom: 60px;
  display: flex;
  align-items: baseline;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}

.section-number {
  font-size: 1rem;
  color: var(--accent-primary);
  font-family: monospace;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 500;
}

.section-title.sm {
  font-size: 2rem;
  border: none;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.lead {
  font-size: 1.8rem;
  line-height: 1.4;
  color: var(--text-main);
  margin-bottom: 30px;
}

.philosophy-text p:not(.lead) {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s var(--transition-smooth), background 0.3s;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-5px);
}

.card-icon {
  font-size: 2rem;
  color: var(--accent-secondary);
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.philosophy-extra {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.mini-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.mini-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.mini-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  transition: all 0.3s var(--transition-smooth);
}

.mini-card:hover .mini-icon {
  background: var(--accent-primary);
  color: #000;
}

.projects-container {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.project-card {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}

.project-card:nth-child(even) {
  grid-template-columns: 1fr 1.5fr;
}

.project-card:nth-child(even) .project-image-wrapper {
  order: 2;
}

.project-image-wrapper {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
  z-index: 2;
}

.project-image-wrapper:hover .project-overlay {
  background: rgba(0, 0, 0, 0);
}

.project-img {
  width: 100%;
  border-radius: 15px;
  height: auto;
  transform: scale(1);
  transition: transform 0.7s var(--transition-smooth);
}

.project-image-wrapper:hover .project-img {
  transform: scale(1.05);
}

.project-meta {
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
}

.tag {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tag.red {
  background: rgba(255, 0, 0, 0.08);
  border: 1px solid rgba(255, 0, 0, 0.5);
}

.tag.yellow {
  background: rgba(255, 255, 0, 0.08);
  border: 1px solid rgba(255, 255, 0, 0.5);
}

.project-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  background: linear-gradient(to right, #fff, #aaa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.project-desc {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 30px;
}

.project-tech {
  display: flex;
  gap: 20px;
  font-family: monospace;
  font-size: 0.9rem;
  color: var(--accent-secondary);
}

.project-tech.squadbot {
  color: #ffcc00;
}

.project-tech.blufflol {
  color: #ff3b3b;
}

.process {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.01);
  overflow: hidden;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
  position: relative;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 24px;
  border-radius: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--transition-smooth)
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.15);
}

.step-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
  line-height: 1;
  transition: all 0.3s var(--transition-smooth);
}

.step-card:hover .step-num {
  color: var(--accent-primary);
}

.step-content h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-main);
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}


.step-line {
  display: block;
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}

.step-card {
  z-index: 1;
  background: var(--bg-card);
  -webkit-tap-highlight-color: transparent;
}

.skills {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: var(--bg-dark);
}

.skills::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(85, 255, 99, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 255, 99, 0.07) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.skills-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(85, 255, 99, 0.08) 0%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.skills-wrapper {
  position: relative;
  z-index: 1;
  text-align: center;
}

.skills-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--text-main), var(--text-muted));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.skills-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 50px;
  letter-spacing: 0.05em;
}

.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin: 60px auto 0;
  max-width: 1100px;
}

@media (max-width: 1100px) {
  .toolkit-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .toolkit-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .toolkit-grid {
    grid-template-columns: 1fr;
  }
}

.toolkit-card {
  position: relative;
  background: transparent;
  padding: 0;
  border: none;
  display: flex;
  flex-direction: column;
  overflow: visible !important;
  cursor: default;
  transition: transform 0.3s var(--transition-smooth);
  text-align: left;
}

.toolkit-inner {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s var(--transition-smooth);
}

.toolkit-card:hover {
  transform: translateY(-5px);
  z-index: 10;
}

.toolkit-card:hover .toolkit-inner {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-bg-icon {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 100px;
  height: 100px;
  opacity: 0.03;
  transform: rotate(-15deg);
  transition: all 0.5s ease;
  pointer-events: none;
}

.card-bg-icon img {
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
}

.toolkit-card:hover .card-bg-icon {
  opacity: 0.08;
  transform: rotate(0deg) scale(1.1);
}


.card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

.icon-box {
  width: 48px;
  height: 48px;
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 10px;
  transition: background 0.3s;
}

.icon-box img {
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.toolkit-card:hover .icon-box {
  background: rgba(255, 255, 255, 0.1);
}

.toolkit-card:hover .icon-box img {
  filter: grayscale(0%);
}

.skill-name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s;
}

.toolkit-card:hover .skill-name {
  color: var(--text-main);
}


.toolkit-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 0%;
  transform: translateX(0%) translateY(10px);
  width: 100%;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 10px 14px;
  color: #fff;
  font-size: 0.8rem;
  text-align: center;
  line-height: 1.4;
  white-space: normal;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: none;
  z-index: 100;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}


.toolkit-tooltip::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid rgba(255, 255, 255, 0.15);
}


.toolkit-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #111;
  margin-top: -1px;
}

.toolkit-card:hover .toolkit-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0%) translateY(0);
}

@media (max-width: 768px) {
  .toolkit-tooltip {
    display: none;
  }
}


.learning-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 6px;
  background: rgba(85, 255, 99, 0.08);
  border: 1px solid rgba(85, 255, 99, 0.15);
  border-radius: 4px;
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 5;
  opacity: 0.8;
}

.pulse-dot {
  width: 4px;
  height: 4px;
  background: var(--accent-primary);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent-primary);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

.footer {
  padding: 120px 0 40px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: radial-gradient(circle at center bottom, rgba(85, 255, 99, 0.03) 0%, transparent 60%);
}

.footer-bg-img {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 800px;
  margin-bottom: 42px;
  height: auto;
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.cta-content {
  text-align: center;
  margin-bottom: 120px;
  position: relative;
  z-index: 1;
  font-size: 3.2rem;
  line-height: 1;
}

.cta-subtitle {
  font-size: 1.2rem;
  color: var(--accent-primary);
  margin-bottom: 15px;
}

.cta-title {
  margin-bottom: 15px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 80px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links a:hover {
  color: var(--accent-primary);
}

.socials {
  display: flex;
  gap: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.social-link img {
  filter: invert(1) brightness(0.6);
  transition: filter 0.3s ease;
}

.social-link:hover {
  background: var(--text-main);
  transform: translateY(-3px);
}

.social-link:hover img {
  filter: invert(0);
}

.copyright {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
}

@media (max-width: 968px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .project-card,
  .project-card:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .project-card:nth-child(even) .project-image-wrapper {
    order: 0;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 40px;
    position: relative;
    padding: 0 20px;
  }

  .step:nth-child(odd) {
    margin-right: 15%;
    text-align: left;
  }

  .step:nth-child(even) {
    margin-left: 15%;
    text-align: right;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    z-index: 0;
  }

  .step-card {
    position: relative;
    background: var(--bg-dark);
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 30px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-title {
    font-size: 2.5rem;
  }
}

.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
}

.cursor-dot {
  width: 5px;
  height: 5px;
  background-color: var(--text-main);
}

.cursor-outline {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body:hover .cursor-outline {
  opacity: 1;
}

.cursor-outline.hovered {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border-color: transparent;
}

.cursor-dot.hovered {
  opacity: 0;
}

@media (max-width: 768px) {

  .cursor-dot,
  .cursor-outline {
    display: none;
  }
}