:root {
  --bg: #F9F7F2;
  --panel: #FFFFFF;
  --panel-2: #F4F7FC;
  --text: #111827;
  --muted: #4B5563;
  --accent: #007BFF;
  --accent-2: #339DFF;
  --border: rgba(17, 24, 39, 0.1);
  --shadow: 0 18px 40px rgba(0, 26, 58, 0.08);
  --radius: 14px;
  --radius-lg: 20px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(0, 123, 255, 0.08), transparent 35%),
    radial-gradient(circle at 80% 0%, rgba(51, 157, 255, 0.1), transparent 30%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding: 0 18px 72px;
}

a {
  color: inherit;
  text-decoration: none;
}

a.primary,
button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #ffffff;
  font-weight: 700;
  padding: 14px 18px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 10px 24px rgba(0, 123, 255, 0.26);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  display: inline-block;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

a.primary:hover,
button.primary:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 14px 28px rgba(0, 123, 255, 0.3);
  filter: saturate(1.06);
}

a.secondary {
  border: 1px solid var(--border);
  padding: 12px 16px;
  border-radius: 10px;
  color: var(--text);
  font-weight: 600;
}

a.ghost {
  color: var(--muted);
  font-weight: 600;
  padding: 12px 0;
}

.primary.full,
button.primary.full {
  width: 100%;
  margin-top: 36px;
}

.header {
    position: relative;
    text-align: center;
    padding: 10px 15px;
}

.site-header {
  margin: 18px auto 28px;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: sticky;
  top: 12px;
  backdrop-filter: blur(10px);
  z-index: 5;
  transition: transform 0.35s ease, opacity 0.35s ease;
  will-change: transform, opacity;
}

.site-header.is-hidden {
  transform: translateY(-140%);
  opacity: 0;
  pointer-events: none;
}

.logo {
  height: 54px;
  width: auto;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-link {
  display: inline-flex;
}

.tag {
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(0, 123, 255, 0.1);
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translate(-50%, 140%);
  width: min(960px, calc(100% - 28px));
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.55);
  padding: 18px 18px 14px;
  color: var(--text);
  z-index: 10;
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.cookie-banner.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

.cookie-banner h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.cookie-banner p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-buttons button {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #eef4ff;
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.cookie-buttons button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.cookie-buttons .primary-action {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #ffffff;
  border: none;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.hero {
  display: grid;
  grid-template-columns: 2fr 1.1fr;
  gap: 22px;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.12), rgba(51, 157, 255, 0.06));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-content h1 {
  margin: 10px 0 8px;
  font-size: 32px;
  line-height: 1.25;
}

.hero .lede {
  color: var(--muted);
  margin: 0 0 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
}

.lede {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}

.stat {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.caption {
  margin: 4px 0 0;
  color: var(--muted);
}

.hero-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  align-self: stretch;
  box-shadow: var(--shadow);
}

.hero-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.hero-card ul {
  padding-left: 18px;
  margin: 0 0 18px;
  color: var(--muted);
}

.badge {
  display: inline-block;
  padding: 10px 14px;
  background: rgba(0, 123, 255, 0.1);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
}

.trust {
  text-align: center;
}

.pillars {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 18px;
}

.pillars div {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  color: var(--muted);
  box-shadow: var(--shadow);
}

.pillars h3 {
  color: var(--text);
  margin-top: 0;
}

.journey .section-header,
.features .section-header,
.offer .section-header {
  text-align: center;
  margin-bottom: 12px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.step-card {
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.step-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.features .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.feature-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  color: var(--muted);
}

.feature-card h3 {
  color: var(--text);
  margin-top: 0;
}

.video {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
  align-items: center;
}

.video-card {
  background: radial-gradient(circle at 20% 20%, rgba(0, 123, 255, 0.12), rgba(255, 255, 255, 0.94));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
}

.video-card .label {
  display: inline-block;
  padding: 8px 12px;
  background: rgba(0, 123, 255, 0.12);
  border-radius: 12px;
  color: var(--accent-2);
  font-weight: 700;
  margin-bottom: 12px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 ratio */
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.placeholder {
  height: 220px;
  border-radius: var(--radius);
  border: 1px dashed rgba(0, 123, 255, 0.25);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.video-card .caption {
  margin-top: 12px;
}

.video-copy h2 {
  margin-top: 0;
}

.video-copy ul {
  color: var(--muted);
  padding-left: 18px;
}

.demo-link {
  text-decoration: underline;
  font-weight: 500;
}

.demo-link:hover {
  opacity: 0.85;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.offer-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
  color: var(--muted);
}

.offer-card h3 {
  color: var(--text);
  margin-top: 0;
}

.price {
  font-weight: 700;
  color: var(--text);
}

.offer-card ul {
  padding-left: 18px;
}

/* Place this badge above the offer cards */
.guarantee-badge {
  margin: 16px 0 18px;
  padding: 16px 16px;
  border-radius: 16px;
  border: 1px solid rgba(0, 123, 255, 0.2);
  background: rgba(0, 123, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Make it feel like a "stamp" not a random card */
.guarantee-badge {
  box-shadow: 0 12px 26px rgba(0, 26, 58, 0.12);
  border: 1px solid rgba(0, 123, 255, 0.24);
  background: linear-gradient(135deg,
      rgba(0, 123, 255, 0.14),
      rgba(51, 157, 255, 0.1));
}

/* Icon bubble */
.guarantee-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 123, 255, 0.24);
}

/* Typography */
.guarantee-text {
  flex: 1;
  min-width: 0;
}

.guarantee-title {
  font-weight: 800;
  font-size: 16px;
  line-height: 1.1;
}

.guarantee-sub {
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.35;
  opacity: 0.95;
}

/* Link styling */
.guarantee-link {
  white-space: nowrap;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 123, 255, 0.24);
  background: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.guarantee-link:hover {
  background: rgba(255, 255, 255, 0.92);
}

/* Mobile layout */
@media (max-width: 640px) {
  .guarantee-badge {
    flex-direction: column;
    align-items: flex-start;
  }

  .guarantee-link {
    width: 100%;
    text-align: center;
  }
}

.revenue-share {
  background: radial-gradient(circle at 20% 0%, rgba(0, 123, 255, 0.08), transparent 35%),
    var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow);
}

.revenue-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}

.revenue-note {
  background: rgba(0, 123, 255, 0.08);
  border: 1px solid rgba(0, 123, 255, 0.2);
  color: var(--text);
  font-weight: 700;
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 14px;
}

.revenue-table-wrapper {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(0, 123, 255, 0.05), rgba(51, 157, 255, 0.05));
  box-shadow: var(--shadow);
}

.revenue-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.revenue-table thead th {
  text-align: left;
  padding: 12px 16px;
  color: var(--text);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 123, 255, 0.2);
}

.revenue-table tbody tr {
  background: var(--panel-2);
  color: var(--muted);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.revenue-table tbody tr+tr td {
  border-top: 1px solid rgba(0, 123, 255, 0.08);
}

.revenue-table td {
  padding: 12px 16px;
}

.revenue-table tbody tr:hover {
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.12), rgba(51, 157, 255, 0.08));
}

