/* AIRP Presentation Landing — carilo */

.pv-page {
  --landing-light: 1;
  --pv-bg: #ffffff;
  --pv-bg-soft: #f8fafc;
  --pv-bg-card: #ffffff;
  --pv-border: #e2e8f0;
  --pv-text: #334155;
  --pv-text-strong: #0f172a;
  --pv-text-muted: #64748b;
  --pv-accent: #4f46e5;
  --pv-violet: #7c3aed;
  --pv-cyan: #0891b2;
  --pv-emerald: #059669;
  --pv-rose: #e11d48;
  --pv-amber: #d97706;
  --pv-gradient: linear-gradient(95deg, #6366f1 0%, #a855f7 50%, #06b6d4 100%);
  --pv-gradient-soft: linear-gradient(95deg, rgba(99, 102, 241, 0.08) 0%, rgba(168, 85, 247, 0.06) 50%, rgba(6, 182, 212, 0.05) 100%);
  --pv-radius: 1.25rem;
  --pv-radius-sm: 0.75rem;
  --pv-shadow: 0 16px 40px -16px rgba(15, 23, 42, 0.12);
  position: relative;
  color: var(--pv-text);
  background: var(--pv-bg);
}

.pv-page section {
  position: relative;
}

.pv-container {
  width: min(1200px, calc(100% - 2rem));
  margin-inline: auto;
}

.pv-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #4f46e5;
  background: #eef2ff;
  border: 1px solid #c7d2fe;
}

.pv-kicker i {
  font-size: 0.65rem;
  opacity: 0.9;
}

.pv-title {
  margin: 1rem 0 0;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--pv-text-strong);
  letter-spacing: -0.02em;
}

.pv-title-gradient {
  background: var(--pv-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pv-lead {
  margin: 1rem 0 0;
  max-width: 42rem;
  font-size: clamp(0.95rem, 1.8vw, 1.125rem);
  line-height: 1.85;
  color: var(--pv-text-muted);
}

.pv-lead--center {
  margin-inline: auto;
  text-align: center;
}

.pv-section-head {
  margin-bottom: 2.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--pv-radius);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--pv-border);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.pv-section-head--center {
  text-align: center;
}

.pv-section-head--center .pv-lead {
  margin-inline: auto;
}

.pv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.85rem;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.pv-btn:active {
  transform: scale(0.98);
}

.pv-btn--primary {
  color: #fff;
  background: var(--pv-gradient);
  box-shadow: 0 12px 32px -8px rgba(99, 102, 241, 0.45);
}

.pv-btn--primary:hover {
  filter: brightness(1.08);
}

.pv-btn--ghost {
  color: #4f46e5;
  border: 1px solid #c7d2fe;
  background: #eef2ff;
}

.pv-btn--ghost:hover {
  background: #e0e7ff;
  border-color: #a5b4fc;
}

.pv-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.pv-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hero ── */
.pv-hero {
  display: flex;
  align-items: flex-start;
  padding: 0.5rem 0 2rem;
  background:
    radial-gradient(ellipse 80% 60% at 80% 10%, rgba(99, 102, 241, 0.1), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(6, 182, 212, 0.08), transparent 55%),
    var(--pv-bg);
  border-bottom: 1px solid var(--pv-border);
}

.pv-hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .pv-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
  }
}

.pv-hero__badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.pv-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #475569;
  background: #f1f5f9;
  border: 1px solid var(--pv-border);
}

.pv-hero__pill i {
  color: #0891b2;
  font-size: 0.65rem;
}

.pv-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.pv-hero__note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--pv-text-muted);
}

.pv-hero__visual {
  position: relative;
}

.pv-hero__slider.pv-showcase__slider {
  width: 100%;
  margin-inline: 0;
  padding-bottom: 0;
}

.pv-hero__slider .pv-showcase__viewport {
  min-height: clamp(180px, 28vw, 300px);
}

.pv-hero__slider .pv-showcase__slide {
  min-height: clamp(180px, 28vw, 300px);
}

.pv-hero__slider .pv-showcase__slide img {
  max-height: clamp(160px, 26vw, 280px);
}

.pv-hero__slider .pv-showcase__arrow {
  top: 42%;
  bottom: auto;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  font-size: 0.7rem;
}

.pv-hero__slider .pv-showcase__arrow--prev {
  inset-inline-end: auto;
  inset-inline-start: 0.4rem;
}

.pv-hero__slider .pv-showcase__arrow--next {
  inset-inline-start: auto;
  inset-inline-end: 0.4rem;
}

