/* ==============================================
   DYNOVEX THEME — MAIN STYLESHEET
   dynovex.online
   ============================================== */

:root {
  --lime: #C8FF00;
  --coral: #FF4D6D;
  --electric: #4DFFDB;
  --purple: #7B2FFF;
  --dark: #0A0A0F;
  --mid: #141420;
  --card: #1A1A2E;
  --muted: #8888AA;
  --white: #F5F5FF;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* ---- CUSTOM CURSOR ---- */
.dyno-cursor {
  width: 12px; height: 12px;
  background: var(--lime);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease;
  mix-blend-mode: exclusion;
}
.dyno-cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--lime);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: top 0.12s ease, left 0.12s ease, transform 0.2s ease;
  mix-blend-mode: exclusion;
}

/* ---- NAV ---- */
.dyno-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(10,10,15,0.7);
}
.dyno-nav .nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 1.3rem;
  letter-spacing: -0.03em; color: var(--white);
  text-decoration: none;
}
.dyno-nav .nav-logo span { color: var(--lime); }
.dyno-nav .nav-links { display: flex; gap: 36px; list-style: none; }
.dyno-nav .nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.02em; transition: color 0.2s;
}
.dyno-nav .nav-links a:hover { color: var(--white); }
.dyno-nav .nav-cta {
  background: var(--lime); color: var(--dark);
  padding: 10px 24px; border-radius: 100px;
  font-weight: 700; font-size: 0.85rem;
  text-decoration: none; letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.dyno-nav .nav-cta:hover { transform: scale(1.05); box-shadow: 0 0 30px rgba(200,255,0,0.3); }

/* ---- HERO ---- */
.dyno-hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 140px 60px 80px;
  position: relative; overflow: hidden;
}
.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none;
  animation: dyno-drift 8s ease-in-out infinite alternate;
}
.blob1 { width: 600px; height: 600px; background: rgba(123,47,255,0.25); top: -100px; right: -100px; }
.blob2 { width: 400px; height: 400px; background: rgba(77,255,219,0.15); bottom: 50px; left: 200px; animation-delay: -4s; }
.blob3 { width: 300px; height: 300px; background: rgba(200,255,0,0.12); top: 40%; right: 30%; animation-delay: -2s; }

