/*
Theme Name: Ellemotional AI
Theme URI: https://ellemotionindustries.ai
Author: Elle Motion Industries
Author URI: https://ellemotionindustries.ai
Description: Ellemotional AI — NDIS support, mental health companion, WorkCover, vision watchdog, soul bank. Built in Brisbane, Australia. A platform for people with disability, injured workers, elderly Australians and their carers. Not escaping pain — organising it.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ellemotional
Tags: accessibility-ready, custom-colors, custom-logo, custom-menu, editor-style, featured-images, full-width-template, responsive-layout, dark, elementor
*/

/* ════════════════════════════════════════════════════════════
   ELLEMOTIONAL AI — WORDPRESS THEME
   ellemotionindustries.ai  ·  Elle Motion Industries © 2026
   "Not escaping pain — organising it."  — Brentdee
   ════════════════════════════════════════════════════════════ */

/* ── ROOT BRAND VARIABLES ── */
:root {
  /* DEPTHS */
  --void: #04060a;
  --deep: #080e18;
  --panel: #0c1624;
  --panel2: #101e30;
  --glass: rgba(12, 22, 36, 0.82);

  /* BRAND COLOURS */
  --gold: #e8b84b;
  --gold2: #f5d070;
  --gold-dark: #8a6010;
  --teal: #2de8c0;
  --teal2: #1ac8a0;
  --coral: #ff6b4a;
  --purple: #a78bfa;
  --blue: #38bdf8;
  --green: #34d399;
  --pink: #f472b6;
  --amber: #fbbf24;
  --sky: #0ea5e9;

  /* BORDERS & TEXT */
  --border: rgba(46, 120, 160, 0.18);
  --border2: rgba(46, 120, 160, 0.38);
  --text: #d4eaf7;
  --text2: #7aa8c4;
  --text3: #3d6a8a;
  --white: #f0f8ff;

  /* RADII & SHADOWS */
  --radius: 12px;
  --radius2: 20px;
  --shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
  --shadow2: 0 12px 60px rgba(0, 0, 0, 0.7);
  --glow-teal: 0 0 30px rgba(45, 232, 192, 0.2);
  --glow-gold: 0 0 30px rgba(232, 184, 75, 0.3);
  --glow-purple: 0 0 30px rgba(167, 139, 250, 0.25);
  --glow-coral: 0 0 30px rgba(255, 107, 74, 0.25);

  /* TYPOGRAPHY */
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* ── RESET & BASE ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--void);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Animated background mesh */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(45, 232, 192, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 10% 80%, rgba(167, 139, 250, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 50% 110%, rgba(232, 184, 75, 0.05) 0%, transparent 50%);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
}