.pv-hero__glow {
  position: absolute;
  inset: -20% -10%;
  z-index: -1;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}

.landing-dark-zone-content--hero {
  position: relative;
  z-index: 5;
  margin-top: 0;
}

.landing-dark-zone-content--banner + .landing-dark-zone-content--hero {
  margin-top: 0;
}

.landing-dark-zone-content--banner + .landing-dark-zone-content--hero .pv-hero {
  padding-top: 0.35rem;
}

.landing-dark-zone-content--banner {
  position: relative;
  z-index: 5;
  margin-bottom: 0;
}

/* ── Problem ── */
.pv-problem {
  padding: 5rem 0;
  background: transparent;
  border-bottom: 1px solid var(--pv-border);
}

.pv-problem__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .pv-problem__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pv-problem__card {
  padding: 1.5rem;
  border-radius: var(--pv-radius);
  border: 1px solid var(--pv-border);
  background: var(--pv-bg-card);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
}

.pv-problem__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 0.75rem;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.pv-problem__icon--rose { color: #e11d48; background: #fff1f2; }
.pv-problem__icon--amber { color: #d97706; background: #fffbeb; }
.pv-problem__icon--violet { color: #7c3aed; background: #f5f3ff; }

.pv-problem__card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--pv-text-strong);
  margin: 0 0 0.5rem;
}

.pv-problem__card p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--pv-text-muted);
}

.pv-problem__answer {
  margin-top: 2.5rem;
  padding: 1.5rem 1.75rem;
  border-radius: var(--pv-radius);
  border: 1px solid rgba(99, 102, 241, 0.22);
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.pv-problem__answer-icon {
  display: block;
  margin: 0 auto 0.75rem;
  font-size: 1.5rem;
  color: #059669;
}

.pv-problem__answer strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--pv-text-strong);
  margin-bottom: 0.35rem;
}

.pv-problem__answer span {
  font-size: 0.9rem;
  color: var(--pv-text-muted);
}

/* ── Definition ── */
.pv-def {
  padding: 5rem 0;
  border-bottom: 1px solid var(--pv-border);
}

.pv-def__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .pv-def__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pv-def__card {
  padding: 1.75rem;
  border-radius: var(--pv-radius);
  border: 1px solid var(--pv-border);
  background: var(--pv-bg-card);
  text-align: center;
}

.pv-def__icon {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
}

.pv-def__icon--indigo { color: #4f46e5; background: #eef2ff; border: 1px solid #c7d2fe; }
.pv-def__icon--violet { color: #7c3aed; background: #f5f3ff; border: 1px solid #ddd6fe; }
.pv-def__icon--cyan { color: #0891b2; background: #ecfeff; border: 1px solid #a5f3fc; }

.pv-def__card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--pv-text-strong);
}

.pv-def__card p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--pv-text-muted);
}

.pv-def__acronym {
  color: var(--pv-text-strong);
}

/* ── Workflow ── */
.pv-flow {
  padding: 5rem 0;
  background: transparent;
  border-bottom: 1px solid var(--pv-border);
}

.pv-flow__track {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.pv-flow__step {
  flex: 0 0 auto;
  min-width: 9.5rem;
  scroll-snap-align: start;
  padding: 1rem 0.85rem;
  border-radius: var(--pv-radius-sm);
  border: 1px solid var(--pv-border);
  background: #ffffff;
  text-align: center;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.pv-flow__step.is-highlight {
  border-color: #c7d2fe;
  background: #eef2ff;
  transform: translateY(-4px);
}

.pv-flow__step-icon {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--pv-cyan);
}

.pv-flow__step-label {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--pv-text-strong);
  line-height: 1.4;
}

.pv-flow__arrow {
  flex-shrink: 0;
  align-self: center;
  color: var(--pv-text-muted);
  font-size: 0.7rem;
  opacity: 0.5;
}

