/* ══════════════════════════════════════════════════════════════
   CAMLOG — Landing Page Styles
   Brand color: #38bdf8  (Sky Blue / Camera Blue)
   Accent:      #f472b6  (Pink highlight)
   ══════════════════════════════════════════════════════════════ */

/* ── Brand tokens ─────────────────────────────────────────── */
:root {
  --cl-brand: #38bdf8;
  --cl-brand-light: #7dd3fc;
  --cl-brand-dark: #0284c7;
  --cl-accent: #f472b6;
  --cl-accent-glow: rgba(244, 114, 182, .3);
  --cl-brand-glow: rgba(56, 189, 248, .35);
  --cl-brand-bg: rgba(56, 189, 248, .06);
  --cl-glass-bg: rgba(255, 255, 255, .55);
  --cl-glass-border: rgba(255, 255, 255, .45);
  --cl-glass-shadow: 0 8px 32px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .04);
  --cl-text: #1a1a2e;
  --cl-text-muted: #555;
  --cl-radius: 1.25rem;
  --cl-radius-lg: 1.75rem;
}

[data-mode="dark"] {
  --cl-glass-bg: rgba(30, 30, 50, .55);
  --cl-glass-border: rgba(255, 255, 255, .08);
  --cl-glass-shadow: 0 8px 32px rgba(0, 0, 0, .3), 0 1px 2px rgba(0, 0, 0, .2);
  --cl-text: #f0f0f5;
  --cl-text-muted: #aaa;
  --cl-brand-bg: rgba(56, 189, 248, .1);
  --cl-brand-glow: rgba(56, 189, 248, .45);
  --cl-accent-glow: rgba(244, 114, 182, .4);
}

/* ══════════════════════════════════════════════════════════════
   PAGE-LEVEL BACKGROUND — applied to <body> via $customBackgroundClass
   Covers entire viewport from top:0, behind nav and all sections.
   ══════════════════════════════════════════════════════════════ */
body.cl-page-bg {
  padding-top: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 25%, rgba(56, 189, 248, .10), transparent 65%) fixed,
    radial-gradient(ellipse 60% 50% at 80% 55%, rgba(2, 132, 199, .07), transparent 60%) fixed,
    radial-gradient(ellipse 50% 40% at 50% 85%, rgba(244, 114, 182, .05), transparent 50%) fixed,
    linear-gradient(160deg, #F0F9FF 0%, #E0F2FE 30%, #E8F0FE 60%, #F0F4FF 100%) fixed;
}
body.cl-page-bg[data-mode="dark"] {
  background:
    radial-gradient(ellipse 70% 50% at 20% 25%, rgba(56, 189, 248, .14), transparent 65%) fixed,
    radial-gradient(ellipse 60% 50% at 80% 55%, rgba(2, 132, 199, .09), transparent 60%) fixed,
    radial-gradient(ellipse 50% 40% at 50% 85%, rgba(244, 114, 182, .06), transparent 50%) fixed,
    linear-gradient(160deg, #0A0E14 0%, #0C1220 40%, #0E1018 70%, #0A0E14 100%) fixed;
}

/* Logo watermark — fixed to viewport center */
body.cl-page-bg .cl-page-bg__logo {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70vw;
  max-width: 700px;
  height: auto;
  object-fit: contain;
  opacity: .035;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
body.cl-page-bg[data-mode="dark"] .cl-page-bg__logo {
  opacity: .04;
  filter: invert(1);
}

/* ── Container ────────────────────────────────────────────── */
.cl-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Shared glass card ────────────────────────────────────── */
.cl-glass {
  background: var(--cl-glass-bg);
  border: 1px solid var(--cl-glass-border);
  border-radius: var(--cl-radius);
  box-shadow: var(--cl-glass-shadow);
}

/* ── Shared label / pill ──────────────────────────────────── */
.cl-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cl-brand);
  margin-bottom: .75rem;
}
.cl-label--light { color: rgba(255,255,255,.7); }

