/* ==========================================================================
   Editorial - Landing Page Styles
   Supports Light & Dark themes
   ========================================================================== */

/* ==========================================================================
   BASE STYLES
   ========================================================================== */

.ed-landing {
  background: var(--ed-bg-primary);
  color: var(--ed-text-primary);
  min-height: 100vh;
  font-family: var(--ed-font-body);
  font-size: var(--ed-text-base);
  line-height: var(--ed-leading-normal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: var(--neo-nav-height, 72px); /* Account for unified fixed nav */
}

.ed-landing *,
.ed-landing *::before,
.ed-landing *::after {
  box-sizing: border-box;
}

/* ==========================================================================
   NAVIGATION
   Hidden - using unified wazzaf-nav component instead for consistency
   ========================================================================== */

.ed-nav {
  display: none !important;
}

.ed-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--ed-nav-height);
  z-index: var(--ed-z-fixed);
  transition: all var(--ed-duration-slow) var(--ed-ease-smooth);
}

.ed-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ed-nav-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--ed-duration-slow) var(--ed-ease-smooth);
}

.ed-nav.scrolled::before {
  background: var(--ed-nav-bg-scrolled);
  opacity: 1;
}

.ed-nav.scrolled {
  border-bottom: 1px solid var(--ed-border-default);
}

.ed-nav-inner {
  max-width: var(--ed-container-full);
  margin: 0 auto;
  padding: 0 var(--ed-space-8);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

/* Logo */
.ed-nav-logo {
  font-family: var(--ed-font-display);
  font-size: var(--ed-text-2xl);
  font-weight: var(--ed-font-bold);
  color: var(--ed-text-primary);
  text-decoration: none;
  letter-spacing: var(--ed-tracking-tight);
  display: flex;
  align-items: center;
  gap: var(--ed-space-3);
  transition: color var(--ed-duration-fast) var(--ed-ease-default);
}

.ed-nav-logo:hover {
  color: var(--ed-coral);
}

.ed-nav-logo-icon {
  font-size: var(--ed-text-3xl);
}

/* Nav Links */
.ed-nav-links {
  display: flex;
  align-items: center;
  gap: var(--ed-space-1);
}

.ed-nav-link {
  font-family: var(--ed-font-body);
  font-size: var(--ed-text-sm);
  font-weight: var(--ed-font-medium);
  color: var(--ed-text-tertiary);
  text-decoration: none;
  padding: var(--ed-space-3) var(--ed-space-4);
  border-radius: var(--ed-radius-base);
  text-transform: uppercase;
  letter-spacing: var(--ed-tracking-wider);
  transition: all var(--ed-duration-fast) var(--ed-ease-default);
  position: relative;
}

.ed-nav-link::after {
  content: '';
  position: absolute;
  bottom: var(--ed-space-2);
  left: var(--ed-space-4);
  right: var(--ed-space-4);
  height: 1px;
  background: var(--ed-coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--ed-duration-base) var(--ed-ease-default);
}

.ed-nav-link:hover {
  color: var(--ed-text-primary);
}

.ed-nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Nav CTA */
.ed-nav-cta {
  display: flex;
  align-items: center;
  gap: var(--ed-space-3);
}

/* Nav Actions - Container for theme toggle and CTA */
.ed-nav-actions {
  display: flex;
  align-items: center;
  gap: var(--ed-space-4);
}

/* ==========================================================================
   THEME TOGGLE
   ========================================================================== */

.ed-theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--ed-surface);
  border: 1px solid var(--ed-border-default);
  border-radius: var(--ed-radius-full);
  cursor: pointer;
  transition: all var(--ed-duration-base) var(--ed-ease-default);
  position: relative;
  overflow: hidden;
}

.ed-theme-toggle:hover {
  background: var(--ed-surface-hover);
  border-color: var(--ed-coral);
  transform: scale(1.05);
}

.ed-theme-toggle:active {
  transform: scale(0.95);
}

.ed-theme-toggle-icon {
  width: 22px;
  height: 22px;
  position: relative;
}

