/* ==========================================================================
   home.css — homepage-specific sections (hero, stats, tools grid,
   feature rows, testimonials, final CTA). Depends on the global CSS.
   ========================================================================== */

/* ---- Hero ----------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 7rem) clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(91, 52, 240, 0.10), transparent 70%),
    linear-gradient(180deg, #ffffff 0%, var(--color-bg-alt) 100%);
}
/* Soft animated gradient blobs behind the hero */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
  animation: floatBlob 18s var(--ease-inout) infinite alternate;
}
.hero__blob--a { width: 420px; height: 420px; background: rgba(91, 52, 240, 0.35);  top: -120px; left: -80px; }
.hero__blob--b { width: 360px; height: 360px; background: rgba(37, 21, 159, 0.28);   top: 40px;  right: -100px; animation-delay: -6s; }
@keyframes floatBlob {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(20px, 40px, 0) scale(1.12); }
}
.hero__inner { position: relative; z-index: 1; text-align: center; }
.hero h1 { font-size: var(--fs-hero); margin-top: var(--space-4); }
.hero .lead { margin-top: var(--space-5); font-size: clamp(1.1rem, 1.5vw + 0.6rem, 1.4rem); }
.hero__cta { margin-top: var(--space-6); display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; }
.hero__note { margin-top: var(--space-4); color: var(--color-text-muted); font-size: var(--fs-small); }

/* Hero trust badges — centered, icon + label, staggered reveal */
.hero__badges {
  margin-top: var(--space-6);
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: var(--space-3) var(--space-6);
}
.hero__badges li {
  display: inline-flex; align-items: center; gap: 0.55rem;
  color: var(--color-text); font-size: var(--fs-small); font-weight: var(--fw-medium);
}
.hero__badges svg { width: 20px; height: 20px; color: #28994a; flex: none; }
/* Hero product visual (glass frame) */
.hero__visual {
  position: relative; z-index: 1;
  margin-top: var(--space-8);
  padding: var(--space-3);
  max-width: 960px; margin-inline: auto;
}
.hero__visual img { border-radius: var(--radius-md); width: 100%; }

/* ---- Stats / trust bar ---------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); text-align: center; }
.stat__num { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: var(--fw-bold); color: var(--color-primary); line-height: 1; }
.stat__label { margin-top: var(--space-2); color: var(--color-text-muted); font-size: var(--fs-small); }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); } }

/* ---- Tools overview grid -------------------------------------------------- */
.tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); margin-top: var(--space-8); }
.tool-card { display: flex; flex-direction: column; gap: var(--space-2); text-decoration: none; }
.tool-card__icon {
  width: 46px; height: 46px; display: grid; place-items: center;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff; margin-bottom: var(--space-2);
}
.tool-card__icon svg { width: 24px; height: 24px; }
.tool-card h3 { font-size: 1.15rem; }
.tool-card p { color: var(--color-text-muted); font-size: var(--fs-small); }
/* OLD (plain text link):
.tool-card__more { color: var(--color-accent); font-weight: var(--fw-semibold); font-size: var(--fs-small); margin-top: auto; } */
.tool-card__more {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  background: var(--color-bg-alt);
  color: var(--color-primary);
  font-weight: var(--fw-semibold); font-size: var(--fs-small);
  border: 1px solid var(--color-border);
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.tool-card:hover .tool-card__more { background: var(--color-primary); color: #fff; border-color: var(--color-primary); transform: translateX(3px); }

/* CTA under each homepage feature row */
.feature-row__cta { margin-top: var(--space-5); }
@media (max-width: 900px) { .tools-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tools-grid { grid-template-columns: 1fr; } }

/* ---- Feature rows (alternating) ------------------------------------------- */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-10); align-items: center; }
.feature-row + .feature-row { margin-top: var(--space-12); }
.feature-row--reverse .feature-row__media { order: -1; }
.feature-row__body h2 { margin-bottom: var(--space-4); }
.feature-row__list { margin-top: var(--space-5); display: grid; gap: var(--space-3); }
.feature-row__list li { display: flex; gap: var(--space-3); align-items: flex-start; color: var(--color-text); }
.feature-row__list svg { flex: none; width: 22px; height: 22px; color: var(--color-accent); margin-top: 2px; }
.feature-row__media { padding: var(--space-4); }
.feature-row__media img { width: 100%; border-radius: var(--radius-md); }
@media (max-width: 860px) {
  .feature-row { grid-template-columns: 1fr; gap: var(--space-6); }
  .feature-row--reverse .feature-row__media { order: 0; }
}

