/* Canvas: Link in Bio */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=DM+Sans:wght@300;400;500;600&family=Sora:wght@400;600;700;800&display=swap');

:root {
  --cnvs-themecolor: #7C3AED;
  --cnvs-themecolor-rgb: 124, 58, 237;
  --pulse-coral: #FF4F6A;
  --pulse-amber: #FFC23C;
  --pulse-teal: #06BBBB;
  --pulse-ink: #0F0A1E;
  --pulse-muted: rgba(15,10,30,0.55);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

/* ─ Body ─ */
body {
  font-family: 'DM Sans', sans-serif;
  color: #1a1229;
}

/* ─ Headings ─ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', sans-serif;
  text-wrap: balance;
}

.cp-display {
  font-family: 'Anton', sans-serif;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 0.95;
}

/* ─ Header ─ */
#header.transparent-header.dark .menu-link:not(.active) { color: rgba(255,255,255,0.85); }
#header:not(.dark) .menu-link:not(.active) { color: var(--pulse-ink); }
#header .btn-pulse-cta {
  background: var(--cnvs-themecolor);
  color: #fff;
  border-radius: 100px;
  padding: 0.55rem 1.4rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  transition: opacity 180ms var(--ease-out), transform 160ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  #header .btn-pulse-cta:hover { opacity: 0.85; }
}
#header .btn-pulse-cta:active { transform: scale(0.97); }

/* ─ Hero ─ */
#hero-home {
  background: var(--pulse-ink);
  position: relative;
  overflow: hidden;
  min-height: 100dvh;
  display: flex;
  align-items: center;
}
.hero-blob-1 {
  position: absolute;
  width: 38rem;
  height: 38rem;
  background: rgba(var(--cnvs-themecolor-rgb), 0.45);
  border-radius: 50%;
  filter: blur(90px);
  top: -12rem;
  right: -10rem;
  pointer-events: none;
}
.hero-blob-2 {
  position: absolute;
  width: 28rem;
  height: 28rem;
  background: rgba(255, 79, 106, 0.3);
  border-radius: 50%;
  filter: blur(80px);
  bottom: -10rem;
  left: -8rem;
  pointer-events: none;
}
.hero-blob-3 {
  position: absolute;
  width: 22rem;
  height: 22rem;
  background: rgba(6, 187, 187, 0.2);
  border-radius: 50%;
  filter: blur(70px);
  top: 30%;
  left: 55%;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-tag .dot {
  width: 6px;
  height: 6px;
  background: var(--pulse-amber);
  border-radius: 50%;
}
.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: #fff;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-title .accent-coral { color: var(--pulse-coral); }
.hero-title .accent-violet { color: #C084FC; }
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 46ch;
  margin-bottom: 2.5rem;
}
.hero-email-form {
  display: flex;
  gap: 0.5rem;
  max-width: 440px;
  margin-bottom: 1.5rem;
}
.hero-email-form input {
  flex: 1;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 0.85rem 1.4rem;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 200ms var(--ease-out);
}
.hero-email-form input::placeholder { color: rgba(255,255,255,0.4); }
.hero-email-form input:focus { border-color: rgba(var(--cnvs-themecolor-rgb), 0.7); }
.btn-pulse {
  background: var(--cnvs-themecolor);
  color: #fff;
  border-radius: 100px;
  padding: 0.85rem 1.8rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 160ms var(--ease-out), transform 160ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .btn-pulse:hover { opacity: 0.88; }
}
.btn-pulse:active { transform: scale(0.97); }
.btn-pulse-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  padding: 0.8rem 1.8rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 180ms var(--ease-out), background 180ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .btn-pulse-outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); }
}
.hero-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.hero-note i { font-size: 0.75rem; }