/* Sun icon */
.ed-theme-toggle-sun {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--ed-toggle-sun);
  transition: all var(--ed-duration-base) var(--ed-ease-default);
}

/* Moon icon */
.ed-theme-toggle-moon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--ed-toggle-moon);
  transition: all var(--ed-duration-base) var(--ed-ease-default);
}

/* Dark mode - show moon, hide sun */
[data-theme="dark"] .ed-theme-toggle-sun {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-90deg) scale(0);
}

[data-theme="dark"] .ed-theme-toggle-moon {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0) scale(1);
}

/* Light mode - show sun, hide moon */
[data-theme="light"] .ed-theme-toggle-sun {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0) scale(1);
}

[data-theme="light"] .ed-theme-toggle-moon {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scale(0);
}

/* Hamburger */
.ed-nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: var(--ed-z-modal);
}

.ed-nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ed-text-primary);
  border-radius: var(--ed-radius-full);
  transition: all var(--ed-duration-base) var(--ed-ease-default);
  transform-origin: center;
}

.ed-nav-hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.ed-nav-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.ed-nav-hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.ed-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--ed-space-2);
  padding: var(--ed-space-3) var(--ed-space-6);
  font-family: var(--ed-font-body);
  font-size: var(--ed-text-sm);
  font-weight: var(--ed-font-semibold);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: var(--ed-tracking-wider);
  border-radius: var(--ed-radius-base);
  border: none;
  cursor: pointer;
  transition: all var(--ed-duration-base) var(--ed-ease-default);
  position: relative;
  overflow: hidden;
}

.ed-btn-primary {
  background: var(--ed-coral);
  color: #0A0A0A;
  box-shadow: var(--ed-shadow-coral);
}

.ed-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--ed-duration-fast) var(--ed-ease-default);
}

.ed-btn-primary:hover {
  background: var(--ed-coral-light);
  box-shadow: var(--ed-shadow-coral-lg);
  transform: translateY(-2px);
}

.ed-btn-primary:hover::before {
  opacity: 1;
}

.ed-btn-secondary {
  background: transparent;
  color: var(--ed-text-primary);
  border: 1px solid var(--ed-border-strong);
}

.ed-btn-secondary:hover {
  background: var(--ed-text-primary);
  color: var(--ed-bg-primary);
  border-color: var(--ed-text-primary);
}

.ed-btn-ghost {
  background: transparent;
  color: var(--ed-text-tertiary);
  padding: var(--ed-space-2) var(--ed-space-4);
}

.ed-btn-ghost:hover {
  color: var(--ed-text-primary);
}

.ed-btn-lg {
  padding: var(--ed-space-4) var(--ed-space-8);
  font-size: var(--ed-text-base);
}

.ed-btn-xl {
  padding: var(--ed-space-5) var(--ed-space-10);
  font-size: var(--ed-text-lg);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.ed-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.ed-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--ed-space-32) var(--ed-space-16) var(--ed-space-20);
  padding-left: max(var(--ed-space-16), calc((100vw - var(--ed-container-full)) / 2 + var(--ed-space-8)));
  position: relative;
  z-index: 2;
}

.ed-hero-eyebrow {
  font-family: var(--ed-font-body);
  font-size: var(--ed-text-xs);
  font-weight: var(--ed-font-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ed-tracking-ultra);
  color: var(--ed-coral);
  margin-bottom: var(--ed-space-6);
  display: flex;
  align-items: center;
  gap: var(--ed-space-3);
}

.ed-hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--ed-coral);
}

.ed-hero-headline {
  font-family: var(--ed-font-display);
  font-size: clamp(var(--ed-text-5xl), 8vw, var(--ed-text-8xl));
  font-weight: var(--ed-font-bold);
  line-height: var(--ed-leading-tight);
  letter-spacing: var(--ed-tracking-tight);
  color: var(--ed-text-primary);
  margin-bottom: var(--ed-space-8);
  max-width: 12ch;
}

.ed-hero-headline em {
  font-style: normal;
  color: var(--ed-coral);
}