h1 { font-size: clamp(2rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: clamp(1rem, 2vw, 1.3rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 0.95rem; }

p {
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 1em;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: all 0.25s;
}

a:hover {
  color: var(--gold);
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

ul, ol {
  padding-left: 1.5em;
  color: var(--text2);
}

li {
  margin-bottom: 0.4em;
  line-height: 1.7;
}

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  z-index: 1;
}

.container-sm {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  z-index: 1;
}

.container-lg {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4%;
  position: relative;
  z-index: 1;
}

.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-sm {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

/* ── UTILITY ── */
.mono { font-family: var(--font-mono); }
.text-teal { color: var(--teal); }
.text-gold { color: var(--gold); }
.text-purple { color: var(--purple); }
.text-coral { color: var(--coral); }
.text-green { color: var(--green); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }

.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

.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;
}

/* ── GLOWING CHIP / LABEL ── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 14px;
}

.chip::before {
  content: '';
  width: 18px;
  height: 1.5px;
  background: var(--teal);
}

.chip-gold { color: var(--gold); }
.chip-gold::before { background: var(--gold); }
.chip-purple { color: var(--purple); }
.chip-purple::before { background: var(--purple); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #0a0800;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-gold);
  color: #0a0800;
}

.btn-teal {
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  color: #020a08;
}

.btn-teal:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-teal);
  color: #020a08;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border2);
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.btn-purple {
  background: linear-gradient(135deg, var(--purple), #8b5cf6);
  color: #fff;
}

.btn-purple:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-purple);
  color: #fff;
}

.btn-sm { padding: 9px 18px; font-size: 0.8rem; }
.btn-lg { padding: 17px 34px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── BADGES ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 500;
}

.badge-teal { background: rgba(45, 232, 192, 0.12); color: var(--teal); border: 1px solid rgba(45, 232, 192, 0.3); }
.badge-gold { background: rgba(232, 184, 75, 0.12); color: var(--gold); border: 1px solid rgba(232, 184, 75, 0.3); }
.badge-purple { background: rgba(167, 139, 250, 0.12); color: var(--purple); border: 1px solid rgba(167, 139, 250, 0.3); }
.badge-coral { background: rgba(255, 107, 74, 0.12); color: var(--coral); border: 1px solid rgba(255, 107, 74, 0.3); }
.badge-green { background: rgba(52, 211, 153, 0.12); color: var(--green); border: 1px solid rgba(52, 211, 153, 0.3); }
.badge-live::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: em-blink 2s infinite;
}

@keyframes em-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ── NOTICE / ALERT BARS ── */
.notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.notice-teal { background: rgba(45, 232, 192, 0.07); border: 1px solid rgba(45, 232, 192, 0.25); color: var(--teal); }
.notice-gold { background: rgba(232, 184, 75, 0.07); border: 1px solid rgba(232, 184, 75, 0.25); color: var(--gold); }
.notice-coral { background: rgba(255, 107, 74, 0.07); border: 1px solid rgba(255, 107, 74, 0.25); color: var(--coral); }
.notice-purple { background: rgba(167, 139, 250, 0.07); border: 1px solid rgba(167, 139, 250, 0.25); color: var(--purple); }

/* ── GLASS CARDS ── */
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 26px 24px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--card-accent, var(--teal));
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
  box-shadow: var(--shadow2);
}

.card:hover::before { opacity: 1; }

.card-icon { font-size: 1.8rem; margin-bottom: 13px; }
.card-title { font-family: var(--font-display); font-size: 1.02rem; font-weight: 800; margin-bottom: 7px; color: var(--white); }
.card-body { font-size: 0.88rem; color: var(--text2); font-weight: 300; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

/* ── DIVIDERS ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
  margin: 60px 0;
}

/* ── NAVIGATION ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(4, 6, 10, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.nav-inner {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.site-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-orb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--teal), var(--purple));
  box-shadow: 0 0 16px rgba(45, 232, 192, 0.4);
}

.logo-text span {
  color: var(--teal);
}

/* Primary menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu li { position: relative; }

.nav-menu a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text2);
  border-radius: 8px;
  transition: all 0.2s;
  text-decoration: none;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current-page-ancestor > a {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

/* Dropdown */
.nav-menu .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--panel2);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 8px;
  list-style: none;
  margin: 0;
  box-shadow: var(--shadow2);
  z-index: 100;
}

.nav-menu li:hover > .sub-menu {
  display: block;
}

.nav-menu .sub-menu a {
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 0.84rem;
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(4, 6, 10, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px 5%;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  display: block;
  padding: 11px 14px;
  color: var(--text2);
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.nav-mobile a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-mobile .sub-menu {
  list-style: none;
  padding: 0 0 0 16px;
  margin: 0;
}

.nav-mobile .sub-menu a {
  font-size: 0.87rem;
  padding: 8px 12px;
}

.nav-mobile-divider {
  height: 1px;
  background: var(--border);
  margin: 10px 0;
}

.nav-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 10px;
}

/* ── CONTENT AREA ── */
.site-content {
  padding-top: 68px; /* offset for fixed nav */
  position: relative;
  z-index: 1;
}

/* ── ENTRY / POST ── */
.entry-header { margin-bottom: 40px; }
.entry-title { margin-bottom: 16px; }
.entry-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text3);
  letter-spacing: 1px;
}

.entry-content {
  max-width: 760px;
  margin: 0 auto;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin-top: 2em;
  margin-bottom: 0.75em;
}