.pv-flow__features {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .pv-flow__features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pv-flow__features {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pv-flow__feat {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: var(--pv-radius-sm);
  border: 1px solid var(--pv-border);
  background: #ffffff;
  font-size: 0.8rem;
  color: var(--pv-text-muted);
}

.pv-flow__feat i {
  color: var(--pv-emerald);
  margin-top: 0.15rem;
}

/* ── Pillars ── */
.pv-pillars {
  padding: 5rem 0;
  border-bottom: 1px solid var(--pv-border);
}

.pv-pillars__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .pv-pillars__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .pv-pillars__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pv-pillar {
  position: relative;
  padding: 1.75rem;
  border-radius: var(--pv-radius);
  border: 1px solid var(--pv-border);
  background: var(--pv-bg-card);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

.pv-pillar--featured {
  border-color: #d8b4fe;
  background: linear-gradient(165deg, #fdf4ff 0%, #ffffff 72%);
}

@media (min-width: 1100px) {
  .pv-pillar--featured {
    grid-column: span 2;
  }
}

.pv-pillar__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: 0.35rem;
  font-size: 0.65rem;
  font-weight: 800;
  color: #be185d;
  background: #fce7f3;
}

.pv-pillar__tag i {
  font-size: 0.58rem;
}

.pv-pillar__icon {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 0.85rem;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  background: #eef2ff;
  color: #4f46e5;
}

.pv-pillar h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--pv-text-strong);
}

.pv-pillar p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--pv-text-muted);
}

.pv-pillar__list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.pv-pillar__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: #475569;
}

.pv-pillar__list i {
  color: var(--pv-emerald);
  font-size: 0.65rem;
}

/* ── Modules Bento ── */
.pv-modules {
  padding: 5rem 0;
  background: transparent;
  border-bottom: 1px solid var(--pv-border);
}

.pv-bento {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .pv-bento {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(7rem, auto);
  }
}

.pv-bento__item {
  padding: 1.25rem;
  border-radius: var(--pv-radius);
  border: 1px solid var(--pv-border);
  background: var(--pv-bg-card);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.pv-bento__item:hover {
  border-color: #c7d2fe;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.1);
}

.pv-bento__item--wide {
  grid-column: span 2;
}

.pv-bento__item--tall {
  grid-row: span 2;
}

.pv-bento__icon {
  font-size: 1.15rem;
  color: var(--pv-cyan);
  margin-bottom: 0.65rem;
}

.pv-bento__item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--pv-text-strong);
}

.pv-bento__item p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--pv-text-muted);
}

.pv-bento__item--has-thumb {
  position: relative;
  overflow: hidden;
}

.pv-bento__thumb {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
}

.pv-bento__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.pv-bento__item--has-thumb .pv-bento__icon,
.pv-bento__item--has-thumb h3,
.pv-bento__item--has-thumb p {
  position: relative;
  z-index: 1;
}

.pv-modules__more {
  margin-top: 1.75rem;
  text-align: center;
}

.pv-modules__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--pv-accent);
  text-decoration: none;
  transition: color 0.2s;
}

.pv-modules__link:hover {
  color: var(--pv-violet);
}

/* ── Personas ── */
.pv-personas {
  padding: 5rem 0;
  border-bottom: 1px solid var(--pv-border);
}

.pv-personas__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .pv-personas__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pv-persona {
  padding: 1.75rem;
  border-radius: var(--pv-radius);
  border: 1px solid var(--pv-border);
  background: var(--pv-bg-card);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
}

.pv-persona--featured {
  border-color: #99f6e4;
  background: linear-gradient(165deg, #ecfeff 0%, #ffffff 72%);
}

.pv-persona__icon {
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.pv-persona__icon--cyan { color: #0891b2; background: #ecfeff; border: 1px solid #a5f3fc; }
.pv-persona__icon--violet { color: #7c3aed; background: #f5f3ff; border: 1px solid #ddd6fe; }
.pv-persona__icon--indigo { color: #4f46e5; background: #eef2ff; border: 1px solid #c7d2fe; }

.pv-persona h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--pv-text-strong);
}

.pv-persona p {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--pv-text-muted);
}

.pv-persona__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pv-persona__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #4f46e5;
  background: #eef2ff;
  border: 1px solid #c7d2fe;
}

.pv-persona__tag i {
  font-size: 0.62rem;
  opacity: 0.9;
}

/* ── Integrations ── */
.pv-integrations {
  padding: 3.5rem 0;
  background: transparent;
  border-bottom: 1px solid var(--pv-border);
}

.pv-integrations__strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.pv-integrations__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #475569;
  background: #ffffff;
  border: 1px solid var(--pv-border);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.pv-integrations__chip i {
  color: var(--pv-violet);
  font-size: 0.85rem;
}

/* ── Onboarding ── */
.pv-onboard {
  padding: 5rem 0;
  border-bottom: 1px solid var(--pv-border);
}

.pv-onboard__steps {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .pv-onboard__steps {
    grid-template-columns: repeat(5, 1fr);
  }
}

.pv-onboard__step {
  position: relative;
  padding: 1.25rem 1rem;
  border-radius: var(--pv-radius);
  border: 1px solid var(--pv-border);
  background: var(--pv-bg-card);
  text-align: center;
}

.pv-onboard__step--first {
  border-color: rgba(99, 102, 241, 0.45);
  background: var(--pv-gradient-soft);
}

.pv-onboard__icon {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  font-size: 0.95rem;
  color: #fff;
  background: var(--pv-gradient);
  margin-bottom: 0.75rem;
}

.pv-onboard__step h3 {
  margin: 0 0 0.35rem;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--pv-text-strong);
}