/* ── Section title ────────────────────────────────────────── */
.cl-section-title {
  font-family: var(--font-heading, 'Nunito', sans-serif);
  font-weight: 900;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: -.03em;
  color: var(--cl-text);
  margin: 0 0 1.5rem;
}
.cl-section-title--light { color: #fff; }

.cl-highlight {
  color: var(--cl-brand);
  position: relative;
}
.cl-highlight::after {
  content: '';
  position: absolute;
  bottom: -.1em;
  left: 0;
  right: 0;
  height: .15em;
  background: var(--cl-brand);
  border-radius: 1em;
  opacity: .3;
}

.cl-highlight--accent {
  color: var(--cl-accent);
}
.cl-highlight--accent::after {
  background: var(--cl-accent);
}

/* ── Buttons ──────────────────────────────────────────────── */
.cl-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  border-radius: 100px;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
  cursor: pointer;
  border: none;
}
.cl-btn--primary {
  background: var(--cl-brand);
  color: #fff;
  box-shadow: 0 4px 20px var(--cl-brand-glow), 0 2px 6px rgba(0,0,0,.1);
}
.cl-btn--primary:hover {
  background: var(--cl-brand-light);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px var(--cl-brand-glow), 0 4px 12px rgba(0,0,0,.12);
  color: #fff;
}
.cl-btn--outline {
  background: transparent;
  color: var(--cl-brand);
  border: 2px solid var(--cl-brand);
}
.cl-btn--outline:hover {
  background: var(--cl-brand-bg);
  transform: translateY(-2px);
}
.cl-btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}
.cl-btn--disabled {
  opacity: .85;
  cursor: default;
}
.cl-btn__apple { flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════
   ANIMATIONS — Scroll-triggered entrance
   ══════════════════════════════════════════════════════════════ */
.cl-anim {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1),
              transform .7s cubic-bezier(.22,1,.36,1);
}
.cl-anim[data-anim="fade-up"] {
  transform: translateY(30px);
}
.cl-anim[data-anim="float-in"] {
  transform: translateX(60px) translateY(20px) rotate(-4deg);
  transition: opacity .9s cubic-bezier(.22,1,.36,1),
              transform .9s cubic-bezier(.22,1,.36,1);
}
.cl-anim[data-anim="scale-in"] {
  transform: scale(.9);
  transition: opacity .8s cubic-bezier(.22,1,.36,1),
              transform .8s cubic-bezier(.22,1,.36,1);
}
.cl-anim--visible {
  opacity: 1 !important;
  transform: none !important;
}

/* ══════════════════════════════════════════════════════════════
   HERO — Cinematic full-bleed entrance
   ══════════════════════════════════════════════════════════════ */
.cl-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
  gap: 3rem;
}

.cl-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(56,189,248,.18), transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(244,114,182,.1), transparent 60%),
    linear-gradient(180deg, var(--cl-brand-bg) 0%, transparent 60%);
  z-index: 0;
}
[data-mode="dark"] .cl-hero__bg {
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(56,189,248,.22), transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(244,114,182,.12), transparent 60%),
    linear-gradient(180deg, rgba(56,189,248,.08) 0%, transparent 60%);
}

/* Animated floating orbs */
.cl-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
  animation: cl-orb-float 12s ease-in-out infinite;
}
.cl-hero__orb--1 {
  width: 420px; height: 420px;
  background: var(--cl-brand);
  top: -12%; left: -6%;
  opacity: .12;
  animation-delay: 0s;
}
.cl-hero__orb--2 {
  width: 300px; height: 300px;
  background: var(--cl-accent);
  top: 25%; right: 3%;
  opacity: .1;
  animation-delay: -4s;
  animation-duration: 16s;
}
.cl-hero__orb--3 {
  width: 220px; height: 220px;
  background: #a78bfa;
  bottom: 8%; left: 35%;
  opacity: .08;
  animation-delay: -8s;
  animation-duration: 19s;
}