.entry-content p { margin-bottom: 1.4em; }

.entry-content a {
  color: var(--teal);
  border-bottom: 1px solid rgba(45, 232, 192, 0.3);
}

.entry-content a:hover {
  color: var(--gold);
  border-bottom-color: rgba(232, 184, 75, 0.4);
}

.entry-content ul,
.entry-content ol {
  margin-bottom: 1.4em;
}

.entry-content blockquote {
  border-left: 3px solid var(--teal);
  padding: 16px 20px;
  margin: 2em 0;
  background: var(--panel);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text);
  font-style: italic;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.4em;
  font-size: 0.9rem;
}

.entry-content th {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border2);
  color: var(--teal);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.entry-content td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text2);
  vertical-align: top;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--deep);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.footer-main {
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-tagline {
  color: var(--text3);
  font-size: 0.85rem;
  font-style: italic;
  margin-bottom: 20px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text2);
  font-size: 0.9rem;
  transition: all 0.2s;
  text-decoration: none;
}

.footer-social a:hover {
  background: rgba(45, 232, 192, 0.1);
  border-color: rgba(45, 232, 192, 0.3);
  color: var(--teal);
}

.footer-col-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  color: var(--text3);
  font-size: 0.87rem;
  transition: color 0.2s;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--teal);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--text3);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-legal-links a {
  font-size: 0.82rem;
  color: var(--text3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal-links a:hover {
  color: var(--teal);
}

.footer-acknowledgement {
  text-align: center;
  padding: 20px 0;
  font-size: 0.8rem;
  color: var(--text3);
  border-top: 1px solid var(--border);
  font-style: italic;
}

/* ── HERO (DEFAULT PAGE) ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--teal), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 32px;
  line-height: 1.7;
}

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

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text3);
  margin-top: 4px;
}

/* ── PAGE HERO (INNER PAGES) ── */
.page-hero {
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
}

.page-hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

.page-hero-lead {
  font-size: 1.08rem;
  color: var(--text2);
  max-width: 600px;
  margin: 0 auto;
}

/* ── ACCESSIBILITY PANEL ── */
.accessibility-bar {
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.a11y-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--panel2);
  border: 1px solid var(--border2);
  color: var(--text2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.2s;
  box-shadow: var(--shadow);
}

.a11y-btn:hover {
  background: var(--teal);
  color: #020a08;
  border-color: var(--teal);
}

/* ── DYSLEXIA MODE ── */
body.dyslexia-mode {
  font-family: 'OpenDyslexic', 'Comic Sans MS', cursive;
  font-size: 1.1rem;
  line-height: 1.9;
  letter-spacing: 0.05em;
  word-spacing: 0.15em;
}

body.dyslexia-mode p,
body.dyslexia-mode li,
body.dyslexia-mode a {
  font-family: 'OpenDyslexic', 'Comic Sans MS', cursive;
}

/* ── HIGH CONTRAST MODE ── */
body.high-contrast {
  --text: #ffffff;
  --text2: #e0e0e0;
  --panel: #000000;
  --border: rgba(255, 255, 255, 0.4);
}

/* ── LARGE TEXT MODE ── */
body.large-text {
  font-size: 1.2rem;
}

body.large-text h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
body.large-text h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
body.large-text p { font-size: 1.15rem; }

/* ── FORMS ── */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: var(--panel);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
}

.form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(45, 232, 192, 0.1);
}

.form-control::placeholder { color: var(--text3); }

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* ── WP SEARCH FORM ── */
.search-form {
  display: flex;
  gap: 8px;
}

.search-field {
  flex: 1;
  padding: 12px 16px;
  background: var(--panel);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
}

.search-field:focus { border-color: var(--teal); }

.search-submit {
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  border: none;
  border-radius: var(--radius);
  color: #020a08;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.9rem;
  transition: all 0.2s;
}

.search-submit:hover { transform: translateY(-1px); box-shadow: var(--glow-teal); }

/* ── PAGINATION ── */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 40px 0;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--border);
  color: var(--text2);
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.2s;
}