.pv-onboard__step p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.65;
  color: var(--pv-text-muted);
}

/* ── Pricing ── */
.pv-pricing {
  padding: 5rem 0;
  background: transparent;
  border-bottom: 1px solid var(--pv-border);
}

.pv-pricing__grid {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .pv-pricing__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pv-plan {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  border-radius: var(--pv-radius);
  border: 1px solid var(--pv-border);
  background: var(--pv-bg-card);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
}

.pv-plan--featured {
  border-color: #d8b4fe;
  background: linear-gradient(180deg, #fdf4ff 0%, #ffffff 72%);
  box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.12), var(--pv-shadow);
}

.pv-plan__badge {
  align-self: flex-start;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  color: #4f46e5;
  background: #eef2ff;
}

.pv-plan h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--pv-text-strong);
}

.pv-plan__tagline {
  margin: 0.35rem 0 1rem;
  font-size: 0.8rem;
  color: var(--pv-text-muted);
}

.pv-plan__price {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--pv-text-strong);
}

.pv-plan__price span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pv-text-muted);
}

.pv-plan__list {
  flex: 1;
  margin: 1.25rem 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.pv-plan__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #475569;
}

.pv-plan__list i {
  color: var(--pv-emerald);
  margin-top: 0.2rem;
  font-size: 0.7rem;
}

.pv-plan .pv-btn {
  width: 100%;
  margin-top: auto;
}

.pv-pricing__note {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--pv-text-muted);
}

/* ── Proof ── */
.pv-proof {
  padding: 5rem 0;
  border-bottom: 1px solid var(--pv-border);
}

.pv-proof__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .pv-proof__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "visual stats"
      "story story";
  }

  .pv-proof__visual {
    grid-area: visual;
  }

  .pv-proof__stats {
    grid-area: stats;
  }

  .pv-proof__story {
    grid-area: story;
  }
}

.pv-proof__visual {
  margin: 0;
}

.pv-proof__showcase-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 100%;
  padding: 1.5rem;
  border-radius: var(--pv-radius);
  border: 1px solid var(--pv-border);
  background: var(--pv-gradient-soft);
  box-shadow: var(--pv-shadow);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.pv-proof__showcase-card:hover {
  transform: translateY(-2px);
  border-color: #c7d2fe;
  box-shadow: 0 20px 44px -18px rgba(79, 70, 229, 0.28);
}

.pv-proof__showcase-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  color: #4f46e5;
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  font-size: 1.15rem;
}

.pv-proof__showcase-title {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--pv-text-strong);
}

.pv-proof__showcase-text {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--pv-text-muted);
}

.pv-proof__showcase-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--pv-accent);
}

.pv-proof__figure {
  margin: 0;
  border-radius: var(--pv-radius);
  border: 1px solid var(--pv-border);
  overflow: hidden;
  box-shadow: var(--pv-shadow);
}

.pv-proof__figure img {
  display: block;
  width: 100%;
  height: auto;
}

.pv-proof__stat-value i {
  font-size: 1.25rem;
  background: var(--pv-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pv-proof__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.pv-proof__stat {
  padding: 1.25rem;
  border-radius: var(--pv-radius);
  border: 1px solid var(--pv-border);
  background: var(--pv-bg-card);
  text-align: center;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.pv-proof__stat-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 1.75rem;
  font-weight: 900;
}

.pv-proof__stat-value span {
  background: var(--pv-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pv-proof__stat-label {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--pv-text-muted);
}

.pv-proof__story {
  padding: 1.75rem;
  border-radius: var(--pv-radius);
  border: 1px solid var(--pv-border);
  background: var(--pv-bg-card);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
}

.pv-proof__story h3 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--pv-text-strong);
}

.pv-proof__row {
  display: grid;
  gap: 0.65rem;
}

.pv-proof__row-item {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.75rem;
  align-items: start;
  font-size: 0.82rem;
}

.pv-proof__row-item dt {
  font-weight: 800;
  color: #4f46e5;
}

.pv-proof__row-item dd {
  margin: 0;
  color: var(--pv-text-muted);
  line-height: 1.6;
}

/* ── FAQ ── */
.pv-faq {
  padding: 5rem 0;
  background: transparent;
  border-bottom: 1px solid var(--pv-border);
}

.pv-faq__list {
  display: grid;
  gap: 0.65rem;
  max-width: 48rem;
  margin-inline: auto;
}

.pv-faq__item {
  border-radius: var(--pv-radius-sm);
  border: 1px solid var(--pv-border);
  background: var(--pv-bg-card);
  overflow: hidden;
}

.pv-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: none;
  background: transparent;
  color: var(--pv-text-strong);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: right;
  cursor: pointer;
}

