/* =====================================================
   ANTIOXIDANT LADY — Main Stylesheet
   Purple + Lime Green | Glow Effects | Responsive
   ===================================================== */

/* ---- CUSTOM PROPERTIES ---- */
:root {
  --bg:          #08010f;
  --surface:     #100520;
  --card:        rgba(48, 12, 80, 0.45);

  --purple-900:  #1e0538;
  --purple-700:  #3d1380;
  --purple-600:  #5b21b6;
  --purple-500:  #7c3aed;
  --purple-400:  #9b59f0;
  --purple-300:  #b983ff;
  --purple-200:  #d4b3ff;
  --purple-100:  #ede8ff;

  --lime:        #c6ff00;
  --lime-soft:   #a8e000;
  --lime-muted:  #7ab800;

  --text:        #f2eeff;
  --text-muted:  #b08cd0;
  --text-faint:  #7a5a95;

  --glow-sm:     0 0 14px rgba(155, 89, 240, 0.45);
  --glow-md:     0 0 30px rgba(155, 89, 240, 0.55), 0 0 60px rgba(124, 58, 237, 0.25);
  --glow-lg:     0 0 50px rgba(155, 89, 240, 0.7),  0 0 100px rgba(124, 58, 237, 0.35);
  --glow-lime:   0 0 18px rgba(198, 255, 0, 0.5),   0 0 40px rgba(168, 224, 0, 0.25);
  --glow-lime-sm:0 0 10px rgba(198, 255, 0, 0.35);

  --border:      rgba(124, 58, 237, 0.28);
  --border-glow: rgba(155, 89, 240, 0.55);
  --border-lime: rgba(198, 255, 0, 0.3);

  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  --font-body:    -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-display: Georgia, 'Palatino Linotype', serif;

  --nav-h:   68px;
  --max-w:   1160px;
  --sec-pad: clamp(3rem, 7vw, 5.5rem);

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
ul  { list-style: none; }
a   { color: var(--purple-300); text-decoration: none; transition: color .2s; }
a:hover { color: var(--lime); }
h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.2; font-weight: normal; }
button, input, textarea { font: inherit; }

/* ---- LAYOUT ---- */
.container {
  width: min(var(--max-w), 100% - 2rem);
  margin-inline: auto;
}
.section { padding-block: var(--sec-pad); }

.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section-label {
  display: inline-block;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--lime);
  text-shadow: var(--glow-lime-sm);
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  background: linear-gradient(135deg, #fff 30%, var(--purple-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin-inline: auto;
}

/* Section divider */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,.3), transparent);
}

/* Accessibility */
.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;
}

/* ---- NAVIGATION ---- */
.nav {
  position: fixed;
  inset-block-start: 0; inset-inline: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background .35s, box-shadow .35s;
}
.nav.scrolled {
  background: rgba(8, 1, 15, .88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(124,58,237,.2), 0 8px 24px rgba(0,0,0,.5);
}
.nav-inner {
  width: min(var(--max-w), 100% - 2rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Brand */
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-shrink: 0;
}
.nav-brand:hover { color: var(--text); text-shadow: var(--glow-sm); }
.nav-brand-icon { font-size: 1.3rem; }

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: .15rem;
}
.nav-links a {
  padding: .4rem .85rem;
  border-radius: var(--radius-full);
  font-size: .9rem;
  color: var(--text-muted);
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text);
  background: rgba(124,58,237,.15);
}

/* TikTok CTA button */
.nav-tiktok {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem 1.1rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--lime) 0%, var(--lime-soft) 100%);
  color: #1a0533 !important;
  font-size: .85rem;
  font-weight: 700;
  transition: transform .2s var(--ease-spring), box-shadow .2s;
  white-space: nowrap;
}
.nav-tiktok:hover {
  transform: translateY(-1px);
  box-shadow: var(--glow-lime);
  color: #1a0533 !important;
}
.nav-tiktok svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  border-radius: var(--radius-sm);
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  overflow: hidden;
  padding-top: var(--nav-h);
  padding-left: max(2rem, 8vw);
  padding-right: max(2rem, 50vw);
}
@media (max-width: 768px) {
  .hero {
    justify-content: center;
    text-align: center;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* Layered gradient background */
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 25%, rgba(91,33,182,.5) 0%, transparent 52%),
    radial-gradient(ellipse at 85% 70%, rgba(124,58,237,.4) 0%, transparent 52%),
    radial-gradient(ellipse at 50% 50%, rgba(30,5,56,.85) 0%, transparent 70%),
    var(--bg);
  z-index: 0;
}

