/*
Theme Name: Nova Motion
Theme URI: https://novamotion.co
Author: Nova Motion
Author URI: https://novamotion.co
Description: A premium one-page dark theme for Nova Motion — a mentor-led video editing & motion design program. Gradient-green brand system, glassmorphism UI, and a conversion-focused landing layout with Customizer controls.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nova-motion
Tags: one-page, landing-page, dark, custom-colors, custom-logo, custom-menu, editor-style, featured-images, responsive-layout, education
*/

/* =========================================================
   1. Design tokens
   ========================================================= */
:root {
  --nova-lime: #b8ff3c;
  --nova-emerald: #2fd07a;
  --nova-deep: #14603f;
  --nova-ink: #06100b;

  --background: #0a1710;
  --foreground: #f2fbf4;
  --card: #10231a;
  --muted: #16301f;
  --muted-foreground: #9db3a4;
  --border: rgba(184, 255, 60, 0.14);

  --gradient-nova: linear-gradient(135deg, #b8ff3c 0%, #2fd07a 45%, #14603f 100%);
  --gradient-nova-soft: linear-gradient(135deg, rgba(184, 255, 60, 0.16), rgba(20, 96, 63, 0.05));
  --shadow-glow: 0 20px 80px -20px rgba(47, 208, 122, 0.45);
  --shadow-lime: 0 10px 40px -10px rgba(184, 255, 60, 0.45);

  --font-display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;

  --radius: 16px;
  --container: 1152px;
}

/* =========================================================
   2. Reset & base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--foreground);
  background-color: var(--background);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(47, 208, 122, 0.16), transparent),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(184, 255, 60, 0.08), transparent);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.02em; line-height: 1.05; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--nova-lime); outline-offset: 3px; border-radius: 6px; }

.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px); white-space: nowrap;
}
.skip-link:focus {
  position: fixed; top: 12px; left: 12px; z-index: 999; width: auto; height: auto; clip: auto;
  background: var(--nova-lime); color: var(--nova-ink); padding: 10px 16px; border-radius: 999px; font-weight: 700;
}

/* =========================================================
   3. Layout helpers
   ========================================================= */
.nm-container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.nm-section { position: relative; padding: 96px 0; }
@media (max-width: 640px) { .nm-section { padding: 64px 0; } }

.nm-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--nova-emerald);
}
.nm-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; margin-top: 12px; }
.nm-lead { margin-top: 16px; color: var(--muted-foreground); }
.nm-center { text-align: center; }
.nm-gradient-text {
  background-image: var(--gradient-nova);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nm-glass {
  background: rgba(16, 35, 26, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
}
.nm-grid-bg {
  background-image:
    linear-gradient(rgba(184, 255, 60, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 255, 60, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.nm-blob { position: absolute; border-radius: 999px; filter: blur(80px); pointer-events: none; }

/* =========================================================
   4. Buttons
   ========================================================= */
.nm-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: 999px;
  font-size: 14px; font-weight: 700; border: 0;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.nm-btn:hover { transform: translateY(-2px) scale(1.02); }
.nm-btn--primary { background-image: var(--gradient-nova); color: var(--nova-ink); box-shadow: var(--shadow-glow); }
.nm-btn--ghost {
  background: rgba(16, 35, 26, 0.5); color: var(--foreground);
  border: 1px solid var(--border); backdrop-filter: blur(8px);
}
.nm-btn--ghost:hover { border-color: rgba(184, 255, 60, 0.5); }
.nm-btn--block { width: 100%; justify-content: center; }

/* =========================================================
   5. Header / navigation
   ========================================================= */
.nm-header { position: fixed; inset: 16px 0 auto; z-index: 50; display: flex; justify-content: center; padding: 0 16px; }
.nm-nav {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; max-width: 900px; border-radius: 999px; padding: 10px 16px;
}
@media (min-width: 640px) { .nm-nav { padding: 10px 24px; } }

.nm-logo { display: flex; align-items: center; gap: 8px; }
.nm-logo__mark {
  display: flex; align-items: center; gap: 3px;
  font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: 0.2em;
}
.nm-logo__tri {
  width: 16px; height: 16px; margin: 0 -2px;
  background-image: var(--gradient-nova); border-radius: 3px;
  clip-path: polygon(0 0, 100% 50%, 0 100%); box-shadow: var(--shadow-lime);
}
.nm-logo__sub { font-size: 10px; text-transform: uppercase; letter-spacing: 0.35em; color: var(--muted-foreground); }
@media (max-width: 640px) { .nm-logo__sub { display: none; } }

.nm-menu { display: none; align-items: center; gap: 4px; }
@media (min-width: 900px) { .nm-menu { display: flex; } }
.nm-menu a {
  display: block; padding: 6px 12px; border-radius: 999px;
  font-size: 14px; color: var(--muted-foreground); transition: all 0.2s ease;
}
.nm-menu a:hover { background: rgba(255, 255, 255, 0.06); color: var(--foreground); }

.nm-nav__cta { padding: 10px 18px; font-size: 14px; }
.nm-nav__toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 999px; background: transparent;
  border: 1px solid var(--border); color: var(--foreground);
}
@media (min-width: 900px) { .nm-nav__toggle { display: none; } }

.nm-mobile-menu {
  position: fixed; top: 84px; left: 16px; right: 16px; z-index: 49;
  border-radius: 24px; padding: 16px; display: none;
}
.nm-mobile-menu.is-open { display: block; }
.nm-mobile-menu a { display: block; padding: 12px 14px; border-radius: 12px; font-weight: 600; }
.nm-mobile-menu a:hover { background: rgba(184, 255, 60, 0.08); color: var(--nova-lime); }

/* =========================================================
   6. Hero
   ========================================================= */
.nm-hero { position: relative; overflow: hidden; padding: 140px 0 64px; }
@media (min-width: 1024px) { .nm-hero { padding: 150px 0 80px; } }
.nm-hero__bg { position: absolute; inset: 0; opacity: 0.4;
  -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 70%);
  mask-image: radial-gradient(ellipse at center, black, transparent 70%); }
.nm-hero__glow {
  top: -160px; left: 60%; width: 600px; height: 600px; transform: translateX(-50%);
  background: radial-gradient(ellipse at top, rgba(47, 208, 122, 0.3), transparent 60%);
  animation: nm-pulse 4s ease-in-out infinite;
}
.nm-hero__inner { position: relative; display: grid; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .nm-hero__inner { grid-template-columns: 1fr 1fr; gap: 32px; } }
.nm-hero__copy { text-align: center; }
@media (min-width: 1024px) { .nm-hero__copy { text-align: left; } }

.nm-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 999px; font-size: 12px; font-weight: 600; margin-bottom: 24px;
}
.nm-dot { position: relative; display: inline-flex; width: 8px; height: 8px; }
.nm-dot::before, .nm-dot::after {
  content: ""; position: absolute; inset: 0; border-radius: 999px; background: var(--nova-lime);
}
.nm-dot::before { animation: nm-ping 1.6s cubic-bezier(0, 0, 0.2, 1) infinite; }

.nm-hero h1 { font-size: clamp(2.75rem, 8vw, 4.5rem); font-weight: 700; }
.nm-hero__lead { margin-top: 24px; max-width: 34rem; color: var(--muted-foreground); font-size: 17px; }
@media (max-width: 1023px) { .nm-hero__lead { margin-inline: auto; } }
.nm-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; justify-content: center; }
@media (min-width: 1024px) { .nm-hero__actions { justify-content: flex-start; } }

.nm-stats { display: flex; flex-wrap: wrap; gap: 32px; margin-top: 44px; justify-content: center; }
@media (min-width: 1024px) { .nm-stats { justify-content: flex-start; } }
.nm-stat__num { font-family: var(--font-display); font-size: 30px; font-weight: 700; }
.nm-stat__label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted-foreground); }