.pv-faq__q i {
  flex-shrink: 0;
  color: var(--pv-accent);
  transition: transform 0.25s ease;
}

.pv-faq__item.is-open .pv-faq__q i {
  transform: rotate(180deg);
}

.pv-faq__a {
  display: none;
  padding: 0 1.15rem 1rem;
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--pv-text-muted);
}

.pv-faq__item.is-open .pv-faq__a {
  display: block;
}

/* ── CTA ── */
.pv-cta {
  padding: 5rem 0 6rem;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(99, 102, 241, 0.08), transparent 60%),
    var(--pv-bg);
}

.pv-cta__box {
  max-width: 40rem;
  margin-inline: auto;
  padding: 2.5rem 1.75rem;
  border-radius: calc(var(--pv-radius) + 0.5rem);
  border: 1px solid #c7d2fe;
  background: linear-gradient(165deg, #eef2ff 0%, #ffffff 80%);
  box-shadow: 0 12px 36px rgba(79, 70, 229, 0.1);
}

.pv-cta__box .pv-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.pv-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.pv-cta__fine {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--pv-text-muted);
}

/* ── Scroll progress ── */
.pv-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 60;
  background: rgba(15, 23, 42, 0.06);
  pointer-events: none;
}

.pv-progress__bar {
  height: 100%;
  width: 0%;
  background: var(--pv-gradient);
  transition: width 0.1s linear;
}

/* ── 3D Hand overlay (scroll-driven) — behind sections ── */
.landing-hand-global-layer {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 4;
  opacity: 0;
}

.landing-hand-global-layer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 50% 52%, rgba(124, 58, 237, 0.07), transparent 68%),
    radial-gradient(ellipse 40% 35% at 72% 68%, rgba(6, 182, 212, 0.05), transparent 70%);
  z-index: 0;
}

.landing-hand-global-canvas {
  position: absolute;
  inset: 0;
  height: 100svh;
  width: 100%;
  opacity: 1;
  transform: translateY(80px);
  z-index: 1;
}

.landing-dark-zone-content {
  position: relative;
  z-index: 5;
}

/* Sections transparent — hand shows in gaps; cards/boxes stay opaque */
.landing-dark-zone-content > section {
  position: relative;
  z-index: 1;
  background: transparent;
}

/* Cards & content blocks always above the hand */
.pv-problem__card,
.pv-def__card,
.pv-flow__step,
.pv-flow__feat,
.pv-pillar,
.pv-bento__item,
.pv-persona,
.pv-integrations__chip,
.pv-onboard__step,
.pv-plan,
.pv-proof__stat,
.pv-proof__story,
.pv-proof__figure,
.pv-showcase__slider,
.pv-showcase__viewport,
.pv-hero__slider,
.pv-faq__item,
.pv-cta__box,
.pv-section-head {
  position: relative;
  z-index: 2;
}

/* Light presentation page */
main:has(.pv-page) {
  background: #fafbff !important;
  box-shadow: none !important;
}

/* ══════════════════════════════════════════
   R-Tunnel — ARP → AIRP → carilo
   CSS vars set by landing-r-tunnel.js
   ══════════════════════════════════════════ */
.pv-tunnel {
  --p: 0;
  --intro: 0;
  --zoom: 0;
  --reveal: 0;
  --tunnel: 0;
  --inside: 0;
  --dark: 0;
  position: relative;
  height: 520vh;
  margin: 0;
  border-bottom: 1px solid var(--pv-border);
  background: color-mix(in srgb, #ffffff calc((1 - var(--dark)) * 100%), #eef2ff);
  isolation: isolate;
  z-index: 6;
}

.pv-tunnel__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}