.ed-hero-subhead {
  font-family: var(--ed-font-body);
  font-size: var(--ed-text-xl);
  font-weight: var(--ed-font-normal);
  line-height: var(--ed-leading-relaxed);
  color: var(--ed-text-secondary);
  margin-bottom: var(--ed-space-10);
  max-width: 480px;
}

.ed-hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--ed-space-4);
  margin-bottom: var(--ed-space-12);
}

.ed-hero-trust {
  font-size: var(--ed-text-sm);
  color: var(--ed-text-muted);
  display: flex;
  align-items: center;
  gap: var(--ed-space-2);
}

.ed-hero-trust-check {
  color: var(--ed-success);
}

.ed-hero-visual {
  position: relative;
  background: var(--ed-bg-secondary);
  overflow: hidden;
}

.ed-hero-watermark {
  position: absolute;
  right: -10%;
  bottom: -10%;
  font-family: var(--ed-font-display);
  font-size: clamp(20rem, 40vw, 50rem);
  font-weight: var(--ed-font-bold);
  line-height: 0.8;
  color: var(--ed-watermark);
  pointer-events: none;
  user-select: none;
  z-index: 1;
  opacity: 0.08; /* BUG-010 FIX: Make watermark very subtle as background decoration */
}

.ed-hero-stats {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  z-index: 2;
  overflow: hidden;
}

.ed-hero-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--ed-space-6) var(--ed-space-8);
  border-bottom: 1px solid var(--ed-border-default);
  position: relative;
  transition: background var(--ed-duration-slow) var(--ed-ease-default);
  overflow: hidden;
  min-height: 0;
}

.ed-hero-stat:last-child {
  border-bottom: none;
}

.ed-hero-stat:hover {
  background: var(--ed-coral-glow);
}

.ed-hero-stat-value {
  font-family: var(--ed-font-display);
  font-size: clamp(var(--ed-text-3xl), 4vw, var(--ed-text-5xl));
  font-weight: var(--ed-font-bold);
  color: var(--ed-text-primary);
  line-height: 1;
  margin-bottom: var(--ed-space-1);
}

.ed-hero-stat-label {
  font-family: var(--ed-font-body);
  font-size: var(--ed-text-sm);
  font-weight: var(--ed-font-medium);
  text-transform: uppercase;
  letter-spacing: var(--ed-tracking-widest);
  color: var(--ed-text-tertiary);
}

.ed-hero-stat-desc {
  font-size: var(--ed-text-sm);
  color: var(--ed-text-muted);
  margin-top: var(--ed-space-2);
  max-width: 280px;
}

/* ==========================================================================
   MARQUEE
   ========================================================================== */

.ed-marquee {
  background: var(--ed-marquee-bg);
  border-top: 1px solid var(--ed-border-default);
  border-bottom: 1px solid var(--ed-border-default);
  padding: var(--ed-space-8) 0;
  overflow: hidden;
  position: relative;
}

.ed-marquee::before,
.ed-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.ed-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--ed-marquee-bg), transparent);
}

.ed-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--ed-marquee-bg), transparent);
}

.ed-marquee-track {
  display: flex;
  animation: ed-marquee 30s linear infinite;
  width: max-content;
}

@keyframes ed-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ed-marquee-item {
  flex-shrink: 0;
  padding: 0 var(--ed-space-12);
  display: flex;
  align-items: center;
  gap: var(--ed-space-3);
}

.ed-marquee-logo {
  font-family: var(--ed-font-body);
  font-size: var(--ed-text-xl);
  font-weight: var(--ed-font-bold);
  color: var(--ed-marquee-text);
  white-space: nowrap;
  transition: color var(--ed-duration-fast) var(--ed-ease-default);
}

.ed-marquee-item:hover .ed-marquee-logo {
  color: var(--ed-marquee-text-hover);
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */

.ed-features {
  padding: var(--ed-space-32) 0;
  position: relative;
}

.ed-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 120px;
  background: linear-gradient(180deg, var(--ed-coral), transparent);
}

.ed-container {
  max-width: var(--ed-container-full);
  margin: 0 auto;
  padding: 0 var(--ed-space-8);
}

