:root {
    --bg: #111;
    --text: whitesmoke;
    --blue-dark: #00a2ff;
    --blue-light: #adf7ff;
    --red: #e3195c;
    --desc-h: 16vh;
}
* {
    box-sizing: border-box;
}
html,
body {
    height: 100%;
    margin: 0;
}
body {
    overflow: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}
[hidden] {
    display: none !important;
}
.page {
    display: grid;
    grid-template-rows: 10vh 1fr 10vh;
    min-height: 100vh;
    width: 100%;
    height: 100vh;
}
.brandbar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 10vh;
    overflow: hidden;
}
.brandword {
    font-family: "Major Mono Display", monospace;
    text-transform: uppercase;
    line-height: 1;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    align-items: center;
    justify-items: center;
    padding: 0;
    font-size: 7.5vh;
    user-select: none;
}
.brandchar {
    display: inline-block;
}
.brandword .flips {
    color: var(--blue-light);
}
.brandword .alot {
    color: var(--blue-dark);
}
.middle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
    justify-items: center;
    padding: 24px;
    min-height: 0;
    overflow: hidden;
}
.middle > * {
    height: 100%;
    width: 100%;
}
.feature-left {
    display: grid;
    justify-items: center;
    align-items: stretch;
    min-height: 0;
    height: 100%;
    width: 100%;
}
.feature-card {
    display: grid;
    grid-template-rows: auto minmax(300px, 1fr) var(--desc-h);
    gap: 16px;
    height: 100%;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 16px;
    border: 1px solid var(--blue-light);
    border-radius: 2px;
    box-shadow: 0 0 24px rgba(173, 247, 255, 0.35);
}
.feature-card.no-art .shot {
    display: none;
}
.feature-card.no-art .desc {

    grid-row: 2 / span 2;
    height: auto;
    max-height: none;
    overflow: auto;
    display: block;
    -webkit-line-clamp: unset;
}
.feature-card.no-art .shot {
    display: none;
}
.feature-card.no-art .desc {
    height: auto;
    max-height: none;
    overflow: auto;
    display: block;
    -webkit-line-clamp: unset;
}
.shot {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    line-height: 0;
    padding: 0;
}
.shot-image {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: top center;
    transform: scale(1);
}
.shot-number {
    font-family: "Major Mono Display", monospace;
    font-size: 12vh;
    color: var(--text);
}
.desc {
    height: var(--desc-h);
    max-height: var(--desc-h);
    overflow: hidden;
    line-height: 1.5;
    font-size: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}
