/* ═══════════════════════════════════════════════════════════
   SOLARIX — HOME PAGE
   Phase 2: Hero section
   Phase 3: Homepage sections (to be added)
   ═══════════════════════════════════════════════════════════ */


/* ── HERO ────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}


/* ── Fluid Organic Background ────────────────────────────── */
/*
   CSS-only atmospheric warm shapes. No canvas. No Three.js.
   Blurred, morphing border-radius + radial-gradient = molten amber.
*/

.hero-fluid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.fluid-shape {
  position: absolute;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%;
  filter: blur(80px);
  animation: fluid-morph 12s ease-in-out infinite;
  will-change: border-radius, transform;
}

/* Primary warm mass — top right, largest */
.fluid-shape--1 {
  width: 700px;
  height: 500px;
  top: -10%;
  right: -5%;
  background: radial-gradient(
    ellipse,
    rgba(255,107,43,0.18) 0%,
    rgba(232,48,42,0.10) 40%,
    transparent 70%
  );
  animation-duration: 14s;
}

/* Secondary warm mass — mid right, floats */
.fluid-shape--2 {
  width: 500px;
  height: 400px;
  top: 20%;
  right: 10%;
  background: radial-gradient(
    ellipse,
    rgba(255,107,43,0.12) 0%,
    rgba(232,48,42,0.06) 50%,
    transparent 75%
  );
  animation-duration: 18s;
  animation-delay: 3s;
}

/* Tertiary warm core — lower center-right, smallest */
.fluid-shape--3 {
  width: 300px;
  height: 300px;
  top: 50%;
  right: 25%;
  background: radial-gradient(
    ellipse,
    rgba(232,48,42,0.08) 0%,
    transparent 65%
  );
  animation-duration: 22s;
  animation-delay: 6s;
}

/* Cold accent — bottom left, counterbalance */
.fluid-cold-accent {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(45,106,255,0.08) 0%,
    transparent 65%
  );
  filter: blur(60px);
  animation: fluid-morph 16s ease-in-out infinite reverse;
  will-change: border-radius, transform;
}

@keyframes fluid-morph {
  0%, 100% {
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%;
    transform: translate(0, 0) scale(1);
  }
  33% {
    border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%;
    transform: translate(20px, -15px) scale(1.05);
  }
  66% {
    border-radius: 70% 30% 50% 50% / 30% 70% 60% 40%;
    transform: translate(-10px, 10px) scale(0.97);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fluid-shape,
  .fluid-cold-accent {
    animation: none;
  }
}


/* ── Hero Grain Overlay ───────────────────────────────────── */

.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}


/* ── Hero Content Panel ──────────────────────────────────── */
/*
   Spans full width of the container. The dual-glow-border class
   from components.css applies warm left / cold right glow strips.
*/

.hero-panel {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--sp-7);
}

.hero-panel-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sp-9);
  align-items: center;
  min-height: calc(100vh - var(--nav-height));
  padding: var(--sp-9) 0;
}


/* ── Hero Left Column ────────────────────────────────────── */

.hero-left {
  position: relative;
  z-index: 2;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(72px, 10.5vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin: var(--sp-5) 0;
}

.line-1 {
  display: block;
  color: var(--white);
}

.line-2 {
  display: block;
  background: var(--warm-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(255,107,43,0.3));
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  max-width: 420px;
  margin-bottom: var(--sp-7);
}

.hero-ctas {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  align-items: center;
}


/* ── Hero Right Column — Floating Stat Cards ─────────────── */
/*
   Three cards stacked with slight horizontal offsets to create
   depth and visual rhythm — like layered glass panels.
*/

.hero-right {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  position: relative;
}

.hero-stat-card {
  padding: var(--sp-6);
  cursor: default;
}

.hero-stat-card:nth-child(1) { margin-left: 0; }
.hero-stat-card:nth-child(2) { margin-left: 24px; }
.hero-stat-card:nth-child(3) { margin-left: 12px; }

.stat-number {
  font-family: var(--font-display);
  font-size: 56px;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--white-80);
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
  max-width: none;
}

.stat-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  max-width: none;
}


/* ── Scroll Indicator ────────────────────────────────────── */

