/* ============================================
   iitnepal.com — IT Solutions Landing Page
   Theme: Dark tech / developer aesthetic
   ============================================ */

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

:root {
  --bg:        #0B0E14;
  --bg-soft:   #11151D;
  --surface:   #161B24;
  --border:    rgba(255,255,255,.08);
  --ink:       #E8EAED;
  --slate:     #8B93A1;
  --accent:    #00D9A3;
  --accent-lt: #6FFFD6;
  --accent-dk: #00A37A;
  --blue:      #4F8EF7;
  --white:     #FFFFFF;
  --radius:    12px;
  --mono:      'JetBrains Mono', 'Courier New', monospace;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
}

/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5%;
  border-bottom: 1px solid var(--border);
  background: rgba(11,14,20,.85);
  backdrop-filter: blur(8px);
  position: sticky; top: 0; z-index: 100;
}
.nav-logo {
  font-family: var(--mono);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--ink);
  text-decoration: none;
}
.nav-logo span { color: var(--accent); }
.nav-logo::before {
  content: '</> ';
  color: var(--accent);
}
.nav-badge {
  background: var(--accent);
  color: var(--bg);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 6px;
  font-family: var(--mono);
}

/* ── HERO ── */
.hero {
  background:
    radial-gradient(circle at 15% 20%, rgba(0,217,163,.08) 0%, transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(79,142,247,.08) 0%, transparent 45%),
    var(--bg);
  color: var(--white);
  text-align: center;
  padding: 90px 5% 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--accent);
  margin-bottom: 18px;
  position: relative;
}
.hero-eyebrow::before { content: '// '; color: var(--slate); }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.01em;
  margin-bottom: 20px;
  position: relative;
}
.hero h1 .domain {
  color: var(--accent);
  font-family: var(--mono);
  font-weight: 700;
  display: block;
  font-size: .65em;
  margin-top: 8px;
}
.hero-sub {
  font-size: 1.02rem;
  color: var(--slate);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.7;
  position: relative;
}
.hero-sub strong { color: var(--accent-lt); }

/* ── IT INTRO PARAGRAPH ── */
.it-intro {
  max-width: 680px;
  margin: 0 auto 40px;
  padding: 22px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  text-align: left;
  position: relative;
}
.it-intro p {
  font-size: .92rem;
  color: var(--slate);
  line-height: 1.75;
}
.it-intro p strong { color: var(--ink); }

.price-tag {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 44px;
  margin-bottom: 36px;
  position: relative;
}
.price-tag .label {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 4px;
}
.price-tag .amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent-lt);
  line-height: 1;
}
.price-tag .currency { font-size: 1.3rem; vertical-align: super; }
.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 36px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: .02em;
  transition: background .2s, transform .15s;
  font-family: var(--mono);
}
.hero-cta:hover { background: var(--accent-lt); transform: translateY(-2px); }

/* ── CONTACT STRIP ── */
.contact-strip {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding: 28px 5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 48px;
  align-items: center;
}
.contact-strip .company {
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  font-family: var(--mono);
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: var(--slate);
  text-decoration: none;
  transition: color .2s;
}
.contact-item:hover { color: var(--accent-lt); }
.contact-item svg { flex-shrink: 0; }

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  padding: 64px 5% 36px;
}
.section-header .eyebrow {
  font-family: var(--mono);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-header .eyebrow::before { content: '// '; color: var(--slate); }
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--ink);
}
.section-header p {
  color: var(--slate);
  margin-top: 10px;
  font-size: .95rem;
  max-width: 540px;
  margin-left: auto; margin-right: auto;
  line-height: 1.6;
}

/* ── LISTINGS ── */
.listings {
  padding: 8px 5% 72px;
  max-width: 1100px;
  margin: 0 auto;
}
.listings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.listing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .25s, transform .2s, border-color .2s;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
}
.listing-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .45s ease, transform .45s ease, box-shadow .25s;
}
.listing-card:hover {
  box-shadow: 0 12px 36px rgba(0,217,163,.08);
  transform: translateY(-3px);
  border-color: rgba(0,217,163,.3);
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: saturate(.9);
}

.card-body {
  padding: 28px 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card-icon {
  width: 48px; height: 48px;
  background: rgba(0,217,163,.1);
  border: 1px solid rgba(0,217,163,.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.card-icon svg { color: var(--accent); }
.card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.card-body p {
  font-size: .88rem;
  color: var(--slate);
  line-height: 1.6;
  flex: 1;
}
.card-footer {
  padding: 0 28px 28px;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
  border: 1.5px solid var(--accent);
  padding: 9px 20px;
  border-radius: 8px;
  transition: background .2s, color .2s;
  font-family: var(--mono);
}
.card-link:hover {
  background: var(--accent);
  color: var(--bg);
}

/* ── FOOTER ── */
footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  color: var(--slate);
  text-align: center;
  padding: 28px 5%;
  font-size: .8rem;
  line-height: 1.7;
}
footer a { color: var(--accent-lt); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .listings-grid { grid-template-columns: 1fr; }
  .price-tag { padding: 18px 32px; }
  .hero { padding: 60px 5% 70px; }
  .it-intro { padding: 18px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}
