.apos-hero {
    position: relative;
    overflow: hidden;
    padding: 56px 0 36px;
}

.apos-hero::before {
    content: "";
    position: absolute;
    inset: -20% auto auto 40%;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(132, 232, 44, 0.18), transparent 62%);
    pointer-events: none;
}

.apos-hero-grid {
    display: grid;
    gap: 40px;
    align-items: center;
    position: relative;
}

@media (min-width: 992px) {
    .apos-hero-grid {
        grid-template-columns: 1.05fr 0.95fr;
    }
}

.apos-hero h1 {
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.02;
    letter-spacing: -0.05em;
    margin: 0 0 18px;
    font-weight: 800;
}

.apos-hero h1 em {
    font-style: normal;
    color: var(--apos-lime);
}

.apos-hero-lead {
    color: var(--apos-muted);
    font-size: 18px;
    max-width: 540px;
    margin-bottom: 28px;
}

.apos-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.apos-hero-note {
    color: var(--apos-muted);
    font-size: 13px;
}

.apos-marquee {
    position: relative;
    margin: 12px 0 40px;
    padding: 10px 0 18px;
    overflow: hidden;
}

.apos-marquee::before,
.apos-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: min(96px, 12vw);
    z-index: 2;
    pointer-events: none;
}

.apos-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--apos-black) 0%, transparent 100%);
}

.apos-marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--apos-black) 0%, transparent 100%);
}

.apos-marquee-viewport {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.apos-marquee-track {
    display: flex;
    width: max-content;
    animation: apos-marquee-left 42s linear infinite;
}

.apos-marquee-track-reverse {
    animation-name: apos-marquee-right;
    animation-duration: 48s;
    opacity: 0.78;
}

.apos-marquee-group {
    display: flex;
    gap: 12px;
    padding-right: 12px;
}

.apos-marquee:hover .apos-marquee-track,
.apos-marquee:focus-within .apos-marquee-track {
    animation-play-state: paused;
}

.apos-strip-item {
    position: relative;
    flex: 0 0 auto;
    width: min(240px, 72vw);
    overflow: hidden;
    padding: 16px 18px 16px;
    border-radius: 18px;
    color: var(--apos-white);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
        rgba(20, 20, 20, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(18px) saturate(1.35);
    -webkit-backdrop-filter: blur(18px) saturate(1.35);
}

.apos-strip-item::before {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    top: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--apos-lime), transparent);
    opacity: 0.85;
}

.apos-strip-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.16) 48%, transparent 62%);
    transform: translateX(-120%);
    animation: apos-glass-sheen 7s ease-in-out infinite;
    pointer-events: none;
}

.apos-marquee-track-reverse .apos-strip-item::after {
    animation-delay: -3.5s;
}

.apos-strip-item em {
    display: block;
    margin-bottom: 8px;
    font-style: normal;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--apos-lime);
}

.apos-strip-item strong {
    display: block;
    font-size: 15px;
    letter-spacing: -0.02em;
}

.apos-strip-item span {
    display: block;
    margin-top: 6px;
    color: var(--apos-muted);
    font-size: 13px;
    line-height: 1.35;
}

@keyframes apos-marquee-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes apos-marquee-right {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

@keyframes apos-glass-sheen {
    0%, 62% { transform: translateX(-120%); }
    78%, 100% { transform: translateX(120%); }
}

@media (prefers-reduced-motion: reduce) {
    .apos-marquee-track,
    .apos-marquee-track-reverse {
        animation: none;
        width: auto;
        max-width: 1160px;
        margin: 0 auto;
        padding: 0 16px;
        flex-wrap: wrap;
        justify-content: center;
        opacity: 1;
    }

    .apos-marquee-group {
        flex-wrap: wrap;
        justify-content: center;
        padding-right: 0;
    }

    .apos-marquee-group[aria-hidden="true"],
    .apos-marquee-track-reverse {
        display: none;
    }

    .apos-strip-item::after {
        animation: none;
        display: none;
    }

    .apos-strip-item {
        width: min(220px, 100%);
    }
}

.apos-section {
    padding: 72px 0;
}

.apos-section-alt {
    background: linear-gradient(180deg, #101010 0%, #0a0a0a 100%);
    border-top: 1px solid var(--apos-line);
    border-bottom: 1px solid var(--apos-line);
}

.apos-split {
    display: grid;
    gap: 36px;
    align-items: center;
}

@media (min-width: 900px) {
    .apos-split {
        grid-template-columns: 1fr 1fr;
    }

    .apos-split.is-flip > :first-child {
        order: 2;
    }
}

.apos-section h2 {
    font-size: clamp(28px, 3.4vw, 42px);
    letter-spacing: -0.04em;
    margin: 0 0 14px;
}

.apos-section p {
    color: var(--apos-muted);
}

.apos-bullets {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
}

.apos-bullets li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: var(--apos-muted);
}

.apos-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--apos-lime);
}