@keyframes cl-orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30px, -40px) scale(1.08); }
  66%      { transform: translate(-20px, 25px) scale(0.95); }
}

/* Subtle grid lines */
.cl-hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56,189,248,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}

/* Viewfinder corners — cinematic camera feel */
.cl-hero__viewfinder {
  position: absolute;
  inset: 2rem;
  z-index: 1;
  pointer-events: none;
}
.cl-hero__viewfinder::before,
.cl-hero__viewfinder::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: rgba(56,189,248,.25);
  border-style: solid;
}
.cl-hero__viewfinder::before {
  top: 0; left: 0;
  border-width: 2px 0 0 2px;
}
.cl-hero__viewfinder::after {
  top: 0; right: 0;
  border-width: 2px 2px 0 0;
}
.cl-hero__viewfinder-bottom {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  pointer-events: none;
}
.cl-hero__viewfinder-bottom::before,
.cl-hero__viewfinder-bottom::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: rgba(56,189,248,.25);
  border-style: solid;
}
.cl-hero__viewfinder-bottom::before {
  bottom: 0; left: 0;
  border-width: 0 0 2px 2px;
}
.cl-hero__viewfinder-bottom::after {
  bottom: 0; right: 0;
  border-width: 0 2px 2px 0;
}

.cl-hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 560px;
  margin-left: max(2rem, 8vw);
}

.cl-hero__icon-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.cl-hero__icon-glow {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}
.cl-hero__icon-glow::before {
  content: '';
  position: absolute;
  inset: -20%;
  border-radius: 30%;
  background: var(--cl-brand);
  opacity: .15;
  filter: blur(30px);
  animation: cl-icon-pulse 3s ease-in-out infinite;
}
.cl-hero__icon {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 26px;
  box-shadow: 0 12px 48px var(--cl-brand-glow), 0 4px 12px rgba(0,0,0,.12);
}
/* Dark mode icon swap */
.cl-hero__icon--dark { display: none; }
[data-mode="dark"] .cl-hero__icon--light { display: none; }
[data-mode="dark"] .cl-hero__icon--dark  { display: block; }

@keyframes cl-icon-pulse {
  0%, 100% { opacity: .15; transform: scale(1); }
  50%      { opacity: .25; transform: scale(1.08); }
}

.cl-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .85rem;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  background: rgba(56,189,248,.12);
  color: var(--cl-brand);
  border: 1px solid rgba(56,189,248,.2);
}

.cl-hero__title {
  font-family: var(--font-heading, 'Nunito', sans-serif);
  font-weight: 900;
  font-size: clamp(2.5rem, 5.5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  color: var(--cl-text);
  margin: 0 0 .6rem;
}

.cl-hero__subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.5;
  color: var(--cl-text);
  margin: 0 0 .4rem;
  font-weight: 600;
}

.cl-hero__tagline {
  font-size: 1rem;
  color: var(--cl-text-muted);
  margin: 0 0 2rem;
  line-height: 1.6;
}

.cl-hero__cta {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  align-items: flex-start;
}
.cl-hero__soon-label {
  font-size: .78rem;
  color: var(--cl-text-muted);
  padding-left: .2rem;
}

/* Floating phone mockup */
.cl-hero__phone {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  transform: rotate(-2deg);
  will-change: transform;
}
.cl-hero__phone-frame {
  position: relative;
  width: 320px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow:
    0 24px 80px rgba(56,189,248,.18),
    0 8px 32px rgba(0,0,0,.12),
    inset 0 0 0 2px rgba(255,255,255,.12);
  background: #0a0a0a;
}
.cl-hero__phone-screen {
  display: block;
  width: 100%;
  height: auto;
}

/* REC indicator — pulsing red dot */
.cl-hero__rec {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .25rem .65rem;
  border-radius: 100px;
  background: rgba(0,0,0,.65);
  font-size: .65rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: .06em;
}
.cl-hero__rec-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  animation: cl-rec-blink 1.2s ease-in-out infinite;
}

@keyframes cl-rec-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: .2; }
}