/* ---- Testimonials --------------------------------------------------------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); margin-top: var(--space-8); }
.testimonial { display: flex; flex-direction: column; gap: var(--space-4); }
.testimonial__quote { font-size: 1.05rem; color: var(--color-text); }
.testimonial__author { display: flex; flex-direction: column; margin-top: auto; }
.testimonial__name { font-weight: var(--fw-semibold); color: var(--color-primary); }
.testimonial__role { font-size: var(--fs-small); color: var(--color-text-muted); }
.testimonial__stars { color: #ffb400; letter-spacing: 2px; }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ---- Final CTA ------------------------------------------------------------ */
.cta-band {
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-700) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.8); margin-inline: auto; margin-top: var(--space-3); }
.cta-band .btn { margin-top: var(--space-6); }
.cta-band .btn--primary { background: #fff; color: var(--color-primary); }
.cta-band .btn--primary:hover { background: var(--color-bg-alt); color: var(--color-primary); }

/* Section heading helper */
.section-head { max-width: 640px; margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: var(--space-3); }
.section-head p { margin-top: var(--space-3); color: var(--color-text-muted); margin-inline: auto; }

/* ==========================================================================
   PREMIUM REBUILD — additional sections, floating elements, richer motion.
   (Appended. Reuses tokens from variables.css and the [data-reveal] system.)
   ========================================================================== */

/* reveal direction variants — apply ONLY while not yet revealed. Without :not(.is-visible)
   these have equal specificity to base.css's [data-reveal].is-visible{transform:none} but load
   later, so they'd win and leave the element permanently shifted (-34px off the left edge on
   mobile — the pillars bug). Scoping to :not(.is-visible) lets the base rule reset them. */
[data-reveal].rv-left:not(.is-visible)  { transform: translateX(-34px); }
[data-reveal].rv-right:not(.is-visible) { transform: translateX(34px); }
[data-reveal].rv-scale:not(.is-visible) { transform: scale(.92); }

/* floating elements */
@keyframes floaty      { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-16px) } }
@keyframes floaty-slow { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-24px) } }
.float      { animation: floaty 6s var(--ease-inout) infinite; }
.float--slow{ animation: floaty-slow 9s var(--ease-inout) infinite; }
@media (prefers-reduced-motion: reduce) { .float, .float--slow { animation: none; } }

.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: var(--radius-pill);
  background: rgba(91, 52, 240, .08); color: var(--color-accent);
  font-size: .78rem; font-weight: var(--fw-bold); letter-spacing: .06em; text-transform: uppercase;
}
.eyebrow-pill svg { width: 15px; height: 15px; }

/* hero floating chips */
.hero__chips { position: relative; }
.hero-chip {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: var(--radius-md);
  background: rgba(255,255,255,.72); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow-md); font-size: .9rem; font-weight: var(--fw-semibold); color: var(--color-text); white-space: nowrap;
}
.hero-chip svg { width: 20px; height: 20px; color: var(--color-accent); }
.hero-chip--a { top: 6%;  left: -1%; }
.hero-chip--b { top: 44%; right: -2%; }
.hero-chip--c { bottom: 8%; left: 5%; }
@media (max-width: 760px) { .hero-chip { display: none; } }

/* stats band (dark) with counters */
.home-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); padding: var(--space-8);
  border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--color-primary), var(--color-primary-700)); color: #fff; box-shadow: var(--shadow-lg); }
.home-stats__item { text-align: center; }
.home-stats__num { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: var(--fw-bold); line-height: 1; letter-spacing: -.02em; }
.home-stats__label { margin-top: 8px; font-size: var(--fs-small); color: rgba(255,255,255,.8); }
@media (max-width: 780px) { .home-stats { grid-template-columns: repeat(2, 1fr); gap: var(--space-6) var(--space-4); } }