/* Product mocks */
.apos-mock {
    background: #121212;
    border: 1px solid var(--apos-line);
    border-radius: 22px;
    padding: 16px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.apos-mock-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
}

.apos-mock-bar i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #333;
    display: block;
}

.apos-mock-bar i:first-child {
    background: #ff5f57;
}

.apos-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #1a1a1a;
    margin-bottom: 8px;
    font-size: 13px;
}

.apos-row.ok {
    background: rgba(132, 232, 44, 0.1);
    border: 1px solid rgba(132, 232, 44, 0.28);
}

.apos-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 700;
    background: var(--apos-lime);
    color: var(--apos-ink);
}

.apos-chip.warn {
    background: #2a2a2a;
    color: #f3c14e;
}

.apos-chip.muted {
    background: #2a2a2a;
    color: var(--apos-muted);
}

.apos-face-preview {
    display: grid;
    place-items: center;
    aspect-ratio: 4 / 3;
    margin-bottom: 8px;
    border-radius: 12px;
    background: #0e0e0e;
    border: 1px solid var(--apos-line);
    color: var(--apos-muted);
    font-size: 13px;
    position: relative;
    overflow: hidden;
}

.apos-face-preview::before {
    content: "";
    position: absolute;
    inset: 14% 18%;
    border: 1px dashed rgba(132, 232, 44, 0.32);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.apos-face-preview.has-shot::before {
    border-color: rgba(132, 232, 44, 0.55);
}

.apos-face-preview img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.92) contrast(1.04);
}

.apos-face-preview span {
    position: relative;
    z-index: 2;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(18, 18, 18, 0.86);
}

.apos-core {
    display: grid;
    gap: 14px;
}

@media (min-width: 700px) {
    .apos-core {
        grid-template-columns: repeat(3, 1fr);
    }
}

.apos-core article {
    background: var(--apos-surface);
    border: 1px solid var(--apos-line);
    border-radius: 18px;
    padding: 22px;
}

.apos-core h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.apos-core p {
    margin: 0;
    font-size: 14px;
}

.apos-cta {
    padding: 80px 0;
}

.apos-cta-box {
    background:
        radial-gradient(circle at 90% 10%, rgba(132, 232, 44, 0.18), transparent 40%),
        var(--apos-surface);
    border: 1px solid var(--apos-line);
    border-radius: 28px;
    padding: 40px 28px;
    text-align: center;
}

.apos-cta-box h2 {
    margin-bottom: 10px;
}

.apos-cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.apos-hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.apos-hero-mark {
    width: min(220px, 46vw);
    height: auto;
    filter: drop-shadow(0 18px 40px rgba(132, 232, 44, 0.18));
}

.apos-mock-shot {
    width: 100%;
    padding: 12px 12px 14px;
}

.apos-mock-shot .apos-mock-bar {
    margin-bottom: 10px;
}

.apos-mock-shot img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    background: #0f0f0f;
}

.apos-mock-phone {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.apos-mock-phone img {
    border-radius: 16px;
}

.apos-shot-duo {
    display: grid;
    gap: 16px;
}

.apos-shot-duo .apos-mock-phone {
    max-width: 240px;
    margin: 0 auto;
}

.apos-bml-lockup {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    background: #1a1a1a;
}

.apos-bml-lockup img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.apos-bml-lockup strong {
    display: block;
    font-size: 14px;
    color: #fff;
}

.apos-bml-lockup span {
    display: block;
    font-size: 12px;
    color: var(--apos-muted);
}

.apos-hero-eyebrow {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--apos-muted);
}

