:root {
  --bg-soft: #FDE8E9;
  --accent: #E3BAC6;
  --accent2: #BC9EC1;
  --text-main: #181825;
  --text-muted: #596475;
  --gradient-main: linear-gradient(135deg, #E3BAC6 0%, #BC9EC1 100%);
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', 'DM Sans', 'Manrope', Arial, sans-serif;
  background: var(--bg-soft);
  color: var(--text-main);
  scroll-behavior: smooth;
  transition: background 0.5s;
}

/* Utility Classes */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* ===============================
   NAVBAR — horizontal / glassy / gradient
   Keeps logo + nav items on one horizontal line.
   On tiny screens the nav becomes horizontally scrollable.
   =============================== */

/* nav shell: gradient + glass + rounded + subtle border */
nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  /* logo left, nav right */
  background: linear-gradient(90deg, rgba(227, 186, 198, 0.18), rgba(188, 158, 193, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 30px rgba(30, 16, 30, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  padding: 0.9rem 2.5vw;
  border-radius: 14px;
  margin: 0.6rem 2vw;
  position: sticky;
  top: 0;
  z-index: 9999;
  transition: background .25s ease, padding .18s ease, box-shadow .18s ease;
  overflow: visible;
}

/* smaller screens should not break the single-row layout — allow horizontal scroll */
nav .nav-inner {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 1rem;
}

/* Logo — keep strong brand type + gradient fill */
nav .logo {
  font-family: 'Space Grotesk', 'DM Sans', 'Manrope', sans-serif;
  font-weight: 900;
  font-size: 2.05rem;
  letter-spacing: -0.03em;
  line-height: 1;
  color: transparent;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 14px rgba(183, 130, 175, 0.06);
  transition: transform .22s cubic-bezier(.2, .9, .3, 1), text-shadow .22s;
  flex-shrink: 0;
  /* prevent logo from shrinking */
}

nav .logo:hover,
nav .logo:focus {
  transform: translateY(-3px) scale(1.02);
  text-shadow: 0 14px 36px rgba(183, 130, 175, 0.12);
}

/* main nav list — stays in the same row as logo; no wrapping */
nav ul {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  /* prevents wrapping */
  margin-left: auto;
  /* push to right of logo */
  overflow-x: auto;
  /* allow horizontal scroll on very small screens */
  -webkit-overflow-scrolling: touch;
}

/* hide scrollbar while keeping scrolling functionality */
nav ul::-webkit-scrollbar {
  height: 6px;
}

nav ul::-webkit-scrollbar-thumb {
  background: rgba(140, 110, 150, 0.18);
  border-radius: 10px;
}

nav ul::-webkit-scrollbar-track {
  background: transparent;
}

/* nav items */
nav ul li {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  /* avoid growing/shrinking */
}

/* nav link appearance — readable + brand-toned */
nav ul li a {
  text-decoration: none;
  color: rgba(24, 24, 37, 0.92);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.44rem 0.45rem;
  border-radius: 10px;
  transition: color .18s ease, background .18s ease, transform .12s ease, box-shadow .12s;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  white-space: nowrap;
}

/* hover / focus - pill with gradient matching theme */
nav ul li a:hover,
nav ul li a:focus {
  color: #fff;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(188, 158, 193, 0.15);
  outline: none;
}

/* current / active link */
nav ul li a.active,
nav ul li a[aria-current="page"] {
  color: #fff;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 100%);
  box-shadow: 0 12px 30px rgba(188, 158, 193, 0.18);
}

/* keyboard focus visible */
nav ul li a:focus-visible {
  outline: 3px solid rgba(188, 158, 193, 0.18);
  outline-offset: 4px;
  border-radius: 10px;
}

/* optional scrolled compact state (if you add JS) */
nav.scrolled {
  padding: 0.6rem 2vw;
  box-shadow: 0 6px 18px rgba(20, 10, 20, 0.06);
}

/* decorative soft line under nav */
nav::after {
  content: "";
  display: block;
  height: 4px;
  width: 110px;
  margin: 0.5rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(227, 186, 198, 0.95), rgba(188, 158, 193, 0.95));
  opacity: 0.12;
  pointer-events: none;
}

/* keep nav compact on tiny screens while allowing horizontal scroll for items */
@media (max-width: 640px) {
  nav {
    margin: 0.4rem 1rem;
    border-radius: 10px;
    padding: 0.55rem 1rem;
  }

  nav .logo {
    font-size: 1.5rem;
  }

  nav ul {
    gap: 0.9rem;
  }

  nav ul li a {
    font-size: 0.95rem;
    padding: 0.35rem 0.6rem;
  }

  nav::after {
    width: 80px;
    opacity: 0.09;
  }
}

/* end NAVBAR changes */


/* Section Styles */
.section {
  padding: 6em 5vw 4em 5vw;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.section-title {
  font-family: 'Space Grotesk', 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 0.75rem;
  color: inherit;
  text-align: center;
}

.section-sub {
  font-weight: 400;
  font-size: 1.4rem;
  opacity: 0.9;
  margin-bottom: 3rem;
  text-align: center;
}

/* Hero Section */
.hero-bg {
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-main);
  mix-blend-mode: lighten;
  pointer-events: none;
  opacity: 0.24;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 11vh 0 7vh 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.animated-logo {
  font-family: 'Space Grotesk', 'Satoshi', 'DM Sans', sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: title-fade-in 1.8s;
}

@keyframes title-fade-in {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.tagline {
  margin: 1.2em 0;
  font-size: 1.4rem;
  font-weight: 400;
}

.gradient {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.hero-cta {
  display: flex;
  gap: 1.5em;
  flex-direction: row;
  margin-top: 2.8em;
}

/* Button Styles */
.btn {
  padding: 0.9em 2.6em;
  border-radius: 3em;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  background: var(--gradient-main);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 28px 0 rgba(190, 140, 200, .09);
  transition:
    transform .14s cubic-bezier(0.5, 1.7, 0.77, 1.2),
    box-shadow .18s,
    background 0.25s,
    color 0.25s;
  will-change: transform;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.primary:active,
.btn.primary:hover {
  transform: scale(1.06);
}

.btn.secondary {
  background: #fff;
  color: var(--accent2);
  box-shadow: 0 3px 12px 0 rgba(140, 120, 160, .09);
  border: 2px solid var(--accent2);
}

.btn.secondary:active,
.btn.secondary:hover {
  background: var(--accent2);
  color: #fff;
}

/* Services Section */
.services {
  text-align: center;
  background: #E3BAC6;
  color: #181825;
}

.services h2 {
  font-family: 'Space Grotesk', 'DM Sans', sans-serif;
  font-size: 2.8rem;
  margin-bottom: 0.5em;
  color: var(--text-main);
}

.services-intro {
  font-size: 1.2rem;
  max-width: 640px;
  margin: 0 auto 2em auto;
  color: var(--text-main);
}

.accordion {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2em;
}

.accordion-item {
  background: rgba(255, 255, 255, 0.90);
  border-radius: 1.6em;
  overflow: visible;
  box-shadow: 0 8px 30px rgba(185, 145, 200, 0.15);
  transition: transform 0.18s ease, box-shadow 0.24s ease;
}

.accordion-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(185, 145, 200, 0.25);
}

.accordion-header {
  all: unset;
  display: flex;
  align-items: center;
  gap: 1em;
  cursor: pointer;
  padding: 1.2em;
  width: 100%;
}

.service-icon .lottie,
.service-icon .lottie-placeholder {
  width: 70px;
  height: 70px;
  background: rgba(237, 214, 233, .76);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-title {
  flex: 1;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: left;
  word-wrap: break-word;
  white-space: normal;
  color: var(--text-main);
}

.accordion-body {
  max-height: none !important;
  overflow: visible !important;
  padding: 1.6em;
  font-size: 0.98rem;
  line-height: 1.55;
  transition: none !important;
  color: var(--text-main);
}

.accordion-body p {
  color: var(--text-main);
  margin: 1em 0;
  word-wrap: break-word;
}

/* Work Section */
.work-section {
  width: 100%;
  padding: 5rem 5vw 7rem;
  text-align: center;
  background: transparent;
  position: relative;
  overflow-x: hidden;
}

.work-section h2 {
  font-family: 'Space Grotesk', 'DM Sans', sans-serif;
  font-size: 3.3rem;
  margin-bottom: 4.5rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #5a5f6a;
}

.projects-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  overflow: hidden;
  padding-bottom: 0;
  max-width: 1280px;
  margin: 0 auto;
  scrollbar-width: none;
}

.projects-container::-webkit-scrollbar {
  display: none;
}

.project-card {
  position: relative;
  width: 340px;
  max-width: 340px;
  background: #fafafa;
  border-radius: 1.6em;
  box-shadow: 0 14px 44px rgba(180, 130, 200, 0.12);
  cursor: pointer;
  overflow: hidden;
  margin: 0 auto;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.32s ease;
  will-change: transform, box-shadow;
}

.project-card:hover {
  box-shadow: 0 30px 80px rgba(190, 120, 210, 0.4);
  z-index: 20;
  transform: scale(1.05) translateY(-10px);
}

.project-image {
  height: 220px;
  background-image: var(--img-url);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 1.6em 1.6em 0 0;
  transition: transform 0.5s ease, filter 0.5s ease;
  will-change: transform;
}

.project-card:hover .project-image {
  transform: scale(1.12) rotateY(6deg);
  filter: brightness(0.87);
}

.project-info {
  padding: 1.8em 1.4em 2.4em;
  text-align: center;
  color: #383d4a;
  background: #fff;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.015em;
  border-radius: 0 0 1.6em 1.6em;
  user-select: none;
}

.project-info h3 {
  font-weight: 800;
  font-size: 1.7rem;
  margin-bottom: 0.48em;
  transition: color 0.3s ease;
}

.project-info p {
  font-weight: 600;
  font-size: 1.1rem;
  opacity: 0.82;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-info h3 {
  color: #bc9ec1;
}

.project-card:hover .project-info p {
  opacity: 1;
}

/* Free Website Section */
.free-section {
  background: transparent;
  color: white;
  padding: 6rem 2rem 7rem;
  position: relative;
  overflow: visible;
}

.free-inner {
  background: linear-gradient(135deg, #E3BAC6, #BC9EC1);
  border-radius: 1.4rem;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(190, 140, 200, 0.3);
}

.free-grid {
  display: grid;
  gap: 2.25rem;
}

.free-content {
  text-align: left;
  padding-right: 1rem;
}

.free-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: white;
}

.free-content p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.eligibility {
  margin-bottom: 2rem;
}

.eligibility h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: white;
  font-weight: 600;
}

.eligibility ul {
  list-style: none;
  padding-left: 1.25rem;
}

.eligibility li {
  margin-bottom: 0.5rem;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
}

.eligibility li::before {
  content: "•";
  position: absolute;
  left: -1.25rem;
  color: white;
  font-size: 1.2rem;
  line-height: 1;
}

.free-form {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  padding: 2rem;
  backdrop-filter: blur(10px);
  text-align: left;
  box-shadow: inset 0 0 14px rgba(255, 255, 255, 0.3);
}

.free-form h3 {
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  color: white;
  font-weight: 600;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 0.5rem;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  font-family: inherit;
  font-size: 1rem;
  transition: box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

/* Hackathon Section */
.hackathon-section {
  background: transparent;
  color: white;
  padding: 6rem 2rem 7rem;
  position: relative;
  overflow: visible;
}

.hackathon-inner {
  background: linear-gradient(135deg, #9F7E69, #7A5C58);
  border-radius: 1.4rem;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(150, 110, 100, 0.4);
}

.hackathon-grid {
  display: grid;
  gap: 2.25rem;
  align-items: start;
}

.hackathon-content {
  text-align: left;
  padding-right: 1rem;
}

.coming-soon {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  opacity: 0.9;
  animation: fadeInOut 3s infinite;
  color: white;
  user-select: none;
}

@keyframes fadeInOut {

  0%,
  100% {
    opacity: 0.8;
  }

  50% {
    opacity: 1;
  }
}

.hackathon-content p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.highlights {
  margin-bottom: 2rem;
}

.highlights h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: white;
  font-weight: 600;
}

.highlights ul {
  list-style: none;
  padding-left: 1.25rem;
}

.highlights li {
  margin-bottom: 0.5rem;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
}

.highlights li::before {
  content: "•";
  position: absolute;
  left: -1.25rem;
  color: white;
  font-size: 1.2rem;
  line-height: 1;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0 2rem 0;
  flex-wrap: nowrap;
}

.countdown-box {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  min-width: 75px;
  backdrop-filter: blur(5px);
  text-align: center;
  font-family: 'Inter', sans-serif;
  user-select: none;
}

.countdown-number {
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

.countdown-label {
  font-size: 0.875rem;
  color: white;
  opacity: 0.9;
}

.hackathon-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.illustration-item {
  background: rgba(255, 255, 255, 0.1);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  animation: float 6s infinite ease-in-out;
  backdrop-filter: blur(5px);
  user-select: none;
}

.illustration-item:nth-child(1) {
  animation-delay: 0s;
}

.illustration-item:nth-child(2) {
  animation-delay: 1.5s;
}

.illustration-item:nth-child(3) {
  animation-delay: 3s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* About Section */
.about-section {
  background: transparent;
  color: var(--text-main);
  padding: 6rem 2rem 7rem;
  position: relative;
  overflow: visible;
}

.about-inner {
  background: #eed7f2;
  border-radius: 1.4rem;
  padding: 3rem 2rem;
  box-shadow: 0 6px 28px rgba(140, 110, 160, 0.1);
  max-width: 1140px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 1.4rem;
  color: var(--text-main);
}

.about-team h3 {
  font-family: 'Space Grotesk', 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--accent2);
}

.team-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.team-list li {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex: 1 1 45%;
}

.avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 3px 15px rgba(180, 140, 180, 0.2);
  transition: transform 0.3s ease;
}

.avatar:hover,
.avatar:focus {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(190, 140, 200, 0.35);
}

/* Contact Section */
.contact {
  text-align: center;
  color: white;
}

.contact h2 {
  font-family: 'Space Grotesk', 'DM Sans', sans-serif;
  font-size: 3rem;
  margin-bottom: 2rem;
  color: white;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2em;
  margin: 2em auto 0;
  max-width: 410px;
}

.contact-form input,
.contact-form textarea {
  border-radius: 1.2em;
  border: none;
  font-size: 1.06rem;
  padding: 1em 1.2em;
  background: #fff;
  color: var(--text-main);
  box-shadow: 0 1px 8px rgba(100, 60, 110, 0.10);
}

.contact-form textarea {
  min-height: 120px;
  font-family: inherit;
  resize: vertical;
}

.contact-info {
  margin: 1.7em 0 .8em 0;
  display: flex;
  flex-direction: column;
  gap: .8em;
  color: rgba(255, 255, 255, 0.8);
}

.socials a {
  display: inline-block;
  margin-right: 1.2em;
  font-weight: 600;
  color: white;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.socials a:hover {
  opacity: 1;
}

/* Footer Styles */
.site-footer.footer--clean {
  padding: 2.5rem 0 2rem;
  background: transparent;
}

.footer-shell {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 14px 36px rgba(20, 10, 20, 0.06);
  border: 1px solid rgba(20, 10, 20, 0.04);
}

.footer-sticky-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .9rem;
  flex-wrap: wrap;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 100%);
  color: #fff;
  padding: .6rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(188, 158, 193, 0.12);
  transition: transform 0.2s ease;
}

.footer-cta:hover {
  transform: translateY(-2px);
}

.footer-cta .footer-cta-line {
  opacity: .95;
  font-weight: 600;
  font-size: .95rem;
  display: block;
  line-height: 1;
}

.footer-cta .footer-cta-main {
  font-size: 1rem;
  margin-left: 0.15rem;
  display: block;
  line-height: 1;
}

.footer-cta-arrow {
  opacity: .95;
  margin-left: .35rem;
}

.word-ticker {
  display: inline-flex;
  gap: .45rem;
  margin-left: .6rem;
  font-weight: 700;
  font-size: .95rem;
  position: relative;
  height: 1.2em;
  overflow: hidden;
}

.word-ticker>span {
  display: block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform .42s cubic-bezier(.2, .9, .2, 1), opacity .28s;
  position: absolute;
  left: 0;
  top: 0;
}

.footer-face {
  width: 120px;
  height: auto;
  opacity: 0.9;
  color: var(--accent2);
}

.footer-canvas-wrap {
  margin: .6rem 0;
  width: 100%;
  overflow: hidden;
  display: block;
}

.footer-ballpit {
  width: 100%;
  max-height: 220px;
  display: block;
  background: transparent;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: .8rem 0;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer-col-title {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: 0;
  font-size: 1rem;
  color: var(--text-main);
  font-weight: 600;
}

.footer-brief {
  margin-top: .25rem;
  padding: .45rem .7rem;
  border-radius: 8px;
  border: 1px solid rgba(20, 20, 30, .05);
  background: transparent;
  cursor: pointer;
  align-self: start;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}

.footer-brief:hover {
  background: rgba(188, 158, 193, 0.1);
}

.footer-contact-mail a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
}

.footer-contact-mail a:hover {
  color: var(--accent2);
}

.footer-email {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-email:hover {
  color: var(--accent2);
}

.footer-rule {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .06), rgba(0, 0, 0, 0));
  margin: .9rem 0;
}

.footer-bottom {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-legal {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-socials-list {
  display: flex;
  gap: .5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .45rem;
  border-radius: 6px;
  text-decoration: none;
  color: var(--text-main);
  border: 1px solid rgba(20, 20, 30, .04);
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
  font-size: 0.9rem;
}

.social-link:hover {
  background: var(--accent2);
  color: white;
}

.footer-policies {
  display: flex;
  gap: 0.5rem;
}

.footer-policies a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-policies a:hover {
  color: var(--accent2);
}

/* Custom Cursor */
#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  background: var(--accent2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
  opacity: 0.82;
  transition: opacity 0.26s;
  will-change: transform, opacity;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .team-list {
    justify-content: center;
  }

  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 1rem 4vw;
  }

  nav ul {
    gap: 1.5em;
  }

  .logo {
    font-size: 1.5rem;
  }

  .section {
    padding: 4em 4vw 3em 4vw;
  }

  .animated-logo {
    font-size: 3rem;
  }

  .tagline {
    font-size: 1.2rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .work-section h2 {
    font-size: 2.5rem;
  }

  .accordion {
    grid-template-columns: 1fr;
  }

  .projects-container {
    gap: 2rem;
  }

  .project-card {
    width: 100%;
    max-width: 400px;
  }

  .free-grid,
  .hackathon-grid {
    grid-template-columns: 1fr;
  }

  .countdown {
    gap: 0.5rem;
  }

  .countdown-box {
    padding: 0.5rem 1rem;
    min-width: 60px;
  }

  .countdown-number {
    font-size: 1.5rem;
  }

  .footer-columns {
    grid-template-columns: 1fr;
  }

  .footer-sticky-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  nav ul {
    gap: 1em;
  }

  nav ul li a {
    font-size: 1rem;
  }

  .animated-logo {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .btn {
    padding: 0.8em 2em;
    font-size: 1rem;
  }

  .project-card {
    width: 100%;
    max-width: 320px;
  }

  .coming-soon {
    font-size: 2rem;
  }

  .illustration-item {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

/* Wide screens */
@media (min-width: 920px) {
  .footer-columns {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
  }

  .footer-sticky-row {
    gap: 1.5rem;
  }

  .footer-canvas-wrap {
    max-height: 180px;
  }

  .free-grid,
  .hackathon-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  :root {
    --text-main: #f0f0f0;
    --text-muted: #b0b0b0;
  }

  .footer-shell {
    background: #1a1a1a;
    color: var(--text-main);
  }

  .contact-form input,
  .contact-form textarea {
    background: #2a2a2a;
    color: var(--text-main);
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .btn {
    border: 2px solid currentColor;
  }

  .accordion-item {
    border: 2px solid var(--accent2);
  }

  .project-card {
    border: 2px solid var(--accent2);
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .logo {
    animation: none;
  }

  .coming-soon {
    animation: none;
  }

  .illustration-item {
    animation: none;
  }
}

/* Print styles */
@media print {

  .hero-bg video,
  #custom-cursor,
  .footer-ballpit {
    display: none;
  }

  .section {
    padding: 2em 1em;
  }

  .btn {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--text-main);
  }
}.footer-video-bg {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
  z-index: -1 !important;
}

.footer-video-bg video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.footer-video-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.5) !important;
  /* Dark overlay for contrast */
}

.reduced-footer {
  display: flex !important;
  justify-content: space-between !important;
  gap: 2rem !important;
  flex-wrap: wrap !important;
}

.footer-col h4 {
  margin-bottom: 0.5rem !important;
}

.footer-col a {
  color: #fff !important;
  text-decoration: none !important;
}

.footer-socials-list {
  list-style: none !important;
  padding: 0 !important;
  display: flex !important;
  gap: 1rem !important;
}.site-footer {
  background: transparent !important;
}

.site-footer::before,
.site-footer::after {
  background: transparent !important;
  content: none !important;
}.site-footer video {
  z-index: 0 !important;
  position: absolute;
}

.site-footer>*:not(video) {
  position: relative;
  z-index: 1;
}