:root{
  --bg: #050508;
  --panel: #0b0b12;
  --border: rgba(255,255,255,0.08);

  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.65);

  --neon: #4dfcff;
  --neon-soft: rgba(77,252,255,0.15);

  --radius: 16px;
  --shadow: 0 20px 60px rgba(0,0,0,0.6);
}

*{ box-sizing: border-box; }

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(600px 300px at 20% 10%, rgba(77,252,255,0.08), transparent 60%),
    linear-gradient(180deg, #040406, var(--bg));
  color: var(--text);
}

a{ color: inherit; text-decoration: none; }

.container{
  width: min(1100px, 92vw);
  margin: 0 auto;
}

/* Header */
.header{
  position: sticky;
  top: 0;
  background: rgba(5,5,8,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.header__inner{
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 800;
}

.brand__dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 12px var(--neon);
}

.nav a{
  margin-left: 16px;
  color: var(--muted);
}

.nav__cta{
  color: var(--neon);
}
/* Neon pill buttons in the header */
.nav__pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(77,252,255,0.22);
  background: rgba(255,255,255,0.02);
  color: rgba(255,255,255,0.78);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.nav__pill:hover{
  transform: translateY(-1px);
  border-color: rgba(77,252,255,0.45);
  background: rgba(77,252,255,0.06);
  box-shadow: 0 0 22px rgba(77,252,255,0.12);
  color: rgba(255,255,255,0.92);
}

/* Make the CTA pop more */
.nav__cta{
  color: var(--neon) !important;
  border-color: rgba(77,252,255,0.55) !important;
  background: rgba(77,252,255,0.08) !important;
  box-shadow: 0 0 26px rgba(77,252,255,0.14);
}

/* Hero */
.hero{
  padding: 100px 0 70px;
  text-align: center;
}

.hero h1{
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero__sub{
  color: var(--muted);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 28px;
}

.hero__actions{
  display:flex;
  justify-content:center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn{
  padding: 14px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel);
  font-weight: 600;
}

.btn--primary{
  border-color: var(--neon);
  color: var(--neon);
  box-shadow: 0 0 24px var(--neon-soft);
}

.btn--ghost{
  color: var(--muted);
}

/* Sections */
.section{
  padding: 70px 0;
}

.section--alt{
  background: linear-gradient(180deg, rgba(77,252,255,0.05), transparent);
}

.section__title{
  font-size: 28px;
  margin-bottom: 6px;
}

.section__subtitle{
  color: var(--muted);
  margin-bottom: 28px;
}

/* Grid */
.grid{
  display:grid;
  gap: 18px;
}

.portfolio{
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.process{
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Cards */
.card{
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.project__image{
  height: 160px;
  border-radius: 12px;
  border: 1px dashed var(--border);
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--muted);
  margin-bottom: 14px;
}

.project__body h3{
  margin: 0 0 6px;
}

.tag{
  display:inline-block;
  font-size: 12px;
  margin-top: 8px;
  margin-right: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
}

/* Contact */
.contact{
  text-align:center;
}

.contact__placeholder{
  margin-top: 20px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px dashed var(--border);
  color: var(--muted);
}

/* Footer */
.footer{
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.footer__inner{
  display:flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
}
/* Pricing */
.pricing{
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: stretch;
}

.priceCard{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.priceCard__top h3{
  margin: 0 0 6px;
  font-size: 18px;
}

.priceCard__price{
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}

.priceCard__price .currency{
  color: var(--muted);
  font-weight: 700;
}

.priceCard__price .amount{
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--neon);
  text-shadow: 0 0 18px rgba(77,252,255,0.18);
}

.priceCard__list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.priceCard__list li{
  margin: 6px 0;
}

.priceCard--featured{
  border-color: rgba(77,252,255,0.38);
  box-shadow: 0 0 40px rgba(77,252,255,0.10), var(--shadow);
  transform: translateY(-6px);
}

.priceCard__badge{
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--neon);
  border: 1px solid rgba(77,252,255,0.35);
  background: rgba(77,252,255,0.08);
  padding: 6px 10px;
  border-radius: 999px;
}

.pricingNote{
  margin-top: 16px;
}

.pricingNote__box{
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(77,252,255,0.04);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
/* Project images + hover effects */
.project{
  padding: 0; /* we want the media to go edge-to-edge */
  overflow: hidden;
}

.project__media{
  position: relative;
  height: 180px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
/* Better hero sizing for phone users */
.hero h1{
  font-size: clamp(30px, 5.2vw, 64px);
  letter-spacing: -0.5px;
}

/* Mobile-specific hero layout */
@media (max-width: 520px){
  .hero{
    padding: 76px 0 50px;
  }

  .hero h1{
    font-size: 32px;
    line-height: 1.08;
  }

  .hero__sub{
    font-size: 16px;
    line-height: 1.55;
  }

  .hero__actions{
    gap: 10px;
  }

  .btn{
    width: 100%;
    justify-content: center;
  }
}


.project__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 220ms ease, filter 220ms ease;
  filter: saturate(1.05) contrast(1.02);
}

.project__body{
  padding: 18px;
}

.project__overlay{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 180ms ease;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.0),
    rgba(0,0,0,0.55)
  );
}

.project__btn{
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(77,252,255,0.45);
  color: var(--neon);
  background: rgba(0,0,0,0.55);
  box-shadow: 0 0 26px rgba(77,252,255,0.14);
  font-weight: 700;
}

.project:hover .project__overlay{
  opacity: 1;
}

.project:hover .project__media img{
  transform: scale(1.08);
  filter: saturate(1.15) contrast(1.05);
}

/* Nice focus for keyboard users */
.project__btn:focus{
  outline: 2px solid rgba(77,252,255,0.65);
  outline-offset: 2px;
}
.contact__details{
  margin-top: 20px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  box-shadow: var(--shadow);
  text-align: center;
}

.contact__details p{
  margin: 10px 0;
  font-size: 16px;
}

.contact__details a{
  color: var(--neon);
  font-weight: 700;
  text-decoration: none;
}

.contact__details a:hover{
  text-decoration: underline;
}
/* Header becomes clean + touch-friendly on mobile */
@media (max-width: 760px){
  .nav a{
    margin-left: 10px;
  }

  .nav__pill{
    padding: 9px 11px;
    font-size: 13px;
  }
}

/* On veryrgba(77,252,255,0.12),
    rgba(77,252,255,0.04)
  );
  border-bottom: 1px solid rgba(77,252,255,0.35);
  color: rgba(255,255,255,0.92);
  font-size: 14px;
  text-align: center;
}

.topBanner__cta{
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(77,252,255,0.55);
  color: var(--neon);
  font-weight: 700;
  background: rgba(0,0,0,0.35);
  box-shadow: 0 0 18px rgba(77,252,255,0.12);
  white-space: nowrap;
}

.topBanner__cta:hover{
  background: rgba(77,252,255,0.10);
}

/* Mobile tweaks */
@media (max-width: 520px){
  .topBanner{
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    padding: 10px 12px;
  }
}
 small phones, simplify the header */
@media (max-width: 520px){
  .nav{
    gap: 8px;
  }

  .nav__pill{
    padding: 9px 10px;
    font-size: 12px;
  }
}
/* Top contact banner */
/* Top contact banner (dismissable + animated) */
.topBanner{
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 16px;
  background: linear-gradient(
    90deg,
    rgba(77,252,255,0.12),
    rgba(77,252,255,0.04)
  );
  border-bottom: 1px solid rgba(77,252,255,0.35);
  color: rgba(255,255,255,0.92);
  font-size: 14px;
  text-align: center;

  /* animation */
  transform: translateY(-12px);
  opacity: 0;
  transition: transform 280ms ease, opacity 280ms ease;
}

.topBanner.is-visible{
  transform: translateY(0);
  opacity: 1;
}

.topBanner.is-hidden{
  display: none;
}

.topBanner__actions{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topBanner__cta{
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(77,252,255,0.55);
  color: var(--neon);
  font-weight: 700;
  background: rgba(0,0,0,0.35);
  box-shadow: 0 0 18px rgba(77,252,255,0.12);
  white-space: nowrap;
}

.topBanner__cta:hover{
  background: rgba(77,252,255,0.10);
}

.topBanner__close{
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.30);
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  display: grid;
  place-items: center;
  line-height: 1;
  font-size: 18px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.topBanner__close:hover{
  transform: translateY(-1px);
  border-color: rgba(77,252,255,0.28);
  background: rgba(77,252,255,0.06);
}

@media (max-width: 520px){
  .topBanner{
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    padding: 10px 12px;
  }
}
