

:root {
  --bg: #0f141d;
  --surface: rgba(255, 255, 255, 0.08);
  --panel: rgba(255, 255, 255, 0.12);
  --text: #f3f1ee;
  --muted: #b8b5b1;
  --accent: #f0b67f;
  --accent-2: #0ad1e0;
  --shadow: 0 40px 120px rgba(0, 0, 0, 0.35);
}
.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 50%;
  z-index: 9999;
  will-change: transform; 
    transform: translate3d(0, 0, 0);
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.61);
  will-change: transform;
}

.cursor-outline {
  width: 30px;
  height: 30px;
  border: 2px solid rgba(138, 125, 125, 0.12);
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease;
}


* {
  border: 0;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(circle at top, rgba(10, 209, 224, 0.14), transparent 28%),
    radial-gradient(circle at 20% 10%, rgba(240, 182, 127, 0.18), transparent 20%),
    #0f141d;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 60% 10%, rgba(255,255,255,0.06), transparent 25%),
    radial-gradient(circle at 20% 70%, rgba(10,209,224,0.05), transparent 30%);
  opacity: 0.7;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus-visible {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: #fff;
  color: #0f141d;
  border-radius: 12px;
  z-index: 100;
}

:focus-visible {
  outline: 3px solid var(--accent-2);
  outline-offset: 3px;
}

::selection {
  background: #ff4d4d;
  color: #fff;
}

.topbar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  backdrop-filter: blur(16px);
  background: rgba(15, 20, 29, 0.75);
}

.page-notice{
  position: fixed;
  top: 3.5rem;
  left: 50%;
  z-index: 51;
  transform: translate(-50%, 10px);
  opacity: 0;
  visibility: hidden;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transition: opacity 260ms ease, transform 260ms ease, visibility 260ms ease;
}

.page-notice.visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.logo {
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 1.4rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 2rem 3rem;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 20, 29, 0.72) 0%, rgba(15, 20, 29, 0.92) 60%, rgba(15, 20, 29, 1) 100%);
  pointer-events: none;
  z-index: 1;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110%;
  min-height: 110%;
  object-fit: cover;
  transform: translate(-50%, -50%) scale(1.15);
  filter: saturate(0.7) brightness(0.7);
  z-index: -2;
}

#video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240, 182, 127, 0.22), rgba(10, 209, 224, 0.18));
  mix-blend-mode: screen;
  z-index: -1;
}

.hero-copy {
  position: relative;
  max-width: 840px;
  z-index: 5;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  color: var(--accent-2);
  letter-spacing: 0.25em;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin-bottom: 1.3rem;
}

.hero-description {
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto 2rem;
  color: var(--muted);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #101112;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.button:hover {
  transform: translateY(-3px);
  filter: saturate(1.1);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.scroll-button {
  position: absolute;
  left: 50%;
  bottom: 2.5rem;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 5;
}

.scroll-button span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--text);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
  animation: pulse 1.6s infinite;
}

.section {
  padding: 6rem 2rem;
  position: relative;
  min-height: 80vh;
    
}

.section-inner,
.section-header {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.85rem;
}

.section h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1.4rem;
}

.section p {
  color: var(--muted);
  max-width: 760px;
  line-height: 1.8;
}

.about-section {
  background: rgba(255, 255, 255, 0.03);
border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.stat-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  padding: 1.9rem;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 20px 45px rgba(0, 0, 0, 0.14);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

.stat-card h3,
.stat-card strong {
  display: block;
  font-size: 2.3rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.stat-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 2rem;
  backdrop-filter: blur(16px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.75;
}

.tools-section {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.skill-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 1.6rem;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 18px 40px rgba(0, 0, 0, 0.16);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.skill-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

.skill-card h3 {
  margin: 0;
  font-size: 1.2rem;
}


.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.7rem;
  border-radius: 999px;
  background: var(--panel);
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.25s ease, filter 0.25s ease;
  margin-top: 1rem;
}
.contact-button svg {
  margin-right: 0.5rem;
  transition: transform 0.25s ease;
}

.contact-button:hover {
  transform: translateY(-3px);
 cursor: none;
  filter: saturate(1.1);
}



.msg-form{
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
}
.msg-form input,
.msg-form textarea {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.msg-form input:focus,
.msg-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);  
}

.msg-form textarea {
  resize: vertical;
  min-height: 100px;
}
.msg-form button {
  align-self: flex-start;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #101112;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, filter 0.25s ease;
}
.msg-form button:hover {
  transform: translateY(-3px);
  filter: saturate(1.1);
}

.small-note {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}


@media (max-width: 900px) {
    .cursor-dot, .cursor-outline { display: none; }
  .nav-links {
    gap: 1rem;
  }

  .stats-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 100px;
  }

  .topbar {
    padding: 1rem 1.2rem;
  }

  .hero-description,
  .section p {
    font-size: 1rem;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .cursor-dot, .cursor-outline { display: none; }
  body { cursor: auto; }
  html { scroll-behavior: auto; }
}


@keyframes pulse {
  0%, 100% { transform: translateY(0); opacity: 0.9; }
  50% { transform: translateY(8px); opacity: 0.45; }
}