.ed-section-header {
  max-width: 800px;
  margin: 0 auto var(--ed-space-20);
  text-align: center;
  position: relative;
  z-index: 5;
}

.ed-section-eyebrow {
  font-family: var(--ed-font-body);
  font-size: var(--ed-text-xs);
  font-weight: var(--ed-font-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ed-tracking-ultra);
  color: var(--ed-coral);
  margin-bottom: var(--ed-space-4);
}

.ed-section-title {
  font-family: var(--ed-font-display);
  font-size: clamp(var(--ed-text-4xl), 5vw, var(--ed-text-6xl));
  font-weight: var(--ed-font-bold);
  line-height: var(--ed-leading-tight);
  letter-spacing: var(--ed-tracking-tight);
  color: var(--ed-text-primary);
  margin-bottom: var(--ed-space-6);
  position: relative;
  z-index: 5;
}

.ed-section-title em {
  font-style: normal;
  color: var(--ed-coral);
}

.ed-section-desc {
  font-size: var(--ed-text-lg);
  color: var(--ed-text-secondary);
  line-height: var(--ed-leading-relaxed);
}

.ed-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--ed-space-1);
}

.ed-feature-card {
  background: var(--ed-card-bg);
  padding: var(--ed-space-12);
  position: relative;
  overflow: hidden;
  transition: all var(--ed-duration-slow) var(--ed-ease-default);
  border: 1px solid transparent;
}

.ed-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--ed-coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ed-duration-slow) var(--ed-ease-default);
}

.ed-feature-card:hover {
  background: var(--ed-card-bg-hover);
  border-color: var(--ed-card-border);
}

.ed-feature-card:hover::before {
  transform: scaleX(1);
}

.ed-feature-number {
  font-family: var(--ed-font-display);
  font-size: var(--ed-text-7xl);
  font-weight: var(--ed-font-bold);
  color: var(--ed-feature-number);
  line-height: 1;
  margin-bottom: var(--ed-space-8);
  transition: color var(--ed-duration-slow) var(--ed-ease-default);
}

.ed-feature-card:hover .ed-feature-number {
  color: var(--ed-feature-number-hover);
}

.ed-feature-title {
  font-family: var(--ed-font-display);
  font-size: var(--ed-text-2xl);
  font-weight: var(--ed-font-semibold);
  color: var(--ed-text-primary);
  margin-bottom: var(--ed-space-4);
  line-height: var(--ed-leading-snug);
}

.ed-feature-desc {
  font-size: var(--ed-text-base);
  color: var(--ed-text-secondary);
  line-height: var(--ed-leading-relaxed);
  margin-bottom: var(--ed-space-8);
}

.ed-feature-link {
  font-size: var(--ed-text-sm);
  font-weight: var(--ed-font-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ed-tracking-wider);
  color: var(--ed-coral);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--ed-space-2);
  transition: gap var(--ed-duration-fast) var(--ed-ease-default);
}

.ed-feature-link:hover {
  gap: var(--ed-space-4);
}

/* ==========================================================================
   PROCESS SECTION
   ========================================================================== */

.ed-process {
  padding: var(--ed-space-32) 0;
  background: var(--ed-bg-secondary);
  position: relative;
}

.ed-process-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--ed-space-20);
  align-items: start;
}

.ed-process-sticky {
  position: sticky;
  top: calc(var(--ed-nav-height) + var(--ed-space-10));
}

.ed-process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ed-process-step {
  padding: var(--ed-space-12) 0;
  border-top: 1px solid var(--ed-border-default);
  position: relative;
  opacity: 0.4;
  transition: opacity var(--ed-duration-slow) var(--ed-ease-default);
}

.ed-process-step:last-child {
  border-bottom: 1px solid var(--ed-border-default);
}

.ed-process-step.active,
.ed-process-step:hover {
  opacity: 1;
}

.ed-process-step-header {
  display: flex;
  align-items: flex-start;
  gap: var(--ed-space-6);
  margin-bottom: var(--ed-space-4);
}