.faq {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}

.faq .section-header {
  text-align: center;
  margin-bottom: 18px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-weight: 700;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 16px;
}

.faq-question::after {
  content: "+";
  font-size: 18px;
  color: var(--accent);
  transition: transform 0.2s ease;
}

.faq-item.active .faq-question::after,
.faq-question.rotated::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  color: var(--muted);
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 16px 16px;
}

.cta {
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(51, 157, 255, 0.12));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 18px;
  align-items: center;
}

.call-form {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  color: var(--muted);
}

.field input,
.field textarea {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  color: var(--text);
  font-family: inherit;
}

.field textarea {
  resize: vertical;
  min-height: 120px;
  margin-bottom: 12px;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid rgba(0, 123, 255, 0.35);
}

.field.full {
  grid-column: 1 / -1;
}

.microcopy {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

#call-scheduler {
  margin-top: 48px;
  display: none;
  /* shown as block via JS */
  text-align: center;
  grid-column: 1 / -1;
  /* <-- span full width of the .cta grid */
}

#call-scheduler .calendly-inline-widget {
  width: min(100%, 760px);
  margin: 0 auto;
}

#calendly-loader {
  margin-bottom: 24px;
  opacity: 0.65;
  font-size: 14px;
}

#call-scheduler h3 {
  margin-bottom: 8px;
}

#call-scheduler .microcopy {
  margin-bottom: 24px;
  opacity: 0.85;
}

.footer {
  text-align: center;
  color: var(--muted);
  margin-top: 48px;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.testimonials {
  background: radial-gradient(circle at 15% 30%, rgba(51, 157, 255, 0.1), transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(0, 123, 255, 0.08), transparent 35%),
    var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow);
}

.testimonials .section-header {
  text-align: left;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  display: grid;
  gap: 10px;
}

.testimonial-quote {
  margin: 0;
  color: var(--text);
}

.testimonial-name {
  margin: 0;
  font-weight: 700;
  color: var(--accent);
}

.testimonial-role {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.testimonial-badge {
  padding: 6px 10px;
  background: rgba(0, 123, 255, 0.1);
  color: var(--accent);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.stripe-proof {
  margin-top: 32px;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.08), rgba(51, 157, 255, 0.08)),
    var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow);
}

.stripe-proof .section-header {
  text-align: left;
  margin-bottom: 20px;
}

.stripe-proof-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: center;
}

.stripe-proof-media {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(12, 15, 23, 0.08);
  box-shadow: 0 18px 40px rgba(7, 10, 20, 0.08);
}