/* Keep hero phone slightly rotated when visible */
.cl-hero__phone.cl-anim--visible {
  transform: rotate(-2deg) !important;
}

/* ══════════════════════════════════════════════════════════════
   PROBLEM / SOLUTION — The hook strip
   ══════════════════════════════════════════════════════════════ */
.cl-problem {
  position: relative;
  padding: 5rem 0;
  z-index: 3;
  margin-top: -2rem;
}
.cl-problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cl-problem__card {
  padding: 2rem;
  text-align: center;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .4s ease;
}
.cl-problem__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}
.cl-problem__icon {
  font-size: 2.4rem;
  margin-bottom: .75rem;
}
.cl-problem__card h3 {
  font-family: var(--font-heading, 'Nunito', sans-serif);
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 0 .5rem;
  color: var(--cl-text);
}
.cl-problem__card p {
  font-size: .88rem;
  line-height: 1.6;
  color: var(--cl-text-muted);
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   WHY / STATEMENT — Dark cinematic section
   ══════════════════════════════════════════════════════════════ */
.cl-why {
  background: linear-gradient(135deg, #0a0f1a 0%, #101828 50%, #0a0f1a 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.cl-why::before {
  content: '';
  position: absolute;
  width: 550px; height: 550px;
  top: -25%; right: -12%;
  background: var(--cl-brand);
  opacity: .06;
  border-radius: 50%;
  filter: blur(120px);
}
.cl-why::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  bottom: -10%; left: 5%;
  background: var(--cl-accent);
  opacity: .04;
  border-radius: 50%;
  filter: blur(100px);
}
.cl-why__inner {
  max-width: 720px;
  position: relative;
  z-index: 1;
}
.cl-why__body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,.7);
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS — Record · Pause · Resume
   ══════════════════════════════════════════════════════════════ */
.cl-steps {
  padding: 5rem 0;
}
.cl-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.cl-step {
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.cl-step:hover { transform: translateY(-6px); }

.cl-step__number {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cl-brand);
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px var(--cl-brand-glow);
}
.cl-step__icon {
  font-size: 2.5rem;
  margin-bottom: .75rem;
}
.cl-step h3 {
  font-family: var(--font-heading, 'Nunito', sans-serif);
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0 0 .5rem;
  color: var(--cl-text);
}
.cl-step p {
  font-size: .88rem;
  line-height: 1.6;
  color: var(--cl-text-muted);
  margin: 0;
}

/* Connector arrows between steps */
.cl-steps__grid .cl-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--cl-brand);
  opacity: .4;
  font-weight: 300;
}

/* ══════════════════════════════════════════════════════════════
   SCREENSHOT CAROUSEL — Horizontal scroll gallery
   ══════════════════════════════════════════════════════════════ */
.cl-screenshots {
  padding: 4rem 0 5rem;
  overflow: hidden;
}
.cl-screenshots__track {
  display: flex;
  gap: 1.75rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 2rem 2rem 2rem max(2rem, calc((100vw - 1140px) / 2 + 1.5rem));
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cl-screenshots__track::-webkit-scrollbar { display: none; }

.cl-screenshots__phone {
  flex-shrink: 0;
  scroll-snap-align: center;
  transition: transform .5s cubic-bezier(.34,1.56,.64,1);
}
.cl-screenshots__phone:hover {
  transform: translateY(-10px) scale(1.03);
}
.cl-screenshots__phone-frame {
  width: 220px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 16px 48px rgba(0,0,0,.15),
    0 4px 12px rgba(0,0,0,.08),
    inset 0 0 0 2px rgba(255,255,255,.15);
  background: #0a0a0a;
  transition: box-shadow .4s ease;
}
.cl-screenshots__phone:hover .cl-screenshots__phone-frame {
  box-shadow:
    0 24px 64px rgba(56,189,248,.18),
    0 8px 24px rgba(0,0,0,.12),
    inset 0 0 0 2px rgba(56,189,248,.3);
}
.cl-screenshots__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
}