.hero-scroll {
  position: absolute;
  bottom: var(--sp-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--warm-1), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
  transform-origin: top;
}

.scroll-label {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.4em;
  color: var(--muted);
  text-transform: uppercase;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-line {
    animation: none;
    opacity: 0.6;
  }
}


/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 1024px) {
  .hero-panel-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-7);
  }

  .hero-right {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-stat-card {
    flex: 1;
    min-width: 200px;
  }

  .hero-stat-card:nth-child(1),
  .hero-stat-card:nth-child(2),
  .hero-stat-card:nth-child(3) {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: clamp(52px, 14vw, 72px);
  }

  .hero-right {
    flex-direction: column;
  }

  .hero-stat-card {
    min-width: unset;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}


/* ═══════════════════════════════════════════════════════════
   PHASE 3 — HOMEPAGE SECTIONS
   ═══════════════════════════════════════════════════════════ */


/* ── 2. PROBLEM ──────────────────────────────────────────── */

.problem {
  background: var(--bg);
}

.problem-grid {
  display: grid;
  grid-template-columns: 42fr 58fr;
  gap: var(--sp-9);
  align-items: center;
}

.problem-headline {
  font-family: var(--font-display);
  letter-spacing: 0;
  line-height: 0.9;
  margin: var(--sp-5) 0 var(--sp-5);
}

.prob-line-1 {
  display: block;
  font-size: clamp(48px, 7vw, 72px);
  color: var(--white);
}

.prob-line-2 {
  display: block;
  font-size: clamp(60px, 9vw, 88px);
  filter: drop-shadow(0 0 40px rgba(255,107,43,0.25));
}

.prob-line-3 {
  display: block;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--white);
}

.problem-body {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  max-width: 340px;
}

.problem-right {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

/* Problem cards: cascade offsets. GSAP animates these in. */
.problem-card {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  opacity: 0; /* GSAP reveals */
}

.problem-card:nth-child(1) { margin-left: 0; }
.problem-card:nth-child(2) { margin-left: 32px; }
.problem-card:nth-child(3) { margin-left: 64px; }

.prob-stat {
  flex-shrink: 0;
  text-align: center;
  min-width: 80px;
}

.prob-stat-num {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 0.9;
  letter-spacing: 0.01em;
}

.prob-stat-unit {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.prob-content {
  flex: 1;
}

.prob-title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--sp-2);
  max-width: none;
  line-height: 1.4;
}

.prob-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  max-width: none;
}

@media (max-width: 1024px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-7);
  }
  .problem-card:nth-child(1),
  .problem-card:nth-child(2),
  .problem-card:nth-child(3) {
    margin-left: 0 !important;
  }
}

@media (max-width: 600px) {
  .problem-card {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-3);
  }
}


/* ── 3. SOLUTION ─────────────────────────────────────────── */

.solution {
  background: var(--surface);
}

.solution-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 14vw;
  color: var(--white-03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.02em;
  z-index: 0;
  line-height: 1;
}

.solution-grid {
  display: grid;
  grid-template-columns: 38fr 62fr;
  gap: var(--sp-8);
  align-items: center;
  position: relative;
  z-index: 2;
}

.solution-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 64px);
  line-height: 1.0;
  color: var(--white);
  margin: var(--sp-4) 0 0;
}

.solution-underline {
  width: 60px;
  height: 2px;
  background: var(--warm-gradient);
  margin: var(--sp-4) 0 var(--sp-5);
  box-shadow: 0 0 12px rgba(255,107,43,0.4);
}

.solution-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: var(--sp-5);
  max-width: 360px;
}

.solution-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.solution-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 14px;
  color: var(--white-80);
  line-height: 1.6;
  max-width: none;
}

.solution-features li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--warm-1);
  box-shadow: 0 0 6px var(--warm-1);
  flex-shrink: 0;
  margin-top: 7px;
}

/* Right column: depth glass effect */
.solution-right {
  position: relative;
}

/* Blur shapes behind the glass card */
.solution-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

.solution-blur--warm {
  top: -10%;
  right: -8%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255,107,43,0.3) 0%, transparent 70%);
}