.cta {
    display: grid;
    gap: 14px;
    height: 100%;
    align-content: stretch;
    align-items: stretch;
    justify-items: stretch;
}
.cta-3d {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    perspective: 1600px;
}
.cta-card {
    width: 100%;
    max-width: 420px;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 700ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.middle,
.feature-left,
.feature-card,
.shot,
.cta,
.cta-3d,
.cta-card {
    min-height: 0;
}
.cta-face {
    position: absolute;
    inset: 0;
    background: #111;
    border: 1px solid var(--blue-dark);
    border-radius: 2px;
    box-shadow: 0 0 24px rgba(0, 162, 255, 0.3);
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 22px;
    backface-visibility: hidden;
}
.cta-front {
    transform: rotateY(0deg);
}
.cta-back {
    transform: rotateY(180deg);
}
.cta-card.flipped {
    transform: rotateY(180deg);
}
.cta-title {
    margin: 0 0 6px 0;
    font-family: "DM Mono";
    font-size: 30px;
    color: var(--blue-dark);
}
.cta-price {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}
.cta-trust {
    margin: 8px 0 0 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}
.cta-input {
    width: 100%;
    padding: 0 0 8px 0;
    border: 0;
    border-bottom: 1px solid #57cdff;
    background: transparent;
    color: var(--blue-light);
    font-family: "DM Mono", monospace;
    font-size: 16px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: none;
    transition: border-color 200ms ease;
}
.cta-input:focus {
    border-bottom-color: var(--blue-light);
    box-shadow: none;
}
.cta-link {
    width: 100%;
    border: 0;
    background: transparent;
    color: whitesmoke;
    font-family: "DM Mono", monospace;
    font-size: 16px;
    text-align: left;
    padding: 6px 0 0 0;
    cursor: pointer;
    margin-top: 35px;
}
.btn {
    width: 100%;
    height: 35px;
    border: none;
    border-radius: 2px;
    text-align: left;
    font-family: "DM Mono", monospace;
    font-size: 16px;
    font-weight: normal;
    color: var(--text);
    cursor: pointer;
}
@media (min-width: 640px) {
    .btn {
        font-size: 20px;
    }
}
@media (min-width: 1024px) {
    .btn {
        font-size: 22px;
    }
}
.btn-subscribe {
    background: var(--red);
}
.btn-login {
    background: var(--blue-dark);
}
.scroller-wrap {
    display: grid;
    grid-template-rows: 1fr auto;
    align-items: stretch;
    padding: 4px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 0;
}
.flicker {
    color: #00e1ff;
    letter-spacing: 1px;
    text-shadow: 0 0 10px #00e1ff80, 0 0 20px #00e1ff40;
    animation: flicker 2.5s infinite;
}
@keyframes flicker {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
    45% {
        opacity: 0.7;
    }
    55% {
        opacity: 0.9;
    }
    65% {
        opacity: 0.6;
    }
    75% {
        opacity: 1;
    }
}
@media (prefers-reduced-motion: reduce) {
    .flicker {
        animation: none;
    }
}
.scroller {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 20px;
    padding: 8px 8vw 6px 8vw;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: none;
    scroll-snap-stop: always;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.scroller::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.chip {
    height: 44px;
    min-width: 0;
    padding: 0 20px;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.35);
    background: transparent;
    font-weight: 500;
    font-size: 18px;
    font-family: "DM Mono";
    user-select: none;
    transition: transform 140ms ease, color 140ms ease;
    cursor: pointer;
    border: none;
    appearance: none;
}
.chip:hover {
    color: rgba(255, 255, 255, 0.85);
}
.chip:focus-visible {
    outline: 2px solid var(--blue-light);
    outline-offset: 3px;
}
.chip.active {
    transform: scale(1.1);
    color: var(--blue-light);
    text-decoration: underline;
    text-decoration-color: var(--blue-dark);
    text-decoration-thickness: 3px;
    text-underline-offset: 10px;
    background: transparent;
    font-family: "DM Mono";
}
.noscript-features {
    margin: 0;
    padding: 0 8vw;
    list-style: none;
    display: grid;
    grid-auto-flow: column;
    gap: 20px;
    opacity: 0.7;
    font-family: "DM Mono", monospace;
    font-size: 18px;
    white-space: nowrap;
}
.legal-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 2px 8vw 2px 8vw;
    font-size: 12px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.6);
    user-select: none;
}
.legal-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}
.legal-link:hover {
    color: var(--blue-light);
}
.sep {
    opacity: 0.4;
}
@media (min-width: 1024px) {
    :root {
        --desc-h: 140px;
    }
}
.pulse-red {
    box-shadow: 0 0 0 0 var(--red);
    animation: pulse-red 2.5s infinite;
}
@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 var(--red);
    }
    70% {
        box-shadow: 0 0 20px 20px rgba(255, 45, 45, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 45, 45, 0);
    }
}
.pulse-blue {
    box-shadow: 0 0 0 0 var(--blue-dark);
    animation: pulse-blue 2.5s infinite;
}
@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 var(--blue-dark);
    }
    70% {
        box-shadow: 0 0 20px 20px rgba(0, 162, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 162, 255, 0);
    }
}
@media (min-width: 1280px) {
    .feature-card {
        max-width: 560px;
    }
    .cta-card {
        max-width: 560px;
    }
    .middle {
        gap: 32px;
        padding-left: 48px;
        padding-right: 48px;
    }
}
@media (min-width: 1536px) {
    .feature-card {
        max-width: 640px;
    }
    .cta-card {
        max-width: 640px;
    }
    .middle {
        gap: 40px;
        padding-left: 64px;
        padding-right: 64px;
    }
}
@media (min-width: 1920px) {
    .feature-card {
        max-width: 720px;
    }
    .cta-card {
        max-width: 720px;
    }
    .middle {
        gap: 48px;
        padding-left: 80px;
        padding-right: 80px;
    }
}
.sticker-tag {
    display: inline-block;
    margin: 6px 0 10px;
    padding: 10px 10px;
    border: 1px solid rgba(0, 225, 255, 0.55); 
    border-radius: 6px;
    color: #23d7c4;                
    background: rgba(0, 225, 255, 0.06); 
    text-shadow: 0 0 6px rgba(0, 225, 255, 0.25);
    font-family: 'DM Mono', monospace;
    text-align: center;
    font-size: 16px;        
    letter-spacing: 0.3px;
    line-height: 1.25;
}
.sticker-tag strong {
    color: #aef7ff;
    text-shadow:
        0 0 6px rgba(0, 225, 255, 0.35),
        0 0 12px rgba(0, 225, 255, 0.20);
}
/* make each <p> take a full line */
.sticker-tag {
  display: block;        /* p is block by default, but this is explicit */
  margin: 6px 0 10px;
}

