
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700&family=Space+Grotesk:wght@400;500;600;700&display=swap');


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

::selection {
  background-color: rgba(59, 130, 246, 0.3);
  color: var(--text-primary);
}
body {
 font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
 font-weight: 400;
 line-height: 1.6;

  --text: #ffffff;
  --background: #131e2c;
  --primary: #328cc1;
  --secondary: #d98310;
  --accent: #48d8d5;
  
  /* Derived colors for consistency */
  --primary-bg: #131e2c;
  --secondary-bg: rgba(50, 140, 193, 0.1);
  --accent-color: #328cc1;
  --accent-hover: #2a7ba8;
  --secondary-accent: #48d8d5;
  --secondary-accent-hover: #3bc5c2;
  --tertiary-accent: #d98310;
  --tertiary-accent-hover: #c0740e;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.9);
  --text-muted: rgba(255, 255, 255, 0.6);
  --border-color: rgba(255, 255, 255, 0.1);
  --dot-size: 1px;
  --dot-space: 24px;
  
  background: 
    radial-gradient(circle at 20% 80%, rgba(50, 140, 193, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(72, 216, 213, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(217, 131, 16, 0.05) 0%, transparent 50%),
    linear-gradient(90deg, var(--background) calc(var(--dot-space) - var(--dot-size)), transparent 1%) center / var(--dot-space) var(--dot-space),
    linear-gradient(var(--background) calc(var(--dot-space) - var(--dot-size)), transparent 1%) center / var(--dot-space) var(--dot-space),
    var(--background);

    
    /* animation: scroll 500s linear infinite; */
  /* background-image: url(/sources/images/wavey-fingerprint.svg); */
  }





p{
  color: var(--text-secondary);
  font-weight: 400;
  font-size: clamp(1rem, 2vmin, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1rem;
}

  h1 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.5rem, 8vmin, 4rem);
    color: var(--text);
    text-align: left;
    font-weight: 600;
    margin: 2rem 0 1.5rem 2rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
  }

  h2{
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.5rem, 4vmin, 2.25rem);
    color: var(--text);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  h3{
    font-family: "Space Grotesk", sans-serif;
    color: var(--text-primary);
    font-size: clamp(1.25rem, 3vmin, 1.5rem);
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
  }

  



  /* -#           🖱️R🖱️              #-  */

.cursor-dot,
.cursor-dot-outline {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: white;
  z-index: 9999;
}

html *,
body * {
  cursor: none;
}

.cursor-dot-outline {
  width: 30px;
  height: 30px;
  border: 2px solid white;
  z-index: 9998;
}


.ghThumbNail{
  display: hidden;
}

/* Colorful accent classes */
.accent-blue {
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), #4a9fd1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.accent-green {
  color: var(--accent);
  background: linear-gradient(135deg, var(--accent), #5ee0dd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.accent-orange {
  color: var(--secondary);
  background: linear-gradient(135deg, var(--secondary), #e99520);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Global Responsive Design */

/* Tablet styles (768px - 1024px) */
@media screen and (max-width: 1024px) {
  html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: rgba(72, 216, 213, 0.2);
  }
  
  body {
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  section {
    padding: 3rem 1.5rem;
  }
  
  .divider {
    height: 50px !important;
  }
  
  /* Hide custom cursor on touch devices */
  .cursor-dot,
  .cursor-dot-outline {
    display: none;
  }
  
  html *,
  body * {
    cursor: auto;
  }
  
  /* Better touch feedback */
  a:active, button:active {
    opacity: 0.7;
    transition: opacity 0.1s ease;
  }
}

/* Mobile styles (max-width: 768px) */
@media screen and (max-width: 768px) {
  body {
    font-size: 16px; /* Better for mobile readability */
    line-height: 1.6; /* Improved line spacing */
    -webkit-text-size-adjust: 100%; /* Prevent zoom on iOS */
  }
  
  section {
    padding: 3rem 1.5rem; /* More generous padding */
    scroll-margin-top: 80px; /* Account for fixed header */
  }
  
  .divider {
    height: 40px !important;
  }
  
  /* Typography scaling for mobile */
  h1 {
    font-size: clamp(2rem, 7vw, 2.8rem) !important;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  
  h2 {
    font-size: clamp(1.5rem, 5.5vw, 2.2rem) !important;
    line-height: 1.3;
    margin-bottom: 1.2rem;
  }
  
  h3 {
    font-size: clamp(1.2rem, 4.5vw, 1.7rem) !important;
    margin-bottom: 1rem;
  }
  
  p {
    font-size: 1rem; /* Improved mobile readability */
    line-height: 1.7; /* Better line spacing for reading */
    margin-bottom: 1.5rem;
  }
  
  /* Enhanced touch targets */
  a, button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* Small mobile styles (max-width: 480px) */
@media screen and (max-width: 480px) {
  body {
    font-size: 15px; /* Still readable on small screens */
    padding: 0 0.5rem; /* Prevent content from touching edges */
  }
  
  section {
    padding: 2.5rem 1rem; /* Balanced spacing */
    scroll-margin-top: 90px;
  }
  
  .divider {
    height: 30px !important;
  }
  
  h1 {
    font-size: clamp(1.7rem, 8vw, 2.2rem) !important;
    margin-bottom: 1rem;
    text-align: center; /* Center on very small screens */
  }
  
  h2 {
    font-size: clamp(1.3rem, 6.5vw, 1.8rem) !important;
    margin-bottom: 0.8rem;
    text-align: center;
  }
  
  h3 {
    font-size: clamp(1.1rem, 5.5vw, 1.4rem) !important;
    margin-bottom: 0.7rem;
  }
  
  p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.3rem;
    text-align: left; /* Keep body text left-aligned for readability */
  }
  
  /* Larger touch targets for very small screens */
  a, button {
    min-height: 48px;
    padding: 0.8rem 1.2rem;
  }
}