/* Hero phone mockup */
.hero-phone-wrap {
  position: relative;
  z-index: 2;
}
.hero-phone-img {
  border-radius: 32px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.08);
  width: 100%;
  max-width: 320px;
}
.hero-float-badge {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 0.7rem 1.1rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--pulse-ink);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  animation: float-badge 3s ease-in-out infinite;
}
@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.float-b1 { top: 12%; left: -18%; }
.float-b2 { bottom: 18%; right: -15%; animation-delay: 1.2s; }
.float-b3 { top: 38%; right: -22%; animation-delay: 0.6s; }
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.badge-dot-green { background: #22C55E; }
.badge-dot-coral { background: var(--pulse-coral); }
.badge-dot-violet { background: var(--cnvs-themecolor); }

@media (max-width: 991px) {
  .float-b1, .float-b2, .float-b3 { display: none; }
  .hero-phone-img { max-width: 260px; }
}

/* ─ Use case pill bar ─ */
.use-case-bar {
  background: rgba(255,255,255,0.06);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.use-case-bar .row {
  border: none;
}
.use-case-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  border-right: 1px solid rgba(255,255,255,0.08);
  cursor: default;
}
.use-case-pill i { font-size: 1.1rem; color: var(--pulse-amber); }
.use-case-pill:last-child { border-right: none; }

/* ─ Section wrappers ─ */
.cp-section {
  padding: 5rem 0;
}
.cp-section-dark {
  background: var(--pulse-ink);
  color: #fff;
}
.cp-eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cnvs-themecolor);
  margin-bottom: 1rem;
}
.cp-section-dark .cp-eyebrow { color: #C084FC; }
.cp-headline {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.cp-lead {
  font-size: 1.1rem;
  color: var(--pulse-muted);
  line-height: 1.75;
  max-width: 58ch;
}
.cp-section-dark .cp-lead { color: rgba(255,255,255,0.6); }

/* ─ Feature cards ─ */
.feat-card {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #F0ECF9;
  padding: 2rem;
  height: 100%;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .feat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(var(--cnvs-themecolor-rgb), 0.12);
  }
}
.feat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.fi-violet { background: rgba(var(--cnvs-themecolor-rgb), 0.1); color: var(--cnvs-themecolor); }
.fi-coral { background: rgba(255,79,106,0.1); color: var(--pulse-coral); }
.fi-amber { background: rgba(255,194,60,0.12); color: #D97706; }
.fi-teal { background: rgba(6,187,187,0.1); color: var(--pulse-teal); }
.fi-green { background: rgba(34,197,94,0.1); color: #16A34A; }
.fi-pink { background: rgba(236,72,153,0.1); color: #DB2777; }
.fi-blue { background: rgba(59,130,246,0.1); color: #2563EB; }
.feat-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--pulse-ink);
}
.feat-card p {
  font-size: 0.9rem;
  color: var(--pulse-muted);
  line-height: 1.6;
  margin: 0;
}

/* ─ Creator showcase ─ */
.creator-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 240ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .creator-card:hover { transform: scale(1.03); }
  .creator-card:hover .creator-overlay { opacity: 1; }
}
.creator-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.creator-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,10,30,0.85) 35%, transparent 70%);
  opacity: 0.7;
  transition: opacity 220ms var(--ease-out);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
}
.creator-type {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  opacity: 0.8;
}
.creator-name {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.4rem;
}
.creator-links-count {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
}
.creator-theme-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.3rem;
}