.stripe-proof-media img {
  width: 100%;
  display: block;
}

.stripe-proof-copy h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.stripe-proof-copy p {
  margin-top: 0;
  color: var(--muted);
}

.stripe-proof-copy ul {
  padding-left: 18px;
  margin: 16px 0 0;
  color: var(--muted);
}

.separator {
  color: rgba(75, 85, 99, 0.4);
}


main>section {
  animation: fade-up 0.55s ease both;
}

main>section:nth-child(2) {
  animation-delay: 0.08s;
}

main>section:nth-child(3) {
  animation-delay: 0.14s;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  main>section {
    animation: none;
  }
}

@media (max-width: 900px) {

  .hero,
  .video,
  .cta {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    position: sticky;
    top: 10px;
    margin: 12px auto 22px;
  }

  .cta-group {
    width: 100%;
  }

  .cta-group .primary {
    width: 100%;
    text-align: center;
  }

  .cookie-banner {
    padding: 16px;
    width: calc(100% - 20px);
    bottom: 12px;
  }
}

@media (max-width: 640px) {
  body {
    padding: 0 14px 48px;
  }

  .hero,
  .cta {
    padding: 20px;
  }

  .cta-group,
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  a.secondary {
    text-align: center;
  }
}

@media (max-width: 720px) {
  .revenue-card {
    padding: 16px;
  }

  .revenue-table-wrapper {
    margin: 0 -6px;
  }

  .revenue-table {
    min-width: 560px;
  }
}

.micro-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 16px;
}

.micro-pill {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}

.hero-microcopy {
  margin: 12px 0 0;
  text-align: center;
}

.activity-bar {
  margin: 14px 0 16px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  gap: 10px;
}

.activity-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 22px rgba(0, 123, 255, 0.24);
  flex: 0 0 auto;
}

.activity-text {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.trust-quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.quick-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
}

.quick-card h2 {
  margin: 0 0 10px;
  font-size: 18px;
}

.quick-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.quick-tags {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-chip {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(0, 123, 255, 0.08);
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.payout-proof {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 18px;
  /* margin-top: 48px; */
  box-shadow: var(--shadow);
}

.payout-proof .section-header {
  margin-bottom: 18px;
}

.payout-proof-card {
  /* background: #050505;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px; */
  padding: 14px;
  overflow: hidden;
}

.payout-proof-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
  display: block;
}

.creator-proof {
  background: radial-gradient(circle at 15% 30%, rgba(51, 157, 255, 0.1), transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(0, 123, 255, 0.08), transparent 35%),
    var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0 26px 26px;
  box-shadow: var(--shadow);
}

.creator-carousel {
  margin-top: 14px;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding: 4px 2px 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.carousel-track::-webkit-scrollbar {
  height: 10px;
}

.carousel-track::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.creator-slide {
  scroll-snap-align: start;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
box-shadow:
  0 8px 18px rgba(0, 26, 58, 0.08),
  0 1px 4px rgba(0, 26, 58, 0.05);


  display: grid;
  gap: 12px;
}

.creator-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.creator-head img {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.creator-id {
  min-width: 0;
}

.creator-name {
  margin: 0;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
}

.creator-handle {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.creator-quote {
  margin: 0;
  color: var(--text);
}

.carousel-dots {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 123, 255, 0.24);
  background: rgba(0, 123, 255, 0.06);
  cursor: pointer;
  padding: 0;
}

.dot.is-active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: none;
}

@media (max-width: 900px) {
  .trust-quick {
    grid-template-columns: 1fr;
  }
}

.demo-tease-card {
  background: radial-gradient(circle at 20% 20%, rgba(0, 123, 255, 0.12), rgba(255, 255, 255, 0.94));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}

.demo-tease-points {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.demo-point {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--muted);
  font-weight: 600;
}

.examples-carousel {
    margin-top: 18px;
}

.examples-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 86%;
    gap: 16px;

    overflow-x: auto;
    padding: 6px 7% 14px;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.examples-track::-webkit-scrollbar {
    display: none;
}

.examples-track .example-card {
    scroll-snap-align: center;
}

.example-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 16px 34px rgba(0, 26, 58, 0.08);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.example-top {
    background: #F4F7FC;
    padding: 14px;
    display: flex;
    justify-content: center;
}

.example-top img {
    width: 100%;
    height: 320px;
    object-fit: contain;
    display: block;
    border-radius: 14px;
}

.examples-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.example-bottom {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.example-cta {
    font-weight: 700;
    font-size: 14px;
    color: #007BFF;
    white-space: nowrap;
}

.example-apps {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 22px;
    padding: 22px 18px;
    box-shadow: 0 18px 40px rgba(0, 26, 58, 0.06);
    margin: 0 auto;
    max-width: 980px;
}