@keyframes dyno-drift {
  from { transform: translate(0,0) scale(1); }
  to { transform: translate(30px,20px) scale(1.05); }
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,255,0,0.1); border: 1px solid rgba(200,255,0,0.3);
  color: var(--lime); padding: 8px 16px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 32px;
  animation: dyno-fadeUp 0.8s ease both;
}
.hero-tag::before {
  content: ''; width: 6px; height: 6px;
  background: var(--lime); border-radius: 50%;
  animation: dyno-pulse 1.5s infinite;
}
@keyframes dyno-pulse {
  0%,100% { opacity:1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.dyno-hero h1 {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95; letter-spacing: -0.04em; max-width: 900px;
  animation: dyno-fadeUp 0.8s 0.1s ease both;
}
.dyno-hero h1 .outline { -webkit-text-stroke: 2px var(--white); color: transparent; }
.dyno-hero h1 .accent { color: var(--lime); }
.hero-sub {
  margin-top: 28px; font-size: 1.15rem; color: var(--muted);
  max-width: 500px; line-height: 1.6; font-weight: 300;
  animation: dyno-fadeUp 0.8s 0.2s ease both;
}
.hero-actions {
  margin-top: 44px; display: flex; gap: 16px; align-items: center;
  animation: dyno-fadeUp 0.8s 0.3s ease both;
}
.btn-primary {
  background: var(--lime); color: var(--dark); padding: 16px 36px;
  border-radius: 100px; font-weight: 700; font-size: 1rem;
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(200,255,0,0.25); }
.btn-ghost {
  color: var(--white); padding: 16px 32px; border-radius: 100px;
  font-weight: 500; font-size: 1rem; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, background 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }

.hero-stats {
  margin-top: 72px; display: flex; gap: 56px;
  animation: dyno-fadeUp 0.8s 0.4s ease both;
}
.stat-num {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 2.2rem; letter-spacing: -0.03em;
}
.stat-label { color: var(--muted); font-size: 0.85rem; margin-top: 4px; }

.hero-scroll {
  position: absolute; bottom: 36px; left: 60px;
  display: flex; align-items: center; gap: 12px;
  color: var(--muted); font-size: 0.8rem; letter-spacing: 0.08em;
  text-transform: uppercase; animation: dyno-fadeUp 0.8s 0.5s ease both;
}
.scroll-line {
  width: 40px; height: 1px; background: var(--muted);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; inset: 0; background: var(--lime);
  animation: dyno-scanline 1.5s infinite;
}
@keyframes dyno-scanline { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

@keyframes dyno-fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- MARQUEE ---- */
.dyno-marquee {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  overflow: hidden; background: var(--mid);
}
.marquee-track {
  display: flex; gap: 60px;
  animation: dyno-marquee 20s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 0.8rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: 20px;
}
.marquee-item .dot { width: 5px; height: 5px; background: var(--lime); border-radius: 50%; }
@keyframes dyno-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- SECTION COMMONS ---- */
.dyno-section { padding: 120px 60px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--lime); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 20px;
}
.section-label::before { content: '//'; opacity: 0.5; }
.section-title {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.03em; line-height: 1.05;
}
.section-sub {
  color: var(--muted); font-size: 1rem; line-height: 1.7;
  max-width: 480px; margin-top: 16px;
}

/* ---- COURSES ---- */
.dyno-courses { background: var(--mid); }
.courses-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 64px;
}
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.course-card {
  background: var(--card); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s; position: relative;
}
.course-card:hover { transform: translateY(-8px); border-color: rgba(200,255,0,0.3); }
.course-card:hover .card-glow { opacity: 1; }
.card-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(200,255,0,0.06), transparent 70%);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.course-thumb {
  height: 200px; display: flex; align-items: center; justify-content: center;
  font-size: 4rem; position: relative; overflow: hidden;
}
.thumb-ai { background: linear-gradient(135deg, #1a0a3a, #2d1b69); }
.thumb-tiktok { background: linear-gradient(135deg, #1a001a, #3d0030); }
.thumb-bundle { background: linear-gradient(135deg, #001a0a, #003d2a); }
.thumb-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--lime); color: var(--dark);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 100px;
}
.thumb-badge.hot { background: var(--coral); color: white; }
.thumb-badge.new { background: var(--electric); color: var(--dark); }
.course-body { padding: 28px; }
.course-tag { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--electric); margin-bottom: 10px; }
.course-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.3rem; letter-spacing: -0.02em; line-height: 1.25; margin-bottom: 12px; }
.course-desc { color: var(--muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 24px; }
.course-meta { display: flex; gap: 16px; font-size: 0.8rem; color: var(--muted); margin-bottom: 24px; }
.course-meta span { display: flex; align-items: center; gap: 5px; }
.course-footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 20px;
}
.course-price { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.6rem; letter-spacing: -0.03em; }
.course-price .old { font-size: 0.9rem; font-weight: 400; color: var(--muted); text-decoration: line-through; margin-right: 6px; font-family: 'DM Sans', sans-serif; }
.btn-enroll {
  background: var(--lime); color: var(--dark); padding: 10px 22px;
  border-radius: 100px; font-weight: 700; font-size: 0.85rem;
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
}
.btn-enroll:hover { transform: scale(1.05); box-shadow: 0 8px 24px rgba(200,255,0,0.3); }
.btn-enroll.coral-btn { background: var(--coral); color: white; }
.btn-enroll.coral-btn:hover { box-shadow: 0 8px 24px rgba(255,77,109,0.3); }

/* ---- ABOUT ---- */
.dyno-about { background: var(--dark); overflow: hidden; position: relative; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-card-main {
  background: var(--card); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px; padding: 40px; position: relative; overflow: hidden;
}
.about-card-main::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--lime), var(--electric), var(--purple));
}
.about-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--electric));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin-bottom: 20px;
}
.about-card-name { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.4rem; }
.about-card-role { color: var(--lime); font-size: 0.85rem; margin-top: 4px; margin-bottom: 16px; }
.about-card-bio { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }
.about-floating {
  position: absolute; background: var(--mid);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 16px 20px; font-size: 0.85rem;
}
.about-floating-1 { bottom: -20px; right: -30px; }
.about-floating-2 { top: -20px; right: 30px; }
.float-num { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--lime); }
.float-txt { color: var(--muted); font-size: 0.75rem; margin-top: 2px; }
.about-features { display: flex; flex-direction: column; gap: 24px; margin-top: 36px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; border: 1px solid rgba(255,255,255,0.08);
}
.feature-icon.lime { background: rgba(200,255,0,0.1); }
.feature-icon.coral { background: rgba(255,77,109,0.1); }
.feature-icon.electric { background: rgba(77,255,219,0.1); }
.feature-text h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.feature-text p { color: var(--muted); font-size: 0.88rem; line-height: 1.55; }