/* ══════════════════════════════════════════════════════════════
   FEATURES — Core capabilities
   ══════════════════════════════════════════════════════════════ */
.cl-features {
  padding: 5rem 0;
  background: var(--cl-brand-bg);
}
.cl-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.cl-feature-card {
  padding: 2rem;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .4s ease;
}
.cl-feature-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 0 16px 48px rgba(56,189,248,.12);
}
.cl-feature-card__icon {
  font-size: 2rem;
  margin-bottom: .75rem;
}
.cl-feature-card h3 {
  font-family: var(--font-heading, 'Nunito', sans-serif);
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0 0 .4rem;
  color: var(--cl-text);
}
.cl-feature-card p {
  font-size: .88rem;
  line-height: 1.6;
  color: var(--cl-text-muted);
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   APPLE WATCH — Promo spotlight section
   ══════════════════════════════════════════════════════════════ */
.cl-watch {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.cl-watch__inner {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.cl-watch__text {
  flex: 1;
}
.cl-watch__text h2 {
  margin-top: .5rem;
}
.cl-watch__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.cl-watch__list li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .95rem;
  color: var(--cl-text-muted);
  line-height: 1.5;
}
.cl-watch__check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(56,189,248,.12);
  color: var(--cl-brand);
  font-size: .7rem;
  font-weight: 800;
}
.cl-watch__visual {
  flex-shrink: 0;
  position: relative;
}
.cl-watch__img {
  width: 320px;
  height: auto;
  border-radius: var(--cl-radius-lg);
  box-shadow: 0 24px 80px rgba(56,189,248,.12), 0 8px 32px rgba(0,0,0,.1);
  transition: transform .6s cubic-bezier(.34,1.56,.64,1);
}
.cl-watch__visual:hover .cl-watch__img {
  transform: translateY(-8px) rotate(-1deg);
}

/* Glow ring behind watch image */
.cl-watch__visual::before {
  content: '';
  position: absolute;
  inset: -15%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,189,248,.12), transparent 70%);
  z-index: -1;
}

/* ══════════════════════════════════════════════════════════════
   SCRIPT OVERLAY — Unique feature spotlight
   ══════════════════════════════════════════════════════════════ */
.cl-script {
  background: linear-gradient(160deg, #0a0f1a 0%, #1a1040 40%, #0d1020 100%);
  padding: 6rem 0;
  overflow: hidden;
  position: relative;
}
.cl-script::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  bottom: -15%; left: -5%;
  background: var(--cl-brand);
  opacity: .06;
  border-radius: 50%;
  filter: blur(100px);
}
.cl-script__inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}
.cl-script__text { flex: 1; }
.cl-script__body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,.7);
  margin: 0;
}
.cl-script__visual {
  flex-shrink: 0;
}
.cl-script__phone-frame {
  width: 280px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow:
    0 24px 80px rgba(56,189,248,.15),
    0 8px 32px rgba(0,0,0,.2),
    inset 0 0 0 2px rgba(56,189,248,.15);
  background: #0a0a0a;
}
.cl-script__phone-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 32px;
}

/* ══════════════════════════════════════════════════════════════
   SPECS — Pro video specs
   ══════════════════════════════════════════════════════════════ */
.cl-specs {
  padding: 5rem 0;
}
.cl-specs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
}
.cl-spec-card {
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.cl-spec-card:hover {
  transform: translateY(-6px);
}
.cl-spec-card__value {
  font-family: var(--font-heading, 'Nunito', sans-serif);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--cl-brand);
  margin-bottom: .25rem;
  letter-spacing: -.02em;
}
.cl-spec-card__label {
  font-size: .82rem;
  color: var(--cl-text-muted);
  line-height: 1.4;
}

/* ══════════════════════════════════════════════════════════════
   WORKFLOW — Perfect-for section
   ══════════════════════════════════════════════════════════════ */