/* problem: stack vs one platform */
.stackrow { display: grid; grid-template-columns: 1fr auto 1fr; gap: var(--space-5); align-items: stretch; margin-top: var(--space-8); }
.stackcard { padding: var(--space-6); border-radius: var(--radius-lg); border: 1px solid var(--color-border); background: var(--color-surface); }
.stackcard__title { font-size: .72rem; font-weight: var(--fw-bold); letter-spacing: .08em; text-transform: uppercase; color: var(--color-text-muted); margin: 0 0 var(--space-4); }
.stackcard--bad ul { list-style: none; margin: 0; padding: 0; }
.stackcard--bad li { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--color-border); color: var(--color-text-muted); }
.stackcard--bad li:last-child { border-bottom: 0; }
.stackcard--bad li svg { width: 18px; height: 18px; color: #c0563f; flex: none; }
.stackcard--good { background: linear-gradient(160deg, var(--color-primary), var(--color-primary-700)); color: #fff; border: 0; display: flex; flex-direction: column; justify-content: center; box-shadow: var(--shadow-lg); }
.stackcard--good .stackcard__title { color: rgba(255,255,255,.7); }
.stackcard--good .big { font-size: 2rem; font-weight: var(--fw-bold); }
.stackcard--good p { color: rgba(255,255,255,.85); margin-top: var(--space-3); }
.stackrow__arrow { display: grid; place-items: center; color: var(--color-accent); }
.stackrow__arrow svg { width: 40px; height: 40px; }
@media (max-width: 820px) { .stackrow { grid-template-columns: 1fr; } .stackrow__arrow { transform: rotate(90deg); } }

/* pillars — alternating glass feature blocks.
   overflow-x: clip contains the rv-left/rv-right slide-in offset (translateX ±34px) so a
   not-yet-revealed pillar can never widen the page — on mobile the columns stack full-width,
   and a +34px shift would otherwise poke past the viewport edge and drift the whole page
   sideways. `clip` (not `hidden`) leaves overflow-y visible so the badges that overhang
   top/bottom (-18px) still show. The element now slides in from the clipped edge to centre. */
.pillar { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; padding-block: clamp(2.5rem,5vw,4rem); overflow-x: clip; }
.pillar--flip .pillar__text { order: 2; }
.pillar__icon { width: 64px; height: 64px; border-radius: var(--radius-md); display: grid; place-items: center;
  background: linear-gradient(150deg, var(--color-accent), var(--color-primary)); color: #fff; box-shadow: var(--shadow-md); margin-bottom: var(--space-5); }
.pillar__icon svg { width: 32px; height: 32px; }
.pillar__text h3 { font-size: clamp(1.5rem,2.4vw,2rem); line-height: 1.2; }
.pillar__text > p { margin-top: var(--space-4); }
.pillar__list { list-style: none; margin: var(--space-5) 0 0; padding: 0; }
.pillar__list li { position: relative; padding-left: 2rem; margin-bottom: 12px; color: var(--color-text-muted); }
.pillar__list li::before { content: ""; position: absolute; left: 0; top: .3em; width: 1.2rem; height: 1.2rem; border-radius: 50%;
  background: var(--color-accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / .72rem no-repeat; }
.pillar__visual { position: relative; }
.pillar__card { border-radius: var(--radius-lg); border: 1px solid var(--color-border); background: var(--color-surface); box-shadow: var(--shadow-lg); padding: var(--space-6); }
.pillar__badge { position: absolute; z-index: 2; display: flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: var(--radius-md);
  background: #fff; border: 1px solid var(--color-border); box-shadow: var(--shadow-md); font-size: .82rem; font-weight: var(--fw-semibold); }
.pillar__badge svg { width: 18px; height: 18px; color: #1f9d55; }
.pillar__badge--tr { top: -18px; right: 24px; }
.pillar__badge--bl { bottom: -18px; left: 24px; }
.minirow { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--color-border); }
.minirow:last-child { border-bottom: 0; }
.miniav { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-weight: var(--fw-bold); color: #fff; background: linear-gradient(140deg, var(--color-accent), var(--color-primary)); flex: none; font-size: .85rem; }
.minirow__name { font-weight: var(--fw-semibold); font-size: .95rem; }
.minirow__sub { font-size: .8rem; color: var(--color-text-muted); }
.minitag { margin-left: auto; font-size: .72rem; font-weight: var(--fw-bold); padding: 4px 10px; border-radius: var(--radius-pill); background: #e6f6ee; color: #1f7a4d; white-space: nowrap; }
@media (max-width: 860px) { .pillar { grid-template-columns: 1fr; } .pillar--flip .pillar__text { order: 0; } }

/* products icon grid */
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: var(--space-4); margin-top: var(--space-8); }
.prod { display: block; padding: var(--space-5); border-radius: var(--radius-md); border: 1px solid var(--color-border); background: var(--color-surface); text-decoration: none; transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base); }
.prod:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.prod__ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(91,52,240,.09); color: var(--color-accent); margin-bottom: var(--space-4); }
.prod__ic svg { width: 24px; height: 24px; }
.prod strong { display: block; color: var(--color-text); }
.prod span { display: block; margin-top: 6px; font-size: var(--fs-small); color: var(--color-text-muted); line-height: 1.55; }

/* how it works steps */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-4); margin-top: var(--space-10); position: relative; }
.steps::before { content: ""; position: absolute; top: 32px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, transparent, var(--color-border), transparent); z-index: 0; }
.step { text-align: center; position: relative; z-index: 1; }
.step__dot { width: 64px; height: 64px; margin: 0 auto var(--space-4); border-radius: 50%; display: grid; place-items: center; background: var(--color-surface); border: 2px solid var(--color-border); color: var(--color-accent); box-shadow: var(--shadow-sm); }
.step__dot svg { width: 28px; height: 28px; }
.step__n { font-size: .72rem; font-weight: var(--fw-bold); letter-spacing: .08em; text-transform: uppercase; color: var(--color-accent); }
.step h4 { margin-top: 6px; font-size: 1.05rem; }
.step p { margin-top: 6px; font-size: var(--fs-small); color: var(--color-text-muted); }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; gap: var(--space-6); } .steps::before { display: none; } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

