/* ============================================
   PKSahu.com — Design tokens
   Bg: #05070C base / #0B0F17 panel
   Accents: mint #2DD8B8, violet #6C5CE7, blue #4F8CFF
   Display type: Outfit (rounded geometric)
   Body type: Inter
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg: #05070c;
  --bg-soft: #0a0e16;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-border: rgba(255, 255, 255, 0.09);
  --text: #f2f4fa;
  --text-muted: #8a90a8;
  --text-faint: #565d72;
  --mint: #2dd8b8;
  --violet: #7c6cf0;
  --blue: #4f8cff;
  --grad-brand: linear-gradient(90deg, var(--mint), var(--violet) 55%, var(--blue));
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 9px;
  --shadow-glow: 0 0 60px rgba(124, 108, 240, 0.18);
  --maxw: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(680px 420px at 82% 8%, rgba(124, 108, 240, 0.16), transparent 60%),
    radial-gradient(600px 400px at 10% 30%, rgba(45, 216, 184, 0.08), transparent 60%),
    var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 7, 12, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.brand .dot { color: var(--mint); }
.brand .com { color: var(--violet); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.94rem;
  color: var(--text-muted);
}
.nav-links a { transition: color .15s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }

.nav-toggle { display: none; }

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    background: rgba(5, 7, 12, 0.98);
    flex-direction: column;
    padding: 24px 32px;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
  }
  .nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text);
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, opacity .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--grad-brand);
  color: #06131a;
}
.btn-ghost {
  background: var(--panel);
  border-color: var(--panel-border);
  color: var(--text);
  backdrop-filter: blur(8px);
}

/* ---------- Hero ---------- */
.hero {
  padding: 76px 0 60px;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--mint);
  background: rgba(45, 216, 184, 0.08);
  border: 1px solid rgba(45, 216, 184, 0.25);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.badge .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(45, 216, 184, 0.6);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(45, 216, 184, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(45, 216, 184, 0); }
  100% { box-shadow: 0 0 0 0 rgba(45, 216, 184, 0); }
}

.hero h1 {
  font-size: clamp(2.3rem, 4.4vw, 3.6rem);
}
.hero h1 .accent {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lede {
  margin: 24px 0 32px;
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 46px;
  flex-wrap: wrap;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 34px;
}
.stat b {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat span {
  color: var(--text-faint);
  font-size: 0.85rem;
}

.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 10px;
  background: linear-gradient(160deg, rgba(124, 108, 240, 0.35), rgba(45, 216, 184, 0.12));
  box-shadow: var(--shadow-glow);
}
.hero-photo .frame {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: rgba(10, 13, 20, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-card strong { font-size: 0.95rem; }
.hero-card small {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 3px;
}
.hero-card .spark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  display: grid;
  place-items: center;
  color: var(--mint);
}

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-photo { max-width: 380px; margin: 0 auto; }
  .stats { grid-template-columns: repeat(2, auto); row-gap: 22px; }
}

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 48px;
  animation: scroll 26s linear infinite;
}
.marquee span {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-faint);
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.marquee span::after {
  content: '\2022';
  color: var(--violet);
  margin-left: 48px;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Section shell ---------- */
.section {
  padding: 90px 0;
}
.section-head {
  max-width: 560px;
  margin-bottom: 48px;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 14px;
}
.section-head p {
  color: var(--text-muted);
  font-size: 1.02rem;
}

/* ---------- Cards (services, vlogs) ---------- */
.grid {
  display: grid;
  gap: 22px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 900px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: border-color .2s ease, transform .2s ease;
}
.card:hover {
  border-color: rgba(124, 108, 240, 0.4);
}
.card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(45, 216, 184, 0.18), rgba(124, 108, 240, 0.18));
  color: var(--mint);
  margin-bottom: 18px;
}
.card h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}
.card p {
  color: var(--text-muted);
  font-size: 0.94rem;
  margin: 0;
}

/* ---------- Pricing ---------- */
.pricing-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  border-color: var(--violet);
  background: linear-gradient(180deg, rgba(124, 108, 240, 0.1), rgba(255, 255, 255, 0.03));
  position: relative;
}
.pricing-card.featured::before {
  content: 'Most booked';
  position: absolute;
  top: -13px;
  left: 30px;
  background: var(--grad-brand);
  color: #06131a;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
}
.pricing-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.pricing-card .price {
  font-family: 'Outfit', sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  margin: 14px 0 4px;
}
.pricing-card .price span {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 28px;
  color: var(--text-muted);
  font-size: 0.92rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-card li { display: flex; gap: 10px; align-items: flex-start; }
.pricing-card li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  margin-top: 7px;
  flex-shrink: 0;
}
.pricing-card .btn { margin-top: auto; justify-content: center; width: 100%; }

/* ---------- Vlogs ---------- */
.vlog-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.vlog-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(45,216,184,.15), rgba(124,108,240,.2));
  position: relative;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.vlog-thumb .play {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(5,7,12,0.55);
  border: 1px solid rgba(255,255,255,0.25);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.1rem;
  transition: transform .15s ease;
}
.vlog-thumb:hover .play { transform: scale(1.08); }
.vlog-body { padding: 20px 22px 24px; }
.vlog-body .tag {
  font-size: 0.75rem;
  color: var(--mint);
  margin-bottom: 8px;
  display: block;
}
.vlog-body h3 { font-size: 1.02rem; margin-bottom: 6px; }
.vlog-body p { color: var(--text-muted); font-size: 0.88rem; margin: 0 0 14px; }
.vlog-meta {
  display: flex;
  justify-content: space-between;
  color: var(--text-faint);
  font-size: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 12px;
}

.vlog-player {
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--panel-border);
  background: #000;
}
.vlog-player iframe { width: 100%; height: 100%; border: 0; }

/* Comments (local only, no backend) */
.comments { margin-top: 40px; }
.comments h3 { font-size: 1.05rem; margin-bottom: 18px; }
.comment-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 26px;
}
.comment-form textarea, .comment-form input {
  grid-column: 1 / -1;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
}
.comment-form input { grid-column: span 1; }
.comment-form textarea { min-height: 80px; resize: vertical; }
.comment-form button { grid-column: 1 / -1; justify-self: start; }
@media (max-width: 560px) {
  .comment-form { grid-template-columns: 1fr; }
  .comment-form input { grid-column: 1 / -1; }
}
.comment-list { display: flex; flex-direction: column; gap: 16px; }
.comment-item {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.comment-item .row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}
.comment-item .row b { font-size: 0.9rem; }
.comment-item .row time { color: var(--text-faint); font-size: 0.78rem; }
.comment-item p { margin: 0; color: var(--text-muted); font-size: 0.9rem; }
.comment-empty { color: var(--text-faint); font-size: 0.9rem; }

/* ---------- Contact strip ---------- */
.cta-strip {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-strip h2 { font-size: 1.6rem; }
.cta-strip p { color: var(--text-muted); margin: 8px 0 0; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 0;
  margin-top: 40px;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--text-faint);
  font-size: 0.85rem;
}
footer .foot-loc {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Page header (Freelance / Vlogs) ---------- */
.page-head {
  padding: 60px 0 20px;
}
.page-head .kicker {
  color: var(--mint);
  font-size: 0.85rem;
  margin-bottom: 12px;
  display: block;
}
.page-head h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  max-width: 16ch;
}
.page-head p {
  color: var(--text-muted);
  max-width: 52ch;
  margin-top: 18px;
  font-size: 1.05rem;
}
