/*!
 * ClipBox Design System — shared across all pages
 * Brand: Outfit (headings) + Inter (body) · Orange #F5611A
 */

:root {
  --brand: #F5611A;
  --brand-d: #C94B0E;
  --brand-l: #FF8A50;
  --ink: #101010;
  --sub: #5C5C5C;
  --muted: #9CA3AF;
  --border: rgba(0,0,0,0.07);
  --surface: #FFFFFF;
  --canvas: #FAFAF9;
  --canvas-alt: #F4F3F1;
  --dark: #0F0F0F;
  --dark-2: #161616;
  --r-card: 28px;
  --r-pill: 100px;
  --shadow-card: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-float: 0 20px 48px rgba(0,0,0,0.13);
  --shadow-device: 0 48px 96px -20px rgba(0,0,0,0.24);
  --transition: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--canvas);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, .ff-head { font-family: 'Outfit', sans-serif; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── NAV ─────────────────────────────────── */
.cb-nav {
  position: fixed; inset: 0 0 auto; z-index: 200;
  height: 68px;
  background: rgba(250,250,249,0.86);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.cb-nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.cb-nav-brand { display: flex; align-items: center; gap: 11px; }
.cb-nav-brand img { width: 38px; height: 38px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.cb-nav-name { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.3rem; letter-spacing: -0.025em; color: var(--ink); }
.pro-badge {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-d) 100%);
  color: #fff; font-weight: 900; border-radius: 7px;
  padding: 2.5px 8px; font-size: 0.62rem; letter-spacing: 0.08em;
  box-shadow: 0 3px 10px rgba(245,97,26,0.35);
}
.cb-nav-links { display: flex; align-items: center; gap: 34px; }
.cb-nav-links a {
  font-size: 0.875rem; font-weight: 600; color: var(--sub);
  transition: color 0.15s;
}
.cb-nav-links a:hover, .cb-nav-links a.active { color: var(--brand); }
.cb-nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: var(--r-pill);
  background: var(--ink); color: #fff;
  font-size: 0.8rem; font-weight: 800;
  box-shadow: 0 4px 20px rgba(0,0,0,0.28);
  transition: transform 0.2s var(--transition), box-shadow 0.2s;
}
.cb-nav-cta:hover { transform: scale(1.04); box-shadow: 0 8px 28px rgba(0,0,0,0.35); }
.cb-nav-cta:active { transform: scale(0.97); }

/* ── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 16px 32px; border-radius: var(--r-pill);
  font-size: 0.95rem; font-weight: 800;
  transition: transform 0.2s var(--transition), box-shadow 0.2s;
  cursor: pointer; border: none;
}
.btn-dark {
  background: var(--ink); color: #fff;
  box-shadow: 0 6px 28px rgba(0,0,0,0.26);
}
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,0.32); }
.btn-ghost {
  background: #fff; color: var(--ink);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-card);
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-1px); }
.btn-brand {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-d) 100%);
  color: #fff;
  box-shadow: 0 8px 28px rgba(245,97,26,0.35);
}
.btn-brand:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(245,97,26,0.42); }

/* ── SECTION BASE ───────────────────────── */
.cb-section {
  max-width: 1160px; margin: 0 auto;
  padding: 100px 24px;
}
.cb-section-alt {
  background: var(--canvas-alt);
}
.eyebrow {
  font-size: 0.7rem; font-weight: 900; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brand); margin-bottom: 14px;
  display: block;
}
.section-h {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1.08;
  color: var(--ink);
}
.section-p {
  font-size: 1rem; color: var(--sub); line-height: 1.72;
  font-weight: 400; max-width: 520px; margin-top: 14px;
}

/* ── ANIMATE IN ─────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s var(--transition), transform 0.6s var(--transition);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── BENTO GRID ─────────────────────────── */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.bc { grid-column: span var(--span, 4); }
@media(max-width: 900px) { .bc { grid-column: span 12 !important; } }

.card {
  background: var(--surface);
  border-radius: var(--r-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.3s var(--transition), box-shadow 0.3s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-float); }
.card-pad { padding: 32px; }
.card-dark { background: var(--dark); border-color: rgba(255,255,255,0.06); }
.card-brand { background: linear-gradient(145deg, var(--brand) 0%, var(--brand-d) 100%); border-color: transparent; }
.card-green { background: #071A0B; border-color: rgba(52,199,89,0.12); }

.card-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; flex-shrink: 0;
}
.card-eyebrow { font-size: 0.66rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 7px; }
.card-title { font-family: 'Outfit', sans-serif; font-size: 1.2rem; font-weight: 800; line-height: 1.2; margin-bottom: 9px; }
.card-body { font-size: 0.85rem; line-height: 1.7; font-weight: 400; }