/* spotlight number */
.spotlight { text-align: center; max-width: 46rem; margin-inline: auto; padding: clamp(2.5rem,5vw,4rem); border-radius: var(--radius-lg); border: 1px solid var(--color-border); background: var(--color-surface); box-shadow: var(--shadow-sm); }
.spotlight__num { font-size: clamp(3.5rem,10vw,6rem); font-weight: var(--fw-bold); line-height: 1; letter-spacing: -.02em; background: linear-gradient(120deg, var(--color-primary), var(--color-accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.spotlight__label { margin-top: var(--space-2); font-weight: var(--fw-semibold); }
.spotlight p { margin-top: var(--space-5); margin-inline: auto; color: var(--color-text-muted); }

/* bento */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: var(--space-4); margin-top: var(--space-8); }
.bento__cell { padding: var(--space-6); border-radius: var(--radius-lg); border: 1px solid var(--color-border); background: var(--color-surface); transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out); }
.bento__cell:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.bento__cell--wide { grid-column: span 2; }
.bento__cell--dark { background: linear-gradient(150deg, var(--color-primary), var(--color-primary-700)); color: #fff; border: 0; }
.bento__ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(91,52,240,.1); color: var(--color-accent); margin-bottom: var(--space-4); }
.bento__cell--dark .bento__ic { background: rgba(255,255,255,.16); color: #fff; }
.bento__ic svg { width: 24px; height: 24px; }
.bento__cell h4 { font-size: 1.15rem; }
/* base.css sets h4{color:var(--color-primary)} — dark blue, invisible on the dark
   bento card. Match the card's own description text colour so title + body read as
   one pair. */
.bento__cell--dark h4 { color: rgba(255,255,255,.82); }
.bento__cell p { margin-top: 8px; font-size: var(--fs-small); color: var(--color-text-muted); line-height: 1.6; }
.bento__cell--dark p { color: rgba(255,255,255,.82); }
/* "7 days" is a title, not body copy — match the h4 card titles in both colour and
   SIZE (1.15rem), so it reads as a sibling of One login / No contracts / GDPR-aware
   rather than an oversized number. */
.bento__big { font-size: 1.15rem; font-weight: var(--fw-bold); line-height: 1.2; color: var(--color-primary); }
@media (max-width: 860px) { .bento { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; } .bento__cell--wide { grid-column: span 1; } }

/* pricing preview */
.pricerow { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); margin-top: var(--space-8); align-items: start; }
.pricecard { position: relative; padding: var(--space-6); border-radius: var(--radius-lg); border: 1px solid var(--color-border); background: var(--color-surface); text-align: center; box-shadow: var(--shadow-sm); }
.pricecard--featured { border-color: var(--color-primary); box-shadow: var(--shadow-lg); transform: translateY(-8px); }
.pricecard__tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); padding: 4px 14px; border-radius: var(--radius-pill); background: var(--color-primary); color: #fff; font-size: .68rem; font-weight: var(--fw-bold); letter-spacing: .05em; text-transform: uppercase; white-space: nowrap; }
.pricecard__name { font-size: .78rem; font-weight: var(--fw-bold); letter-spacing: .08em; text-transform: uppercase; color: var(--color-text-muted); }
.pricecard__price { font-size: 2.6rem; font-weight: var(--fw-bold); color: var(--color-primary); margin-top: var(--space-3); line-height: 1; }
.pricecard__price small { font-size: 1rem; font-weight: var(--fw-medium); color: var(--color-text-muted); }
.pricecard__seats { margin-top: 6px; font-weight: var(--fw-semibold); }
.pricecard__note { margin-top: var(--space-2); margin-bottom: var(--space-5); font-size: var(--fs-small); color: var(--color-text-muted); }
/* margin-inline:auto is what actually centres it: base.css `p{max-width:65ch}` caps
   the width, so without auto side-margins the (text-centred) box hugs the left and
   the line only *looks* left-aligned. */