.ed-process-step-number {
  font-family: var(--ed-font-display);
  font-size: var(--ed-text-4xl);
  font-weight: var(--ed-font-bold);
  color: var(--ed-coral);
  line-height: 1;
  min-width: 60px;
}

.ed-process-step-title {
  font-family: var(--ed-font-display);
  font-size: var(--ed-text-3xl);
  font-weight: var(--ed-font-semibold);
  color: var(--ed-text-primary);
  line-height: var(--ed-leading-tight);
}

.ed-process-step-desc {
  font-size: var(--ed-text-base);
  color: var(--ed-text-secondary);
  line-height: var(--ed-leading-relaxed);
  padding-left: calc(60px + var(--ed-space-6));
}

.ed-process-step-metrics {
  display: flex;
  gap: var(--ed-space-8);
  margin-top: var(--ed-space-6);
  padding-left: calc(60px + var(--ed-space-6));
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--ed-duration-base) var(--ed-ease-default);
}

.ed-process-step:hover .ed-process-step-metrics,
.ed-process-step.active .ed-process-step-metrics {
  opacity: 1;
  transform: translateY(0);
}

.ed-process-metric {
  display: flex;
  flex-direction: column;
}

.ed-process-metric-value {
  font-family: var(--ed-font-display);
  font-size: var(--ed-text-2xl);
  font-weight: var(--ed-font-bold);
  color: var(--ed-coral);
}

.ed-process-metric-label {
  font-size: var(--ed-text-xs);
  text-transform: uppercase;
  letter-spacing: var(--ed-tracking-wider);
  color: var(--ed-text-muted);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.ed-testimonials {
  padding: var(--ed-space-32) 0;
  position: relative;
  overflow: hidden;
}

.ed-testimonials::before {
  content: '"';
  position: absolute;
  top: -5%;
  left: 5%;
  font-family: var(--ed-font-display);
  font-size: clamp(20rem, 50vw, 60rem);
  font-weight: var(--ed-font-bold);
  color: var(--ed-bg-secondary);
  line-height: 1;
  pointer-events: none;
  z-index: -1;
}

.ed-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--ed-space-8);
  position: relative;
  z-index: 1;
}

.ed-testimonial {
  background: var(--ed-card-bg);
  border: 1px solid var(--ed-card-border);
  padding: var(--ed-space-10);
  position: relative;
  z-index: 2;
  transition: all var(--ed-duration-slow) var(--ed-ease-default);
}

.ed-testimonial:hover {
  border-color: var(--ed-coral);
  background: var(--ed-card-bg-hover);
}

.ed-testimonial-quote {
  font-family: var(--ed-font-display);
  font-size: var(--ed-text-xl);
  font-weight: var(--ed-font-normal);
  color: var(--ed-text-primary);
  line-height: var(--ed-leading-relaxed);
  margin-bottom: var(--ed-space-8);
  position: relative;
  z-index: 3;
}

.ed-testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--ed-space-4);
}

.ed-testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--ed-coral);
  border-radius: var(--ed-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ed-font-body);
  font-size: var(--ed-text-lg);
  font-weight: var(--ed-font-bold);
  color: #0A0A0A;
}

.ed-testimonial-info {
  flex: 1;
}

.ed-testimonial-name {
  font-family: var(--ed-font-body);
  font-size: var(--ed-text-base);
  font-weight: var(--ed-font-semibold);
  color: var(--ed-text-primary);
  margin-bottom: var(--ed-space-1);
}

.ed-testimonial-role {
  font-size: var(--ed-text-sm);
  color: var(--ed-text-muted);
}

.ed-testimonial.featured {
  grid-column: span 2;
  padding: var(--ed-space-16);
  text-align: center;
  background: linear-gradient(135deg, var(--ed-card-bg), var(--ed-card-bg-hover));
}

.ed-testimonial.featured .ed-testimonial-quote {
  font-size: var(--ed-text-3xl);
  max-width: 900px;
  margin: 0 auto var(--ed-space-10);
}