/* Animated glowing orbs */
/* Hero image — right side on desktop, fades into bg */
.hero-img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 55%;
  object-fit: cover;
  object-position: center top;
  mask-image: linear-gradient(to left, rgba(0,0,0,.85) 0%, rgba(0,0,0,.5) 40%, transparent 75%),
              linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,.85) 0%, rgba(0,0,0,.5) 40%, transparent 75%),
              linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero-img {
    width: 100%;
    height: 60%;
    top: auto;
    bottom: 0;
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.6) 40%, rgba(0,0,0,.7) 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.6) 40%, rgba(0,0,0,.7) 70%, transparent 100%);
    -webkit-mask-composite: destination-in;
    mask-composite: intersect;
    opacity: .5;
  }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 9s ease-in-out infinite;
}
.hero-orb-1 {
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(124,58,237,.55) 0%, transparent 70%);
  top: -120px; left: -120px;
  opacity: .7;
}
.hero-orb-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(198,255,0,.22) 0%, transparent 70%);
  bottom: -60px; right: -60px;
  opacity: .6;
  animation-delay: -3.5s;
  animation-direction: alternate-reverse;
}
.hero-orb-3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(155,89,240,.45) 0%, transparent 70%);
  top: 55%; right: 12%;
  opacity: .5;
  animation-delay: -6s;
}
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(28px,-20px) scale(1.06); }
  66%      { transform: translate(-16px,24px) scale(.96); }
}

/* Floating botanical deco */
.hero-deco {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  user-select: none;
}
.hero-deco span {
  position: absolute;
  font-size: 3.5rem;
  opacity: .1;
  animation: floatDeco 7s ease-in-out infinite;
}
.deco-1 { top: 12%; left:  7%; font-size: 4.5rem; animation-delay: 0s; }
.deco-2 { top: 72%; left:  4%; font-size: 3.5rem; animation-delay: -2s; }
.deco-3 { top: 20%; right: 6%; font-size: 3rem;   animation-delay: -1s; }
.deco-4 { bottom: 18%; right: 9%; font-size: 3.5rem; animation-delay: -3.5s; }
.deco-5 { top: 55%; right: 22%; font-size: 2rem; opacity: .07; animation-delay: -5s; }
@keyframes floatDeco {
  0%,100% { transform: translateY(0)     rotate(0deg); }
  40%      { transform: translateY(-18px) rotate(6deg); }
  70%      { transform: translateY(10px)  rotate(-4deg); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  padding-inline: 1.5rem;
  max-width: 820px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 1.1rem;
  border-radius: var(--radius-full);
  background: rgba(124,58,237,.18);
  border: 1px solid rgba(155,89,240,.55);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--purple-200);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  animation: fadeDown .8s var(--ease-out) both;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: var(--glow-lime-sm);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .55; transform: scale(.75); }
}