.pagination a:hover,
.pagination .current {
  background: rgba(45, 232, 192, 0.1);
  border-color: rgba(45, 232, 192, 0.4);
  color: var(--teal);
}

/* ── COMMENTS ── */
.comments-area {
  max-width: 760px;
  margin: 60px auto;
  padding: 0 5%;
}

.comments-title {
  font-size: 1.4rem;
  margin-bottom: 32px;
}

.comment {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.comment-avatar img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.comment-author { font-weight: 600; color: var(--white); margin-bottom: 4px; }
.comment-date { font-size: 0.78rem; color: var(--text3); font-family: var(--font-mono); }
.comment-content { color: var(--text2); font-size: 0.9rem; margin-top: 8px; }

/* ── 404 PAGE ── */
.error-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 5%;
}

.error-404-code {
  font-family: var(--font-mono);
  font-size: 8rem;
  font-weight: 400;
  color: var(--border2);
  line-height: 1;
  margin-bottom: 24px;
}

/* ── SIDEBAR ── */
.widget {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}

.widget-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--teal);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

/* ── SECTION HEADINGS ── */
.section-header {
  margin-bottom: 56px;
}

.section-header.centered {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
}

.section-title {
  margin-bottom: 16px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text2);
  max-width: 560px;
}

.section-header.centered .section-lead {
  margin: 0 auto;
}

/* ── FEATURE LIST ── */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text2);
  font-size: 0.92rem;
  margin: 0;
}

.feature-list li::before {
  content: '→';
  color: var(--teal);
  flex-shrink: 0;
  font-family: var(--font-mono);
  margin-top: 1px;
}

/* ── PHASE / TIMELINE ── */
.phase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.phase-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  border-top: 3px solid var(--phase-color, var(--teal));
}

.phase-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--phase-color, var(--teal));
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.phase-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.phase-desc {
  font-size: 0.84rem;
  color: var(--text2);
  line-height: 1.6;
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--purple), var(--gold));
}

.cta-title { margin-bottom: 16px; }
.cta-lead { color: var(--text2); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--panel2);
  border: 1px solid var(--border2);
  color: var(--text2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 800;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
  text-decoration: none;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--teal);
  color: #020a08;
  border-color: var(--teal);
}

/* ── ANIMATIONS ── */
@keyframes em-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes em-pulse-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(45, 232, 192, 0.2); }
  50% { box-shadow: 0 0 30px rgba(45, 232, 192, 0.5); }
}