.nm-hero__media { position: relative; width: 100%; max-width: 640px; margin-inline: auto; }
.nm-hero__frame {
  position: relative; aspect-ratio: 16 / 10; overflow: hidden; border-radius: 28px;
  border: 1px solid var(--border); box-shadow: 0 40px 90px -30px rgba(184, 255, 60, 0.25);
}
.nm-hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.nm-hero__frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top right, rgba(10, 23, 16, 0.45), transparent 50%, rgba(184, 255, 60, 0.12));
}
.nm-hero__badge {
  position: absolute; left: -20px; bottom: -20px; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  padding: 16px; border-radius: 20px; background: rgba(16, 35, 26, 0.9);
  border: 1px solid var(--border); backdrop-filter: blur(10px);
}
@media (max-width: 640px) { .nm-hero__badge { display: none; } }
.nm-hero__badge-icon {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px;
  background-image: var(--gradient-nova); color: var(--nova-ink);
}

/* =========================================================
   7. Marquee
   ========================================================= */
.nm-marquee { position: relative; overflow: hidden; padding: 20px 0; border-block: 1px solid var(--border); background: rgba(16, 35, 26, 0.4); }
.nm-marquee__track { display: flex; width: max-content; gap: 48px; align-items: center; animation: nm-marquee 30s linear infinite; }
.nm-marquee__item { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: rgba(157, 179, 164, 0.75); white-space: nowrap; }
.nm-marquee__sep { width: 6px; height: 6px; border-radius: 999px; background: rgba(184, 255, 60, 0.6); }