.solution-blur--cold {
  bottom: -5%;
  left: -8%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(45,106,255,0.25) 0%, transparent 70%);
}

.dashboard-card {
  position: relative;
  z-index: 1;
  padding: var(--sp-5);
}

.dashboard-header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--border);
}

.dashboard-dots {
  display: flex;
  gap: 5px;
}

.dashboard-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--surface-3);
}

.dashboard-dots span:nth-child(1) { background: #FF5F57; }
.dashboard-dots span:nth-child(2) { background: #FFBD2E; }
.dashboard-dots span:nth-child(3) { background: #28C840; }

.dashboard-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--white-80);
  text-transform: uppercase;
  flex: 1;
}

.dashboard-status {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: #4ade80;
  text-transform: uppercase;
}

.dashboard-metrics {
  display: flex;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.metric-chip {
  flex: 1;
  background: var(--white-06);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-3);
  text-align: center;
}

.metric-chip--warm { border-color: rgba(255,107,43,0.2); }
.metric-chip--cold { border-color: rgba(45,106,255,0.2); }

.metric-val {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  margin-bottom: 4px;
}

.metric-lbl {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  max-width: none;
}

.dashboard-leads {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.lead-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-2) var(--sp-3);
  background: var(--white-03);
  border-radius: var(--r-sm);
  gap: var(--sp-3);
  transition: background var(--dur-fast);
}

.lead-row:hover {
  background: var(--white-06);
}

.lead-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--white-80);
  max-width: none;
  line-height: 1.3;
}

.lead-detail {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.05em;
  max-width: none;
}

.lead-badge {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  flex-shrink: 0;
}

.lead-badge--warm {
  background: rgba(255,107,43,0.12);
  border: 1px solid rgba(255,107,43,0.25);
  color: #FF8C5A;
}

.lead-badge--cold {
  background: rgba(45,106,255,0.12);
  border: 1px solid rgba(45,106,255,0.25);
  color: #6B9FFF;
}

.lead-badge--muted {
  background: var(--white-06);
  border: 1px solid var(--border);
  color: var(--muted);
}

.dashboard-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 56px;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border);
}

.chart-bar {
  flex: 1;
  background: var(--surface-3);
  border-radius: 3px 3px 0 0;
  height: var(--h, 50%);
  align-self: flex-end;
  transition: background var(--dur-mid);
}

.chart-bar--active {
  background: var(--warm-gradient);
  box-shadow: 0 0 8px rgba(255,107,43,0.3);
}

@media (max-width: 1024px) {
  .solution-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-7);
  }
  .solution-watermark {
    font-size: 18vw;
  }
}


/* ── 4. PROCESS TEASER ───────────────────────────────────── */

.process {
  background: linear-gradient(to bottom, var(--bg) 0%, var(--surface) 100%);
}

.process-header {
  text-align: center;
  margin-bottom: var(--sp-8);
}

.process-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 64px);
  line-height: 1.0;
  color: var(--white);
  margin-top: var(--sp-4);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-7);
  position: relative;
}

/* SVG connector spanning the full steps width, at icon level */
.process-connector {
  position: absolute;
  top: 84px; /* aligns with center of 56px icon: padding-top(64px) + half icon(28px) - viewbox(2px center) */
  left: 10%;
  right: 10%;
  width: 80%;
  height: 4px;
  pointer-events: none;
  z-index: 0;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding-top: var(--sp-8); /* space for watermark number above */
  z-index: 1;
}

.step-num {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 100px;
  line-height: 1;
  color: rgba(255,255,255,0.08);
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.02em;
  z-index: 0;
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  flex-shrink: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.step-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.01em;
}

.step-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 220px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .process-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-7);
  }
  .process-connector {
    display: none;
  }
  .process-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    padding-top: 0;
    gap: var(--sp-5);
  }
  .step-num {
    position: static;
    transform: none;
    font-size: 64px;
    flex-shrink: 0;
    line-height: 1.1;
  }
  .step-icon {
    margin-bottom: var(--sp-3);
    flex-shrink: 0;
  }
  .step-desc {
    max-width: none;
    margin: 0;
  }
}