.animate-fade-up {
  animation: em-fade-up 0.6s ease both;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-inner { gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  
  .nav-menu { display: none; }
  .nav-actions .btn { display: none; }
  .nav-toggle { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid { grid-template-columns: 1fr; }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-legal-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .cta-section {
    padding: 40px 24px;
  }

  .phase-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; }
  .hero-stats { gap: 20px; }
}

/* ── ELEMENTOR COMPATIBILITY ── */
.elementor-section-wrap,
.elementor-widget-wrap {
  position: relative;
  z-index: 1;
}

/* Ensure Elementor full-width sections work */
.elementor-section.elementor-section-full_width {
  padding: 0;
}

/* Let Elementor override our section padding */
.elementor-section .section {
  padding: 0;
}

/* ── WORDPRESS ALIGNMENT CLASSES ── */
.alignnone { margin: 5px 20px 20px 0; }
.aligncenter { display: block; margin: 5px auto 5px auto; }
.alignright { float: right; margin: 5px 0 20px 20px; }
.alignleft { float: left; margin: 5px 20px 20px 0; }

.wp-caption { max-width: 96%; background: var(--panel); border: 1px solid var(--border); padding: 5px 3px 10px; text-align: center; border-radius: var(--radius); }
.wp-caption img { border: 0 none; height: auto; margin: 0; max-width: 98%; padding: 0; width: auto; }
.wp-caption p.wp-caption-text { font-size: 0.8rem; line-height: 17px; margin: 0; padding: 0 4px 5px; color: var(--text3); }

/* ── SKIP LINK (ACCESSIBILITY) ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 8px;
  z-index: 100000;
  padding: 10px 16px;
  background: var(--teal);
  color: #020a08;
  font-weight: 700;
  border-radius: 0 0 var(--radius) var(--radius);
  text-decoration: none;
  font-family: var(--font-display);
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* ── PRINT STYLES ── */
@media print {
  .site-header,
  .site-footer,
  .accessibility-bar,
  .scroll-top,
  .nav-mobile {
    display: none !important;
  }

  body {
    background: #fff !important;
    color: #000 !important;
  }

  a { color: #000; }
}

/* ══════════════════════════════════════════════════════
   PHASE 1 — HOMEPAGE + APP STYLES
   ellemotionindustries.ai · Elle Motion Industries © 2026
   ══════════════════════════════════════════════════════ */

/* ── HERO SECTION ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46,120,160,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,120,160,0.12) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: .5;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.08;
  margin-bottom: 22px;
  color: var(--white);
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--teal), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text2);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 3px;
}

.hero-stat-label {
  font-size: .75rem;
  color: var(--text3);
  letter-spacing: .5px;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

/* ── SECTION HEADERS ── */
.section-header.centered {
  text-align: center;
  margin-bottom: 44px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.section-lead {
  font-size: .98rem;
  color: var(--text2);
  max-width: 560px;
  margin: 0 auto;
}

/* ── FEATURE LIST ── */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--text2);
  padding: 3px 0;
}

.feature-list li::before {
  content: '→';
  color: var(--teal);
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 1px;
}

/* ── PHASE GRID ── */
.phase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.phase-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 24px;
  border-top: 3px solid var(--phase-color, var(--teal));
  transition: transform .3s, box-shadow .3s;
}

.phase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow2);
}

.phase-label {
  font-family: var(--font-mono);
  font-size: .7rem;
  color: var(--phase-color, var(--teal));
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.phase-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.phase-desc {
  font-size: .83rem;
  color: var(--text2);
  line-height: 1.6;
}

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, rgba(232,184,75,0.06), rgba(45,232,192,0.04));
  border: 1px solid rgba(232,184,75,0.2);
  border-radius: var(--radius2);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,184,75,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,184,75,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-lead {
  font-size: 1rem;
  color: var(--text2);
  max-width: 480px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}

/* ── CONTAINER SM ── */
.container-sm {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  z-index: 1;
}

/* ── SECTION SM ── */
.section-sm {
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

/* ── BTN DANGER ── */
.btn-danger {
  background: rgba(255,107,74,0.12);
  color: var(--coral);
  border: 1px solid rgba(255,107,74,0.3);
}
.btn-danger:hover {
  background: rgba(255,107,74,0.22);
  color: var(--coral);
}

/* ── FORM CONTROL (additions) ── */
.form-control {
  width: 100%;
  padding: 11px 15px;
  background: var(--panel);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: .92rem;
  outline: none;
  transition: border-color .2s;
}

.form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(45,232,192,0.1);
}

.form-control::placeholder { color: var(--text3); }

/* ── NOTICE CORAL ── */
.notice-coral {
  background: rgba(255,107,74,0.07);
  border: 1px solid rgba(255,107,74,0.25);
  color: var(--coral);
}

/* ── NOTICE PURPLE ── */
.notice-purple {
  background: rgba(167,139,250,0.07);
  border: 1px solid rgba(167,139,250,0.25);
  color: var(--purple);
}

/* ── BADGE LIVE PULSE ── */
.badge-live::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: blink 2s infinite;
  margin-right: 4px;
}

/* ── PAGE HERO ── */
.page-hero {
  padding: 100px 0 60px;
  background: var(--deep);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 12px;
}

.page-hero-lead {
  font-size: 1.1rem;
  color: var(--text2);
  max-width: 600px;
  font-weight: 300;
}

/* ── RESPONSIVE PHASE 1 ── */
@media (max-width: 1024px) {
  .phase-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .phase-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .cta-section { padding: 40px 20px; }
}

@media (max-width: 480px) {
  .phase-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 18px; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
}