/* ── TOAST ──────────────────────────────── */
.toast {
  position: fixed; bottom: 26px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 999;
  background: var(--dark); color: #fff;
  padding: 13px 22px; border-radius: var(--r-pill);
  font-size: 0.82rem; font-weight: 700;
  display: flex; align-items: center; gap: 9px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.32);
  opacity: 0;
  transition: transform 0.38s var(--transition), opacity 0.3s;
  pointer-events: none; white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ── FOOTER ─────────────────────────────── */
.cb-footer {
  background: var(--canvas);
  border-top: 1px solid var(--border);
  padding: 44px 24px 32px;
}
.cb-footer-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  font-size: 0.8rem; color: var(--muted); text-align: center;
}
.cb-footer-links { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; }
.cb-footer-links a { color: var(--muted); font-weight: 600; transition: color 0.15s; }
.cb-footer-links a:hover { color: var(--brand); }

/* ── PRICING CARDS ──────────────────────── */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }
@media(max-width: 800px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 28px; padding: 36px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform 0.28s var(--transition), box-shadow 0.28s;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-float); }
.price-card-featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand), 0 20px 52px rgba(245,97,26,0.14);
  transform: scale(1.03);
}
.price-card-featured:hover { transform: scale(1.03) translateY(-5px); }
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: #fff;
  font-size: 0.68rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 16px; border-radius: var(--r-pill); white-space: nowrap;
}
.price-name { font-family: 'Outfit', sans-serif; font-size: 1.05rem; font-weight: 800; margin-bottom: 3px; }
.price-note { font-size: 0.76rem; color: var(--muted); font-weight: 500; margin-bottom: 26px; }
.price-amount { font-family: 'Outfit', sans-serif; font-size: 3rem; font-weight: 900; letter-spacing: -0.04em; line-height: 1; }
.price-period { font-size: 0.8rem; color: var(--muted); font-weight: 500; margin-bottom: 28px; margin-top: 3px; }
.price-list { list-style: none; display: flex; flex-direction: column; gap: 9px; flex: 1; margin-bottom: 28px; }
.price-list li { display: flex; align-items: center; gap: 9px; font-size: 0.82rem; font-weight: 600; color: #374151; }
.price-btn {
  display: block; text-align: center; padding: 15px; border-radius: var(--r-pill);
  font-size: 0.875rem; font-weight: 800;
  transition: all 0.2s;
}
.price-btn-subtle { background: var(--canvas-alt); color: var(--ink); }
.price-btn-subtle:hover { background: #E8E7E5; }
.price-btn-solid { background: var(--ink); color: #fff; box-shadow: 0 4px 18px rgba(0,0,0,0.2); }
.price-btn-solid:hover { background: #1a1a1a; transform: translateY(-1px); box-shadow: 0 8px 26px rgba(0,0,0,0.28); }

/* ── FAQ ─────────────────────────────────── */
.faq { display: flex; flex-direction: column; gap: 8px; margin-top: 46px; }
.faq-item {
  background: var(--surface); border-radius: 18px;
  border: 1px solid var(--border); overflow: hidden;
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 26px; cursor: pointer;
  font-size: 0.92rem; font-weight: 700; color: var(--ink);
  user-select: none;
}
.faq-icon { flex-shrink: 0; transition: transform 0.3s var(--transition); color: var(--muted); }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--brand); }
.faq-a { font-size: 0.87rem; color: var(--sub); line-height: 1.75; padding: 0 26px 22px; display: none; font-weight: 400; }
.faq-item.open .faq-a { display: block; }

/* ── STORY SECTION ──────────────────────── */
.story-section { background: var(--dark); color: #fff; position: relative; }
.story-sticky {
  position: sticky; top: 0; height: 100vh;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.story-panel {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 80px 24px 160px;
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.5s var(--transition), transform 0.5s var(--transition);
  pointer-events: none;
}
.story-panel.sp-active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sp-label { font-size: 0.7rem; font-weight: 900; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 22px; }
.sp-h { font-family: 'Outfit', sans-serif; font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 900; letter-spacing: -0.04em; line-height: 1.04; max-width: 800px; }
.sp-p { font-size: 1.05rem; color: rgba(255,255,255,0.5); max-width: 540px; margin-top: 20px; line-height: 1.7; font-weight: 400; }

/* Story nav dots */
.sp-dots {
  position: absolute; right: 28px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 10px;
}
.sp-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background 0.3s, transform 0.3s;
}
.sp-dot.active { background: var(--brand); transform: scale(1.6); }

/* Scrolling content type strip */
.sp-strip {
  position: absolute; bottom: 0; left: 0; right: 0;
  overflow: hidden; padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.sp-strip-track {
  display: flex; gap: 12px; width: max-content;
  animation: marquee 22s linear infinite;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.sp-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.8);
  white-space: nowrap; backdrop-filter: blur(4px);
}
.sp-dot-sm { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }

/* Story ambient glow */
.sp-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  filter: blur(120px); opacity: 0.12; pointer-events: none;
  transition: background 0.6s, top 0.6s, left 0.6s;
}

/* ── TICKER ─────────────────────────────── */
.ticker-wrap {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-pill);
  padding: 10px 20px; font-size: 0.85rem; font-weight: 700; color: var(--ink);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.ticker-of { color: var(--muted); font-weight: 400; }
.ticker-slot {
  overflow: hidden; height: 1.2em;
  min-width: 100px; position: relative;
}
.ticker-inner {
  display: flex; flex-direction: column;
  animation: tickUp 10s steps(1, end) infinite;
}
.ticker-inner span { display: block; line-height: 1.2em; color: var(--brand); font-weight: 900; }
@keyframes tickUp {
  0%   { transform: translateY(0%); }
  16%  { transform: translateY(-16.66%); }
  33%  { transform: translateY(-33.33%); }
  50%  { transform: translateY(-50%); }
  66%  { transform: translateY(-66.66%); }
  82%  { transform: translateY(-83.33%); }
  100% { transform: translateY(0%); }
}

/* ── CLIP FLOAT CARDS ─────────────────── */
.clip-float-card {
  position: absolute;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px; padding: 14px 18px;
  box-shadow: var(--shadow-float);
  cursor: pointer;
  transition: transform 0.25s var(--transition), box-shadow 0.25s;
  max-width: 230px;
}
.clip-float-card:hover { transform: scale(1.04) translateY(-4px); box-shadow: 0 28px 60px rgba(0,0,0,0.18); }
.cfc-type { font-size: 0.65rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 5px; }
.cfc-title { font-size: 0.8rem; font-weight: 800; color: var(--ink); margin-bottom: 3px; }
.cfc-body { font-size: 0.72rem; color: var(--sub); line-height: 1.45; font-weight: 500; }
.cfc-foot { font-size: 0.65rem; color: var(--muted); font-weight: 600; margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--border); }

@keyframes fcFloat1 { 0%,100% { transform: translateY(0) rotate(-1.5deg); } 50% { transform: translateY(-12px) rotate(-0.5deg); } }
@keyframes fcFloat2 { 0%,100% { transform: translateY(0) rotate(1.5deg); } 50% { transform: translateY(-10px) rotate(2.2deg); } }
@keyframes fcFloat3 { 0%,100% { transform: translateY(0) rotate(-0.8deg); } 50% { transform: translateY(-8px) rotate(0.3deg); } }
.fc1 { animation: fcFloat1 7s ease-in-out infinite; }
.fc2 { animation: fcFloat2 8s ease-in-out infinite; }
.fc3 { animation: fcFloat3 6.5s ease-in-out infinite; }

/* ── PLATFORM CARDS ─────────────────────── */
.platform-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 52px; }
@media(max-width: 768px) { .platform-grid { grid-template-columns: 1fr; } }
.platform-card {
  background: var(--surface); border-radius: 28px;
  border: 1px solid var(--border); overflow: hidden;
  transition: transform 0.3s var(--transition), box-shadow 0.3s;
}
.platform-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-float); }
.pc-head { padding: 30px 30px 0; }
.pc-os { font-size: 0.67rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand); margin-bottom: 5px; }
.pc-title { font-family: 'Outfit', sans-serif; font-size: 1.35rem; font-weight: 900; color: var(--ink); line-height: 1.2; }
.pc-sub { font-size: 0.82rem; color: var(--sub); margin-top: 7px; line-height: 1.6; font-weight: 400; }
.pc-list { list-style: none; padding: 20px 30px 30px; display: flex; flex-direction: column; gap: 9px; }
.pc-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.82rem; font-weight: 600; color: #374151; }
.pc-check { width: 18px; height: 18px; border-radius: 50%; background: #DCFCE7; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.pc-cta { margin: 0 30px 30px; display: block; text-align: center; padding: 14px; border-radius: var(--r-pill); background: var(--ink); color: #fff; font-weight: 800; font-size: 0.85rem; transition: all 0.2s; }
.pc-cta:hover { background: #1a1a1a; transform: translateY(-1px); }

/* ── TESTIMONIALS ───────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 50px; }
@media(max-width: 768px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  background: var(--surface); border-radius: 24px; padding: 26px;
  border: 1px solid var(--border); box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--transition);
}
.testi-card:hover { transform: translateY(-4px); }
.testi-stars { color: #F59E0B; font-size: 0.85rem; margin-bottom: 12px; letter-spacing: 2px; }
.testi-q { font-size: 0.875rem; color: #374151; line-height: 1.72; font-weight: 400; margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-av { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.88rem; font-weight: 900; color: #fff; flex-shrink: 0; }
.testi-name { font-size: 0.8rem; font-weight: 800; color: var(--ink); }
.testi-role { font-size: 0.7rem; color: var(--muted); font-weight: 500; }

/* ── HOW IT WORKS ───────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 52px; }
@media(max-width: 768px) { .steps { grid-template-columns: 1fr; } }
.step-card {
  background: var(--surface); border-radius: 24px; padding: 34px;
  border: 1px solid var(--border); box-shadow: var(--shadow-card);
}
.step-num {
  width: 48px; height: 48px; border-radius: 14px;
  background: #FFF0E8; color: var(--brand);
  font-family: 'Outfit', sans-serif; font-size: 1.4rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step-title { font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 800; margin-bottom: 9px; }
.step-body { font-size: 0.85rem; color: var(--sub); line-height: 1.7; font-weight: 400; }

/* ── PRIVACY BLOCK ──────────────────────── */
.privacy-block {
  background: var(--dark); border-radius: 36px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  position: relative;
}
@media(max-width: 768px) { .privacy-block { grid-template-columns: 1fr; } }
.pb-left { padding: 64px 56px; position: relative; z-index: 1; }
.pb-right {
  display: flex; align-items: center; justify-content: center;
  padding: 64px 48px; background: rgba(255,255,255,0.02); border-left: 1px solid rgba(255,255,255,0.05);
}
.pb-glow {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(52,199,89,0.1) 0%, transparent 70%);
  top: -100px; left: -100px; pointer-events: none;
}
.pb-eyebrow { font-size: 0.68rem; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; color: #4ADE80; margin-bottom: 14px; }
.pb-h { font-family: 'Outfit', sans-serif; font-size: 2.2rem; font-weight: 900; line-height: 1.1; color: #fff; margin-bottom: 16px; }
.pb-p { font-size: 0.9rem; color: rgba(255,255,255,0.48); line-height: 1.8; font-weight: 400; margin-bottom: 24px; }
.pb-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pb-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 14px; border-radius: var(--r-pill);
  background: rgba(52,199,89,0.1); border: 1px solid rgba(52,199,89,0.18);
  font-size: 0.76rem; font-weight: 700; color: #4ADE80;
}
.pb-shield-wrap {
  text-align: center;
  background: rgba(52,199,89,0.06); border-radius: 28px;
  padding: 40px 32px; border: 1px solid rgba(52,199,89,0.12);
  max-width: 320px;
}
.pb-shield-icon { font-size: 4.5rem; margin-bottom: 16px; }
.pb-shield-title { font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.pb-shield-body { font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.65; font-weight: 400; }

/* ── CTA STRIP ──────────────────────────── */
.cta-strip {
  background: var(--dark); text-align: center;
  padding: 96px 24px; position: relative; overflow: hidden;
}
.cta-glow { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(245,97,26,0.14) 0%, transparent 68%); pointer-events: none; }
.cta-h { font-family: 'Outfit', sans-serif; font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900; letter-spacing: -0.04em; line-height: 1.05; color: #fff; max-width: 640px; margin: 0 auto 18px; }
.cta-p { font-size: 1rem; color: rgba(255,255,255,0.45); max-width: 400px; margin: 0 auto 38px; line-height: 1.65; font-weight: 400; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 17px 36px; border-radius: var(--r-pill);
  background: #fff; color: var(--ink); font-weight: 800; font-size: 0.95rem;
  box-shadow: 0 6px 28px rgba(255,255,255,0.15);
  transition: transform 0.2s var(--transition);
}
.cta-btn-primary:hover { transform: scale(1.04); }
.cta-btn-sec {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 16px 28px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.07); color: #fff; font-weight: 700; font-size: 0.9rem;
  border: 1.5px solid rgba(255,255,255,0.14);
  transition: background 0.2s;
}
.cta-btn-sec:hover { background: rgba(255,255,255,0.13); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .clip-float-card, .fc1, .fc2, .fc3, .sp-strip-track, .ticker-inner { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
}