.cl-workflow {
  background: var(--cl-brand-bg);
  padding: 5rem 0;
}
.cl-workflow__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.cl-workflow__card {
  padding: 2rem;
  text-align: center;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.cl-workflow__card:hover {
  transform: translateY(-6px);
}
.cl-workflow__icon {
  font-size: 2.2rem;
  margin-bottom: .75rem;
}
.cl-workflow__card h3 {
  font-family: var(--font-heading, 'Nunito', sans-serif);
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0 0 .4rem;
  color: var(--cl-text);
}
.cl-workflow__card p {
  font-size: .88rem;
  line-height: 1.6;
  color: var(--cl-text-muted);
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   MAC COMPANION BADGE
   ══════════════════════════════════════════════════════════════ */
.cl-mac-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 240px;
  border-radius: 48px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 16px 48px rgba(0,0,0,.2);
}
.cl-mac-badge__icon {
  font-size: 4rem;
  margin-bottom: .75rem;
}
.cl-mac-badge__text {
  font-family: var(--font-heading, 'Nunito', sans-serif);
  font-weight: 800;
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .02em;
}

/* ══════════════════════════════════════════════════════════════
   PRICING — Free + Pro subscription grid
   ══════════════════════════════════════════════════════════════ */
.cl-pricing {
  padding: 5rem 0;
}
.cl-pricing__sub {
  font-size: 1.05rem;
  color: var(--cl-text-muted);
  margin: -.75rem 0 2.5rem;
}
.cl-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}
.cl-price-card {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .4s ease;
}
.cl-price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(56,189,248,.12);
}
.cl-price-card--popular {
  border: 2px solid var(--cl-brand);
  box-shadow: 0 8px 32px var(--cl-brand-glow);
  transform: scale(1.04);
}
.cl-price-card--popular:hover {
  transform: scale(1.04) translateY(-8px);
}
.cl-price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cl-brand);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 12px var(--cl-brand-glow);
}
.cl-price-card__header {
  margin-bottom: 1.25rem;
}
.cl-price-card__header h3 {
  font-family: var(--font-heading, 'Nunito', sans-serif);
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0 0 .5rem;
  color: var(--cl-text);
}
.cl-price-card__price {
  display: flex;
  align-items: baseline;
  gap: .3rem;
}
.cl-price-card__amount {
  font-family: var(--font-heading, 'Nunito', sans-serif);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--cl-text);
  letter-spacing: -.02em;
}
.cl-price-card__period {
  font-size: .8rem;
  color: var(--cl-text-muted);
}
.cl-price-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}
.cl-price-card__features li {
  font-size: .85rem;
  color: var(--cl-text-muted);
  padding-left: 1.3rem;
  position: relative;
  line-height: 1.5;
}
.cl-price-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cl-brand);
  font-weight: 800;
  font-size: .75rem;
}
.cl-price-card .cl-btn {
  width: 100%;
  justify-content: center;
  padding: .7rem 1rem;
  font-size: .88rem;
}

/* ══════════════════════════════════════════════════════════════
   ROADMAP — Coming soon items
   ══════════════════════════════════════════════════════════════ */
.cl-roadmap {
  padding: 5rem 0;
  background: var(--cl-brand-bg);
}
.cl-roadmap__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
  max-width: 700px;
}
.cl-roadmap__grid--launched {
  grid-template-columns: repeat(3, 1fr);
  max-width: 100%;
}
.cl-roadmap__item {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.cl-roadmap__item:hover {
  transform: translateY(-4px);
}
.cl-roadmap__item--launched {
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  border: 1px solid rgba(56,189,248,.15);
}
.cl-roadmap__item-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(56,189,248,.12);
  color: var(--cl-brand);
  font-size: .85rem;
  font-weight: 800;
  flex-shrink: 0;
}
.cl-roadmap__item-badge {
  display: inline-block;
  margin-top: .5rem;
  padding: .2rem .6rem;
  border-radius: 100px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .04em;
  background: rgba(56,189,248,.1);
  color: var(--cl-brand);
  border: 1px solid rgba(56,189,248,.2);
}
.cl-roadmap__item-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}
.cl-roadmap__item-text h4 {
  font-family: var(--font-heading, 'Nunito', sans-serif);
  font-weight: 800;
  font-size: .95rem;
  margin: 0 0 .2rem;
  color: var(--cl-text);
}
.cl-roadmap__item-text p {
  font-size: .8rem;
  color: var(--cl-text-muted);
  margin: 0;
  line-height: 1.4;
}
.cl-section-title--sm {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  margin-bottom: .75rem;
}

