/* =============================================
   Hero — ProEffects Home Template
   Carrusel infinito con parábola perfecta
   ============================================= */

/* =============================================
   Reveal animations — scroll-triggered entrance
   ============================================= */

/* Base hidden state */
[data-reveal] {
    opacity: 0;
    will-change: opacity, transform;
    transition:
        opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Direction variants — initial offset */
[data-reveal="fade-up"]    { transform: translateY(40px); }
[data-reveal="fade-down"]  { transform: translateY(-40px); }
[data-reveal="fade-left"]  { transform: translateX(50px); }
[data-reveal="fade-right"] { transform: translateX(-50px); }
[data-reveal="scale"]      { transform: scale(0.92); }

/* Visible state */
[data-reveal].is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* Problem cards: preserve their rotations when revealed */
.problem__card--without[data-reveal].is-visible {
    transform: translateX(0) rotate(-1.2deg);
}

.problem__card--with[data-reveal].is-visible {
    transform: translateX(0) rotate(0.8deg);
}

/* Stagger delays via data-delay attribute */
[data-delay="1"]  { transition-delay: 0.1s; }
[data-delay="2"]  { transition-delay: 0.2s; }
[data-delay="3"]  { transition-delay: 0.3s; }
[data-delay="4"]  { transition-delay: 0.12s; }
[data-delay="5"]  { transition-delay: 0.20s; }
[data-delay="6"]  { transition-delay: 0.28s; }
[data-delay="7"]  { transition-delay: 0.36s; }
[data-delay="8"]  { transition-delay: 0.44s; }
[data-delay="9"]  { transition-delay: 0.52s; }
[data-delay="10"] { transition-delay: 0.6s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* =============================================
   Global dark-mode transition
   Triggered by IntersectionObserver on .problem
   ============================================= */

.hero,
.intro,
.reel,
.problem,
.showcase,
.personas,
.custom,
.proof,
.pricing,
.faq,
.final {
    transition: background 1s ease, color 1s ease;
}

body.is-dark .hero {
    background: #0a0a0a;
    color: #f2f2f0;
}

body.is-dark .hero::before {
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent calc(10vw - 1px),
            rgba(255, 255, 255, 0.04) calc(10vw - 1px),
            rgba(255, 255, 255, 0.04) 10vw
        );
}

body.is-dark .hero__heading {
    color: #f2f2f0;
}

body.is-dark .hero__sub {
    color: #999;
}

body.is-dark .hero__pill,
body.is-dark .hero__badge {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.12);
    color: #ccc;
}

body.is-dark .hero__card-label {
    color: rgba(255,255,255,0.55);
}

body.is-dark .intro {
    background: #0a0a0a;
    color: #f2f2f0;
}

body.is-dark .intro__main {
    color: #ddd;
}

body.is-dark .intro__pill {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.12);
    color: #ccc;
}

body.is-dark .reel {
    background: #0a0a0a;
}

body.is-dark .reel__label {
    color: #f2f2f0;
}

body.is-dark .reel__sticky::before,
body.is-dark .reel__sticky::after {
    display: none;
}

body.is-dark .problem {
    background: #0a0a0a;
    color: #f2f2f0;
}

body.is-dark .showcase {
    background: #0a0a0a;
    color: #f2f2f0;
}

body.is-dark .showcase__heading {
    color: #f2f2f0;
}

body.is-dark .showcase__tab {
    color: rgba(255,255,255,0.4);
}

body.is-dark .showcase__tab--active {
    color: #f2f2f0;
    background: rgba(255,255,255,0.1);
}

body.is-dark .showcase__tabs {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.06);
}

body.is-dark .showcase__card {
    background: #111;
    border-color: rgba(255,255,255,0.06);
}

body.is-dark .showcase__card-name {
    color: #f2f2f0;
}

body.is-dark .showcase__card-desc {
    color: rgba(255,255,255,0.4);
}

body.is-dark .showcase__card-num {
    color: rgba(255,255,255,0.2);
}

body.is-dark .showcase__card-info {
    border-top-color: rgba(255,255,255,0.04);
}

body.is-dark .showcase__btn {
    color: #f2f2f0;
    border-color: rgba(255,255,255,0.15);
}

body.is-dark .problem__heading {
    color: #f2f2f0;
}

body.is-dark .personas {
    background: #0a0a0a;
    color: #f2f2f0;
}

body.is-dark .personas__heading {
    color: #f2f2f0;
}

body.is-dark .personas__sub {
    color: #999;
}

body.is-dark .personas__card-role {
    background: rgba(107,92,231,0.15);
    border-color: rgba(107,92,231,0.25);
}

body.is-dark .personas__card-title {
    color: #f2f2f0;
}

body.is-dark .personas__card-desc {
    color: #999;
}

body.is-dark .personas__card-list {
    border-top-color: rgba(255,255,255,0.08);
}

body.is-dark .personas__card-list li {
    color: #bbb;
}

/* Transicionar también elementos interiores */
.hero__heading,
.hero__sub,
.hero__pill,
.hero__badge,
.intro__main,
.intro__pill,
.reel__label,
.problem__heading,
.showcase__heading,
.showcase__tabs,
.showcase__tab,
.showcase__card,
.showcase__card-num,
.showcase__card-name,
.showcase__card-desc,
.showcase__card-info,
.showcase__btn,
.personas__heading,
.personas__sub,
.personas__card-role,
.personas__card-title,
.personas__card-desc,
.personas__card-list,
.personas__card-list li {
    transition: color 1s ease, background 1s ease, border-color 1s ease;
}

/* ── Section wrapper ── */
.hero {
    background: #f2f2f0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 200px;
    overflow: hidden;
    color: #0a0a0a;
    position: relative;
}

/* ── Líneas de fondo con fade hacia abajo ── */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent calc(10vw - 1px),
            rgba(0, 0, 0, 0.06) calc(10vw - 1px),
            rgba(0, 0, 0, 0.06) 10vw
        );
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 30%, transparent 75%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 30%, transparent 75%);
    pointer-events: none;
    z-index: 0;
}

/* ── Text block ── */
.hero__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding-inline: var(--container-px, 2rem);
    text-align: center;
    max-width: 1200px;
}

.hero__heading {
    font-size: clamp(50px, 4.8vw, 90px);
    font-weight: 200;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #0a0a0a;
    white-space: normal;
}


.hero__star {
    color: #6b5ce7;
    font-style: normal;
    display: none;
}

.hero__sub {
    font-size: clamp(16px, 1.4vw, 22px);
    font-weight: 300;
    color: #444;
    line-height: 1.8;
    max-width: 540px;
}

.hero__pill {
    display: inline-block;
    background: #e5e5e3;
    border: 1px solid #c8c8c5;
    border-radius: 999px;
    padding: 2px 14px;
    font-size: 0.9em;
    line-height: 1.6;
    vertical-align: middle;
    color: #0a0a0a;
}

.hero__badges {
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero__badge {
    background: #e5e5e3;
    border: 1px solid #c8c8c5;
    border-radius: 999px;
    padding: 6px 18px;
    font-size: clamp(11px, 0.9vw, 14px);
    font-weight: 300;
    letter-spacing: 0.04em;
    color: #0a0a0a;
    white-space: nowrap;
}

.hero__cards {
    position: relative;
    width: 100%;
    margin-top: 130px;
    height: 30vw;
    min-height: 280px;
    flex-shrink: 0;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.hero__cards:active { cursor: grabbing; }

.hero__card {
    position: absolute;
    width: 19.5vw;
    aspect-ratio: 4 / 3;
    border-radius: 6px;
    background: #141414;
    overflow: hidden;
    transform-origin: center center;
    will-change: transform, left, top, opacity;
    backface-visibility: hidden;
}

.hero__card-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%);
    position: relative;
    z-index: 1;
}

.hero__card-label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.02em;
}

@media (max-width: 900px) {
    .hero { padding-top: 96px; }
    .hero__cards { height: 38vw; min-height: 240px; margin-top: 48px; }
}

@media (max-width: 600px) {
    .hero { padding-top: 140px; }
    .hero__cards { height: 50vw; min-height: 200px; margin-top: 62px; overflow-x: clip; overflow-y: visible; }
    .hero__card { width: 46vw; }
    .hero__card-label { color: rgba(255, 255, 255, 0.8); }
    .hero{
        min-height: unset;
    }
}

/* =============================================
   Intro
   ============================================= */

.intro {
    background: #f2f2f0;
    padding: 120px var(--container-px, 2rem) 40px;
    display: flex;
    justify-content: center;
}

.intro__body {
    max-width: 643px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.intro__main {
    font-size: clamp(18px, 1.8vw, 28px);
    font-weight: 300;
    line-height: 1.7;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.intro__pill {
    display: inline-block;
    background: #e5e5e3;
    border: 1px solid #c8c8c5;
    border-radius: 999px;
    padding: 1px 14px;
    font-size: 0.88em;
    line-height: 1.6;
    vertical-align: middle;
    color: #0a0a0a;
}

.intro__hook {
    font-size: clamp(15px, 1.3vw, 20px);
    font-weight: 300;
    color: #6b5ce7;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .intro { padding: 72px var(--container-px, 1.5rem) 80px; }
    .intro__body { gap: 24px; }
}

/* =============================================
   Reel
   ============================================= */

.reel {
    background: #f2f2f0;
    height: 280vh;
    position: relative;
    margin-top: -24vh;
    z-index: -1;
}

.reel__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    overflow: hidden;
}

.reel__label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(80px, 14vw, 240px);
    font-weight: 200;
    letter-spacing: 0.04em;
    color: #0a0a0a;
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
    user-select: none;
    opacity: 0.1;
    line-height: 1;
    transition: opacity 0.4s;
    display: flex;
    gap: 0.15em;
}

.reel__label--left,
.reel__label--right { display: block; }

.reel__frame {
    position: relative;
    width: 100%;
    height: calc(100vh - 20px);
    border-radius: 10px;
    overflow: hidden;
    transform: scale(0.45);
    transform-origin: center center;
    will-change: transform;
    background: #0a0a0a;
    z-index: 1;
    cursor: default;
}

.reel__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.3s, transform 0.3s;
}

.reel__play:hover { transform: translate(-50%, -50%) scale(1.1); }

.reel__play--hidden {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.8);
}

.reel__frame--fullscreen {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    border-radius: 0;
    transform: none !important;
    z-index: 9999;
    cursor: pointer;
}

.reel--playing .reel__label { opacity: 0; }

.reel__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =============================================
   Problem
   ============================================= */

.problem {
    background: #f2f2f0;
    color: #0a0a0a;
    padding: 140px var(--container-px, 2rem) 160px;
    overflow: hidden;
}