/* =========================================================
   8. Cards / grids
   ========================================================= */
.nm-cards { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .nm-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .nm-cards--3 { grid-template-columns: repeat(3, 1fr); } }

.nm-card {
  position: relative; overflow: hidden; padding: 24px; border-radius: 24px;
  border: 1px solid var(--border); background: rgba(16, 35, 26, 0.6);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.nm-card:hover { transform: translateY(-4px); border-color: rgba(184, 255, 60, 0.4); }
.nm-card__icon {
  display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 16px;
  background-image: var(--gradient-nova-soft); box-shadow: inset 0 0 0 1px rgba(184, 255, 60, 0.2);
  color: var(--nova-lime); margin-bottom: 24px;
}
.nm-card__num { font-family: ui-monospace, SFMono-Regular, monospace; font-size: 11px; color: var(--muted-foreground); }
.nm-card h3 { font-size: 20px; font-weight: 600; margin-top: 4px; }
.nm-card p { margin-top: 8px; font-size: 14px; color: var(--muted-foreground); }
.nm-card__head { display: flex; align-items: center; justify-content: space-between; }
.nm-tag {
  border-radius: 999px; padding: 4px 10px; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--nova-lime);
  background: rgba(184, 255, 60, 0.1); border: 1px solid rgba(184, 255, 60, 0.3);
}

/* Tools */
.nm-tools { display: grid; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .nm-tools { grid-template-columns: 1fr 1.4fr; } }
.nm-tools__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 640px) { .nm-tools__grid { grid-template-columns: repeat(3, 1fr); } }
.nm-tool { display: flex; flex-direction: column; gap: 16px; padding: 20px; border-radius: 18px; border: 1px solid var(--border); background: rgba(16, 35, 26, 0.6); transition: transform 0.2s ease, border-color 0.2s ease; }
.nm-tool:hover { transform: translateY(-4px); border-color: rgba(184, 255, 60, 0.4); }
.nm-tool__mark { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; font-family: var(--font-display); font-weight: 700; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1); }
.nm-tool__name { font-size: 14px; font-weight: 600; }
.nm-tool__sub { font-size: 11px; color: var(--muted-foreground); }

/* Bento */
.nm-bento { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .nm-bento { grid-template-columns: repeat(4, 1fr); } }
.nm-bento .nm-card--wide { grid-column: span 1; }
@media (min-width: 768px) { .nm-bento .nm-card--wide { grid-column: span 2; } }
.nm-card--feature { border-color: rgba(184, 255, 60, 0.3); background-image: var(--gradient-nova-soft); }
.nm-card--feature .nm-card__icon { background-image: var(--gradient-nova); color: var(--nova-ink); }

/* =========================================================
   9. Brochure banner
   ========================================================= */
.nm-brochure {
  position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 24px;
  align-items: flex-start; justify-content: space-between;
  padding: 32px; border-radius: 28px; border: 1px solid rgba(184, 255, 60, 0.25);
}
@media (min-width: 768px) { .nm-brochure { flex-direction: row; align-items: center; padding: 40px; } }
.nm-brochure__icon {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 18px; flex: none;
  background-image: var(--gradient-nova); color: var(--nova-ink); box-shadow: var(--shadow-lime);
}
.nm-brochure__body { display: flex; gap: 20px; align-items: flex-start; position: relative; }
.nm-brochure h3 { font-size: 26px; font-weight: 700; margin-top: 8px; }