/* ══════════════════════════════════════════════════════════════
   NERDS — Tech tag cloud
   ══════════════════════════════════════════════════════════════ */
.cl-nerds {
  padding: 4rem 0;
  text-align: center;
}
.cl-nerds__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-top: .5rem;
}
.cl-nerd-tag {
  padding: .5rem 1rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--cl-text);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
  cursor: default;
}
.cl-nerd-tag:hover {
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 8px 24px var(--cl-brand-glow);
}

/* ══════════════════════════════════════════════════════════════
   FINAL CTA
   ══════════════════════════════════════════════════════════════ */
.cl-final-cta {
  padding: 6rem 0;
}
.cl-final-cta__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cl-final-cta__icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  margin: 0 auto 1.5rem;
  display: block;
  box-shadow: 0 12px 48px var(--cl-brand-glow);
}
.cl-final-cta__icon--dark { display: none; }
[data-mode="dark"] .cl-final-cta__icon--light { display: block; margin: 0 auto 1.5rem; display: none; }
[data-mode="dark"] .cl-final-cta__icon--dark  { display: block; margin: 0 auto 1.5rem; }

.cl-final-cta__sub {
  font-size: 1.05rem;
  color: var(--cl-text-muted);
  margin: -.5rem 0 2rem;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .cl-hero {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    padding: 8rem 1.5rem 3rem;
  }
  .cl-hero__content {
    margin-left: 0;
    max-width: 100%;
  }
  .cl-hero__icon-row { justify-content: center; }
  .cl-hero__cta { align-items: center; }
  .cl-hero__phone-frame { width: 280px; }
  .cl-hero__viewfinder,
  .cl-hero__viewfinder-bottom { display: none; }

  .cl-problem__grid { grid-template-columns: 1fr; gap: 1rem; }
  .cl-steps__grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .cl-steps__grid .cl-step::after { display: none; }
  .cl-features__grid { grid-template-columns: repeat(2, 1fr); }
  .cl-watch__inner { flex-direction: column; text-align: center; }
  .cl-watch__img { width: 260px; }
  .cl-script__inner { flex-direction: column; text-align: center; }
  .cl-script__phone-frame { width: 240px; }
  .cl-mac-badge { width: 180px; height: 180px; border-radius: 36px; }
  .cl-mac-badge__icon { font-size: 3rem; }
  .cl-specs__grid { grid-template-columns: repeat(2, 1fr); }
  .cl-workflow__grid { grid-template-columns: 1fr; }
  .cl-pricing__grid { grid-template-columns: 1fr; }
  .cl-price-card--popular { transform: none; }
  .cl-price-card--popular:hover { transform: translateY(-8px); }
  .cl-roadmap__grid { grid-template-columns: 1fr; }
  .cl-roadmap__grid--launched { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .cl-hero__title { font-size: 2.2rem; }
  .cl-hero__phone-frame { width: 240px; }
  .cl-hero__icon-glow { width: 96px; height: 96px; }
  .cl-hero__icon { width: 96px; height: 96px; border-radius: 22px; }
  .cl-features__grid { grid-template-columns: 1fr; }
  .cl-specs__grid { grid-template-columns: repeat(2, 1fr); }
  .cl-screenshots__phone-frame { width: 180px; border-radius: 24px; }
  .cl-screenshots__img { border-radius: 24px; }
}

/* ══════════════════════════════════════════════════════════════
   Hide main aurora on this page — we have our own hero bg
   ══════════════════════════════════════════════════════════════ */
.aurora { display: none !important; }