.pv-tunnel__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.pv-tunnel__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 15% 20%, rgba(99, 102, 241, calc(0.14 + var(--zoom) * 0.12)), transparent 58%),
    radial-gradient(ellipse 70% 55% at 85% 75%, rgba(6, 182, 212, calc(0.1 + var(--tunnel) * 0.1)), transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(168, 85, 247, calc(0.06 + var(--reveal) * 0.14)), transparent 62%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 40%, #eef2ff 100%);
  opacity: calc(1 - var(--dark) * 0.35);
}

.pv-tunnel__rings {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.pv-tunnel__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(99, 102, 241, calc(0.08 + var(--tunnel) * 0.22));
  box-shadow: 0 0 40px rgba(99, 102, 241, calc(var(--tunnel) * 0.08));
  transform: scale(calc(0.35 + var(--zoom) * 0.55 + var(--tunnel) * 1.8));
  opacity: calc(0.25 + var(--zoom) * 0.45);
}

.pv-tunnel__ring:nth-child(1) { width: 28vmin; height: 28vmin; }
.pv-tunnel__ring:nth-child(2) { width: 44vmin; height: 44vmin; opacity: calc(0.18 + var(--zoom) * 0.35); }
.pv-tunnel__ring:nth-child(3) { width: 62vmin; height: 62vmin; border-color: rgba(168, 85, 247, calc(0.06 + var(--tunnel) * 0.18)); }
.pv-tunnel__ring:nth-child(4) { width: 82vmin; height: 82vmin; opacity: calc(0.1 + var(--tunnel) * 0.3); }

.pv-tunnel__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent calc(28% - var(--inside) * 10%), #fafbff calc(55% + var(--inside) * 45%));
  opacity: calc(var(--inside) * 0.95);
}

.pv-tunnel__darkfade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #eef2ff 0%, #fafbff 55%, #ffffff 100%);
  opacity: calc(var(--dark) * 0.55 + var(--inside) * 0.45);
  z-index: 1;
}

.pv-tunnel__frame {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem 1.25rem 1.75rem;
}

@media (min-width: 640px) {
  .pv-tunnel__frame {
    padding: 2rem 2.5rem 2.25rem;
  }
}

@media (min-width: 1024px) {
  .pv-tunnel__frame {
    padding: 2.25rem 4rem 2.5rem;
  }
}

.pv-tunnel__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.pv-tunnel__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #4f46e5;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #c7d2fe;
  backdrop-filter: blur(8px);
  opacity: calc(0.95 - var(--zoom) * 1.5 - var(--tunnel) * 1.4);
}

.pv-tunnel__steps {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: #64748b;
  opacity: calc(0.85 - var(--zoom) * 1.2);
}

@media (min-width: 768px) {
  .pv-tunnel__steps {
    display: inline-flex;
  }
}

.pv-tunnel__step {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.pv-tunnel__step-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--pv-gradient);
}

.pv-tunnel__step-line {
  width: 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, #c7d2fe, #a5b4fc);
}

.pv-tunnel__stage {
  position: relative;
  flex: 1;
  min-height: 0;
  pointer-events: none;
}

.pv-tunnel__word {
  position: absolute;
  margin: 0;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  transform-origin: center;
}

.pv-tunnel__word--arp {
  top: 6%;
  left: 0;
  font-size: clamp(2.5rem, 10vw, 7rem);
  background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: calc(1 - var(--zoom) * 1.35 - var(--tunnel) * 1.6);
  transform:
    translate3d(calc(var(--zoom) * 0.8vw), calc(var(--zoom) * -1.4rem), 0)
    scale(calc(1 + var(--intro) * 0.08 + var(--zoom) * 0.45 + var(--tunnel) * 1.4));
}

.pv-tunnel__word--airp {
  right: 0;
  bottom: 10%;
  text-align: left;
  font-size: clamp(2.5rem, 10vw, 7rem);
  background: var(--pv-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: calc(1 - var(--zoom) * 1.35 - var(--tunnel) * 1.6);
  transform:
    translate3d(calc(var(--zoom) * -0.8vw), calc(var(--zoom) * 1.4rem), 0)
    scale(calc(1 + var(--intro) * 0.06 + var(--zoom) * 0.4 + var(--tunnel) * 1.2));
}

.pv-tunnel__core-wrap {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  perspective: 1600px;
}

.pv-tunnel__core-glow {
  position: absolute;
  width: min(72vw, 880px);
  aspect-ratio: 1.15 / 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.22), rgba(168, 85, 247, 0.08) 45%, transparent 72%);
  transform: scale(calc(0.8 + var(--zoom) * 0.6 + var(--tunnel) * 1.1));
  opacity: calc(0.15 + var(--reveal) * 0.55 - var(--inside) * 0.25);
}