.hero-title {
  font-size: clamp(3rem, 9vw, 6rem);
  line-height: 1.05;
  margin-bottom: 1.3rem;
  animation: fadeUp .9s var(--ease-out) .1s both;
}
.hero-title .line1 {
  display: block;
  color: var(--text);
  font-style: italic;
  text-shadow: var(--glow-sm);
}
.hero-title .line2 {
  display: block;
  background: linear-gradient(120deg, var(--lime) 0%, var(--purple-300) 55%, var(--lime) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeUp .9s var(--ease-out) .1s both, shimmer 5s linear infinite;
}
@keyframes shimmer {
  from { background-position: 0 center; }
  to   { background-position: 200% center; }
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  animation: fadeUp .9s var(--ease-out) .2s both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .9s var(--ease-out) .3s both;
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--text-faint);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 2;
  animation: fadeIn 1s 1.2s both;
}
.scroll-arrow {
  width: 18px; height: 18px;
  border-right: 2px solid rgba(155,89,240,.7);
  border-bottom: 2px solid rgba(155,89,240,.7);
  transform: rotate(45deg);
  animation: bounce 1.6s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: rotate(45deg) translateY(0); }
  55%      { transform: rotate(45deg) translateY(6px); }
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform .2s var(--ease-spring), box-shadow .2s;
  text-decoration: none;
  font-family: var(--font-body);
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  color: #fff;
  box-shadow: 0 4px 18px rgba(124,58,237,.4), inset 0 1px 0 rgba(255,255,255,.1);
}
.btn-primary:hover {
  box-shadow: var(--glow-lg), inset 0 1px 0 rgba(255,255,255,.15);
  color: #fff;
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--border-glow);
  color: var(--purple-300);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(124,58,237,.12);
  box-shadow: var(--glow-sm);
  color: var(--text);
}
.btn-lime {
  background: linear-gradient(135deg, var(--lime), var(--lime-soft));
  color: #1a0533;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(198,255,0,.3);
}
.btn-lime:hover {
  box-shadow: var(--glow-lime);
  color: #1a0533;
}

/* ---- CARDS ---- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease-out), border-color .3s, box-shadow .3s;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple-400), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(155,89,240,.5);
  box-shadow: var(--glow-md), 0 22px 44px rgba(0,0,0,.45);
}
.card:hover::before { opacity: 1; }

/* ---- GRIDS ---- */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 1.5rem; }

/* ---- FEATURE CARDS ---- */
.feature-icon-wrap {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  display: block;
  filter: drop-shadow(0 0 10px rgba(198,255,0,.35));
  line-height: 1;
}
.feature-title {
  font-size: 1.18rem;
  color: var(--text);
  margin-bottom: .55rem;
  font-family: var(--font-display);
}
.feature-desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---- TAG PILL ---- */
.tag {
  display: inline-block;
  padding: .2rem .7rem;
  border-radius: var(--radius-full);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  border: 1px solid var(--border-lime);
  color: var(--lime-soft);
  background: rgba(198,255,0,.06);
}

/* ---- BLOG CARDS ---- */
.blog-card { display: flex; flex-direction: column; }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: .75rem;
  flex-wrap: wrap;
}
.blog-date { font-size: .78rem; color: var(--text-faint); }
.blog-card-title {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: .6rem;
  line-height: 1.35;
  transition: color .2s;
}
.blog-card:hover .blog-card-title { color: var(--purple-200); }
.blog-excerpt {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}
.blog-card-tags { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: .85rem; }
.read-more {
  font-size: .85rem;
  font-weight: 600;
  color: var(--purple-300);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: gap .2s, color .2s;
  margin-top: auto;
}
.blog-card:hover .read-more { gap: .65rem; color: var(--lime); }

/* Blog index header */
.blog-list-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.tag-filters { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag-btn {
  padding: .35rem .95rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: .82rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all .2s;
}
.tag-btn:hover, .tag-btn.active {
  border-color: var(--lime);
  color: var(--lime);
  background: rgba(198,255,0,.07);
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(91,33,182,.3) 0%, transparent 60%),
    var(--bg);
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-500), transparent);
}
.page-hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  margin-bottom: .8rem;
  background: linear-gradient(135deg, var(--text) 30%, var(--purple-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-inline: auto;
}

/* ---- SINGLE BLOG POST ---- */
.post-wrap { max-width: 740px; margin-inline: auto; }

.post-header-block { margin-bottom: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(124,58,237,.2); }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  color: var(--text-faint);
  margin-bottom: 1.5rem;
  transition: color .2s;
}
.back-link:hover { color: var(--purple-300); }
.post-h1 { font-size: clamp(1.9rem, 4.5vw, 2.8rem); color: var(--text); margin-bottom: 1rem; }
.post-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .88rem;
  color: var(--text-faint);
  flex-wrap: wrap;
}
.post-author::before { content: '·'; margin-right: .75rem; }
.post-meta-tags { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .85rem; }