/* Floating brochure button */
.nm-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 40;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px; font-size: 14px; font-weight: 700;
  background-image: var(--gradient-nova); color: var(--nova-ink);
  box-shadow: var(--shadow-glow); border: 1px solid rgba(184, 255, 60, 0.4);
  transition: transform 0.2s ease;
}
.nm-float:hover { transform: scale(1.05); }
.nm-float__dot { position: relative; width: 8px; height: 8px; }
.nm-float__dot::before, .nm-float__dot::after { content: ""; position: absolute; inset: 0; border-radius: 999px; background: var(--nova-ink); }
.nm-float__dot::before { animation: nm-ping 1.6s cubic-bezier(0, 0, 0.2, 1) infinite; opacity: 0.5; }
@media (max-width: 640px) { .nm-float__label { display: none; } }

/* =========================================================
   10. Testimonials
   ========================================================= */
.nm-testimonial { display: flex; flex-direction: column; padding: 28px; border-radius: 24px; border: 1px solid var(--border); background: rgba(16, 35, 26, 0.6); transition: transform 0.25s ease, border-color 0.25s ease; margin: 0; }
.nm-testimonial:hover { transform: translateY(-4px); border-color: rgba(184, 255, 60, 0.4); }
.nm-testimonial--accent { background-image: var(--gradient-nova-soft); }
.nm-testimonial blockquote { margin: 20px 0 0; font-size: 14px; line-height: 1.7; flex: 1; }
.nm-testimonial figcaption { display: flex; align-items: center; gap: 12px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
.nm-testimonial img { width: 44px; height: 44px; border-radius: 999px; object-fit: cover; box-shadow: 0 0 0 2px rgba(184, 255, 60, 0.35); }
.nm-testimonial__name { font-size: 14px; font-weight: 600; }
.nm-testimonial__role { font-size: 12px; color: var(--muted-foreground); }
.nm-rating { display: flex; align-items: center; gap: 6px; color: var(--nova-lime); font-size: 14px; }
.nm-rating span { color: var(--muted-foreground); margin-left: 8px; }
.nm-section__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 56px; }

/* =========================================================
   11. FAQ
   ========================================================= */
.nm-faq { max-width: 768px; margin-inline: auto; }
.nm-faq__item { border: 1px solid var(--border); border-radius: 20px; background: rgba(16, 35, 26, 0.6); margin-bottom: 12px; overflow: hidden; }
.nm-faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%;
  padding: 20px 24px; background: none; border: 0; color: inherit; text-align: left;
  font-family: var(--font-display); font-size: 16px; font-weight: 600;
}
.nm-faq__q svg { flex: none; transition: transform 0.25s ease; color: var(--nova-lime); }
.nm-faq__item.is-open .nm-faq__q svg { transform: rotate(180deg); }
.nm-faq__a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.nm-faq__a p { padding: 0 24px 20px; font-size: 14px; color: var(--muted-foreground); }
.nm-faq__item.is-open .nm-faq__a { max-height: 320px; }

/* =========================================================
   12. CTA + contact form
   ========================================================= */
.nm-cta {
  position: relative; overflow: hidden; border-radius: 40px; padding: 40px;
  background-image: var(--gradient-nova); border: 1px solid rgba(184, 255, 60, 0.3); box-shadow: var(--shadow-glow);
}
@media (min-width: 640px) { .nm-cta { padding: 64px; } }
.nm-cta__inner { position: relative; display: grid; gap: 40px; align-items: center; }
@media (min-width: 1024px) { .nm-cta__inner { grid-template-columns: 1.4fr 1fr; } }
.nm-cta h2 { color: var(--nova-ink); font-size: clamp(2rem, 5vw, 3.75rem); font-weight: 700; }
.nm-cta p { margin-top: 24px; max-width: 32rem; color: rgba(6, 16, 11, 0.8); }
.nm-cta__chip { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; padding: 6px 12px; border-radius: 999px; background: rgba(6, 16, 11, 0.18); color: var(--nova-ink); font-size: 12px; font-weight: 700; }
.nm-cta__panel { border-radius: 26px; padding: 24px; background: rgba(6, 16, 11, 0.92); border: 1px solid rgba(6, 16, 11, 0.3); }
.nm-cta__panel-label { font-size: 12px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--nova-lime); margin-bottom: 16px; }

