.bleed { width: 80vw; margin-left: 10vw ; margin-right: 10vw; padding-left: min(6vw, 48px); padding-right: min(6vw, 48px); }
.bleed > .container { width: 100%; max-width: none; margin: 0; }
/* Base */
:root {
  --bg: #0b0a14;
  --bg-alt: #0d0f1e;
  --text: #f3f5f7;
  --muted: #aab3c5;
  --primary: #7c4dff; /* purple */
  --primary-600: #6b3aff;
  --outline: #282b3b;
  --card: #121427;
  --accent: #ffd166; /* yellow */
  --accent-blue: #60a5fa; /* blue */
  --danger: #ef4444;
  --shadow: 0 16px 40px rgba(0,0,0,.35);
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(124,77,255,.18), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(96,165,250,.14), transparent 60%),
    radial-gradient(800px 500px at 50% 120%, rgba(255,209,102,.08), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  line-height: 1.6;
}
/* Apply same gradient to html to avoid seams when new stacking contexts appear */
html {
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(124,77,255,.18), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(96,165,250,.14), transparent 60%),
    radial-gradient(800px 500px at 50% 120%, rgba(255,209,102,.08), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1100px, 92%); margin: 0 auto; }
/* Section rhythm and anchor offset for sticky header */
.section { padding: 88px 0; scroll-margin-top: 84px; }
.hero { padding: 96px 0 32px; }
#video.section { padding: 104px 0; }
.section-title { font-size: 34px; }
.section-subtitle { margin: 0 0 28px; }

/* Normalize section backgrounds (no mid-section color flip) */
.section.alt { background: inherit; backdrop-filter: blur(5px); }
.section-title { font-size: 36px; line-height: 1.2; margin: 0 0 16px; letter-spacing: -0.02em; }
.section-subtitle { color: var(--muted); margin: 0 0 36px; }
.muted { color: var(--muted); }
.eyebrow { color: #c7d2fe; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin: 0 0 8px; font-size: 12px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 9, 22, .72);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: transform 0.3s ease-in-out;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}
.site-header.has-shadow {
  background: rgba(10, 9, 22, .85);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.brand-logo { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; }
.brand-name { letter-spacing: .2px; }

.nav { display: flex; align-items: center; gap: 16px; }
.nav-links { list-style: none; display: flex; gap: 18px; padding: 0; margin: 0; }
.nav-links a { color: var(--muted); padding: 6px 8px; border-radius: 8px; transition: .2s ease; }
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,.06); }
.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; border-radius: 8px; }
.nav-toggle-bar { display: block; width: 22px; height: 2px; background: var(--text); margin: 4px 0; }
.btn-join { margin-left: 8px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .05s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  position: relative;
  overflow: hidden;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}
.btn-primary:hover {
  background: var(--primary-600);
  border-color: var(--primary-600);
  box-shadow: 0 0 30px 0 rgba(124, 77, 255, 0.5);
}
.btn-primary::before {
  content: '';
  display: block;
  width: 30px;
  height: 120%;
  position: absolute;
  top: -10%;
  left: -150%;
  background: white;
  opacity: 0;
  transform: skewX(-20deg);
}
.btn-primary:hover::before {
  animation: shine 0.75s;
}

@keyframes shine {
  from {
    opacity: 0.5;
    left: -50%;
  }
  50% {
    opacity: 0.8;
  }
  to {
    opacity: 0;
    left: 150%;
  }
}