.prose { color: var(--text-muted); line-height: 1.85; }
.prose h1,.prose h2 {
  background: linear-gradient(135deg, var(--text) 0%, var(--purple-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 2rem 0 .75rem;
}
.prose h1 { font-size: clamp(1.6rem,3.5vw,2.2rem); }
.prose h2 { font-size: clamp(1.3rem,3vw,1.75rem); }
.prose h3 {
  font-size: 1.2rem;
  color: var(--purple-200);
  margin: 1.75rem 0 .65rem;
  font-family: var(--font-display);
}
.prose h4 { font-size: 1rem; color: var(--purple-200); margin: 1.5rem 0 .5rem; }
.prose p   { margin-bottom: 1.25rem; }
.prose a   { color: var(--lime-soft); text-decoration: underline; text-underline-offset: 3px; }
.prose ul  { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.25rem; }
.prose ol  { list-style: decimal; padding-left: 1.5rem; margin-bottom: 1.25rem; }
.prose li  { margin-bottom: .4rem; }
.prose code {
  background: rgba(124,58,237,.2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: .15em .45em;
  font-size: .88em;
  color: var(--purple-200);
}
.prose pre {
  background: rgba(10,2,20,.85);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  overflow-x: auto;
  margin-bottom: 1.25rem;
}
.prose pre code { background: none; border: none; padding: 0; }
.prose blockquote {
  border-left: 3px solid var(--purple-500);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-faint);
}
.prose img { border-radius: var(--radius-md); margin-block: 1.5rem; border: 1px solid var(--border); }
.prose hr { border: none; height: 1px; background: linear-gradient(90deg,transparent,var(--purple-600),transparent); margin-block: 2rem; }
.prose strong { color: var(--text); }

/* TikTok embed in posts */
.tiktok-container {
  max-width: 405px;
  margin: 2rem auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--glow-md);
}

/* Post navigation */
.post-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(124,58,237,.18);
  gap: 1rem;
}
.post-nav a {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  color: var(--text-muted);
  padding: .75rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all .2s;
  max-width: 48%;
}
.post-nav a:hover {
  border-color: var(--purple-400);
  color: var(--text);
  background: rgba(124,58,237,.1);
}

/* ---- ABOUT PAGE ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3.5rem;
  align-items: start;
}
.avatar-ring {
  width: 100%;
  max-width: 300px;
  margin-inline: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--purple-500), var(--lime));
  box-shadow: var(--glow-lg);
  animation: rotateGlow 5s linear infinite;
}
@keyframes rotateGlow {
  from { filter: hue-rotate(0deg); }
  to   { filter: hue-rotate(360deg); }
}
.avatar-inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.stat-card {
  text-align: center;
  padding: 1rem .5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.stat-number {
  display: block;
  font-size: 1.8rem;
  font-family: var(--font-display);
  color: var(--lime);
  text-shadow: var(--glow-lime-sm);
}
.stat-label {
  font-size: .73rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .07em;
}
.about-text h2 {
  font-size: clamp(1.6rem,3.5vw,2.3rem);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text) 0%, var(--purple-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-text p { color: var(--text-muted); margin-bottom: 1.1rem; }
.check-list { margin-bottom: 1.5rem; }
.check-list li {
  padding: .45rem 0 .45rem 1.75rem;
  position: relative;
  color: var(--text-muted);
  font-size: .95rem;
}
.check-list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--lime);
  text-shadow: var(--glow-lime-sm);
  font-weight: 700;
}

/* ---- SERVICES ---- */
.service-card { display: flex; flex-direction: column; }
.service-icon-wrap {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  line-height: 1;
  filter: drop-shadow(0 0 10px rgba(198,255,0,.3));
}
.service-title { font-size: 1.25rem; color: var(--text); margin-bottom: .5rem; }
.service-desc  { color: var(--text-muted); font-size: .9rem; flex: 1; margin-bottom: 1.25rem; }
.service-price {
  font-size: 1.45rem;
  font-family: var(--font-display);
  color: var(--lime);
  text-shadow: var(--glow-lime-sm);
  margin-bottom: 1rem;
}
.service-price sub { font-size: .82rem; font-family: var(--font-body); color: var(--text-faint); }
.service-features { margin-bottom: 1.25rem; }
.service-features li {
  font-size: .85rem;
  color: var(--text-muted);
  padding: .3rem 0 .3rem 1.35rem;
  position: relative;
}
.service-features li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--purple-400);
}

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(14px);
}
.contact-info-card h3 {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .95rem;
  font-size: .9rem;
  color: var(--text-muted);
}
.contact-icon { font-size: 1.2rem; flex-shrink: 0; }
.social-row { display: flex; gap: .65rem; margin-top: 1.5rem; flex-wrap: wrap; }
.social-btn {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  font-size: .83rem;
  color: var(--text-muted);
  transition: all .2s;
}
.social-btn:hover {
  border-color: var(--lime);
  color: var(--lime);
  background: rgba(198,255,0,.07);
  box-shadow: var(--glow-lime-sm);
}