/* stack the bold label above the rest */
.sticker-tag strong {
  display: block;
  margin-bottom: 8px;    /* tweak spacing as needed */
}

@media (max-width: 768px) {
    .sticker-tag {
        font-size: 15px;
        padding: 10px 5px;
    }
}

@media (max-width: 768px) {
    .page {
        grid-template-rows: auto auto auto;
        height: auto;
        min-height: 100vh;
    }
    .brandbar {
        padding: 10px 10px 0 10px;
    }
    .brandword {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        padding: 0;
        font-size: 6.5vh;
        overflow: hidden;
    }
    .middle {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 12px 15px;
        overflow: visible;
    }
    .middle > * {
        height: auto;
    }
    .cta {
        height: auto;
    }
    .feature-left {
        height: auto;
    }
    .cta-card {
        height: 510px;
        max-width: none;
    }
    .cta-face {
        position: absolute;
        inset: 0;
    }
    .feature-card {
        max-width: none;
        grid-template-rows: auto min(50vh, 360px) var(--desc-h);
        padding: 14px;
    }
    .feature-card.no-art .desc {
        height: auto;
        max-height: none;
        overflow: auto;
        display: block;
        -webkit-line-clamp: unset;
    }
    html,
    body {
        overflow: auto;
    }
    .cta {
        order: 1;
        margin-bottom: 16px;
    }
    .feature-left {
        order: 2;
    }
    .shot-image {
        transform: scale(1);
    }
    .legal-links {
        margin-top: 0;
        padding: 0 8vw;
    }
    .scroller-wrap {
        grid-template-rows: auto auto;
        row-gap: 12px;
        padding: 8px 0 calc(12px + env(safe-area-inset-bottom));
    }
    .scroller {
        padding-bottom: 8px;
    }
    .legal-link {
        margin-top: 0;
        padding-top: 0;
    }
    .cta-input,
    input[type="email"],
    input[type="password"] {
        -webkit-appearance: none;
        appearance: none;
        border-radius: 0;
        background: transparent;
        background-clip: padding-box;
        box-shadow: none;
    }
    .cta-input:-webkit-autofill {
        -webkit-box-shadow: 0 0 0 1000px var(--bg) inset;
        -webkit-text-fill-color: var(--blue-light);
        caret-color: var(--blue-light);
    }
}
