* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background: linear-gradient(135deg, #00070c, #010e30);
  color: #e8f2fb;
}
body {
  overflow-x: hidden;
}

/* NAVBAR (GLASS) */
.nav {
  position: fixed;
  width: 100%;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(10, 15, 30, 0.6);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  z-index: 1000;
}

.nav-inner {
  max-width: 1100px;
  margin: auto;
  padding: 10px;
  display: flex;
  justify-content: space-between;
}

.nav h1 {
  font-family: 'Jockey One';
  color: #9cc4e8;
}

.nav-btn {
  text-decoration: none;
  color: #9cc4e8;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 65px 20px;
}
.container {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding-top:100px;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}
.hero-visual canvas {
  width: 100%;
  height: 320px;
  max-width: 100%;
}

.hero-text {
  flex: 1;
  max-width: 520px;
  min-width: 0;
}

/* MOBILE ORDER FIX */

@media(max-width: 900px) {

  .container {
    padding: 50px 16px; /* reduced side padding */
  }

  .hero {
    flex-direction: column;
    gap: 30px; /* reduce gap */
    padding-top:120px;
  }

  .hero-text {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-visual {
    width: 100%;
  }

  .hero-visual canvas {
    width: 100%;
    height: 250px;
  }
}
/* HERO TEXT */
.subtle {
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: #7aa6d6;
  margin-bottom: 20px;
}

/* ONLY HERE SILKSCREEN */
.hero-title {
  font-family: 'Silkscreen', monospace;
  font-size: 3.2rem;
  margin-bottom: 25px;
  line-height: 1.3;
}

.description {
  font-size: 1.15rem;
  color: #a8c7e6;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* BUTTON (CLEAN) */
.btn {
  padding: 12px 28px;
  border-radius: 30px;
  background: #9cc4e8;
  color: #0b0f1a;
  text-decoration: none;
  font-weight: 500;
}

/* SECTIONS */
.section-title {
  font-family: 'Jockey One';
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.section-desc {
  color: #9cc4e8;
  max-width: 700px;
  font-size: 1.1rem;
}

/* CARDS */
.cards {
  display: flex;
  gap: 25px;
  margin-top: 40px;
}

/* MAIN CARD */
.card {
  flex: 1;
  padding: 30px;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  position: relative;
  overflow: hidden;

  transition: all 0.35s ease;
}

/* GLOW LAYER */
.card::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at top left,
    rgba(156,196,232,0.25),
    transparent 60%
  );

  opacity: 0;
  transition: 0.4s;
}

/* HOVER */
.card:hover {
  transform: translateY(-10px) scale(1.02);

  border-color: rgba(156,196,232,0.35);

  box-shadow:
    0 10px 40px rgba(0,0,0,0.4),
    0 0 25px rgba(156,196,232,0.15);
}

.card:hover::before {
  opacity: 1;
}

/* TEXT */
.card h4 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 500;
}

.card p {
  color: #9cc4e8;
  font-size: 0.95rem;
  line-height: 1.6;
}
.card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  width: 60%;
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(156,196,232,0.6),
    transparent
  );

  opacity: 0.6;
}
/* initial state (hidden) */
.card {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
}

/* when visible */
.card.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
/* keep your hover also */
.card:hover {
  transform: translateY(-10px) scale(1.02);
}
.card:nth-child(1) { transition-delay: 0.1s; }
.card:nth-child(2) { transition-delay: 0.2s; }
.card:nth-child(3) { transition-delay: 0.3s; }
/* CONTACT */
.contact {
  text-align: center;
}

.contact-text {
  color: #9cc4e8;
  margin-bottom: 30px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px;
  color: #9cc4e8;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .cards {
    flex-direction: column;
  }
}

/* LOGO */
.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.logo img {
  filter: drop-shadow(0 0 8px rgba(156,196,232,0.4));
  transition: 0.3s;
}

.logo:hover img {
  filter: drop-shadow(0 0 18px rgba(156,196,232,0.8));
}