/* WordPress-safe landing CSS
   - All styles are scoped under .cl-landing
   - All classes are prefixed with cl-
   - No generic .container/.btn collisions
*/

.cl-landing {
  --cl-bg: #000000;
  --cl-yellow: #ffb400;
  --cl-text: rgba(255, 255, 255, 0.92);
  --cl-muted: rgba(255, 255, 255, 0.68);
  --cl-muted2: rgba(255, 255, 255, 0.55);
  --cl-border: rgba(255, 255, 255, 0.12);

  --cl-max: 80rem;
  --cl-radius-xl: 16px;
  --cl-radius-2xl: 20px;
  --cl-radius-3xl: 28px;

  --cl-shadow-yellow: 0 20px 60px rgba(255, 180, 0, 0.18);
  --cl-shadow-soft: 0 30px 80px rgba(0, 0, 0, 0.45);

  color: var(--cl-text);
  background: var(--cl-bg);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

.cl-landing,
.cl-landing * {
  box-sizing: border-box;
}

.cl-landing a {
  color: inherit;
  text-decoration: none;
}

.cl-container {
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 16px;
}

.cl-section {
  position: relative;
  width: 100%;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .cl-landing * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Reveal animations ---------- */
.cl-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: opacity, transform;
}

.cl-reveal.cl-show {
  opacity: 1;
  transform: translateY(0);
}

.cl-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.cl-reveal-right.cl-show {
  opacity: 1;
  transform: translateX(0);
}

.cl-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 900ms ease, transform 900ms ease;
}

.cl-reveal-left.cl-show {
  opacity: 1;
  transform: translateX(0);
}

.cl-delay-100 {
  transition-delay: 100ms;
}

.cl-delay-200 {
  transition-delay: 200ms;
}

.cl-delay-300 {
  transition-delay: 300ms;
}

.cl-delay-400 {
  transition-delay: 400ms;
}

.cl-delay-500 {
  transition-delay: 500ms;
}

.cl-delay-600 {
  transition-delay: 600ms;
}

.cl-delay-700 {
  transition-delay: 700ms;
}

.cl-delay-800 {
  transition-delay: 800ms;
}

/* ---------- Buttons ---------- */
.cl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 14px;
  padding: 1rem 2rem;
  border: 2px solid transparent;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease,
    box-shadow 180ms ease;
  outline: none;
}

.cl-btn:focus-visible {
  box-shadow: 0 0 0 4px rgba(255, 180, 0, 0.28);
}

.cl-btn:hover {
  transform: scale(1.03);
}

.cl-btn-primary {
  background: var(--cl-yellow);
  color: #000;
  box-shadow: 0 12px 30px rgb(255 180 0 / .2);
}

.cl-btn-primary:hover {
  background: rgba(255, 180, 0, 0.92);
}

.cl-btn-glass {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.cl-btn-glass:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
}

.cl-btn-outline {
  background: transparent;
  color: var(--cl-yellow);
  border-color: var(--cl-yellow);
}

.cl-btn-outline:hover {
  background: rgba(255, 180, 0, 0.08);
}