.btn-outline { background: transparent; border-color: rgba(255,255,255,.16); color: var(--text); }
.btn-outline:hover { background: rgba(124,77,255,.12); border-color: rgba(124,77,255,.25); }
.btn-icon {
  background: rgba(255,255,255,.08);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
  transition: background-color .2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-icon:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

/* Hero */
.hero { padding: 120px 0 40px; border-bottom: 1px solid rgba(255,255,255,.06); }
.hero-inner { display: grid; grid-template-columns: .95fr 1.05fr; gap: 40px; align-items: center; }
.hero h1 { font-size: 44px; line-height: 1.1; margin: 0 0 12px; letter-spacing: -0.02em; }
.subtitle { color: var(--muted); margin: 0 0 18px; font-size: 18px; }
.hero-cta { display: flex; gap: 12px; margin: 16px 0 8px; }
.hero-highlights { margin: 14px 0 0; padding: 0; list-style: none; color: var(--muted); }
.hero-highlights li { padding-left: 26px; position: relative; margin: 8px 0; }
.hero-highlights li::before { content:"✔"; color: var(--accent); position: absolute; left: 4px; }
.hero-media { display: grid; place-items: center; }
.hero-image { width: 100%; max-width: 640px; border-radius: 16px; border: 1px solid rgba(255,255,255,.12); box-shadow: var(--shadow); }
/* Restore mock-card for main page hero */
.mock-card { position: relative; background: radial-gradient(120% 120% at 100% 0%, rgba(124,77,255,.35) 0%, rgba(96,165,250,.22) 45%, rgba(255,209,102,.16) 80%), var(--card); border: 1px solid rgba(255,255,255,.12); box-shadow: var(--shadow); border-radius: 16px; padding: 24px; width: 100%; max-width: 420px; }
.mock-card::after { content: ""; position: absolute; inset: -20%; background: radial-gradient(60% 60% at 30% 20%, rgba(124,77,255,.25), transparent 60%), radial-gradient(50% 50% at 80% 70%, rgba(96,165,250,.18), transparent 60%); filter: blur(30px); z-index: -1; animation: floatGlow 10s ease-in-out infinite; }
.mock-card { animation: floatCard 10s ease-in-out infinite; }
@keyframes floatCard { 0%, 100% { transform: translateY(0) } 50% { transform: translateY(-6px) } }
@keyframes floatGlow { 0%, 100% { transform: translateY(0) scale(1) } 50% { transform: translateY(-8px) scale(1.02) } }
.mock-badge { display: inline-block; background: rgba(96,165,250,.18); color: #dbeafe; border: 1px solid rgba(96,165,250,.4); padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .4px; }
.mock-title { margin: 10px 0 8px; font-weight: 700; }
.mock-body { color: var(--muted); }

/* Grid + Cards */
.grid { display: grid; gap: 16px; }

/* Video */
.video-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: center; }
.video-embed .ratio { position: relative; width: 100%; padding-top: 56.25%; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(124,77,255,.35); background: #000; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.video-embed video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.blog-grid { grid-template-columns: repeat(4, 1fr); }
.resource-grid { grid-template-columns: repeat(4, 1fr); }
.opp-grid { grid-template-columns: repeat(3, 1fr); }
.card, .testimonial-card {
  background: var(--card);
  border: 1px solid rgba(124,77,255,.22);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow);
  transition: 
    transform 0.45s cubic-bezier(.22,.61,.36,1),
    box-shadow 0.45s cubic-bezier(.22,.61,.36,1),
    background 0.45s cubic-bezier(.22,.61,.36,1),
    border-color 0.45s cubic-bezier(.22,.61,.36,1);
}
.testimonial-card {
  margin: 0;
}
.card:hover, .testimonial-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 25px 50px rgba(0,0,0,.45);
  background: rgba(124, 77, 255, 0.1);
  border-color: var(--primary);
}
.card h3 { margin: 0 0 8px; font-size: 18px; }
.card p { margin: 0 0 12px; color: var(--muted); }
.link { color: #c7d2fe; }
.link:hover { color: #e9d5ff; }

/* Features */
.features { display: grid; grid-template-columns: 1fr; gap: 14px; }
.feature { background: transparent; border: 0; border-radius: 0; padding: 0; }
.feature + .feature { border-top: 1px dashed rgba(255,255,255,.15); padding-top: 14px; }
.feature-num { color: #b3b8ff; font-size: 14px; font-weight: 800; }
.features h3 { margin: 4px 0 6px; }
.features p { color: var(--muted); margin: 0; }

.cta-center { margin-top: 16px; text-align: center; }

/* Carousel */
.carousel { position: relative; overflow: hidden; background: transparent; border: 0; padding: 0; }
.testimonial { display: none; margin: 0; }
.testimonial.is-active { display: block; }
.testimonial blockquote { margin: 0 0 10px; color: var(--text); font-size: 16px; }
.testimonial figcaption { color: var(--muted); font-size: 13px; }
.carousel-controls { position: static; display: flex; justify-content: center; gap: 10px; margin-top: 12px; }

/* Testimonials - 3D carousel style */
.testimonials-viewport { position: relative; perspective: 1000px; height: 260px; display: grid; align-items: center; }
.testimonials-track { position: relative; display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; align-items: center; gap: 16px; overflow: hidden; }
.t-card { background: var(--card); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 16px; height: 220px; display: grid; grid-template-rows: auto 1fr auto; align-content: start; box-shadow: var(--shadow); transition: transform .4s ease, filter .4s ease, opacity .4s ease; filter: blur(2px) saturate(.9) brightness(.9); opacity: .6; transform: translateZ(-140px) scale(.92); overflow: hidden; }
.t-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; min-width: 0; }
.t-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(124,77,255,.5); }
.t-name { font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.t-card blockquote { margin: 0 0 10px; font-size: 16px; color: var(--text); overflow: hidden; display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; }
.t-card figcaption { color: var(--muted); font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.side-control { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; }
.side-control.left { left: -6px; }
.side-control.right { right: -6px; }

/* Join */
.join-grid { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: start; }
.join-form { background: var(--card); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 18px; box-shadow: var(--shadow); }
.field { display: grid; gap: 6px; margin-bottom: 12px; }
label { font-size: 14px; color: var(--muted); }
input, select { background: #0f1220; color: var(--text); border: 1px solid rgba(255,255,255,.14); border-radius: 10px; padding: 10px 12px; outline: none; }
input:focus, select:focus { border-color: #60a5fa; box-shadow: 0 0 0 3px rgba(96,165,250,.2); }
.ticks { list-style: none; padding: 0; margin: 0; color: var(--muted); }
.ticks li { padding-left: 26px; position: relative; margin: 8px 0; }
.ticks li::before { content:"✔"; color: var(--accent); position: absolute; left: 4px; }
.badge { display: inline-block; background: rgba(79,70,229,.18); color: #c7d2fe; border: 1px solid rgba(79,70,229,.4); padding: 6px 10px; border-radius: 999px; margin-right: 8px; font-size: 12px; font-weight: 700; }

/* Footer */
.site-footer { border-top: 1px solid rgba(255,255,255,.06); padding: 40px 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.2fr; gap: 16px; align-items: start; }
.footer-title { margin: 0 0 10px; font-size: 14px; color: #b3b8ff; text-transform: uppercase; letter-spacing: .08em; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.06); margin-top: 24px; }
.socials { display: flex; gap: 12px; }
.footer-bottom .link { color: #c7d2fe; }

/* Modal */
.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; display: grid; place-items: center; z-index: 100; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.55); }
.modal-dialog { position: relative; background: var(--card); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; width: min(560px, 92%); padding: 18px; box-shadow: var(--shadow); }
.modal-close { position: absolute; top: 8px; right: 8px; }
.modal-form .field { margin-bottom: 10px; }

/* Simple Testimonials Grid */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testimonial-card { background: var(--card); border: 1px solid rgba(124,77,255,.22); border-radius: 14px; padding: 20px; box-shadow: var(--shadow); }
.testimonial-card blockquote { margin: 10px 0 0; color: var(--text); }
.t-role { color: var(--muted); font-size: 12px; }

/* More CTA */
.section-cta { margin-top: 16px; text-align: center; }
.section-cta .btn { padding-left: 18px; padding-right: 18px; }

/* Testimonials single column with side nav */
.testimonials-single { position: relative; }
.testimonial-card { position: relative; max-width: 760px; margin: 0 auto; }
.t-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; }
.t-nav.left { left: -6px; }
.t-nav.right { right: -6px; }

/* Testimonials single visible card - horizontal slider */
.testimonials-single [data-tsl] { display: grid; gap: 0; }
.testimonials-single .tsl-viewport { overflow: hidden; position: relative; padding-bottom: 22px; }
.testimonials-single .tsl-track { display: flex !important; gap: 0 !important; will-change: transform; transition: transform .6s cubic-bezier(.22,.61,.36,1); }
.testimonials-single .tsl-track .testimonial-card { min-width: 100%; height: auto; display: grid; grid-template-rows: 1fr auto; margin-bottom: 12px; }

/* Single testimonials look like the screenshot */
.testimonials-single h2.section-title { text-align: center; }
.testimonials-single .section-subtitle { text-align: center; }
.testimonials-single .testimonial-card blockquote {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
  text-align: center;
}
.testimonials-single .t-head { justify-content: center; }
.testimonials-single .t-name { color: #c7d2fe; }
.tsl-dots { display: flex; justify-content: center; gap: 8px; margin-top: 12px; }
.tsl-dot { width: 8px; height: 8px; border-radius: 999px; background: rgba(255,255,255,.35); border: 1px solid rgba(255,255,255,.5); transition: transform .2s ease, background .2s ease; }
.tsl-dot.is-active { background: var(--primary); transform: scale(1.2); border-color: var(--primary); }
/* Extra breathing room between quote and person details */
.testimonials-single .testimonial-card blockquote { margin-bottom: 16px; }
.testimonials-single .testimonial-card .t-head { margin-top: 6px; }

/* Why section split layout */
.why-wrap { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 24px; align-items: start; justify-content: space-between; }
.why-left .resource-grid { grid-template-columns: repeat(2, 1fr); }
.why-left { max-width: 760px; justify-self: start; }
.why-right { display: grid; place-items: center; justify-self: end; }
.why-right .why-image { width: 100%; max-width: 700px; border-radius: 14px; border: 1px solid rgba(255,255,255,.12); box-shadow: var(--shadow); }

@media (max-width: 960px) {
  .why-wrap { grid-template-columns: 1fr; }
  .why-left .resource-grid { grid-template-columns: 1fr; }
}

/* FAQ accordion */
.faq-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.faq-card { cursor: pointer; }
.faq-card .faq-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.faq-card .faq-toggle { width: 28px; height: 28px; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); position: relative; flex: 0 0 auto; }
.faq-card .faq-toggle::before, .faq-card .faq-toggle::after { content: ""; position: absolute; background: #fff; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.faq-card .faq-toggle::before { width: 12px; height: 2px; }
.faq-card .faq-toggle::after { width: 2px; height: 12px; transition: opacity .2s ease; }
.faq-card.is-open .faq-toggle::after { opacity: 0; }
.faq-card .faq-content { display: none; margin-top: 8px; color: var(--muted); }
.faq-card.is-open .faq-content { display: block; }

.section {
  background: var(--bg-alt);
}

.blog-cta {
  padding-top: 24px;
  padding-bottom: 24px;
}

/* Call to Action Shine Effect */
.blog-cta .container {
  position: relative;
  padding: 32px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--primary);
  overflow: hidden;
}

.blog-cta .container::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(124, 77, 255, 0.4), transparent);
  transform: skewX(-30deg);
  animation: cta-shine 5s infinite linear;
}

@keyframes cta-shine {
  from {
    left: -150%;
  }
  to {
    left: 150%;
  }
}

/* Fix for background gradient overlap */
.section > .container {
  position: relative;
  z-index: 1;
}

/* Blog page hero section */
.blog-hero {
  padding-top: 64px;
  padding-bottom: 48px;
  min-height: calc(90vh - 64px); /* 64px is header height */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-hero .section-title {
  font-size: 2.75rem; /* Larger title */
}

.blog-hero .blog-hero-img {
  max-width: 800px; /* Larger image */
  width: 100%;
}

/* Blog page specific spacing */
.blog-toc {
  padding-top: 0;
  padding-bottom: 24px;
}
.blog-content {
  padding-top: 0;
  padding-bottom: 48px;
}
.blog-faq {
    padding-top: 48px;
    padding-bottom: 48px;
}

.blog-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.blog-toc-list li a {
  display: block;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background .2s ease, border-color .2s ease;
}

.blog-toc-list li a:hover {
  background: rgba(124, 77, 255, 0.15);
  border-color: var(--primary);
}

/* Parallax background */
/* .parallax-bg { ... } */

/* Scroll reveal baseline */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Testimonials multi-card slider */
.tsl-viewport { position: relative; overflow: hidden; }
.tsl-track { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 16px; align-items: stretch; }
.t-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; }
.t-nav.left { left: -6px; }
.t-nav.right { right: -6px; }

/* Card sizing for slider */
@media (min-width: 1100px) {
  .tsl-track { grid-auto-columns: calc((100% - 32px) / 3); }
}
@media (min-width: 720px) and (max-width: 1099px) {
  .tsl-track { grid-auto-columns: calc((100% - 16px) / 2); }
}
@media (max-width: 719px) {
  .tsl-track { grid-auto-columns: 100%; }
}

/* Ensure testimonial cards fill height nicely */
.tsl-track .testimonial-card { height: 100%; display: grid; grid-template-rows: auto 1fr; }

/* Media Queries */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .resource-grid { grid-template-columns: repeat(2, 1fr); }
  .opp-grid { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: 1fr; }
  .join-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .video-wrap { grid-template-columns: 1fr; }
  #video.section { padding: 140px 0; }
  .testimonials-viewport { height: auto; }
  .testimonials-track { grid-template-columns: 1fr; }
  .t-card { transform: none !important; filter: none !important; opacity: 1 !important; height: auto; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .t-nav.left { left: 0; }
  .t-nav.right { right: 0; }
}
@media (max-width: 720px) {
  .nav-toggle { display: inline-block; }
  .nav-links { position: absolute; right: 16px; top: 64px; background: var(--card); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 10px; display: none; flex-direction: column; gap: 8px; width: 220px; }
  .nav-links.is-open { display: flex; }
  .resource-grid, .opp-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; align-items: flex-start; }
  .testimonials-grid { grid-template-columns: 1fr; }
  /* Bring slider arrows inside on small screens */
  .prev { left: 10px; }
  .next { right: 10px; }
}

/* Image Slider */
.slider-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.slider-container {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  transition: opacity 1s ease-in-out;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  z-index: 10;
  transition: background-color .2s ease;
}

.slider-btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.prev {
  left: -50px;
}

.next {
  right: -50px;
}

.blog-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.toc-box {
  background: var(--card);
  border: 1px solid rgba(124,77,255,.22);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
}

.blog-recommended .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 16px;
}

.blog-image-container {
  background: var(--card);
  border: 1px solid rgba(124,77,255,.22);
  border-radius: 16px;
  padding: 16px;
  margin: 32px auto;
  box-shadow: var(--shadow);
  max-width: 700px;
}

.blog-image-container img {
  border-radius: 8px;
}

.styled-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
  margin: 32px 0;
}