.pv-tunnel__core-halo {
  position: absolute;
  width: min(52vw, 620px);
  height: min(52vw, 620px);
  border-radius: 1.75rem;
  border: 1px solid rgba(99, 102, 241, calc(0.15 + var(--reveal) * 0.35));
  transform: scale(calc(0.5 + var(--reveal) * 0.5 + var(--zoom) * 0.8 + var(--tunnel) * 2));
  opacity: calc(var(--reveal) * 0.7 - var(--inside) * 0.8);
}

.pv-tunnel__core {
  position: relative;
  margin: 0;
  padding: 0.08em 0.2em 0.13em;
  font-size: clamp(3.5rem, 18vw, 9rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
  background-color: #020309;
  border-radius: 0.06em;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 20px 50px rgba(79, 70, 229, calc(0.12 + var(--reveal) * 0.2));
  transform-origin: 56.4% 54%;
  transform:
    translate3d(calc(var(--zoom) * 3.6vw), calc(var(--zoom) * 1.4vh), 0)
    scale(calc(0.36 + var(--reveal) * 0.95 + var(--zoom) * 13 + var(--tunnel) * 40));
  opacity: min(1, max(0, var(--reveal) - var(--tunnel) * 1.25 - var(--inside) * 0.9));
  filter: none;
}

.pv-tunnel__core-sub {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  white-space: nowrap;
  font-size: clamp(0.7rem, 2vw, 0.95rem);
  font-weight: 700;
  color: #4f46e5;
  letter-spacing: 0.06em;
  opacity: calc(var(--reveal) * 0.9 - var(--tunnel) * 1.1);
}

.pv-tunnel__bottom {
  display: grid;
  gap: 1rem;
}

.pv-tunnel__caption {
  max-width: 36rem;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.85;
  color: #475569;
  opacity: calc(0.9 - var(--zoom) * 1.4 - var(--tunnel) * 1.6);
}

.pv-tunnel__caption strong {
  color: #4f46e5;
  font-weight: 800;
}

.pv-tunnel__progress {
  height: 3px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.12);
  overflow: hidden;
  max-width: 12rem;
}

.pv-tunnel__progress-bar {
  display: block;
  height: 100%;
  width: calc(var(--p) * 100%);
  border-radius: inherit;
  background: var(--pv-gradient);
  transition: width 0.08s linear;
}

.pv-tunnel.is-complete .pv-tunnel__mesh {
  background: linear-gradient(180deg, #eef2ff 0%, #ffffff 100%);
}

.pv-page--hero {
  overflow: visible;
}

/* ── Full-width banner (carilo2) ── */
.pv-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: #020309;
}

.pv-banner__picture,
.pv-banner__img {
  display: block;
  width: 100%;
  height: auto;
}

.pv-banner__cta-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(3, 7, 18, 0.62) 0%,
    rgba(3, 7, 18, 0.22) 30%,
    transparent 55%
  );
}

.pv-banner__cta-layer .pv-container {
  width: min(1200px, calc(100% - 2rem));
  margin-inline: auto;
  padding-bottom: clamp(1.25rem, 6.5vw, 3.25rem);
  padding-inline: clamp(1rem, 4vw, 2rem);
  pointer-events: auto;
}

.pv-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  max-width: 36rem;
}

@media (min-width: 640px) {
  .pv-banner__actions {
    gap: 0.75rem;
  }
}

@media (min-width: 768px) {
  .pv-banner__cta-layer .pv-container {
    padding-bottom: clamp(2rem, 5.5%, 3.5rem);
    padding-inline-start: clamp(2rem, 11vw, 14rem);
    padding-inline-end: clamp(1rem, 4vw, 2rem);
  }

  .pv-banner__actions {
    justify-content: flex-start;
    max-width: 32rem;
  }
}

@media (min-width: 1200px) {
  .pv-banner__cta-layer .pv-container {
    padding-inline-start: clamp(3rem, 10vw, 11rem);
  }
}

.pv-banner__note {
  margin: 0.75rem 0 0;
  max-width: 32rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
  text-align: center;
}

@media (min-width: 768px) {
  .pv-banner__note {
    text-align: start;
  }
}