/* ---- TESTIMONIALS ---- */
.dyno-testimonials { background: var(--mid); }
.testimonials-header { margin-bottom: 60px; }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 1100px;
}
.testi-card {
  background: var(--card); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px; padding: 28px; transition: border-color 0.3s;
}
.testi-card:hover { border-color: rgba(200,255,0,0.2); }
.testi-stars { color: #FFD700; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 16px; }
.testi-text { color: var(--white); font-size: 0.95rem; line-height: 1.7; font-style: italic; font-weight: 300; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; font-family: 'Syne', sans-serif; flex-shrink: 0;
}
.av1 { background: linear-gradient(135deg, #7B2FFF, #C8FF00); }
.av2 { background: linear-gradient(135deg, #FF4D6D, #7B2FFF); }
.av3 { background: linear-gradient(135deg, #4DFFDB, #7B2FFF); }
.testi-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem; }
.testi-handle { color: var(--muted); font-size: 0.78rem; margin-top: 2px; }

/* ---- CTA ---- */
.dyno-cta { background: var(--dark); text-align: center; padding: 120px 60px; position: relative; overflow: hidden; }
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(123,47,255,0.15), transparent);
  pointer-events: none;
}
.cta-inner { position: relative; max-width: 700px; margin: 0 auto; }
.dyno-cta .section-label { justify-content: center; }
.dyno-cta .section-title { font-size: clamp(3rem, 6vw, 5rem); }
.dyno-cta .section-title .outline { -webkit-text-stroke: 2px var(--white); color: transparent; }
.cta-sub { color: var(--muted); font-size: 1.1rem; line-height: 1.7; margin: 20px auto 44px; max-width: 460px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; }
.cta-note { color: var(--muted); font-size: 0.82rem; margin-top: 20px; }
.cta-note span { color: var(--lime); }

/* ---- FOOTER ---- */
.dyno-footer {
  background: var(--mid); border-top: 1px solid rgba(255,255,255,0.07);
  padding: 40px 60px; display: flex; align-items: center; justify-content: space-between;
}
.footer-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.1rem; }
.footer-logo span { color: var(--lime); }
.footer-links { display: flex; gap: 28px; }
.footer-links a { text-decoration: none; color: var(--muted); font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-right { color: var(--muted); font-size: 0.8rem; }

/* ---- WORDPRESS CONTENT AREA ---- */
.wp-content { padding: 80px 60px; max-width: 900px; margin: 0 auto; }
.wp-content h1, .wp-content h2, .wp-content h3 { font-family: 'Syne', sans-serif; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 16px; }
.wp-content p { color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.wp-content a { color: var(--lime); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .dyno-nav { padding: 18px 24px; }
  .dyno-nav .nav-links { display: none; }
  .dyno-section, .dyno-hero { padding: 80px 24px 60px; }
  .dyno-hero { padding: 120px 24px 60px; }
  .hero-stats { gap: 32px; flex-wrap: wrap; }
  .courses-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .testi-grid { grid-template-columns: 1fr; }
  .dyno-footer { flex-direction: column; gap: 20px; text-align: center; padding: 40px 24px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .hero-scroll { display: none; }
  .about-floating { display: none; }
  .dyno-cta { padding: 80px 24px; }
}