.pricerow__foot { text-align: center; max-width: 65ch; margin: var(--space-6) auto 0; color: var(--color-text-muted); font-size: var(--fs-small); }
@media (max-width: 860px) { .pricerow { grid-template-columns: 1fr; } .pricecard--featured { transform: none; } }

/* dynamic reviews */
.home-reviews[hidden] { display: none; }
.rev-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: var(--space-4); margin-top: var(--space-8); }
.rev-card { padding: var(--space-5); border-radius: var(--radius-lg); border: 1px solid var(--color-border); background: var(--color-surface); box-shadow: var(--shadow-sm); }
.rev-card__stars { color: #ffb703; letter-spacing: 2px; }
.rev-card__text { margin-top: var(--space-3); line-height: 1.6; }
.rev-card__who { display: flex; align-items: center; gap: 12px; margin-top: var(--space-4); }
.rev-card__av { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-weight: var(--fw-bold); color: #fff; background: linear-gradient(140deg, var(--color-accent), var(--color-primary)); font-size: .85rem; }
.rev-card__name { font-weight: var(--fw-semibold); font-size: .92rem; }
.rev-card__verified { font-size: .74rem; color: #1f7a4d; font-weight: var(--fw-bold); }

/* final CTA with orbs */
.cta-final { position: relative; overflow: hidden; text-align: center; border-radius: var(--radius-lg); padding: clamp(3rem,6vw,5rem) var(--space-6); background: linear-gradient(140deg, var(--color-primary), var(--color-accent)); color: #fff; box-shadow: var(--shadow-lg); }
.cta-final > * { position: relative; z-index: 1; }
.cta-final h2 { color: #fff; font-size: clamp(1.8rem,4vw,2.8rem); }
.cta-final p { color: rgba(255,255,255,.9); margin: var(--space-4) auto 0; max-width: 44ch; }
.cta-final .btn { margin-top: var(--space-6); }
.cta-final .btn--primary { background: #fff; color: var(--color-primary); border-color: #fff; }
.cta-final .btn--primary:hover { background: rgba(255,255,255,.9); }
.cta-final__orb { position: absolute; border-radius: 50%; filter: blur(50px); opacity: .5; z-index: 0; }
.cta-final__orb--a { width: 340px; height: 340px; background: #7a52ff; top: -120px; right: -80px; }
.cta-final__orb--b { width: 280px; height: 280px; background: #3a1fd0; bottom: -120px; left: -60px; }
.cta-final__note { margin-top: var(--space-4); font-size: var(--fs-small); color: rgba(255,255,255,.75); }