.problem__header {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.problem__label {
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b5ce7;
    font-family: monospace;
}

.problem__heading {
    font-size: clamp(24px, 3.2vw, 52px);
    font-weight: 200;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: inherit;
}

.problem__stage {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: start;
}

.problem__card {
    border-radius: 12px;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
}

.problem__card--without {
    background: #111;
    border: 1px solid rgba(255,255,255,0.06);
    z-index: 1;
    transform: rotate(-1.2deg);
    margin-right: -24px;
    box-shadow: 0 2px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.03);
}

.problem__card--without::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,0,0,0.015) 2px, rgba(255,0,0,0.015) 4px);
    pointer-events: none;
}

.problem__card--with {
    background: #f2f2f0;
    color: #0a0a0a;
    z-index: 2;
    transform: rotate(0.8deg);
    margin-left: -24px;
    margin-top: 40px;
    box-shadow: 0 8px 60px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.2);
}

.problem__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 6px 16px;
    border-radius: 999px;
    width: fit-content;
}

.problem__card--without .problem__tag { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.5); }
.problem__card--with .problem__tag { background: #e5e5e3; color: #0a0a0a; }

.problem__tag-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.problem__tag-dot--red { background: #e54545; box-shadow: 0 0 8px rgba(229,69,69,0.5); }
.problem__tag-dot--green { background: #34c759; box-shadow: 0 0 8px rgba(52,199,89,0.4); }

.problem__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }

.problem__list li {
    font-size: clamp(13px, 1.05vw, 15px);
    line-height: 1.65;
    padding-left: 28px;
    position: relative;
    font-weight: 300;
}

.problem__card--without .problem__list li { color: rgba(255,255,255,0.4); }
.problem__card--with .problem__list li { color: #2a2a2a; }

.problem__x, .problem__check { position: absolute; left: 0; top: 0; font-weight: 600; font-size: 15px; line-height: 1.65; }
.problem__x { color: #e54545; }
.problem__check { color: #34c759; }

.problem__list code { font-family: 'SF Mono', 'Fira Code', monospace; font-size: 0.9em; padding: 1px 6px; border-radius: 4px; }
.problem__card--without code { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.55); }
.problem__card--with code { background: #e5e5e3; color: #0a0a0a; }

@media (max-width: 800px) {
    .problem { padding: 80px var(--container-px, 1.5rem) 100px; }
    .problem__header { margin-bottom: 48px; }
    .problem__stage { grid-template-columns: 1fr; gap: 24px; }
    .problem__card--without { transform: none; margin-right: 0; }
    .problem__card--with { transform: none; margin-left: 0; margin-top: 0; }
    .problem__card { padding: 28px 24px; }
}

/* =============================================
   Showcase
   ============================================= */

.showcase {
    background: #f2f2f0;
    color: #0a0a0a;
    padding: 140px var(--container-px, 2rem) 120px;
    overflow: hidden;
    transition: background 1s ease, color 1s ease;
}

.showcase__header { max-width: 900px; margin: 0 auto 56px; text-align: center; display: flex; flex-direction: column; gap: 24px; }

.showcase__label { font-size: clamp(12px, 1vw, 14px); font-weight: 300; letter-spacing: 0.12em; text-transform: uppercase; color: #6b5ce7; font-family: monospace; }

.showcase__heading { font-size: clamp(28px, 4vw, 64px); font-weight: 200; line-height: 1.15; letter-spacing: -0.025em; color: #0a0a0a; transition: color 1s ease; }

.showcase__tabs { display: flex; justify-content: center; gap: 4px; margin: 0 auto 64px; padding: 4px; background: rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.08); border-radius: 999px; width: fit-content; transition: background 1s ease, border-color 1s ease; }

.showcase__tab { font-size: 13px; font-weight: 400; color: rgba(0,0,0,0.4); background: none; border: none; padding: 10px 22px; border-radius: 999px; cursor: pointer; transition: color 0.3s, background 0.3s; white-space: nowrap; letter-spacing: 0.01em; }
.showcase__tab:hover { color: rgba(0,0,0,0.7); }
.showcase__tab--active { background: rgba(0,0,0,0.08); color: #0a0a0a; }

.showcase__grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 16px; }
.showcase__card:nth-child(1) { grid-column: span 2; }
.showcase__card:nth-child(4) { grid-column: span 2; }

.showcase__card { background: #e8e8e6; border: 1px solid rgba(0,0,0,0.06); border-radius: 14px; padding: 0; display: flex; flex-direction: column; overflow: hidden; position: relative; cursor: default; transition: border-color 0.4s, box-shadow 0.4s, background 1s ease; }
.showcase__card:hover { border-color: rgba(107,92,231,0.3); box-shadow: 0 0 40px rgba(107,92,231,0.08); }

.showcase__card-top { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px 0; }
.showcase__card-num { font-size: 11px; font-weight: 500; color: rgba(0,0,0,0.2); font-variant-numeric: tabular-nums; font-family: monospace; transition: color 1s ease; }
.showcase__card-tag { font-size: 11px; font-weight: 500; letter-spacing: 0.04em; color: #6b5ce7; background: rgba(107,92,231,0.1); border: 1px solid rgba(107,92,231,0.15); border-radius: 999px; padding: 3px 10px; }

.showcase__card-preview { position: relative; height: 140px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.showcase__card:nth-child(1) .showcase__card-preview,
.showcase__card:nth-child(4) .showcase__card-preview { height: 180px; }

.showcase__card-orb { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(1); width: 100px; height: 100px; border-radius: 50%; background: radial-gradient(circle, rgba(107,92,231,0.35) 0%, rgba(107,92,231,0.08) 50%, transparent 70%); filter: blur(20px); opacity: 0.6; transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.6s ease; pointer-events: none; }
.showcase__card:nth-child(2) .showcase__card-orb { background: radial-gradient(circle, rgba(52,199,89,0.3) 0%, rgba(52,199,89,0.06) 50%, transparent 70%); }
.showcase__card:nth-child(3) .showcase__card-orb { background: radial-gradient(circle, rgba(255,149,0,0.3) 0%, rgba(255,149,0,0.06) 50%, transparent 70%); }
.showcase__card:nth-child(5) .showcase__card-orb { background: radial-gradient(circle, rgba(0,199,190,0.3) 0%, rgba(0,199,190,0.06) 50%, transparent 70%); }
.showcase__card:nth-child(6) .showcase__card-orb { background: radial-gradient(circle, rgba(255,69,58,0.3) 0%, rgba(255,69,58,0.06) 50%, transparent 70%); }
.showcase__card:nth-child(7) .showcase__card-orb { background: radial-gradient(circle, rgba(255,214,10,0.3) 0%, rgba(255,214,10,0.06) 50%, transparent 70%); }

.showcase__card-preview::before { content: ''; position: absolute; inset: 0; background: linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px); background-size: 24px 24px; pointer-events: none; transition: background 1s ease; }
body.is-dark .showcase__card-preview::before { background: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 24px 24px; }

.showcase__card-info { padding: 20px 20px 24px; display: flex; flex-direction: column; gap: 8px; border-top: 1px solid rgba(0,0,0,0.06); transition: border-top-color 1s ease; }
.showcase__card-name { font-size: 15px; font-weight: 500; color: #0a0a0a; letter-spacing: -0.01em; transition: color 1s ease; }
.showcase__card-desc { font-size: 13px; font-weight: 300; color: rgba(0,0,0,0.45); transition: color 1s ease; line-height: 1.6; }

.showcase__cta { display: flex; justify-content: center; margin-top: 64px; }
.showcase__btn { display: inline-flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 400; color: #0a0a0a; text-decoration: none; padding: 14px 32px; border: 1px solid rgba(0,0,0,0.15); border-radius: 999px; transition: background 0.3s, border-color 0.3s, color 1s ease; letter-spacing: 0.01em; }
.showcase__btn:hover { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.3); }
.showcase__btn svg { transition: transform 0.3s; }
.showcase__btn:hover svg { transform: translateX(4px); }

@media (max-width: 800px) {
    .showcase { padding: 80px var(--container-px, 1.5rem) 80px; }
    .showcase__tabs { overflow-x: auto; justify-content: flex-start; width: 100%; -webkit-overflow-scrolling: touch; }
    .showcase__grid { grid-template-columns: 1fr; }
    .showcase__card:nth-child(1), .showcase__card:nth-child(4) { grid-column: span 1; }
    .showcase__card-preview, .showcase__card:nth-child(1) .showcase__card-preview, .showcase__card:nth-child(4) .showcase__card-preview { height: 120px; }
}

/* =============================================
   Personas — Horizontal scroll hijack
   ============================================= */

.personas { height: 400vh; position: relative; background: #f2f2f0; color: #0a0a0a; transition: background 1s ease, color 1s ease; overflow: clip; }
.personas::before { content: ''; display: block; position: sticky; top: 0; height: 0; }
.personas__track { position: sticky; top: 0; height: 100vh; display: flex; align-items: stretch; will-change: transform; }

.personas__slide { flex-shrink: 0; width: 100vw; height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 60px var(--container-px, 2rem); }
.personas__slide--intro { align-items: center; text-align: center; gap: 28px; max-width: none; }

.personas__label { font-size: clamp(12px, 1vw, 14px); font-weight: 300; letter-spacing: 0.12em; text-transform: uppercase; color: #6b5ce7; font-family: monospace; }
.personas__heading { font-size: clamp(32px, 5vw, 72px); font-weight: 200; line-height: 1.1; letter-spacing: -0.03em; color: #0a0a0a; max-width: 700px; }
.personas__sub { font-size: clamp(16px, 1.4vw, 20px); font-weight: 300; color: #555; line-height: 1.7; max-width: 560px; }

.personas__card { align-items: center; padding: 60px 80px; }
.personas__card-head { max-width: 520px; display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.personas__card-role { display: inline-block; width: fit-content; font-size: 12px; font-weight: 300; letter-spacing: 0.1em; text-transform: uppercase; color: #6b5ce7; background: rgba(107,92,231,0.08); border: 1px solid rgba(107,92,231,0.15); border-radius: 999px; padding: 5px 16px; }
.personas__card-title { font-size: clamp(24px, 3vw, 42px); font-weight: 200; line-height: 1.15; letter-spacing: -0.02em; color: #0a0a0a; }
.personas__card-desc { font-size: clamp(14px, 1.15vw, 17px); font-weight: 300; color: #555; line-height: 1.7; }

.personas__card-list { list-style: none; padding: 0; margin: 0; max-width: 520px; display: flex; flex-direction: column; gap: 14px; border-top: 1px solid rgba(0,0,0,0.08); padding-top: 32px; }
.personas__card-list li { font-size: clamp(13px, 1vw, 15px); font-weight: 300; color: #333; line-height: 1.6; padding-left: 24px; position: relative; }
.personas__card-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: #6b5ce7; font-weight: 600; font-size: 14px; line-height: 1.6; }

.personas::after { content: ''; position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%); width: 40px; height: 4px; border-radius: 2px; background: rgba(0,0,0,0.12); pointer-events: none; opacity: 0; transition: opacity 0.4s; z-index: 10; }
.personas.is-scrolling::after { opacity: 1; }

@media (max-width: 800px) {
    .personas { height: 500vh; }
    .personas__card { padding: 40px var(--container-px, 1.5rem); }
    .personas__card-head { max-width: 100%; }
    .personas__card-list { max-width: 100%; }
}

/* =============================================
   Custom Effects — Fan cards
   ============================================= */

.custom { background: #f2f2f0; color: #0a0a0a; height: 300vh; position: relative; transition: background 1s ease, color 1s ease; }

.custom__pin { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 48px; padding: 40px var(--container-px, 2rem); overflow: hidden; }

.custom__header { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; max-width: 700px; }
.custom__badge { font-size: clamp(11px, 0.9vw, 13px); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: #6b5ce7; background: rgba(107,92,231,0.08); border: 1px solid rgba(107,92,231,0.12); border-radius: 999px; padding: 6px 18px; }
.custom__heading { font-size: clamp(26px, 3.5vw, 52px); font-weight: 200; line-height: 1.15; letter-spacing: -0.02em; color: #0a0a0a; }
.custom__heading em { font-style: italic; color: #6b5ce7; }
.custom__sub { font-size: clamp(14px, 1.15vw, 17px); font-weight: 300; color: #555; line-height: 1.7; max-width: 620px; }

.custom__fan { display: flex; gap: 0; justify-content: center; align-items: stretch; width: 100%; max-width: 960px; }
.custom__card { flex: 0 0 290px; background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 14px; padding: 32px 28px; display: flex; flex-direction: column; gap: 12px; will-change: transform; transform-origin: center 120%; box-shadow: 0 4px 24px rgba(0,0,0,0.06); transition: box-shadow 0.4s; margin: 0 -137px; }
.custom__card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.1); }

.custom__card-step { font-size: 12px; font-weight: 600; color: #6b5ce7; font-family: monospace; letter-spacing: 0.08em; }
.custom__card-title { font-size: clamp(17px, 1.4vw, 22px); font-weight: 500; color: #0a0a0a; line-height: 1.25; letter-spacing: -0.01em; }
.custom__card-desc { font-size: clamp(13px, 1vw, 14px); font-weight: 300; color: #555; line-height: 1.65; }

.custom__pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; list-style: none; padding: 0; margin: 0; }
.custom__pill { font-size: 12px; font-weight: 300; color: #555; background: #e5e5e3; border: 1px solid #d0d0cd; border-radius: 999px; padding: 5px 14px; white-space: nowrap; }

.custom__why { max-width: 560px; text-align: center; display: flex; flex-direction: column; gap: 8px; border-top: 1px solid rgba(0,0,0,0.06); padding-top: 24px; }
.custom__why-label { font-size: 13px; font-weight: 500; color: #0a0a0a; letter-spacing: 0.02em; }
.custom__why-text { font-size: clamp(13px, 1vw, 14px); font-weight: 300; color: #666; line-height: 1.7; }

@media (max-width: 800px) {
    .custom { height: auto; }
    .custom__pin { position: relative; height: auto; gap: 32px; padding: 60px var(--container-px, 1.5rem) 48px; justify-content: flex-start; overflow: visible; }
    .custom__fan { display: flex; flex-direction: column; align-items: center; gap: 12px; width: 100%; }
    .custom__card { flex: 0 0 auto; max-width: 100%; width: 100%; margin: 0; padding: 24px 20px; }
    .custom__pills { gap: 6px; }
}

/* =============================================
   Social Proof — Stacking testimonials
   ============================================= */

.proof { background: #f2f2f0; color: #0a0a0a; height: 300vh; position: relative; transition: background 1s ease, color 1s ease; padding-top: 80px; }

.proof__pin { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 48px; padding: 40px var(--container-px, 2rem); }

.proof__header { text-align: center; display: flex; flex-direction: column; gap: 24px; }
.proof__label { font-size: clamp(12px, 1vw, 14px); font-weight: 300; letter-spacing: 0.12em; text-transform: uppercase; color: #6b5ce7; font-family: monospace; }
.proof__heading { font-size: clamp(28px, 3.8vw, 58px); font-weight: 200; line-height: 1.12; letter-spacing: -0.025em; color: #0a0a0a; }

.proof__stack { position: relative; width: 100%; max-width: 660px; min-height: 260px; }

.proof__card { position: absolute; top: 0; left: 0; right: 0; background: #fff; border: 1px solid rgba(0,0,0,0.07); border-radius: 16px; padding: 36px 36px 28px; display: flex; flex-direction: column; gap: 0; margin: 0; will-change: transform, opacity; transition: box-shadow 0.4s; }
.proof__card-body { display: flex; flex-direction: column; gap: 16px; flex: 1; }

.proof__stars { font-size: 14px; letter-spacing: 2px; color: #f5a623; line-height: 1; }
.proof__quote { font-size: clamp(15px, 1.2vw, 18px); font-weight: 300; color: #333; line-height: 1.75; }
.proof__quote strong { font-weight: 500; color: #0a0a0a; }

.proof__author { display: flex; align-items: center; gap: 14px; padding-top: 20px; margin-top: 20px; border-top: 1px solid rgba(0,0,0,0.06); }
.proof__avatar { width: 40px; height: 40px; border-radius: 50%; background: #0a0a0a; color: #f2f2f0; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; letter-spacing: 0.03em; flex-shrink: 0; }
.proof__meta { display: flex; flex-direction: column; gap: 2px; }
.proof__name { font-size: 14px; font-weight: 500; color: #0a0a0a; font-style: normal; }
.proof__role { font-size: 12px; font-weight: 300; color: #888; }

.proof__strip { max-width: 800px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.proof__strip-text { font-size: 13px; font-weight: 300; color: #888; letter-spacing: 0.02em; }
.proof__strip-logos { display: flex; gap: 32px; align-items: center; justify-content: center; flex-wrap: wrap; }
.proof__strip-logos span { font-size: clamp(15px, 1.3vw, 20px); font-weight: 500; color: #0a0a0a; letter-spacing: -0.01em; opacity: 0.25; transition: opacity 0.3s; }
.proof__strip-logos span:hover { opacity: 0.6; }
.proof__strip-via { font-size: 11px; font-weight: 400; color: #aaa; letter-spacing: 0.06em; text-transform: uppercase; }

@media (max-width: 800px) {
    .proof__pin { gap: 32px; padding: 32px var(--container-px, 1.5rem); }
    .proof__stack { max-width: 100%; min-height: 280px; }
    .proof__card { padding: 28px 24px 22px; }
    .proof__strip-logos { gap: 20px; }
}

/* =============================================
   Pricing
   ============================================= */

.pricing { background: #f2f2f0; color: #0a0a0a; padding: 140px var(--container-px, 2rem) 100px; transition: background 1s ease, color 1s ease; }

.pricing__switcher { display: flex; justify-content: center; margin: 0 auto 52px; }
.pricing__switcher-track { position: relative; display: inline-flex; background: rgba(0,0,0,0.06); border-radius: 999px; padding: 4px; }
.pricing__switcher-btn { position: relative; z-index: 1; padding: 10px 28px; border: none; background: transparent; font-size: 14px; font-weight: 400; color: #666; cursor: pointer; border-radius: 999px; transition: color 0.3s; font-family: inherit; white-space: nowrap; }
.pricing__switcher-btn:hover { color: #222; }
.pricing__switcher-btn--active { color: #111; font-weight: 500; }
.pricing__switcher-slider { position: absolute; top: 4px; left: 0; height: calc(100% - 8px); background: #fff; border-radius: 999px; box-shadow: 0 1px 6px rgba(0,0,0,0.1); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), width 0.35s cubic-bezier(0.4,0,0.2,1); z-index: 0; }
body.is-dark .pricing__switcher-track { background: rgba(255,255,255,0.07); }
body.is-dark .pricing__switcher-btn { color: #888; }
body.is-dark .pricing__switcher-btn:hover { color: #ccc; }
body.is-dark .pricing__switcher-btn--active { color: #f2f2f0; }
body.is-dark .pricing__switcher-slider { background: rgba(255,255,255,0.12); box-shadow: 0 1px 6px rgba(0,0,0,0.4); }

.pricing__card-mo { font-size: clamp(16px, 1.2vw, 20px); font-weight: 300; color: #888; margin-left: 2px; }
.pricing__card-billed { font-size: 12px; font-weight: 400; color: #888; margin-top: 4px; }
.pricing__card--featured .pricing__card-mo { color: rgba(255,255,255,0.5); }
.pricing__card--featured .pricing__card-billed { color: rgba(255,255,255,0.45); }

.pricing__card-specs { display: flex; flex-direction: column; gap: 10px; padding: 16px 0; border-top: 1px solid rgba(0,0,0,0.06); border-bottom: 1px solid rgba(0,0,0,0.06); }
.pricing__card-spec { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 400; color: #555; }
.pricing__card-spec svg { flex-shrink: 0; color: #6b5ce7; }
.pricing__card--featured .pricing__card-specs { border-color: rgba(255,255,255,0.1); }
.pricing__card--featured .pricing__card-spec { color: rgba(255,255,255,0.7); }
.pricing__card--featured .pricing__card-spec svg { color: #a78bfa; }

.pricing__header { max-width: 600px; margin: 0 auto 72px; text-align: center; display: flex; flex-direction: column; gap: 20px; }
.pricing__label { font-size: clamp(12px, 1vw, 14px); font-weight: 300; letter-spacing: 0.12em; text-transform: uppercase; color: #6b5ce7; font-family: monospace; }
.pricing__heading { font-size: clamp(28px, 3.8vw, 56px); font-weight: 200; line-height: 1.1; letter-spacing: -0.025em; }
.pricing__sub { font-size: clamp(15px, 1.2vw, 18px); font-weight: 300; color: #555; line-height: 1.7; }

.pricing__tiers { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; align-items: stretch; }

.pricing__card { background: #fff; border: 1px solid rgba(0,0,0,0.07); border-radius: 16px; padding: 40px 28px 32px; display: flex; flex-direction: column; gap: 32px; position: relative; transition: border-color 0.4s, box-shadow 0.4s; }
.pricing__card:hover { border-color: rgba(0,0,0,0.12); box-shadow: 0 8px 40px rgba(0,0,0,0.06); }

.pricing__card--featured { background: #0a0a0a; color: #f2f2f0; border-color: transparent; padding-top: 52px; box-shadow: 0 12px 60px rgba(0,0,0,0.18); transform: scale(1.04); z-index: 2; }
.pricing__card--featured:hover { border-color: rgba(107,92,231,0.4); box-shadow: 0 16px 72px rgba(0,0,0,0.25); }

.pricing__card-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); font-size: 12px; font-weight: 300; color: #fff; background: #6b5ce7; border-radius: 999px; padding: 6px 20px; white-space: nowrap; }

.pricing__card-head { display: flex; flex-direction: column; gap: 8px; }
.pricing__card-name { font-size: 14px; font-weight: 300; text-transform: uppercase; color: #888; }
.pricing__card--featured .pricing__card-name { color: rgba(255,255,255,0.5); }
.pricing__card-amount { font-size: clamp(40px, 4vw, 56px); font-weight: 200; letter-spacing: -0.03em; line-height: 1; }
.pricing__card--featured .pricing__card-amount { color: #fff; }
.pricing__card-pay { font-size: 12px; font-weight: 300; color: #999; }
.pricing__card--featured .pricing__card-pay { color: rgba(255,255,255,0.4); }
.pricing__card-sites { font-size: 13px; font-weight: 400; color: #6b5ce7; margin-top: 4px; }

.pricing__card-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; padding-top: 24px; border-top: 1px solid rgba(0,0,0,0.06); flex: 1; }
.pricing__card--featured .pricing__card-features { border-top-color: rgba(255,255,255,0.08); }
.pricing__card-features li { font-size: 13px; font-weight: 300; color: #444; line-height: 1.5; padding-left: 22px; position: relative; }
.pricing__card--featured .pricing__card-features li { color: rgba(255,255,255,0.6); }
.pricing__card-features li::before { content: '✓'; position: absolute; left: 0; top: 0; font-size: 13px; font-weight: 600; color: #34c759; line-height: 1.5; }
.pricing__card-features--gift { font-weight: 400 !important; color: #6b5ce7 !important; }

.pricing__card-cta { display: block; text-align: center; font-size: 14px; font-weight: 300; text-decoration: none; padding: 16px 24px; border-radius: 999px; border: 1px solid rgba(0,0,0,0.12); color: #0a0a0a; background: transparent; transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s; letter-spacing: 0.01em; margin-top: auto; }
.pricing__card-cta:hover { background: #0a0a0a; color: #f2f2f0; border-color: #0a0a0a; transform: translateY(-2px); }
.pricing__card-cta--primary { background: #6b5ce7; color: #fff; border-color: #6b5ce7; }
.pricing__card-cta--primary:hover { background: #5a4bd6; border-color: #5a4bd6; color: #fff; transform: translateY(-2px); }

.pricing__guarantee { max-width: 760px; margin: 72px auto 0; display: flex; align-items: flex-start; gap: 16px; padding: 28px 32px; background: rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.06); border-radius: 14px; }
.pricing__guarantee-icon { font-size: 24px; flex-shrink: 0; line-height: 1.4; }
.pricing__guarantee-text { font-size: clamp(13px, 1vw, 14px); font-weight: 300; color: #555; line-height: 1.7; }
.pricing__guarantee-text strong { font-weight: 500; color: #0a0a0a; }

@media (max-width: 1100px) { .pricing__tiers { grid-template-columns: repeat(2, 1fr) !important; max-width: 640px; } .pricing__card--featured { transform: none; } }
@media (max-width: 600px) { .pricing { padding: 140px var(--container-px, 1.5rem) 60px; } .pricing__tiers { grid-template-columns: 1fr !important; max-width: 440px; } .pricing__card--featured { order: -1; } .pricing__card { padding: 32px 24px 28px; } .pricing__guarantee { flex-direction: column; gap: 12px; padding: 24px; } .pricing__switcher-btn { padding: 8px 18px; font-size: 13px; } }

/* =============================================
   FAQ
   ============================================= */

.faq { background: #f2f2f0; color: #0a0a0a; padding: 140px var(--container-px, 2rem) 120px; transition: background 1s ease, color 1s ease; }
.faq__header { max-width: 600px; margin: 0 auto 64px; text-align: center; display: flex; flex-direction: column; gap: 24px; }
.faq__label { font-size: clamp(12px, 1vw, 14px); font-weight: 300; letter-spacing: 0.12em; text-transform: uppercase; color: #6b5ce7; font-family: monospace; }
.faq__heading { font-size: clamp(28px, 3.5vw, 52px); font-weight: 200; line-height: 1.12; letter-spacing: -0.025em; }

.faq__list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; }
.faq__item { border-top: 1px solid rgba(0,0,0,0.08); }
.faq__item:last-child { border-bottom: 1px solid rgba(0,0,0,0.08); }

.faq__question { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 24px 0; cursor: pointer; list-style: none; -webkit-user-select: none; user-select: none; }
.faq__question::-webkit-details-marker { display: none; }
.faq__question::marker { content: ''; }

.faq__q-text { font-size: clamp(15px, 1.2vw, 18px); font-weight: 400; color: #0a0a0a; line-height: 1.4; }

.faq__icon { flex-shrink: 0; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(0,0,0,0.04); color: #555; transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), background 0.3s; }
.faq__item[open] .faq__icon { transform: rotate(45deg); background: #6b5ce7; color: #fff; }

.faq__answer { padding: 0 0 28px 0; max-width: 620px; }
.faq__answer p { font-size: clamp(14px, 1.05vw, 15px); font-weight: 300; color: #555; line-height: 1.75; }
.faq__answer code { font-family: 'SF Mono', 'Fira Code', monospace; font-size: 0.9em; padding: 1px 6px; border-radius: 4px; background: #e5e5e3; color: #0a0a0a; }

@media (max-width: 600px) { .faq { padding: 140px var(--container-px, 1.5rem) 80px; } .faq__question { padding: 20px 0; gap: 16px; } }

/* =============================================
   Final CTA
   ============================================= */

.final { background: #f2f2f0; color: #0a0a0a; padding: 160px var(--container-px, 2rem) 140px; position: relative; overflow: hidden; text-align: center; }
.final__inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 28px; }

.final__badge { font-size: clamp(11px, 0.9vw, 13px); font-weight: 300; text-transform: uppercase; color: #6b5ce7; background: rgba(107,92,231,0.08); border: 1px solid rgba(107,92,231,0.15); border-radius: 999px; padding: 7px 22px; }
.final__heading { font-size: clamp(32px, 5vw, 72px); font-weight: 200; line-height: 1.08; letter-spacing: -0.03em; color: #0a0a0a; }
.final__sub { font-size: clamp(15px, 1.2vw, 19px); font-weight: 300; color: #555; line-height: 1.75; max-width: 560px; }

.final__ctas { display: flex; gap: 14px; margin-top: 8px; flex-wrap: wrap; justify-content: center; }
.final__btn { display: inline-flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 300; text-decoration: none; padding: 16px 36px; border-radius: 999px; transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s; letter-spacing: 0.01em; }
.final__btn--primary { background: #6b5ce7; color: #fff; border: 1px solid #6b5ce7; }
.final__btn--primary:hover { background: #5a4bd6; border-color: #5a4bd6; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(107,92,231,0.35); }
.final__btn--ghost { background: transparent; color: #555; border: 1px solid rgba(0,0,0,0.15); }
.final__btn--ghost:hover { color: #0a0a0a; border-color: rgba(0,0,0,0.35); background: rgba(0,0,0,0.04); }

.final__micro { list-style: none; padding: 0; margin: 12px 0 0; display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.final__micro li { font-size: 12px; font-weight: 300; color: #999; white-space: nowrap; padding-left: 18px; position: relative; }
.final__micro li::before { content: '✓'; position: absolute; left: 0; color: #34c759; font-size: 11px; font-weight: 600; }

.final__glow { position: absolute; bottom: -30%; left: 50%; transform: translateX(-50%); width: 800px; height: 800px; border-radius: 50%; background: radial-gradient(circle, rgba(107,92,231,0.08) 0%, rgba(107,92,231,0.02) 40%, transparent 65%); filter: blur(60px); pointer-events: none; z-index: 0; }

@media (max-width: 600px) {
    .final { padding: 100px var(--container-px, 1.5rem) 80px; }
    .final__ctas { flex-direction: column; width: 100%; max-width: 320px; }
    .final__btn { width: 100%; justify-content: center; }
    .final__micro { flex-direction: column; align-items: center; gap: 10px; }
    .final__glow { width: 300px; height: 300px; }
}

/* =============================================
   Footer — Osmo-style
   ============================================= */

.pe-footer {
    background: #f2f2f0;
    color: #0a0a0a;
    padding: 80px var(--container-px, 2rem) 0;
    position: relative;
    overflow: hidden;
}

/* ── Top: newsletter + nav ── */
.pe-footer__top {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* ── Newsletter ── */
.pe-footer__newsletter {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pe-footer__newsletter-title {
    font-size: 14px;
    font-weight: 400;
    color: #0a0a0a;
    letter-spacing: -0.01em;
}

.pe-footer__form {
    display: flex;
    gap: 8px;
}

.pe-footer__input {
    flex: 1;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 300;
    color: #0a0a0a;
    background: transparent;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s;
    font-family: inherit;
}

.pe-footer__input::placeholder {
    color: #999;
}

.pe-footer__input:focus {
    border-color: rgba(0,0,0,0.3);
}

.pe-footer__consent {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 300;
    color: #666;
}

.pe-footer__consent a {
    color: #0a0a0a;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.pe-footer__checkbox {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.15);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s;
}

.pe-footer__checkbox:checked {
    background: #6b5ce7;
    border-color: #6b5ce7;
}

.pe-footer__submit {
    align-self: flex-start;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 500;
    color: #f2f2f0;
    background: #0a0a0a;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    font-family: inherit;
}

.pe-footer__submit:hover {
    background: #222;
}

/* ── Nav columns ── */
.pe-footer__nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.pe-footer__col-title {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 20px;
}

.pe-footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pe-footer__col a {
    font-size: 14px;
    font-weight: 300;
    color: #0a0a0a;
    text-decoration: none;
    transition: color 0.2s;
}

.pe-footer__col a:hover {
    color: #6b5ce7;
}

/* ── Actions row ── */
.pe-footer__actions {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
}

.pe-footer__buttons {
    display: flex;
    gap: 8px;
}

.pe-footer__btn {
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 999px;
    transition: background 0.3s, color 0.3s;
}

.pe-footer__btn--dark {
    background: #0a0a0a;
    color: #f2f2f0;
}

.pe-footer__btn--dark:hover {
    background: #222;
}

.pe-footer__btn--accent {
    background: #6b5ce7;
    color: #fff;
}

.pe-footer__btn--accent:hover {
    background: #5a4bd6;
}

.pe-footer__social {
    display: flex;
    gap: 16px;
    align-items: center;
}

.pe-footer__social a {
    color: #0a0a0a;
    transition: color 0.2s;
    display: flex;
}

.pe-footer__social a:hover {
    color: #6b5ce7;
}

/* ── Giant brand text ── */

.pe-footer__brand {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
    padding: 0;
    height: clamp(100px, 14vw, 260px);
    align-items: flex-start;
}

@keyframes footerMarquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.pe-footer__brand-text {
    font-size: clamp(120px, 18vw, 320px);
    font-weight: 900;
    color: #0a0a0a;
    letter-spacing: -0.04em;
    line-height: 0.9;
    flex-shrink: 0;
    padding-right: 0.12em;
    animation: footerMarquee 18s linear infinite;
    will-change: transform;
}

/* ── Bottom bar ── */
.pe-footer__bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 28px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.pe-footer__legal {
    display: flex;
    gap: 4px;
}

.pe-footer__legal a {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0a0a0a;
    text-decoration: none;
    padding: 4px 8px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 4px;
    transition: border-color 0.2s;
}

.pe-footer__legal a:hover {
    border-color: rgba(0,0,0,0.4);
}

.pe-footer__copy {
    font-size: 12px;
    font-weight: 300;
    color: #888;
    letter-spacing: 0.04em;
}

.pe-footer__credit {
    font-size: 12px;
    font-weight: 300;
    color: #888;
    letter-spacing: 0.04em;
}

.pe-footer__credit a {
    color: #6b5ce7;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid rgba(107,92,231,0.2);
    border-radius: 4px;
    padding: 2px 8px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .pe-footer__top {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .pe-footer__nav {
        grid-template-columns: repeat(2, 1fr);
    }

    .pe-footer__actions {
        flex-direction: column;
        gap: 24px;
    }

    .pe-footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .pe-footer__legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .pe-footer {
        padding: 48px var(--container-px, 1.5rem) 0;
    }

    .pe-footer__form {
        flex-direction: column;
    }

    .pe-footer__nav {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
/* =============================================
   Mega Menu
   ============================================= */

/* =============================================
   Mega Menu — Osmo-style stretch animation
   ============================================= */

/* ── Transiciones base (siempre activas) ── */
/* Deben estar en el estado base para que el browser anime en ambas direcciones */
.pe-nav {
    transition:
        width 0.6s cubic-bezier(0.65, 0, 0.35, 1),
        max-width 0.6s cubic-bezier(0.65, 0, 0.35, 1),
        border-radius 0.4s cubic-bezier(0.65, 0, 0.35, 1),
        margin 0.6s cubic-bezier(0.65, 0, 0.35, 1),
        padding 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.pe-badge {
    transition:
        width 0.6s cubic-bezier(0.65, 0, 0.35, 1),
        max-width 0.6s cubic-bezier(0.65, 0, 0.35, 1),
        border-radius 0.4s cubic-bezier(0.65, 0, 0.35, 1),
        margin 0.6s cubic-bezier(0.65, 0, 0.35, 1),
        height 0.35s cubic-bezier(0.65, 0, 0.35, 1),
        padding 0.35s cubic-bezier(0.65, 0, 0.35, 1),
        opacity 0.25s ease,
        pointer-events 0s;
}

/* ── Fase 1: stretch del nav pill y badge ── */
.pe-header.is-stretching .pe-nav,
.pe-header.is-open .pe-nav {
    width: 1512px !important;
    max-width: calc(100vw - 24px) !important;
    min-width: unset !important;
    border-radius: 8px 8px 0 0;
    margin-bottom: 0;
}

.pe-header.is-stretching .pe-badge,
.pe-header.is-open .pe-badge {
    width: 1512px !important;
    max-width: calc(100vw - 24px) !important;
    min-width: unset !important;
    border-radius: 0 0 7px 7px;
    margin-bottom: 0;
}

/* ── Fase 2: colapsar badge cuando el panel está abierto ── */
.pe-header.is-open .pe-badge {
    opacity: 0;
    height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
    pointer-events: none;
}

/* ── Nav: línea separadora cuando está abierto ── */
.pe-header.is-open .pe-nav {
    border-radius: 7px 7px 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Overlay backdrop — cubre toda la pantalla ── */
.pe-megamenu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s 0.3s ease;
}

.pe-megamenu-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

/* ── Panel — emerge debajo del header estirado ── */
.pe-megamenu {
    position: fixed;
    top: var(--header-h, 120px);
    left: 50%;
    transform: translateX(-50%);
    width: 1512px;
    max-width: calc(100vw - 24px);
    z-index: 999;
    background: #181716;
    border-radius: 0 0 7px 7px;
    overflow: hidden;
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: clip-path;
}

.pe-megamenu.is-open {
    clip-path: inset(0 0 0% 0);
}

/* ── Inner: 3 columnas ── */
.pe-megamenu__inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1.1fr;
    grid-template-rows: 1fr auto;
    min-height: 420px;
}

/* ── Columna base ── */
.pe-megamenu__col {
    padding: 36px 40px 44px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.pe-megamenu__col:last-child {
    border-right: none;
    padding: 0;
}

/* ── Label de columna ── */
.pe-megamenu__col-label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 24px;
    font-family: monospace;
}

/* ── Links ── */
.pe-megamenu__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    text-decoration: none;
    color: rgba(255,255,255,0.75);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        color 0.2s,
        border-color 0.2s;
}

.pe-megamenu__link:first-of-type { border-top: 1px solid rgba(255,255,255,0.06); }

.pe-megamenu__link:hover {
    color: #ffffff;
    border-bottom-color: rgba(255,255,255,0.15);
}

.pe-megamenu.is-open .pe-megamenu__link {
    opacity: 1;
    transform: translateY(0);
}

.pe-megamenu__link-label {
    font-size: clamp(18px, 1.6vw, 26px);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.pe-megamenu__link-arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.3s;
}

.pe-megamenu__link:hover .pe-megamenu__link-arrow {
    background: var(--color-green, #a2ff63);
    border-color: var(--color-green, #a2ff63);
    color: #0a0a0a;
    transform: rotate(-45deg);
}

/* ── Columna 3: video card ── */
.pe-megamenu__video-col {
    grid-column: 3;
    grid-row: 1 / -1;
    background: #111;
    display: flex;
    flex-direction: column;
    border-radius: 0 0 12px 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 0.55s 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.55s 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pe-megamenu.is-open .pe-megamenu__video-col {
    opacity: 1;
    transform: translateY(0);
}

/* ── CTA: Custom Effect (spans col 1+2) ── */

.pe-megamenu__cta {
    grid-column: 1 / 3;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 40px;
    text-decoration: none;
    color: #f2f2f0;
    background: rgba(107,92,231,0.04);
    transition: background 0.3s;
    opacity: 0;
    transform: translateY(10px);
    transition:
        background 0.3s,
        opacity 0.55s 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.55s 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    margin: 0 40px 24px;
    border-radius: 5px;
}

.pe-megamenu.is-open .pe-megamenu__cta {
    opacity: 1;
    transform: translateY(0);
}

.pe-megamenu__cta:hover {
    background: rgba(107,92,231,0.08);
}

.pe-megamenu__cta-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pe-megamenu__cta-icon {
    font-size: 18px;
    color: #3ddc5b;
    flex-shrink: 0;
}

.pe-megamenu__cta-text {
    display: flex;
    flex-direction: row;
    gap: 17px;
    align-items: center;
    justify-content: center;
}

.pe-megamenu__cta-title {
    font-size: 15px;
    font-weight: 300;
    color: #f2f2f0;
    letter-spacing: -0.01em;
}

.pe-megamenu__cta-sub {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.01em;
}

.pe-megamenu__cta .pe-megamenu__link-arrow {
    color: #6b5ce7;
    transition: transform 0.3s;
}

.pe-megamenu__cta:hover .pe-megamenu__link-arrow {
    transform: translateX(4px);
}

.pe-megamenu__video-meta {
    padding: 28px 32px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pe-megamenu__video-tag {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-green, #a2ff63);
    font-family: monospace;
}

.pe-megamenu__video-title {
    font-size: clamp(16px, 1.4vw, 22px);
    font-weight: 300;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.pe-megamenu__video-wrap {
    position: relative;
    flex: 1;
    min-height: 200px;
    overflow: hidden;
    cursor: pointer;
}

.pe-megamenu__video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pe-megamenu__video-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.pe-megamenu__video-btn:hover {
    background: rgba(0,0,0,0.15);
}

.pe-megamenu__video-play {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), background 0.2s;
}

.pe-megamenu__video-btn:hover .pe-megamenu__video-play {
    transform: scale(1.1);
    background: var(--color-green, #a2ff63);
}

/* ── Mega menu: mobile full-width ── */
@media (max-width: 640px) {
    .pe-header {
        transition: padding 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    }

    .pe-header.is-stretching,
    .pe-header.is-open {
        padding: 0;
    }

    .pe-header.is-stretching .pe-nav,
    .pe-header.is-open .pe-nav {
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 0;
        margin: 0;
    }

    .pe-header.is-stretching .pe-badge,
    .pe-header.is-open .pe-badge {
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 0;
        margin: 0;
    }

    .pe-header.is-open .pe-nav {
        border-radius: 0;
    }

    .pe-megamenu {
        max-width: 100%;
        border-radius: 0;
    }
}

/* ══════════════════════════════════════════
   Video Breakout Animation
══════════════════════════════════════════ */

/* ── Clon portal (se añade a <body>) ── */
.breakout-clone {
    position: fixed;
    z-index: 10000;
    overflow: hidden;
    border-radius: 0;
    background: #0a0a0a;
    pointer-events: none;
    will-change: top, left, width, height, border-radius;
}

.breakout-clone video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Fase 4: volar al centro ── */
.breakout-clone--center {
    transition:
        top    0.55s cubic-bezier(0.65, 0, 0.35, 1),
        left   0.55s cubic-bezier(0.65, 0, 0.35, 1),
        width  0.55s cubic-bezier(0.65, 0, 0.35, 1),
        height 0.55s cubic-bezier(0.65, 0, 0.35, 1),
        border-radius 0.55s cubic-bezier(0.65, 0, 0.35, 1);
}

/* ── Fase 5: expandir a fullscreen ── */
.breakout-clone--fullscreen {
    transition:
        top    0.5s cubic-bezier(0.65, 0, 0.35, 1),
        left   0.5s cubic-bezier(0.65, 0, 0.35, 1),
        width  0.5s cubic-bezier(0.65, 0, 0.35, 1),
        height 0.5s cubic-bezier(0.65, 0, 0.35, 1),
        border-radius 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

/* ── Cierre del clon ── */
.breakout-clone--closing {
    transition: opacity 0.4s ease-out !important;
}

/* ── Botón cerrar (X) ── */
.breakout-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.2s ease;
    pointer-events: none;
}

.breakout-clone--fullscreen .breakout-close {
    opacity: 1;
    pointer-events: auto;
}

.breakout-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* ── Fade del contenido del mega menu ── */
.pe-megamenu--fading .pe-megamenu__inner {
    opacity: 0;
    transition: opacity 0.4s ease-out;
}

/* ── Nav menu button: hamburguesa → X ── */
.pe-nav__menu {
    transition: color 0.2s ease;
}

.pe-nav__icon span {
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.2s;
}

.pe-nav__menu.is-active .pe-nav__icon span:first-child {
    transform: translateY(5.5px) rotate(45deg);
}

.pe-nav__menu.is-active .pe-nav__icon span:last-child {
    transform: translateY(-5.5px) rotate(-45deg);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .pe-megamenu__inner {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }
    .pe-megamenu__cta {
        grid-column: 1 / -1;
    }
    .pe-megamenu__video-col {
        display: none;
    }
}

@media (max-width: 600px) {
    .pe-megamenu__inner { grid-template-columns: 1fr; gap: 0; padding: 25px 10px;}
    .pe-megamenu__col { padding: 10px 20px 6px; }
    .pe-megamenu__col-label { font-size: 9px; margin-bottom: 2px; }
    .pe-megamenu__link { padding: 8px 0; border-bottom: none; }
    .pe-megamenu__link:first-of-type { border-top: none; }
    .pe-megamenu__link-label { font-size: 14px; }
    .pe-megamenu__link-arrow { display: none; }
    .pe-megamenu__cta { grid-column: 1; grid-row: auto; padding: 10px 16px; order: 99; margin: 4px 20px 12px; }
    .pe-megamenu__cta-icon { font-size: 14px; }
    .pe-megamenu__cta-title { font-size: 12px; }
    .pe-megamenu__cta-sub { display: none; }
    .pe-megamenu__cta .pe-megamenu__link-arrow { display: flex; width: 26px; height: 26px; }
    .pe-megamenu__login { display: block !important; order: 100; }
}

/* ── Login button (mobile only, inside mega menu) ── */
.pe-megamenu__login {
    display: none;
    text-align: center;
    padding: 22px 20px;
    margin: 0 20px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #f2f2f0;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    transition: background 0.3s;
}

.pe-megamenu__login:hover {
    background: rgba(255,255,255,0.06);
}

/* =============================================
   Features — Full effect grid
   ============================================= */

.features {
    background: #f2f2f0;
    color: #0a0a0a;
    padding: 140px var(--container-px, 2rem) 120px;
    overflow: hidden;
}

.features__header {
    max-width: 900px;
    margin: 0 auto 56px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.features__label {
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b5ce7;
    font-family: monospace;
}

.features__heading {
    font-size: clamp(28px, 4vw, 64px);
    font-weight: 200;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: #0a0a0a;
}

.features__sub {
    font-size: clamp(15px, 1.2vw, 18px);
    font-weight: 300;
    color: rgba(0,0,0,0.5);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

/* ── Tabs ── */

.features__tabs {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin: 0 auto 64px;
    padding: 4px;
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 999px;
    width: fit-content;
}

.features__tab {
    font-size: 13px;
    font-weight: 300;
    color: rgba(0,0,0,0.4);
    background: none;
    border: none;
    padding: 10px 22px;
    border-radius: 999px;
    cursor: pointer;
    transition: color 0.3s, background 0.3s;
    white-space: nowrap;
    letter-spacing: 0.01em;
}
.features__tab:hover { color: rgba(0,0,0,0.7); }
.features__tab--active { background: rgba(0,0,0,0.08); color: #0a0a0a; }

/* ── Grid ── */

.features__grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ── Card base ── */

.features__card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
    transition:
        transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
        opacity 0.35s ease,
        visibility 0.35s ease;
}

.features__card:hover {
    transform: translateY(-4px);
}

/* ── Visual block (the "card" part) ── */

.features__card-visual {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #e8e8e6;
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.4s, box-shadow 0.4s;
}

.features__card:hover .features__card-visual {
    border-color: rgba(107,92,231,0.3);
    box-shadow: 0 0 40px rgba(107,92,231,0.08);
}

/* ── Hidden state for filtering ── */

.features__card--hidden {
    display: none;
}

/* ── Card top bar ── */

.features__card-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px 0;
}

.features__card-num {
    font-size: 11px;
    font-weight: 500;
    color: rgba(0,0,0,0.2);
    font-variant-numeric: tabular-nums;
    font-family: monospace;
    transition: color 0.4s;
}
.features__card:hover .features__card-num { color: rgba(0,0,0,0.5); }

/* Badges group (tech tag + category badge side by side) */
.features__card-badges {
    display: flex;
    align-items: center;
    gap: 6px;
}

.features__card-tag {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #6b5ce7;
    background: rgba(107,92,231,0.1);
    border: 1px solid rgba(107,92,231,0.15);
    border-radius: 999px;
    padding: 3px 9px;
}

.features__card-badge {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 999px;
}

.features__card-badge--scroll    { color: #6b5ce7; background: rgba(107,92,231,0.08); }
.features__card-badge--hover     { color: #34c759; background: rgba(52,199,89,0.08); }
.features__card-badge--entrance  { color: #ff9500; background: rgba(255,149,0,0.08); }
.features__card-badge--decorative{ color: #00c7be; background: rgba(0,199,190,0.08); }
.features__card-badge--ui        { color: #ff453a; background: rgba(255,69,58,0.08); }
.features__card-badge--woo       { color: #ffd60a; background: rgba(255,214,10,0.12); }

/* ── Card preview area ── */

.features__card-preview {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Grid pattern overlay */
.features__card-preview::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

/* ── Card orb ── */

.features__card-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.6;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.6s ease;
    pointer-events: none;
}
.features__card:hover .features__card-orb {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 1;
}

/* Orb colors by category */
[data-category="scroll"] .features__card-orb    { background: radial-gradient(circle, rgba(107,92,231,0.35) 0%, rgba(107,92,231,0.08) 50%, transparent 70%); }
[data-category="hover"] .features__card-orb     { background: radial-gradient(circle, rgba(52,199,89,0.3) 0%, rgba(52,199,89,0.06) 50%, transparent 70%); }
[data-category="entrance"] .features__card-orb  { background: radial-gradient(circle, rgba(255,149,0,0.3) 0%, rgba(255,149,0,0.06) 50%, transparent 70%); }
[data-category="decorative"] .features__card-orb{ background: radial-gradient(circle, rgba(0,199,190,0.3) 0%, rgba(0,199,190,0.06) 50%, transparent 70%); }
[data-category="ui"] .features__card-orb        { background: radial-gradient(circle, rgba(255,69,58,0.3) 0%, rgba(255,69,58,0.06) 50%, transparent 70%); }
[data-category="woo"] .features__card-orb       { background: radial-gradient(circle, rgba(255,214,10,0.3) 0%, rgba(255,214,10,0.06) 50%, transparent 70%); }

/* ── Card info (outside the visual card) ── */

.features__card-info {
    padding: 14px 4px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.features__card-name {
    font-size: 14px;
    font-weight: 300;
    color: #0a0a0a;
    letter-spacing: -0.01em;
}

.features__card-desc {
    font-size: 12px;
    font-weight: 300;
    color: rgba(0,0,0,0.45);
    line-height: 1.5;
}

/* ── CTA ── */

.features__cta {
    display: flex;
    justify-content: center;
    margin-top: 72px;
}

.features__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 999px;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    letter-spacing: 0.01em;
}

.features__btn--primary {
    background: #6b5ce7;
    color: #fff;
    border: 1px solid #6b5ce7;
}
.features__btn--primary:hover {
    background: #5a4bd6;
    border-color: #5a4bd6;
    transform: translateY(-2px);
}
.features__btn svg { transition: transform 0.3s; }
.features__btn:hover svg { transform: translateX(4px); }

/* ── Responsive ── */

/* Select oculto en desktop */
.features__select { display: none; }

@media (max-width: 900px) {
    .features { padding: 140px var(--container-px, 1.5rem) 80px; }
    .features__tabs { display: none; }
    .features__select {
        display: block;
        width: fit-content;
        min-width: 180px;
        margin: 0 auto 48px;
        padding: 10px 36px 10px 20px;
        font-size: 13px;
        font-weight: 300;
        border: 1px solid rgba(0,0,0,0.12);
        border-radius: 999px;
        background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 14px center;
        color: #0a0a0a;
        appearance: none;
        -webkit-appearance: none;
        cursor: pointer;
    }
    .features__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .features__grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════
   Built with ProEffects — Sites Grid
   ═══════════════════════════════════════════════ */

.sites {
    padding: 160px 40px 100px;
    background: #f5f5f3;
}

.sites__header {
    max-width: 900px;
    margin: 0 auto 56px;
    text-align: center;
}

.sites__label {
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b5ce7;
    font-family: monospace;
}

.sites__heading {
    font-size: clamp(28px, 4vw, 64px);
    font-weight: 200;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: #0a0a0a;
}

.sites__sub {
    font-size: clamp(15px, 1.2vw, 18px);
    font-weight: 300;
    color: rgba(0,0,0,0.5);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

/* ── Grid ── */

.sites__grid {
    max-width: 1512px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 33px 10px;
}

/* ── Card ── */

.sites__card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.sites__card:hover {
    transform: translateY(-4px);
}

/* ── Visual (screenshot) ── */

.sites__card-visual {
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    overflow: hidden;
    background: #e0e0de;
    transition: border-color 0.4s, box-shadow 0.4s;
}

.sites__card:hover .sites__card-visual {
    border-color: rgba(107,92,231,0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.sites__card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Info (avatar + name + author) ── */

.sites__card-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 2px 0;
}

.sites__card-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.sites__card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sites__card-meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 4px;
}

.sites__card-name {
    font-size: 13px;
    font-weight: 300;
    color: #111;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sites__card-author {
    font-size: 11px;
    font-weight: 300;
    color: rgba(0,0,0,0.35);
    letter-spacing: 0.02em;
    font-family: monospace;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Resources badge ── */

.sites__card-resources {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 2px 0;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.3);
    margin-top: 17px;
}

.sites__card-resources svg {
    color: #6b5ce7;
    opacity: 0.6;
}

/* ── Submit CTA ── */

.sites__cta {
    text-align: center;
    margin-top: 56px;
}

.sites__submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #6b5ce7;
    border: none;
    border-radius: 999px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.sites__submit-btn:hover {
    background: #5a4bd6;
    transform: translateY(-2px);
}

.sites__submit-btn svg {
    transition: transform 0.3s;
}

.sites__submit-btn:hover svg {
    transform: translate(2px, -2px);
}

/* ── Responsive ── */

@media (max-width: 800px) {
    .sites__grid { grid-template-columns: repeat(2, 1fr); }
    .sites { padding: 140px 24px 80px; }
}

@media (max-width: 500px) {
    .sites__grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════
   About Us — Hero personal
   ═══════════════════════════════════════════════ */

.about-hero {
    background: #f2f2f0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 200px var(--container-px, 2rem) 100px;
    position: relative;
    overflow: hidden;
}

/* Líneas verticales de fondo (igual que hero home) */
.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent calc(10vw - 1px),
            rgba(0, 0, 0, 0.06) calc(10vw - 1px),
            rgba(0, 0, 0, 0.06) 10vw
        );
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 30%, transparent 75%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 30%, transparent 75%);
    pointer-events: none;
    z-index: 0;
}

.about-hero > * {
    position: relative;
    z-index: 1;
}

/* ── Text block ── */

.about-hero__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
    max-width: 900px;
}

.about-hero__label {
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b5ce7;
    font-family: monospace;
}

.about-hero__heading {
    font-size: clamp(28px, 4.8vw, 72px);
    font-weight: 200;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #0a0a0a;
}

.about-hero__heading em {
    font-style: normal;
    color: #6b5ce7;
}

/* ── Photo ── */

.about-hero__photo {
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    overflow: hidden;
    margin: 56px 0 48px;
    background: #e0e0de;
    border: 1px solid rgba(0,0,0,0.06);
}

.about-hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Story ── */

.about-hero__story {
    max-width: 640px;
    text-align: center;
}

.about-hero__story p {
    font-size: clamp(18px, 1.8vw, 28px);
    font-weight: 300;
    line-height: 1.7;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.about-hero__story .about-hero__pill {
    display: inline-block;
    background: #e5e5e3;
    border: 1px solid #c8c8c5;
    border-radius: 999px;
    padding: 1px 14px;
    font-size: 0.88em;
    line-height: 1.6;
    vertical-align: middle;
    color: #0a0a0a;
}

/* ── Badges ── */

.about-hero__badges {
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    flex-wrap: wrap;
    justify-content: center;
}

.about-hero__badge {
    background: #e5e5e3;
    border: 1px solid #c8c8c5;
    border-radius: 999px;
    padding: 6px 18px;
    font-size: clamp(11px, 0.9vw, 14px);
    font-weight: 300;
    letter-spacing: 0.04em;
    color: #0a0a0a;
    white-space: nowrap;
}

/* ── Responsive ── */

@media (max-width: 900px) {
    .about-hero {
        padding-top: 160px;
    }
    .about-hero__photo {
        margin: 40px 0 36px;
    }
}

@media (max-width: 600px) {
    .about-hero {
        padding: 120px var(--container-px, 1.5rem) 64px;
        margin-bottom: -1px;
        min-height: unset;
    }
    .about-hero__text {
        gap: 20px;
    }
    .about-hero__photo {
        margin: 32px 0 28px;
        aspect-ratio: 4 / 3;
    }
    .about-hero__badges {
        gap: 8px;
    }
}


/* ═══════════════════════════════════════════════
   Origin Story — Scroll-driven storytelling
   ═══════════════════════════════════════════════ */

.origin {
    height: 400vh;
    position: relative;
}

.origin__pin {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f2f2f0;
    transition: background 0.05s linear;
}

/* ── Chapters (stacked, JS controls opacity) ── */

.origin__chapter {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 0 var(--container-px, 2rem);
    opacity: 0;
    filter: blur(12px);
    transform: translateY(60px);
    pointer-events: none;
    will-change: opacity, filter, transform;
}

/* ── Chapter typography ── */

.origin__label {
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: monospace;
    color: #6b5ce7;
    transition: color 0.3s;
}

.origin__heading {
    font-size: clamp(24px, 3.2vw, 52px);
    font-weight: 200;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: #0a0a0a;
    text-align: center;
    max-width: 700px;
    transition: color 0.3s;
}

.origin__body {
    font-size: clamp(15px, 1.2vw, 18px);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(0,0,0,0.55);
    text-align: center;
    max-width: 540px;
    transition: color 0.3s;
}

/* ── Dark state (applied by JS) ── */

.origin__pin--dark {
    background: #0a0a0a;
}

.origin__pin--dark .origin__heading {
    color: #f2f2f0;
}

.origin__pin--dark .origin__body {
    color: rgba(255,255,255,0.5);
}

.origin__pin--dark .origin__label {
    color: #6b5ce7;
}

/* ── Chapter 1: Terminal visual ── */

.origin__terminal {
    width: 100%;
    max-width: 520px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 24px 28px;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: clamp(12px, 0.9vw, 14px);
    line-height: 1.8;
    color: rgba(255,255,255,0.4);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.origin__terminal::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(229,69,69,0.02) 2px,
        rgba(229,69,69,0.02) 4px
    );
    pointer-events: none;
}

.origin__terminal-dots {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
}

.origin__terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}

.origin__terminal-dot--red { background: #e54545; box-shadow: 0 0 6px rgba(229,69,69,0.4); }
.origin__terminal-dot--yellow { background: #f5a623; box-shadow: 0 0 6px rgba(245,166,35,0.3); }
.origin__terminal-dot--green { background: #34c759; box-shadow: 0 0 6px rgba(52,199,89,0.3); }

.origin__terminal .origin__line--error {
    color: #e54545;
}

.origin__terminal .origin__line--dim {
    color: rgba(255,255,255,0.2);
}

.origin__terminal .origin__line--comment {
    color: rgba(255,255,255,0.15);
    font-style: italic;
}

/* ── Chapter 2: Stat counters ── */

.origin__stats {
    display: flex;
    gap: 48px;
    align-items: center;
}

.origin__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.origin__stat-value {
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 200;
    letter-spacing: -0.03em;
    line-height: 1;
    color: #6b5ce7;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 40px rgba(107,92,231,0.3);
}

.origin__stat-value--green {
    color: #34c759;
    text-shadow: 0 0 40px rgba(52,199,89,0.3);
}

.origin__stat-label {
    font-size: clamp(11px, 0.9vw, 13px);
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

.origin__stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.08);
}

/* ── Chapter 3: Product badge ── */

.origin__product {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.origin__product-mark {
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 200;
    letter-spacing: -0.02em;
    color: #0a0a0a;
}

.origin__product-mark em {
    font-style: normal;
    color: #6b5ce7;
}

.origin__product-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(107,92,231,0.08);
    border: 1px solid rgba(107,92,231,0.15);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: #6b5ce7;
    letter-spacing: 0.02em;
}

.origin__product-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34c759;
    box-shadow: 0 0 8px rgba(52,199,89,0.5);
}

/* ── Progress indicator ── */

.origin__progress {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.origin__progress-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0,0,0,0.12);
    transition: background 0.3s, transform 0.3s;
}

.origin__pin--dark .origin__progress-dot {
    background: rgba(255,255,255,0.12);
}

.origin__progress-dot--active {
    background: #6b5ce7 !important;
    transform: scale(1.4);
}

/* ── Responsive ── */

@media (max-width: 900px) {
    .origin__stats {
        gap: 32px;
    }
    .origin__stat-value {
        font-size: clamp(32px, 8vw, 56px);
    }
}

@media (max-width: 600px) {
    .origin__chapter {
        gap: 24px;
        padding: 0 24px;
    }
    .origin__stats {
        flex-direction: column;
        gap: 24px;
    }
    .origin__stat-divider {
        width: 48px;
        height: 1px;
    }
    .origin__terminal {
        padding: 18px 20px;
        font-size: 11px;
    }
}


/* ═══════════════════════════════════════════════
   Credentials — Track record
   ═══════════════════════════════════════════════ */

.credentials {
    background: #f2f2f0;
    padding: 120px var(--container-px, 2rem);
}

.credentials__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* ── Photo ── */

.credentials__photo {
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #e0e0de;
    border: 1px solid rgba(0,0,0,0.06);
}

.credentials__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Content ── */

.credentials__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.credentials__label {
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b5ce7;
    font-family: monospace;
}

.credentials__heading {
    font-size: clamp(24px, 3.2vw, 44px);
    font-weight: 200;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: #0a0a0a;
}

.credentials__body {
    font-size: clamp(15px, 1.2vw, 18px);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(0,0,0,0.55);
}

.credentials__body strong {
    font-weight: 500;
    color: #0a0a0a;
}

/* ── Metrics row ── */

.credentials__metrics {
    display: flex;
    gap: 32px;
    padding: 24px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    margin: 4px 0;
}

.credentials__metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.credentials__metric-value {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 200;
    letter-spacing: -0.03em;
    line-height: 1;
    color: #0a0a0a;
}

.credentials__metric-label {
    font-size: clamp(11px, 0.85vw, 13px);
    font-weight: 300;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.35);
}

/* ── Agency link ── */

.credentials__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #6b5ce7;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: gap 0.3s;
}

.credentials__link:hover {
    gap: 12px;
}

.credentials__link svg {
    transition: transform 0.3s;
}

.credentials__link:hover svg {
    transform: translate(2px, -2px);
}

/* ── Responsive ── */

@media (max-width: 900px) {
    .credentials__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .credentials__photo {
        max-width: 560px;
    }
    .credentials { padding: 80px var(--container-px, 1.5rem); }
}

@media (max-width: 600px) {
    .credentials__metrics {
        flex-direction: column;
        gap: 20px;
    }
}


/* ═══════════════════════════════════════════════
   Philosophy — Product principles
   ═══════════════════════════════════════════════ */

.philosophy {
    background: #0a0a0a;
    padding: 120px var(--container-px, 2rem);
    color: #f2f2f0;
}

.philosophy__header {
    max-width: 700px;
    margin: 0 auto 64px;
    text-align: center;
}

.philosophy__label {
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b5ce7;
    font-family: monospace;
    display: block;
    margin-bottom: 20px;
}

.philosophy__heading {
    font-size: clamp(24px, 3.2vw, 52px);
    font-weight: 200;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: #f2f2f0;
}

.philosophy__sub {
    font-size: clamp(15px, 1.2vw, 18px);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
    margin-top: 16px;
}

/* ── Grid ── */

.philosophy__grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    overflow: hidden;
}

/* ── Principle card ── */

.philosophy__principle {
    background: #0a0a0a;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: background 0.4s;
}

.philosophy__principle:hover {
    background: #111;
}

.philosophy__principle-num {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.15);
    font-variant-numeric: tabular-nums;
    font-family: monospace;
    transition: color 0.4s;
}

.philosophy__principle:hover .philosophy__principle-num {
    color: #6b5ce7;
}

.philosophy__principle-title {
    font-size: clamp(16px, 1.3vw, 20px);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: #f2f2f0;
}

.philosophy__principle-body {
    font-size: clamp(13px, 1vw, 15px);
    font-weight: 300;
    line-height: 1.65;
    color: rgba(255,255,255,0.4);
}

/* ── Responsive ── */

@media (max-width: 900px) {
    .philosophy__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .philosophy { padding: 80px var(--container-px, 1.5rem); }
}

@media (max-width: 600px) {
    .philosophy__grid {
        grid-template-columns: 1fr;
    }
    .philosophy__principle {
        padding: 28px 24px;
    }
}


/* ═══════════════════════════════════════════════
   Custom Effect — Hero
   ═══════════════════════════════════════════════ */

.ce-hero {
    background: #f2f2f0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 200px var(--container-px, 2rem) 100px;
    position: relative;
    overflow: hidden;
}

/* Líneas verticales de fondo */
.ce-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent calc(10vw - 1px),
            rgba(0, 0, 0, 0.06) calc(10vw - 1px),
            rgba(0, 0, 0, 0.06) 10vw
        );
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 30%, transparent 75%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 30%, transparent 75%);
    pointer-events: none;
    z-index: 0;
}

.ce-hero > * {
    position: relative;
    z-index: 1;
}

/* ── Text ── */

.ce-hero__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    max-width: 800px;
}

.ce-hero__label {
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b5ce7;
    font-family: monospace;
}

.ce-hero__heading {
    font-size: clamp(28px, 4.8vw, 72px);
    font-weight: 200;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #0a0a0a;
}

.ce-hero__heading em {
    font-style: normal;
    color: #3ddc5b;
}

.ce-hero__sub {
    font-size: clamp(16px, 1.4vw, 22px);
    font-weight: 300;
    color: #444;
    line-height: 1.7;
    max-width: 580px;
}

/* ── CTAs ── */

.ce-hero__actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.ce-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.ce-hero__btn--primary {
    background: #6b5ce7;
    color: #fff;
    border: none;
}

.ce-hero__btn--primary:hover {
    background: #5a4bd6;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107,92,231,0.25);
}

.ce-hero__btn--ghost {
    background: transparent;
    color: #0a0a0a;
    border: 1px solid rgba(0,0,0,0.12);
}

.ce-hero__btn--ghost:hover {
    background: rgba(0,0,0,0.04);
    transform: translateY(-2px);
}

.ce-hero__btn--ghost svg {
    transition: transform 0.3s;
}

.ce-hero__btn--ghost:hover svg {
    transform: translateY(3px);
}

/* ── Visual card (delivery receipt) ── */

.ce-hero__visual {
    margin: 56px 0 48px;
    width: 100%;
    max-width: 440px;
}

.ce-hero__card {
    background: #111;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    overflow: hidden;
}

.ce-hero__card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ce-hero__card-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.ce-hero__card-dot--green {
    background: #34c759;
    box-shadow: 0 0 8px rgba(52,199,89,0.5);
}

.ce-hero__card-status {
    font-size: 13px;
    font-weight: 500;
    color: #34c759;
    letter-spacing: 0.01em;
}

.ce-hero__card-body {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ce-hero__card-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
}

.ce-hero__card-key {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.ce-hero__card-val {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    text-align: right;
}

.ce-hero__card-val--free {
    color: #3ddc5b;
    font-weight: 600;
    font-size: 16px;
}

/* ── Badges ── */

.ce-hero__badges {
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.ce-hero__badge {
    background: #e5e5e3;
    border: 1px solid #c8c8c5;
    border-radius: 999px;
    padding: 6px 18px;
    font-size: clamp(11px, 0.9vw, 14px);
    font-weight: 300;
    letter-spacing: 0.04em;
    color: #0a0a0a;
    white-space: nowrap;
}

/* ── Responsive ── */

@media (max-width: 900px) {
    .ce-hero {
        padding-top: 160px;
    }
    .ce-hero__visual {
        margin: 40px 0 36px;
    }
}

@media (max-width: 600px) {
    .ce-hero {
        padding: 120px var(--container-px, 1.5rem) 64px;
        min-height: unset;
    }
    .ce-hero__badges {
        gap: 8px;
    }
    .ce-hero__card-body {
        padding: 16px 18px 20px;
    }
    .ce-hero__card-line {
        flex-direction: column;
        gap: 2px;
    }
    .ce-hero__card-val {
        text-align: left;
    }
}


/* ═══════════════════════════════════════════════
   Custom Effect — 3 Steps (3D card carousel)
   ═══════════════════════════════════════════════ */

.ce-steps {
    background: #f2f2f0;
}

.ce-steps__pin-header {
    position: absolute;
    top: 48px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 20;
    max-width: 700px;
    width: 100%;
    padding: 0 2rem;
}

.ce-steps__label {
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b5ce7;
    font-family: monospace;
    display: block;
    margin-bottom: 20px;
}

.ce-steps__heading {
    font-size: clamp(24px, 3.2vw, 52px);
    font-weight: 200;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: #0a0a0a;
}

.ce-steps__sub {
    font-size: clamp(15px, 1.2vw, 18px);
    font-weight: 300;
    color: rgba(0,0,0,0.45);
    margin-top: 12px;
}

/* ── Scroll track ── */

.ce-steps__track {
    height: 300vh;
    position: relative;
}

.ce-steps__pin {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    perspective: 1200px;
    padding-top: 260px;
    padding-bottom: 120px;
    box-sizing: border-box;
}

/* ── Carousel ── */

.ce-steps__carousel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Cards ── */

.ce-steps__card {
    position: absolute;
    width: 340px;
    min-height: 460px;
    border-radius: 20px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    will-change: transform, opacity;
    transition: none;
    transform-style: preserve-3d;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.ce-steps__card--purple {
    background: #6b5ce7;
    color: #fff;
}

.ce-steps__card--dark {
    background: #111;
    color: #f2f2f0;
    border: 1px solid rgba(255,255,255,0.06);
}

.ce-steps__card--green {
    background: #3ddc5b;
    color: #0a0a0a;
}

/* ── Card inner elements ── */

.ce-steps__card-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: monospace;
    opacity: 0.5;
    position: absolute;
    top: 28px;
    left: 32px;
    transform-origin: left top;
    transform: rotate(-3deg);
}

.ce-steps__card-icon {
    font-size: 28px;
    margin-top: 16px;
}

.ce-steps__card-title {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.ce-steps__card--dark .ce-steps__card-title {
    color: #f2f2f0;
}

.ce-steps__card-body {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.7;
    max-width: 280px;
}

/* ── Card visual (resource graphics container) ── */

.ce-steps__card-visual {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px;
    border-radius: 10px;
    background: rgba(0,0,0,0.06);
}

.ce-steps__card--dark .ce-steps__card-visual {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}

.ce-steps__card--purple .ce-steps__card-visual {
    background: rgba(255,255,255,0.08);
}

/* ── Card 1: Plan rows ── */

.ce-steps__plan-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 400;
    background: rgba(255,255,255,0.1);
}

.ce-steps__plan-row--featured {
    background: rgba(255,255,255,0.22);
    font-weight: 600;
}

.ce-steps__plan-name {
    opacity: 0.85;
}

.ce-steps__plan-price {
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

/* ── Card 2: Form preview lines ── */

.ce-steps__card-form-line {
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    width: 100%;
}

.ce-steps__card-form-line--short {
    width: 60%;
}

.ce-steps__card-form-line--medium {
    width: 80%;
}

.ce-steps__card-file {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 400;
    opacity: 0.5;
    margin-top: 4px;
}

/* ── Card 3: Widget rows ── */

.ce-steps__widget-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 400;
    background: rgba(0,0,0,0.06);
}

.ce-steps__widget-row--new {
    background: rgba(0,0,0,0.1);
    font-weight: 600;
}

.ce-steps__widget-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.3;
}

.ce-steps__widget-row--new .ce-steps__widget-dot {
    background: #0a0a0a;
    opacity: 1;
}

.ce-steps__widget-badge {
    margin-left: auto;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: #0a0a0a;
    color: #3ddc5b;
    padding: 2px 8px;
    border-radius: 4px;
}

/* ── CTA below carousel ── */

.ce-steps__cta {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    text-align: center;
}

.ce-steps__cta-btn {
    display: inline-block;
    padding: 14px 40px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    background: #6b5ce7;
    color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.ce-steps__cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(107,92,231,0.35);
}

/* ── Responsive ── */

@media (max-width: 900px) {
    .ce-steps__pin-header {
        top: 32px;
    }
    .ce-steps__card {
        width: 280px;
        min-height: 380px;
        padding: 28px 24px;
    }
    .ce-steps__card-title {
        font-size: 26px;
    }
    .ce-steps__cta {
        bottom: 32px;
    }
}

@media (max-width: 600px) {
    .ce-steps__track { height: auto; }
    .ce-steps__pin {
        position: relative;
        height: auto;
        padding: 140px var(--container-px, 1.5rem) 48px;
        perspective: none;
        overflow: visible;
        flex-direction: column;
        gap: 24px;
    }
    .ce-steps__pin-header {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        padding: 0;
    }
    .ce-steps__carousel {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }
    .ce-steps__card {
        position: relative !important;
        transform: none !important;
        opacity: 1 !important;
        width: 100%;
        min-height: auto;
        padding: 24px 20px;
    }
    .ce-steps__card-title {
        font-size: 22px;
    }
    .ce-steps__cta {
        position: relative;
        bottom: auto;
    }
    .ce-steps__cta-btn {
        padding: 12px 32px;
        font-size: 14px;
    }
}


/* ═══════════════════════════════════════════
   Custom Effect — Closing CTA
   ═══════════════════════════════════════════ */

.ce-close {
    background: #f2f2f0;
    padding: 0 20px 20px;
}

.ce-close__inner {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    background: #0a0a0a;
    border-radius: 7px;
    padding: clamp(80px, 10vw, 160px) 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.ce-close__inner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(107,92,231,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.ce-close__label {
    font-size: clamp(11px, 1vw, 13px);
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-family: monospace;
    color: #6b5ce7;
    margin-bottom: 24px;
}

.ce-close__heading {
    font-size: clamp(28px, 4vw, 56px);
    font-weight: 200;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #f2f2f0;
    margin-bottom: 20px;
}

.ce-close__sub {
    font-size: clamp(15px, 1.2vw, 18px);
    font-weight: 300;
    line-height: 1.65;
    color: rgba(242,242,240,0.45);
    max-width: 480px;
    margin-bottom: 40px;
}

.ce-close__btn {
    display: inline-block;
    padding: 16px 48px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    background: #6b5ce7;
    color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.ce-close__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(107,92,231,0.4);
}

.ce-close__note {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 13px;
    font-weight: 300;
    color: rgba(242,242,240,0.3);
}

.ce-close__note svg {
    opacity: 0.4;
}

@media (max-width: 600px) {
    .ce-close {
        padding: 0 12px 12px;
    }
    .ce-close__btn {
        padding: 14px 36px;
    }
}


/* ═══════════════════════════════════════════
   404 Page
   ═══════════════════════════════════════════ */

.pe-404 {
    position: relative;
    min-height: 100vh;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pe-404__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.pe-404__lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.pe-404__content {
    position: relative;
    z-index: 2;
    text-align: center;
    pointer-events: none;
}

.pe-404__title {
    font-size: clamp(120px, 25vw, 400px);
    font-weight: 200;
    color: #fff;
    line-height: 0.85;
    letter-spacing: -0.04em;
    user-select: none;
}

.pe-404__sub {
    font-size: clamp(15px, 1.2vw, 18px);
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    max-width: 440px;
    margin: 24px auto 32px;
    line-height: 1.6;
}

.pe-404__btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    background: #fff;
    color: #1a1a1a;
    text-decoration: none;
    pointer-events: auto;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pe-404__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.15);
}