.styled-table th,
.styled-table td {
  background: var(--card);
  padding: 16px;
  text-align: left;
  border-color: rgba(124,77,255,.22);
  border-style: solid;
  border-width: 1px 0;
}

.styled-table th {
  color: var(--primary);
  font-weight: 700;
}

.styled-table tr:first-child th:first-child { border-top-left-radius: 14px; border-left-width: 1px; }
.styled-table tr:first-child th:last-child { border-top-right-radius: 14px; border-right-width: 1px; }
.styled-table tr:last-child td:first-child { border-bottom-left-radius: 14px; border-left-width: 1px; }
.styled-table tr:last-child td:last-child { border-bottom-right-radius: 14px; border-right-width: 1px; }

.styled-table tr:hover td {
  background: rgba(124, 77, 255, 0.1);
  border-color: var(--primary);
}

.blog-content a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color .2s ease, text-decoration .2s ease;
}

.blog-content a:hover {
  color: #93c5fd;
  text-decoration: underline;
}

.blog-content, .blog-toc, .blog-faq, .blog-recommended, .blog-cta {
  background: var(--bg-alt);
  position: relative;
  z-index: 1;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

@keyframes mockCardPulse {
  0% { 
    transform: scale(1); 
    box-shadow: 0 4px 15px rgba(199, 210, 254, 0.1); 
  }
  50% { 
    transform: scale(1.01); /* Slight enlarge */
    box-shadow: 0 8px 25px rgba(199, 210, 254, 0.3); /* Brighter shadow */
  }
  100% { 
    transform: scale(1); 
    box-shadow: 0 4px 15px rgba(199, 210, 254, 0.1); 
  }
}

/* Base style for the mock card with initial shadow */
.hero-media .mock-card {
    /* Ensure there is a shadow to animate */
    box-shadow: 0 4px 15px rgba(199, 210, 254, 0.1); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
    /* Apply the animation */
    animation: mockCardPulse 6s infinite ease-in-out; 
}