.apos-chapter-head {
    max-width: 720px;
    margin-bottom: 40px;
}

.apos-chapter-head h2 {
    margin-bottom: 12px;
}

.apos-chapter-block {
    margin-top: 48px;
}

.apos-chapter-block:first-of-type {
    margin-top: 0;
}

.apos-section h3 {
    font-size: clamp(22px, 2.4vw, 30px);
    letter-spacing: -0.04em;
    margin: 0 0 12px;
    color: var(--apos-white);
}

.apos-mark-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.apos-mark-list li {
    border: 1px solid var(--apos-line);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--apos-white);
    background: rgba(255, 255, 255, 0.03);
}

.apos-channel {
    background:
        radial-gradient(circle at 50% 0%, rgba(88, 166, 255, 0.1), transparent 44%),
        #0a0a0a;
    border-top: 1px solid var(--apos-line);
    border-bottom: 1px solid var(--apos-line);
}

.apos-channel .apos-chapter-head {
    max-width: 780px;
}

.apos-section code {
    font-size: 0.92em;
    padding: 2px 6px;
    border-radius: 6px;
    border: 1px solid var(--apos-line);
    background: rgba(255, 255, 255, 0.05);
    color: var(--apos-white);
}

.apos-truecost {
    padding: 88px 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(76, 175, 80, 0.12), transparent 42%),
        #0a0a0a;
    border-top: 1px solid var(--apos-line);
    border-bottom: 1px solid var(--apos-line);
}

.apos-truecost-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 8px;
}

.apos-truecost-head p {
    margin-left: auto;
    margin-right: auto;
}

.apos-eq {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 32px 0 40px;
}

.apos-eq-item {
    background: #141414;
    border: 1px solid var(--apos-line);
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--apos-white);
}

.apos-eq-op {
    color: var(--apos-muted);
    font-weight: 700;
}

.apos-eq-item.is-result {
    background: rgba(76, 175, 80, 0.14);
    border-color: rgba(76, 175, 80, 0.55);
    color: var(--apos-lime);
}

.apos-bento {
    display: grid;
    gap: 16px;
}

@media (min-width: 900px) {
    .apos-bento {
        grid-template-columns: 1.15fr 0.85fr;
        align-items: stretch;
    }

    .apos-bento-pnl {
        grid-column: 1 / -1;
    }
}

.apos-bento-card {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.apos-bento-card .apos-mock {
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.apos-bento-card:hover .apos-mock {
    transform: translateY(-2px);
    border-color: rgba(76, 175, 80, 0.35);
}

.apos-bento-card figcaption h3 {
    margin-bottom: 6px;
}

.apos-bento-card figcaption p {
    margin: 0;
    font-size: 15px;
}

.apos-shot-slot {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 220px;
    padding: 28px 20px;
    border-radius: 12px;
    background:
        linear-gradient(180deg, rgba(76, 175, 80, 0.08), transparent 42%),
        #101010;
    border: 1px dashed rgba(76, 175, 80, 0.28);
    text-align: center;
}

.apos-shot-slot-kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--apos-lime);
}

.apos-shot-slot strong {
    color: var(--apos-white);
    font-size: 15px;
}

.apos-shot-slot span:last-child {
    max-width: 320px;
    color: var(--apos-muted);
    font-size: 13px;
}

.apos-ops-grid {
    display: grid;
    gap: 18px;
}

@media (min-width: 900px) {
    .apos-ops-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: start;
    }
}

.apos-ops-card {
    background: var(--apos-surface);
    border: 1px solid var(--apos-line);
    border-radius: 22px;
    padding: 22px;
}

.apos-ops-card .apos-bullets {
    margin-top: 16px;
}

.apos-ops-shots {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

@media (min-width: 900px) {
    .apos-ops-shots {
        grid-template-columns: 1fr 1fr;
    }
}

.apos-core {
    grid-template-columns: 1fr;
}

@media (min-width: 700px) {
    .apos-core {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    .apos-core {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 899px) {
    .apos-shot-duo .apos-mock-phone {
        max-width: 280px;
    }

    .apos-eq-item {
        font-size: 12px;
        padding: 10px 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .apos-bento-card .apos-mock,
    .apos-bento-card:hover .apos-mock {
        transition: none;
        transform: none;
    }
}