/* ---------- HERO ---------- */
.cl-hero {
  min-height: 60vh;
  padding-top: 7rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

.cl-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 1024px) {
  .cl-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

.cl-stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.cl-stack-tight {
  gap: 14px;
}

.cl-h1 {
  margin: 0;
  font-weight: 1000;
  letter-spacing: -0.04em;
  line-height: 0.95;
  font-size: 6rem;
}

.cl-h2 {
  margin: 0 0 14px 0;
  font-size: clamp(34px, 4vw, 64px);
  font-weight: 1000;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.cl-h2-center {
  text-align: center;
}

.cl-accent {
  color: var(--cl-yellow);
}

.cl-lead {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.cl-sub {
  margin: 10px 0 0;
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

.cl-highlight {
  color: var(--cl-yellow);
  font-weight: 900;
}

.cl-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cl-sep {
  color: rgba(255, 255, 255, 0.25);
}

/* Geometric background */
.cl-bg-geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cl-geo-yellow {
  position: absolute;
  top: 80px;
  right: -120px;
  width: 600px;
  height: 600px;
  border: 40px solid var(--cl-yellow);
  border-radius: 24px;
  transform: rotate(45deg);
  opacity: 0;
  animation: cl-geoPop 1200ms ease forwards;
  animation-delay: 100ms;
}

.cl-geo-white {
  position: absolute;
  bottom: -60px;
  left: -90px;
  width: 400px;
  height: 400px;
  border: 30px solid rgba(255, 255, 255, 0.95);
  transform: rotate(12deg);
  opacity: 0;
  animation: cl-geoSlide 1200ms ease forwards;
  animation-delay: 250ms;
}

@keyframes cl-geoPop {
  from {
    opacity: 0;
    transform: rotate(45deg) scale(0.85);
  }

  to {
    opacity: 0.03;
    transform: rotate(45deg) scale(1);
  }
}

@keyframes cl-geoSlide {
  from {
    opacity: 0;
    transform: rotate(12deg) translateX(-80px);
  }

  to {
    opacity: 0.02;
    transform: rotate(12deg) translateX(0px);
  }
}

/* Pills */
.cl-pill-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cl-pill {
  border-radius: 18px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  transition: border-color 200ms ease;
}

.cl-pill:hover {
  border-color: rgba(255, 180, 0, 0.30);
}

.cl-pill-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cl-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--cl-yellow);
  flex: 0 0 auto;
}

.cl-pill p {
  margin: 0;
  color: #000;
  font-size: 18px;
  font-weight: 700;
}

/* ---------- FEATURES ---------- */
.cl-features {
  padding: 4rem 0 5rem 0;
  overflow: hidden;
}

.cl-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  pointer-events: none;
  background-image: linear-gradient(var(--cl-yellow) 1px, transparent 1px),
    linear-gradient(90deg, var(--cl-yellow) 1px, transparent 1px);
  background-size: 50px 50px;
}

.cl-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.cl-cards-spaced {
  margin-top: 30px;
}

@media (max-width: 1024px) {
  .cl-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .cl-cards {
    grid-template-columns: 1fr;
  }
}

.cl-feature-card {
  position: relative;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid rgba(255, 180, 0, 0.22);
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
  overflow: hidden;
  transition: border-color 220ms ease, transform 220ms ease;
}

.cl-feature-card:hover {
  border-color: rgba(255, 180, 0, 0.55);
  transform: translateY(-2px);
}

.cl-feature-diag {
  position: absolute;
  top: 0;
  right: 0;
  width: 96px;
  height: 96px;
  background: rgba(255, 180, 0, 0.05);
  transform: rotate(48deg) translate(2px, -70px);
  transition: background 200ms ease;
}

.cl-feature-card:hover .cl-feature-diag {
  background: rgba(255, 180, 0, 0.10);
}

.cl-feature-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 8px;
  height: 64px;
  background: var(--cl-yellow);
}

.cl-feature-content {
  position: relative;
  z-index: 1;
}

.cl-h3 {
  margin: 0 0 12px 0;
  font-size: 22px;
  font-weight: 1000;
  color: var(--cl-yellow);
}

.cl-feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  font-size: 16px;
}

/* ---------- AUDIENCE ---------- */
.cl-audience {
  padding: 4rem 0 5rem 0;
  background: #fff;
  color: #000;
  position: relative;
  overflow: hidden;
}

.cl-bg-split {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, #f7f7f7 0%, #ffffff 60%);
}

.cl-skew {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 180, 0, 0.05);
  transform: skewX(12deg);
  transform-origin: top right;
}

.cl-audience-content {
  position: relative;
  z-index: 1;
}

.cl-audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 980px;
  margin: 0 auto;
}

@media (max-width: 820px) {
  .cl-audience-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cl-skew {
    width: 100%;
    transform: skewX(0);
  }
}

.cl-aud-card {
  position: relative;
  background: #fff;
  border-radius: 28px;
  padding: 30px;
  border: 4px solid #000;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.12);
  transition: transform 220ms ease;
}

.cl-aud-card:hover {
  transform: scale(1.03);
}

.cl-aud-accent {
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 8px;
  background: var(--cl-yellow);
  border-radius: 999px;
  transform: translateY(-50%);
}

.cl-aud-h3 {
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 1000;
  color: #000;
}

.cl-aud-card p {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  color: #3a3a3a;
}

.cl-aud-corner {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  border: 4px solid var(--cl-yellow);
  border-radius: 0 0 0 24px;
}

/* ---------- CTA ---------- */
.cl-cta {
  padding: 96px 0;
  background: linear-gradient(135deg, #1c2533 0%, #131a29 100%);
  overflow: hidden;
}

.cl-cta-center {
  text-align: center;
}

.cl-cta-lead {
  margin: 16px auto 0;
  text-align: center;
  max-width: 860px;
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.cl-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cl-cta-row-pad {
  padding-top: 8px;
}

.cl-cta-geo-yellow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 380px;
  height: 380px;
  border: 30px solid var(--cl-yellow);
  opacity: 0.05;
  transform: rotate(45deg);
}

.cl-cta-geo-white {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  border: 25px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  opacity: 0.03;
  transform: rotate(-12deg);
}

.cl-brand {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 900;
}

.cl-opacity-80 {
  opacity: 0.8;
}