.nm-form { display: grid; gap: 12px; }
.nm-field label { display: block; font-size: 12px; color: var(--muted-foreground); margin-bottom: 6px; }
.nm-field input, .nm-field textarea, .nm-field select {
  width: 100%; padding: 12px 14px; border-radius: 12px; font: inherit; font-size: 14px;
  background: rgba(16, 35, 26, 0.8); color: var(--foreground); border: 1px solid var(--border);
  transition: border-color 0.2s ease;
}
.nm-field input:focus, .nm-field textarea:focus { border-color: rgba(184, 255, 60, 0.6); outline: none; }
.nm-field textarea { min-height: 90px; resize: vertical; }
.nm-error { display: block; margin-top: 5px; font-size: 11px; color: #ff8f8f; }
.nm-form__status { display: flex; align-items: center; gap: 8px; font-size: 13px; margin-top: 4px; }
.nm-form__status--ok { color: var(--nova-lime); }
.nm-form__status--err { color: #ff8f8f; }
.nm-form__note { margin-top: 12px; text-align: center; font-size: 11px; color: var(--muted-foreground); }

/* =========================================================
   13. Footer
   ========================================================= */
.nm-footer { border-top: 1px solid var(--border); padding: 48px 0 32px; }
.nm-footer__grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .nm-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .nm-footer__grid { grid-template-columns: 2fr 1fr 1fr; } }
.nm-footer p { margin-top: 16px; max-width: 20rem; font-size: 14px; color: var(--muted-foreground); }
.nm-social { display: flex; gap: 12px; margin-top: 24px; }
.nm-social a {
  display: grid; place-items: center; width: 36px; height: 36px; border-radius: 999px;
  border: 1px solid var(--border); color: var(--muted-foreground); transition: all 0.2s ease;
}
.nm-social a:hover { color: var(--nova-lime); border-color: rgba(184, 255, 60, 0.4); }
.nm-footer__title { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-foreground); margin-bottom: 12px; }
.nm-footer__links li { margin-bottom: 8px; font-size: 14px; }
.nm-footer__links a:hover { color: var(--nova-lime); }
.nm-footer__bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); font-size: 12px; color: var(--muted-foreground); }

/* =========================================================
   14. WordPress core classes (theme-check friendly)
   ========================================================= */
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { display: block; margin-inline: auto; }
.alignwide { max-width: 1200px; }
.alignfull { max-width: none; }
.wp-caption { max-width: 100%; }
.wp-caption-text, .gallery-caption { font-size: 13px; color: var(--muted-foreground); }
.sticky, .bypostauthor { display: block; }
.nm-entry { padding: 140px 0 80px; }
.nm-entry article { margin-bottom: 48px; padding: 28px; border: 1px solid var(--border); border-radius: 24px; background: rgba(16, 35, 26, 0.6); }
.nm-entry h1, .nm-entry h2 { font-size: 32px; margin-bottom: 12px; }
.nm-entry a { color: var(--nova-lime); }

/* =========================================================
   15. Animations
   ========================================================= */
@keyframes nm-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes nm-pulse { 0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); } 50% { opacity: 1; transform: translateX(-50%) scale(1.05); } }
@keyframes nm-ping { 75%, 100% { transform: scale(2.2); opacity: 0; } }
@keyframes nm-reveal { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.nm-reveal { opacity: 0; }
.nm-reveal.is-visible { animation: nm-reveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards; }

@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; }
  .nm-reveal { opacity: 1; }
}

/* Single-row testimonial marquee */
.nm-tmarquee { overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent); }
.nm-tmarquee__track { display: flex; width: max-content; gap: 16px; animation: nm-marquee 60s linear infinite; }
.nm-tmarquee:hover .nm-tmarquee__track { animation-play-state: paused; }
.nm-tmarquee .nm-testimonial { width: 340px; flex: 0 0 auto; }
@media (min-width: 640px) { .nm-tmarquee .nm-testimonial { width: 380px; } }

/* Dark CTA button */
.nm-btn--dark { margin-top: 28px; background: var(--nm-ink, #06100b); color: var(--nm-lime, #b8ff3c); }