/* ─ Monetization block ─ */
.mono-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2.2rem;
  height: 100%;
  transition: border-color 200ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .mono-card:hover { border-color: rgba(var(--cnvs-themecolor-rgb), 0.5); }
}
.mono-card h4 { color: #fff; font-weight: 700; font-size: 1.15rem; margin-bottom: 0.6rem; }
.mono-card p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.2rem; }
.mono-card ul { list-style: none; padding: 0; margin: 0; }
.mono-card ul li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  padding: 0.35rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.mono-card ul li i { color: #22C55E; font-size: 0.85rem; }

/* ─ Analytics section ─ */
.analytics-stat {
  text-align: center;
}
.analytics-stat .stat-num {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  color: var(--cnvs-themecolor);
  display: block;
  margin-bottom: 0.4rem;
}
.analytics-stat .stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* ─ Pricing ─ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 767px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
}
.plan-card {
  border-radius: 20px;
  padding: 2.4rem 2rem;
  border: 2px solid #EDE9F8;
  background: #fff;
  position: relative;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .plan-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(var(--cnvs-themecolor-rgb), 0.12); }
}
.plan-card.plan-featured {
  background: var(--pulse-ink);
  border-color: var(--cnvs-themecolor);
  transform: scale(1.04);
}
@media (hover: hover) and (pointer: fine) {
  .plan-card.plan-featured:hover { transform: scale(1.04) translateY(-4px); }
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cnvs-themecolor);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.9rem;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-name {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cnvs-themecolor);
  margin-bottom: 0.4rem;
}
.plan-card.plan-featured .plan-name { color: #C084FC; }
.plan-price {
  font-family: 'Anton', sans-serif;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--pulse-ink);
  margin-bottom: 0.1rem;
}
.plan-card.plan-featured .plan-price { color: #fff; }
.plan-period {
  font-size: 0.85rem;
  color: var(--pulse-muted);
  margin-bottom: 1.5rem;
}
.plan-card.plan-featured .plan-period { color: rgba(255,255,255,0.55); }
.plan-divider {
  border: none;
  border-top: 1px solid #EDE9F8;
  margin: 1.5rem 0;
}
.plan-card.plan-featured .plan-divider { border-color: rgba(255,255,255,0.1); }
.plan-features { list-style: none; padding: 0; margin: 0 0 2rem; }
.plan-features li {
  font-size: 0.9rem;
  color: var(--pulse-muted);
  padding: 0.45rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.plan-card.plan-featured .plan-features li { color: rgba(255,255,255,0.7); }
.plan-features li i { color: #22C55E; margin-top: 2px; flex-shrink: 0; }
.plan-features li.muted i { color: rgba(0,0,0,0.2); }
.plan-card.plan-featured .plan-features li.muted i { color: rgba(255,255,255,0.2); }
.plan-features li.muted { color: rgba(0,0,0,0.3); }
.plan-card.plan-featured .plan-features li.muted { color: rgba(255,255,255,0.3); }
.btn-plan {
  width: 100%;
  display: block;
  text-align: center;
  border-radius: 100px;
  padding: 0.85rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid var(--cnvs-themecolor);
  background: transparent;
  color: var(--cnvs-themecolor);
  text-decoration: none;
  transition: background 180ms var(--ease-out), color 180ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .btn-plan:hover { background: var(--cnvs-themecolor); color: #fff; }
}
.btn-plan-filled {
  background: var(--cnvs-themecolor);
  color: #fff;
  border-color: var(--cnvs-themecolor);
}
@media (hover: hover) and (pointer: fine) {
  .btn-plan-filled:hover { opacity: 0.85; color: #fff; }
}

/* ─ Use case rows ─ */
.usecase-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
  border-radius: 14px;
  transition: background 180ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .usecase-item:hover { background: rgba(var(--cnvs-themecolor-rgb), 0.05); }
}
.usecase-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.usecase-item h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--pulse-ink);
}
.usecase-item p {
  font-size: 0.875rem;
  color: var(--pulse-muted);
  margin: 0;
  line-height: 1.55;
}

/* ─ CTA section ─ */
.cta-wrap {
  background: var(--cnvs-themecolor);
  border-radius: 24px;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}
.cta-wrap::before {
  content: '';
  position: absolute;
  width: 24rem;
  height: 24rem;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  top: -10rem;
  right: -6rem;
  pointer-events: none;
}
.cta-wrap h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.03em; margin-bottom: 1rem; }
.cta-wrap p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; max-width: 46ch; }
.btn-cta-white {
  background: #fff;
  color: var(--cnvs-themecolor);
  border-radius: 100px;
  padding: 0.9rem 2.2rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: opacity 160ms var(--ease-out), transform 160ms var(--ease-out);
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .btn-cta-white:hover { opacity: 0.9; color: var(--cnvs-themecolor); }
}
.btn-cta-white:active { transform: scale(0.97); }

/* ─ Footer ─ */
#footer {
  --cnvs-footer-bg: #0A0616;
  --cnvs-footer-top-border: 1px solid rgba(255,255,255,0.07);
  --cnvs-copyrights-link-color: rgba(255,255,255,0.45);
}
.footer-tagline {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-top: 0.75rem;
  max-width: 28ch;
}
.footer-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.2rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 160ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .footer-links a:hover { color: #fff; }
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  text-decoration: none;
  transition: background 160ms var(--ease-out), color 160ms var(--ease-out);
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .footer-social a:hover { background: var(--cnvs-themecolor); color: #fff; }
}
.footer-newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.8rem;
}
.footer-newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 0.65rem 1.1rem;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 180ms;
}
.footer-newsletter-form input:focus { border-color: rgba(var(--cnvs-themecolor-rgb), 0.6); }
.footer-newsletter-form button {
  background: var(--cnvs-themecolor);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 0.65rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 160ms;
  white-space: nowrap;
}
@media (hover: hover) and (pointer: fine) {
  .footer-newsletter-form button:hover { opacity: 0.82; }
}

/* Hero header-overlap compensation (transparent-header + include-header) */
.is-expanded-menu .hero-content {
  padding-top: 7rem;
}

/* Accessibility */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--cnvs-themecolor);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Responsive hero */
@media (max-width: 991px) {
  .hero-email-form { flex-direction: column; }
  .cp-section { padding: 3.5rem 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .plan-card.plan-featured { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-float-badge { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

.content-wrap {
	padding-top: 0;
	padding-bottom: 0;
}

.section {
	margin-top: 0;
	margin-bottom: 0;
}