/* ── 5. SERVICES PREVIEW ─────────────────────────────────── */

.services-preview {
  background: var(--surface);
}

.services-header {
  margin-bottom: var(--sp-8);
}

.services-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 88px);
  line-height: 0.9;
  margin-top: var(--sp-4);
}

.sh-line-1 {
  display: block;
  color: var(--white);
}

.sh-line-2 {
  display: block;
  filter: drop-shadow(0 0 30px rgba(255,107,43,0.2));
}

.services-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items: start;
}

.service-card {
  padding: var(--sp-7);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  cursor: default;
  transition: transform var(--dur-mid) var(--ease-out),
              border-color var(--dur-mid) var(--ease-out),
              box-shadow var(--dur-mid) var(--ease-out);
}

/* Override top border per variant */
.service-card--warm {
  border-top: 3px solid var(--warm-1) !important;
}

.service-card--cold {
  border-top: 3px solid var(--cold-1) !important;
}

/* Card 2 floats higher for depth */
.service-card--elevated {
  transform: translateY(-16px);
}

.service-card--elevated:hover {
  transform: translateY(-22px);
}

.service-badge {
  align-self: flex-start;
  margin-bottom: var(--sp-1);
}

.service-popular {
  align-self: flex-start;
  animation: pulse-cold 2s ease-in-out infinite;
}

@keyframes pulse-cold {
  0%, 100% { box-shadow: 0 0 8px rgba(45,106,255,0.25); }
  50%       { box-shadow: 0 0 20px rgba(45,106,255,0.55), 0 0 40px rgba(45,106,255,0.15); }
}

@media (prefers-reduced-motion: reduce) {
  .service-popular { animation: none; }
}

.service-title {
  font-family: var(--font-body);
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.service-price {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.price-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
  color: var(--white);
}

.price-mo {
  font-size: 20px;
  color: var(--muted);
}

.price-note {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--muted);
  text-transform: uppercase;
}

.price-plus {
  font-family: var(--font-body);
  font-size: 22px;
  color: var(--muted);
  align-self: center;
  padding-bottom: 14px; /* align with amount baseline */
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  flex: 1;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 14px;
  color: var(--white-80);
  line-height: 1.5;
  max-width: none;
}

.service-card--warm .service-features li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--warm-1);
  flex-shrink: 0;
  margin-top: 5px;
}

.service-card--cold .service-features li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cold-1);
  flex-shrink: 0;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .services-cards {
    grid-template-columns: 1fr;
  }
  .service-card--elevated {
    transform: none;
  }
  .service-card--elevated:hover {
    transform: translateY(-6px);
  }
}


/* ── 7. FINAL CTA ────────────────────────────────────────── */

.final-cta {
  background: var(--bg);
  text-align: center;
}

/* Fluid warm atmosphere */
.cta-fluid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-shape--1 {
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,107,43,0.15) 0%, transparent 65%);
  filter: blur(100px);
  animation: cta-pulse 8s ease-in-out infinite;
}

.cta-shape--2 {
  width: 400px;
  height: 400px;
  top: 30%;
  left: 60%;
  background: radial-gradient(circle, rgba(232,48,42,0.08) 0%, transparent 65%);
  filter: blur(80px);
  animation: cta-pulse 12s ease-in-out infinite reverse;
}

@keyframes cta-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50%       { transform: translate(-50%, -50%) scale(1.15); opacity: 0.7; }
}

.cta-shape--2 {
  animation: cta-pulse-2 12s ease-in-out infinite reverse;
}

@keyframes cta-pulse-2 {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.2); opacity: 0.6; }
}

@media (prefers-reduced-motion: reduce) {
  .cta-shape { animation: none; }
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: var(--sp-9) var(--sp-7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 80px);
  line-height: 0.95;
  margin: var(--sp-2) 0;
}

.cta-line-1 {
  display: block;
  color: var(--white);
}

.cta-line-2 {
  display: block;
  filter: drop-shadow(0 0 50px rgba(255,107,43,0.35));
}

.cta-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: var(--sp-2);
}

.cta-footnote {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--muted);
  text-transform: uppercase;
  max-width: none;
  margin-top: var(--sp-1);
}
