/* ═══════════════════════════════════════════
   AWARD-WINNING PORTFOLIO — CSS
   Inspired by Awwwards SOTD winners 2025-2026
   Techniques: Glassmorphism, Bento Grid,
   Kinetic Typography, Custom Cursor,
   Smooth Scroll Animations
   ═══════════════════════════════════════════ */

/* ─── CSS Custom Properties ─────────────── */
:root {
  /* Colors — Dark mode with gradient accent */
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-tertiary: #1a1a24;
  --text-primary: #f0f0f5;
  --text-secondary: #8888a0;
  --text-muted: #55556a;
  --accent-1: #7c5cff;
  --accent-2: #ff6ec7;
  --accent-3: #00d4ff;
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);

  /* Typography */
  --font-display: 'Syne', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --section-padding: clamp(80px, 12vh, 160px);
  --container-width: 1400px;
  --container-padding: clamp(20px, 4vw, 60px);

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

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

html {
  scroll-behavior: initial; /* Lenis handles smooth scroll */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  cursor: none;
}

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

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

ul, li {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  background: var(--accent-1);
  color: var(--text-primary);
}

/* ─── Utility ───────────────────────────── */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.accent {
  color: var(--accent-1);
}

.accent-gradient {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2), var(--accent-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

/* ─── Glassmorphism Card ────────────────── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  transition: border-color 0.4s var(--ease-out-expo),
              box-shadow 0.4s var(--ease-out-expo),
              transform 0.4s var(--ease-out-expo);
}

.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

/* ─── Custom Cursor ─────────────────────── */
.cursor {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  mix-blend-mode: difference;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  will-change: transform;
  transition: width 0.3s var(--ease-out-expo),
              height 0.3s var(--ease-out-expo),
              background 0.3s;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  will-change: transform;
  transition: width 0.4s var(--ease-out-expo),
              height 0.4s var(--ease-out-expo),
              border-color 0.3s,
              background 0.3s;
}

.cursor.is-hovering .cursor-dot {
  width: 0;
  height: 0;
}

.cursor.is-hovering .cursor-ring {
  width: 64px;
  height: 64px;
  border-color: var(--accent-1);
  background: rgba(124, 92, 255, 0.1);
}

/* ─── Loader ────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-inner {
  text-align: center;
}

.loader-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
}

.loader-line {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  clip-path: inset(0 0 100% 0);
  animation: loaderReveal 0.8s var(--ease-out-expo) forwards;
}

.loader-line:nth-child(2) {
  animation-delay: 0.15s;
  color: var(--text-secondary);
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 400;
  letter-spacing: 0.3em;
}

.loader-counter {
  font-family: var(--font-mono);
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 16px;
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: var(--bg-tertiary);
  border-radius: 2px;
  margin: 0 auto;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  border-radius: 2px;
  transition: width 0.1s linear;
}

@keyframes loaderReveal {
  to { clip-path: inset(0 0 0% 0); }
}

.loader.is-done {
  animation: loaderExit 1s var(--ease-in-out) forwards;
}

@keyframes loaderExit {
  0% { clip-path: inset(0 0 0 0); }
  100% { clip-path: inset(0 0 100% 0); }
}

/* ─── Navigation ────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
}

.nav.is-scrolled {
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px var(--container-padding);
  border-bottom: 1px solid var(--glass-border);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--accent-1);
  transition: width 0.4s var(--ease-out-expo);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-menu-btn span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform 0.4s var(--ease-out-expo), opacity 0.3s;
}

.nav-menu-btn.is-active span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav-menu-btn.is-active span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

/* ─── Mobile Menu ───────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out-expo);
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-menu-link {
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 56px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s, transform 0.6s var(--ease-out-expo), color 0.3s;
}

.mobile-menu.is-open .mobile-menu-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.is-open .mobile-menu-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.is-open .mobile-menu-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.is-open .mobile-menu-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.is-open .mobile-menu-link:nth-child(4) { transition-delay: 0.25s; }

.mobile-menu-link:hover {
  color: var(--accent-1);
}

/* ─── Hero ──────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 var(--container-padding);
  max-width: var(--container-width);
  margin: 0 auto;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.hero-tag-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 110px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.hero-title-line {
  display: block;
  overflow: hidden;
}

.hero-title-word {
  display: inline-block;
  transform: translateY(110%);
  margin-right: 0.25em;
}

.hero-subtitle {
  font-size: clamp(16px, 1.8vw, 22px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(30px);
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
}

/* ─── Buttons ───────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124, 92, 255, 0.4);
}

.btn-primary svg {
  transition: transform 0.3s var(--ease-out-expo);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

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

.btn-ghost:hover {
  border-color: var(--accent-1);
  background: rgba(124, 92, 255, 0.1);
}

/* ─── Scroll Indicator ──────────────────── */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent-1), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { clip-path: inset(0 0 100% 0); }
  50% { clip-path: inset(0 0 0 0); }
  100% { clip-path: inset(100% 0 0 0); }
}