.pv-banner .pv-btn--primary {
  color: #fff;
  background: linear-gradient(95deg, #7c83ff 0%, #b06bff 48%, #2dd4bf 100%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.pv-banner .pv-btn--primary:hover {
  filter: brightness(1.1);
  border-color: rgba(255, 255, 255, 0.65);
}

.pv-banner .pv-btn--banner-secondary {
  color: #0f172a;
  border: 1px solid #fff;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.pv-banner .pv-btn--banner-secondary:hover {
  color: #020617;
  background: #f1f5f9;
  border-color: #e2e8f0;
}

/* ── Product Showcase ── */
.pv-showcase {
  padding: 5rem 0;
  border-bottom: 1px solid var(--pv-border);
  background: transparent;
}

.pv-showcase__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.pv-showcase__tab {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--pv-border);
  background: var(--pv-bg-card);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--pv-text-muted);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s, box-shadow 0.2s;
}

.pv-showcase__tab:hover {
  border-color: #c7d2fe;
  color: var(--pv-accent);
}

.pv-showcase__tab.is-active {
  border-color: #a5b4fc;
  background: #eef2ff;
  color: var(--pv-accent);
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.12);
}

.pv-showcase__panel {
  display: none;
}

.pv-showcase__panel.is-active {
  display: block;
}

.pv-showcase__slider {
  position: relative;
  width: min(820px, 100%);
  margin-inline: auto;
}

.pv-showcase__viewport {
  position: relative;
  overflow: hidden;
  border-radius: var(--pv-radius);
  border: 1px solid var(--pv-border);
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
  box-shadow: var(--pv-shadow);
  min-height: clamp(220px, 42vw, 380px);
}

.pv-showcase__viewport--single {
  min-height: clamp(200px, 38vw, 340px);
}

.pv-showcase__track {
  display: flex;
  height: 100%;
  min-height: inherit;
  direction: ltr;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pv-showcase__slide {
  flex: 0 0 100%;
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(220px, 42vw, 380px);
  padding: 0.75rem;
  margin: 0;
  border: none;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.pv-showcase__slide img {
  display: block;
  max-width: 100%;
  max-height: clamp(200px, 38vw, 350px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: calc(var(--pv-radius-sm) - 0.15rem);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}

.pv-showcase__zoom {
  position: absolute;
  inset-inline-end: 1rem;
  inset-block-end: 1rem;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  font-size: 0.75rem;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}

.pv-showcase__slide:hover .pv-showcase__zoom,
.pv-showcase__slide:focus-visible .pv-showcase__zoom {
  opacity: 1;
  transform: translateY(0);
}

.pv-showcase__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  margin: 0;
  padding: 0;
  border: 1px solid var(--pv-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--pv-accent);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
  cursor: pointer;
  transform: translateY(-50%);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.pv-showcase__arrow:hover {
  border-color: #c7d2fe;
  background: #eef2ff;
}

.pv-showcase__arrow--prev {
  inset-inline-end: calc(100% + 0.5rem);
}

.pv-showcase__arrow--next {
  inset-inline-start: calc(100% + 0.5rem);
}

.pv-showcase__dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.pv-showcase__dot {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: #cbd5e1;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, width 0.2s;
}

.pv-showcase__dot.is-active {
  width: 1.25rem;
  background: var(--pv-accent);
}

@media (max-width: 767px) {
  .pv-showcase__arrow {
    top: auto;
    bottom: -2.75rem;
    transform: none;
  }

  .pv-showcase__arrow--prev {
    inset-inline-end: auto;
    inset-inline-start: calc(50% - 2.5rem);
  }

  .pv-showcase__arrow--next {
    inset-inline-start: auto;
    inset-inline-end: calc(50% - 2.5rem);
  }

  .pv-showcase__slider {
    padding-bottom: 2.5rem;
  }
}

/* Lightbox */
.pv-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.pv-lightbox[hidden] {
  display: none !important;
}

.pv-lightbox.is-open {
  display: grid;
}

.pv-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: none;
  background: rgba(2, 6, 23, 0.88);
  cursor: zoom-out;
}

.pv-lightbox__frame {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: min(96vw, 1200px);
  max-height: 90vh;
}

.pv-lightbox__img {
  display: block;
  max-width: min(96vw, 1200px);
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--pv-radius-sm);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.pv-lightbox__close {
  position: absolute;
  top: 1rem;
  inset-inline-start: 1rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.pv-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.pv-lightbox__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s;
}

.pv-lightbox__arrow:hover {
  background: rgba(255, 255, 255, 0.22);
}

.pv-lightbox__arrow--prev {
  inset-inline-end: 1rem;
}

.pv-lightbox__arrow--next {
  inset-inline-start: 1rem;
}

.pv-lightbox__arrow[hidden] {
  display: none;
}