.ed-testimonial.featured .ed-testimonial-author {
  justify-content: center;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.ed-cta {
  padding: var(--ed-space-40) 0;
  position: relative;
  overflow: hidden;
}

.ed-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--ed-coral-glow) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ed-cta-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.ed-cta-headline {
  font-family: var(--ed-font-display);
  font-size: clamp(var(--ed-text-5xl), 7vw, var(--ed-text-7xl));
  font-weight: var(--ed-font-bold);
  line-height: var(--ed-leading-tight);
  letter-spacing: var(--ed-tracking-tight);
  color: var(--ed-text-primary);
  margin-bottom: var(--ed-space-6);
}

.ed-cta-headline em {
  font-style: normal;
  color: var(--ed-coral);
}

.ed-cta-desc {
  font-size: var(--ed-text-xl);
  color: var(--ed-text-secondary);
  line-height: var(--ed-leading-relaxed);
  margin-bottom: var(--ed-space-10);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ed-cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--ed-space-4);
  flex-wrap: wrap;
  margin-bottom: var(--ed-space-8);
}

.ed-cta-note {
  font-size: var(--ed-text-sm);
  color: var(--ed-text-muted);
}

.ed-cta-note a {
  color: var(--ed-coral);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ed-cta-note a:hover {
  color: var(--ed-coral-light);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.ed-footer {
  background: var(--ed-footer-bg);
  border-top: 1px solid var(--ed-border-default);
  padding: var(--ed-space-20) 0 var(--ed-space-10);
}

.ed-footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: var(--ed-space-12);
  margin-bottom: var(--ed-space-16);
}

.ed-footer-brand {
  max-width: 280px;
}

.ed-footer-logo {
  font-family: var(--ed-font-display);
  font-size: var(--ed-text-2xl);
  font-weight: var(--ed-font-bold);
  color: var(--ed-text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--ed-space-3);
  margin-bottom: var(--ed-space-4);
}

.ed-footer-tagline {
  font-size: var(--ed-text-sm);
  color: var(--ed-text-muted);
  line-height: var(--ed-leading-relaxed);
}

.ed-footer-column h4 {
  font-family: var(--ed-font-body);
  font-size: var(--ed-text-xs);
  font-weight: var(--ed-font-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ed-tracking-widest);
  color: var(--ed-text-primary);
  margin-bottom: var(--ed-space-4);
}

.ed-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--ed-space-3);
}

.ed-footer-link {
  font-size: var(--ed-text-sm);
  color: var(--ed-text-tertiary);
  text-decoration: none;
  transition: color var(--ed-duration-fast) var(--ed-ease-default);
}

.ed-footer-link:hover {
  color: var(--ed-coral);
}

.ed-footer-bottom {
  padding-top: var(--ed-space-8);
  border-top: 1px solid var(--ed-border-default);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--ed-space-4);
}

.ed-footer-copyright {
  font-size: var(--ed-text-sm);
  color: var(--ed-text-muted);
}

.ed-footer-legal {
  display: flex;
  gap: var(--ed-space-6);
}

.ed-footer-legal a {
  font-size: var(--ed-text-sm);
  color: var(--ed-text-muted);
  text-decoration: none;
  transition: color var(--ed-duration-fast) var(--ed-ease-default);
}

.ed-footer-legal a:hover {
  color: var(--ed-coral);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

.ed-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--ed-duration-slower) var(--ed-ease-out);
}

.ed-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.ed-fade-in-delay-1 { transition-delay: 100ms; }
.ed-fade-in-delay-2 { transition-delay: 200ms; }
.ed-fade-in-delay-3 { transition-delay: 300ms; }
.ed-fade-in-delay-4 { transition-delay: 400ms; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1400px) {
  .ed-hero-stat { padding: var(--ed-space-4) var(--ed-space-6); }
  .ed-hero-stat-value { font-size: clamp(var(--ed-text-2xl), 3vw, var(--ed-text-4xl)); }
  .ed-hero-stat-desc { max-width: 200px; font-size: var(--ed-text-xs); }
}