.hero-scroll-indicator span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── Marquee ───────────────────────────── */
.marquee-section {
  padding: 40px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  overflow: hidden;
}

.marquee {
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.marquee-dot {
  color: var(--accent-1);
  font-size: 0.4em;
  vertical-align: middle;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Section Header ────────────────────── */
.section-header {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent-1);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(40px);
}

/* ─── About ─────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text {
  opacity: 0;
  transform: translateY(30px);
}

.about-text-large {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.about-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  padding: 32px 24px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
}

.stat-icon {
  margin-bottom: 16px;
  color: var(--accent-1);
  display: flex;
  justify-content: center;
}

.stat-icon svg {
  width: 32px;
  height: 32px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  font-weight: 500;
}

/* ─── Bento Grid (Projects) ─────────────── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 20px;
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-medium {
  grid-column: span 2;
}

.bento-wide {
  grid-column: span 2;
}

.bento-small {
  grid-column: span 1;
}

.bento-item {
  opacity: 0;
  transform: translateY(40px);
}

/* ─── Project Card ──────────────────────── */
.project-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: transform 0.6s var(--ease-out-expo);
}

.project-card:hover {
  transform: translateY(-4px);
}

.project-visual {
  flex: 1;
  min-height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-visual-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    hsla(var(--hue), 70%, 50%, 0.15) 0%,
    transparent 70%
  );
  transition: opacity 0.5s;
}

.project-card:hover .project-visual-bg {
  opacity: 1.3;
}

.project-3d-object {
  width: 100%;
  height: 100%;
  position: relative;
}


.project-info {
  padding: 24px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(124, 92, 255, 0.1);
  color: var(--accent-1);
  border: 1px solid rgba(124, 92, 255, 0.2);
  letter-spacing: 0.02em;
}

.project-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.project-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-1);
  transition: gap 0.3s var(--ease-out-expo);
}

.project-link:hover {
  gap: 12px;
}

/* ─── Skills ────────────────────────────── */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.skill-category {
  padding: 40px 32px;
  opacity: 0;
  transform: translateY(40px);
}

.skill-category-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--accent-1);
}

.skill-category-icon svg {
  width: 100%;
  height: 100%;
}

.skill-category h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.skill-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.skill-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.skill-name {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  white-space: nowrap;
}

.skill-bar {
  flex: 1;
  height: 3px;
  background: var(--bg-tertiary);
  border-radius: 3px;
  overflow: hidden;
  max-width: 120px;
}

.skill-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  border-radius: 3px;
  transition: width 1.2s var(--ease-out-expo);
}

.skill-bar.is-visible span {
  width: var(--w);
}

/* ─── Journey / Ce site ─────────────────── */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.journey-card {
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: transform 0.6s var(--ease-out-expo),
              border-color 0.4s, box-shadow 0.4s;
}

.journey-card:hover {
  transform: translateY(-4px);
}

.journey-card-visual {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.journey-card-content {
  padding: 28px;
}

.journey-card-number {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-1);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 12px;
}

.journey-card-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.journey-card-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.journey-cta {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
}

.journey-cta-text {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ─── Contact ───────────────────────────── */
.contact {
  padding-bottom: 40px;
}

.contact-inner {
  text-align: center;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(40px);
}

.contact-subtitle {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
}

.contact-content {
  max-width: 700px;
  margin: 0 auto;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  transform: translateY(30px);
}

.contact-link-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--glass-border);
  transition: padding-left 0.4s var(--ease-out-expo), color 0.3s;
}

.contact-link-item:first-child {
  border-top: 1px solid var(--glass-border);
}

.contact-link-item:hover {
  padding-left: 16px;
  color: var(--accent-1);
}

.contact-link-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  width: 80px;
  text-align: left;
  letter-spacing: 0.05em;
}

.contact-link-value {
  flex: 1;
  text-align: left;
  font-weight: 500;
}

.contact-link-item svg {
  opacity: 0;
  transform: translate(-8px, 8px);
  transition: opacity 0.3s, transform 0.4s var(--ease-out-expo);
}

.contact-link-item:hover svg {
  opacity: 1;
  transform: translate(0, 0);
}

/* ─── Footer ────────────────────────────── */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--glass-border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy, .footer-credit {
  font-size: 13px;
  color: var(--text-muted);
}

/* ─── Reduced Motion ────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-inner {
    animation: none;
  }
}

/* ─── Responsive ────────────────────────── */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .skills-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .journey-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

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

  .nav-menu-btn {
    display: flex;
  }

  .hero-title {
    font-size: calc((100vw - 40px) / 10);
    margin-bottom: 24px;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
  }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* Hide custom cursor on touch devices */
  .cursor {
    display: none;
  }

  body {
    cursor: auto;
  }

  a, button {
    cursor: pointer;
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr;
  }
}