/* Form */
.form-group  { margin-bottom: 1.25rem; }
.form-label  {
  display: block;
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: .4rem;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: .75rem 1rem;
  background: rgba(30,5,56,.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--purple-400);
  box-shadow: var(--glow-sm);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-faint); }
.form-textarea { min-height: 150px; resize: vertical; }

/* ---- TIKTOK FEATURE SECTION ---- */
.tiktok-section { text-align: center; }
.tiktok-section .section-title {
  background: linear-gradient(135deg, var(--lime) 0%, var(--purple-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tiktok-promo {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(14px);
  margin: 1.5rem auto;
  text-align: left;
}
.tiktok-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-500), var(--lime));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  box-shadow: var(--glow-sm);
}
.tiktok-handle { font-size: 1.1rem; color: var(--text); font-weight: 600; }
.tiktok-desc   { font-size: .85rem; color: var(--text-muted); }

/* ---- FOOTER ---- */
.footer {
  padding: 3.5rem 0 1.5rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(0deg, rgba(8,1,15,.97) 0%, transparent 100%), var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: .6rem;
}
.footer-desc {
  font-size: .87rem;
  color: var(--text-faint);
  line-height: 1.7;
  max-width: 260px;
}
.footer-col-title {
  font-size: .73rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--lime);
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.footer-links li { margin-bottom: .45rem; }
.footer-links a {
  font-size: .87rem;
  color: var(--text-faint);
  transition: color .2s;
}
.footer-links a:hover { color: var(--purple-300); }
.footer-bottom {
  border-top: 1px solid rgba(124,58,237,.12);
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-copy, .footer-made { font-size: .82rem; color: var(--text-faint); }
.footer-made .heart { color: #ff6b8a; }

/* ---- LOADING / EMPTY STATES ---- */
.loading-state, .empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--text-muted);
}
.empty-icon { font-size: 2.8rem; display: block; margin-bottom: .75rem; opacity: .45; }
.spinner {
  display: inline-block;
  width: 24px; height: 24px;
  border: 3px solid rgba(124,58,237,.2);
  border-top-color: var(--purple-400);
  border-radius: 50%;
  animation: spin .8s linear infinite;
  vertical-align: middle;
  margin-left: .75rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp   { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-16px);} to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn   { from { opacity: 0; } to { opacity: 1; } }

.fade-in {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
  transition-delay: calc(var(--delay, 0) * 1ms);
}
.fade-in.visible { opacity: 1; transform: none; }

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid  { grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .about-visual { max-width: 260px; margin-inline: auto; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(8,1,15,.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.25rem;
    gap: .15rem;
    border-bottom: 1px solid var(--border);
    animation: fadeDown .25s var(--ease-out);
  }
  .nav-links.open a {
    padding: .75rem 1rem;
    font-size: 1rem;
    border-radius: var(--radius-md);
  }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .about-stats  { grid-template-columns: 1fr 1fr; }
  .tiktok-promo { flex-direction: column; text-align: center; }
}