@media (max-width: 1200px) {
  .ed-features-grid { grid-template-columns: repeat(2, 1fr); }
  .ed-process-grid { grid-template-columns: 1fr; }
  .ed-process-sticky { position: static; }
  .ed-hero-stat { padding: var(--ed-space-3) var(--ed-space-5); }
  .ed-hero-stat-value { font-size: var(--ed-text-2xl); }
  .ed-hero-stat-label { font-size: var(--ed-text-xs); }
  .ed-hero-stat-desc { display: none; }
}

@media (max-width: 1024px) {
  .ed-hero { grid-template-columns: 1fr; min-height: auto; }
  .ed-hero-content { padding: calc(var(--ed-nav-height) + var(--ed-space-12)) var(--ed-space-8) var(--ed-space-16); }
  .ed-hero-visual { min-height: 350px; }
  .ed-hero-stats { flex-direction: row; }
  .ed-hero-stat { border-bottom: none; border-right: 1px solid var(--ed-border-default); padding: var(--ed-space-4); }
  .ed-hero-stat:last-child { border-right: none; }
  .ed-hero-stat-value { font-size: var(--ed-text-2xl); }
  .ed-hero-stat-desc { display: block; font-size: var(--ed-text-xs); max-width: 150px; }
  .ed-footer-grid { grid-template-columns: repeat(2, 1fr); gap: var(--ed-space-8); }
  .ed-footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .ed-nav-links { display: none; }
  .ed-nav-hamburger { display: flex; }
  .ed-nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--ed-nav-height);
    left: 0;
    right: 0;
    background: var(--ed-bg-primary);
    border-bottom: 1px solid var(--ed-border-default);
    padding: var(--ed-space-6);
    gap: var(--ed-space-2);
  }
  .ed-nav-link { padding: var(--ed-space-4); text-align: center; }
  .ed-nav-actions { gap: var(--ed-space-3); }
  .ed-nav-cta { display: none; }
  .ed-theme-toggle {
    width: 40px;
    height: 40px;
  }
  .ed-hero-headline { max-width: none; }
  .ed-hero-stats { flex-direction: column; }
  .ed-hero-stat { border-right: none; border-bottom: 1px solid var(--ed-border-default); padding: var(--ed-space-4); }
  .ed-hero-stat-desc { display: block; max-width: none; }
  .ed-features-grid { grid-template-columns: 1fr; }
  .ed-feature-card { padding: var(--ed-space-8); }
  .ed-testimonials-grid { grid-template-columns: 1fr; }
  .ed-testimonial.featured { grid-column: span 1; padding: var(--ed-space-8); }
  .ed-testimonial.featured .ed-testimonial-quote { font-size: var(--ed-text-xl); }
  .ed-footer-grid { grid-template-columns: 1fr; }
  .ed-footer-brand { grid-column: span 1; max-width: none; }
  .ed-footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .ed-hero-content { padding: calc(var(--ed-nav-height) + var(--ed-space-8)) var(--ed-space-5) var(--ed-space-12); }
  .ed-hero-cta { flex-direction: column; width: 100%; }
  .ed-hero-cta .ed-btn { width: 100%; }
  .ed-cta-buttons { flex-direction: column; width: 100%; }
  .ed-cta-buttons .ed-btn { width: 100%; }
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */

.ed-text-gradient {
  background: linear-gradient(135deg, var(--ed-coral) 0%, var(--ed-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ed-glow { box-shadow: var(--ed-shadow-glow); }

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

/* ==========================================================================
   GLOBAL OVERRIDES
   ========================================================================== */

.main-content.editorial-landing ~ .footer-soft,
.editorial-landing ~ .footer-soft,
body:has(.ed-landing) .nav-soft,
body:has(.ed-landing) .footer-soft { display: none !important; }

.main-content.editorial-landing {
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

.main-content.editorial-landing + .footer-soft,
.app:has(.ed-landing) > .nav-soft,
.app:has(.ed-landing) > .footer-soft { display: none !important; }

.ed-landing {
  min-height: 100vh;
  width: 100%;
  margin-left: 0;
}

#page-content:has(.ed-landing) {
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
