﻿:root {
    --bg: #050814;
    --bg-soft: #0b1020;
    --panel: #101827;
    --panel-2: #151b2a;
    --text: #f4f6fb;
    --muted: #b9c0ce;
    --muted-2: #8790a2;
    --green: #3ddc84;
    --red: #e0202d;
    --blue-soft: #afc2f5;
    --line: rgba(255, 255, 255, 0.12);
    --line-strong: rgba(255, 255, 255, 0.24);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: radial-gradient(circle at top left, rgba(61, 220, 132, 0.12), transparent 32rem), radial-gradient(circle at top right, rgba(175, 194, 245, 0.12), transparent 30rem), var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.site-header {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 26px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 750;
    letter-spacing: -0.02em;
}

.brand-mark {
    width: 34px;
    height: 34px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    color: var(--green);
    box-shadow: 0 0 24px rgba(61, 220, 132, 0.18);
}

.top-nav,
.site-footer nav {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--muted);
    font-size: 14px;
}

    .top-nav a,
    .site-footer a {
        transition: color 160ms ease, opacity 160ms ease;
    }

        .top-nav a:hover,
        .site-footer a:hover {
            color: var(--text);
        }

.hero-section {
    width: min(1180px, calc(100% - 40px));
    margin: 28px auto 0;
    min-height: 680px;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
    gap: 58px;
    align-items: center;
}

.hero-copy {
    max-width: 680px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--green);
    font-size: 13px;
    font-weight: 780;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 22px;
    font-size: clamp(48px, 7vw, 88px);
    line-height: 0.96;
    letter-spacing: -0.07em;
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(34px, 4.3vw, 58px);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

h3 {
    margin-bottom: 8px;
    font-size: 21px;
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.hero-text {
    max-width: 610px;
    color: var(--muted);
    font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 760;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

    .button:hover {
        transform: translateY(-1px);
    }

    .button.primary {
        background: var(--blue-soft);
        color: #050814;
    }

    .button.secondary {
        border: 1px solid var(--line-strong);
        color: var(--text);
        background: rgba(255, 255, 255, 0.04);
    }

.small-note {
    margin-top: 22px;
    max-width: 560px;
    color: var(--muted-2);
    font-size: 15px;
}

.hero-phone-wrap {
    justify-self: center;
    position: relative;
}

    .hero-phone-wrap::before {
        content: "";
        position: absolute;
        inset: 8% -10%;
        background: radial-gradient(circle at center, rgba(61, 220, 132, 0.26), transparent 48%), radial-gradient(circle at bottom, rgba(175, 194, 245, 0.22), transparent 52%);
        filter: blur(18px);
        opacity: 0.8;
        z-index: -1;
    }

.hero-phone {
    width: min(360px, 78vw);
    border-radius: 34px;
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow);
}

.info-strip {
    width: min(1180px, calc(100% - 40px));
    margin: 54px auto 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(16, 24, 39, 0.68);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    backdrop-filter: blur(18px);
}

    .info-strip div {
        padding: 18px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.035);
    }

    .info-strip strong,
    .info-strip span {
        display: block;
    }

    .info-strip strong {
        margin-bottom: 4px;
        font-size: 16px;
    }

    .info-strip span {
        color: var(--muted);
        font-size: 14px;
    }

.section {
    width: min(1180px, calc(100% - 40px));
    margin: 120px auto 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

    .section-heading p:not(.eyebrow),
    .split-section p,
    .trust-card p,
    .cta-section p {
        color: var(--muted);
        font-size: 18px;
    }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.step-card,
.screen-card,
.glass-panel,
.trust-card {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)), rgba(16, 24, 39, 0.72);
    border-radius: var(--radius-lg);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.step-card {
    padding: 24px;
}

.step-number {
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(175, 194, 245, 0.16);
    color: var(--blue-soft);
    display: inline-grid;
    place-items: center;
    font-weight: 800;
}

.step-card p,
.screen-card p,
.glass-panel p {
    color: var(--muted);
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 28px;
    align-items: start;
}

.tier-list {
    margin-top: 24px;
    display: grid;
    gap: 12px;
}

.tier-item {
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

    .tier-item span {
        color: var(--muted);
    }

.glass-panel {
    padding: 28px;
}

.check-list {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 11px;
}

    .check-list li {
        position: relative;
        padding-left: 28px;
        color: var(--muted);
    }

        .check-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--green);
            font-weight: 900;
        }

.screens-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.screen-card {
    overflow: hidden;
}

    .screen-card img {
        width: 100%;
        aspect-ratio: 9 / 18;
        object-fit: cover;
        object-position: top center;
        background: #050814;
        border-bottom: 1px solid var(--line);
    }

    .screen-card h3,
    .screen-card p {
        padding-left: 20px;
        padding-right: 20px;
    }

    .screen-card h3 {
        margin-top: 20px;
    }

    .screen-card p {
        margin-bottom: 22px;
        font-size: 15px;
    }

.featured-screen {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 360px 1fr;
    align-items: center;
}

    .featured-screen img {
        aspect-ratio: 9 / 16;
        border-bottom: none;
        border-right: 1px solid var(--line);
    }

    .featured-screen div {
        padding: 32px;
    }

    .featured-screen h3,
    .featured-screen p {
        padding-left: 0;
        padding-right: 0;
    }

    .featured-screen h3 {
        font-size: 30px;
    }

    .featured-screen p {
        max-width: 560px;
        font-size: 18px;
    }

.trust-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.trust-card {
    padding: 32px;
}

    .trust-card a {
        margin-top: 12px;
        color: var(--blue-soft);
        font-weight: 760;
        display: inline-flex;
    }

.cta-section {
    width: min(920px, calc(100% - 40px));
    margin: 120px auto;
    padding: 54px 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: radial-gradient(circle at top left, rgba(61, 220, 132, 0.18), transparent 34rem), rgba(16, 24, 39, 0.72);
    text-align: center;
}

    .cta-section p {
        max-width: 660px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-section .button {
        margin-top: 14px;
    }

.site-footer {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 32px 0 42px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 24px;
    color: var(--muted);
}

    .site-footer strong,
    .site-footer span {
        display: block;
    }

    .site-footer strong {
        color: var(--text);
    }

@media (max-width: 980px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .top-nav {
        flex-wrap: wrap;
    }

    .hero-section {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 26px;
    }

    .hero-phone-wrap {
        order: -1;
    }

    .info-strip,
    .steps-grid,
    .screens-grid,
    .trust-section,
    .split-section {
        grid-template-columns: 1fr;
    }

    .featured-screen {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

        .featured-screen img {
            border-right: none;
            border-bottom: 1px solid var(--line);
        }

    .split-section {
        gap: 22px;
    }
}

@media (max-width: 620px) {
    .site-header,
    .hero-section,
    .info-strip,
    .section,
    .site-footer,
    .cta-section {
        width: min(100% - 28px, 1180px);
    }

    .hero-section {
        gap: 34px;
    }

    .hero-phone {
        width: min(300px, 82vw);
        border-radius: 28px;
    }

    .top-nav {
        gap: 12px;
        font-size: 13px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .info-strip {
        margin-top: 34px;
    }

    .section {
        margin-top: 82px;
    }

    .steps-grid,
    .screens-grid {
        gap: 16px;
    }

    .tier-item {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .trust-card,
    .glass-panel,
    .step-card {
        padding: 22px;
    }

    .site-footer {
        flex-direction: column;
    }

        .site-footer nav {
            align-items: flex-start;
            flex-direction: column;
            gap: 10px;
        }
}

.legal-page {
    max-width: 920px;
}

    .legal-page .section-heading {
        max-width: 780px;
        margin-bottom: 28px;
    }

        .legal-page .section-heading h1 {
            font-size: clamp(40px, 5vw, 72px);
            line-height: 0.96;
            letter-spacing: -0.055em;
            margin-bottom: 18px;
        }

        .legal-page .section-heading p:not(.eyebrow) {
            color: var(--muted);
            font-size: 17px;
            max-width: 760px;
        }

    .legal-page .small-note {
        margin-top: 8px;
        color: var(--muted-2);
        font-size: 15px;
    }

.legal-card {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)), rgba(16, 24, 39, 0.72);
    box-shadow: var(--shadow);
}

    .legal-card h2 {
        margin-top: 30px;
        margin-bottom: 10px;
        font-size: clamp(28px, 3vw, 40px);
        line-height: 1.02;
        letter-spacing: -0.04em;
    }

        .legal-card h2:first-child {
            margin-top: 0;
        }

    .legal-card p {
        color: var(--muted);
        font-size: 17px;
    }

    .legal-card a {
        color: var(--blue-soft);
        font-weight: 760;
    }

.legal-list {
    margin-top: 14px;
    margin-bottom: 28px;
}

    .legal-list li {
        color: var(--muted);
    }

@media (max-width: 620px) {
    .legal-card {
        padding: 24px;
    }

    .legal-page .section-heading h1 {
        font-size: 42px;
        line-height: 0.98;
    }

    .legal-card h2 {
        font-size: 26px;
    }

    .legal-card p {
        font-size: 16px;
    }
}

.support-page {
    min-height: 100vh;
}

.support-container {
    width: min(920px, calc(100% - 40px));
    margin: 0 auto;
}

.support-hero {
    position: relative;
    padding: 54px 0 40px;
    overflow: hidden;
}

.support-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 999px;
    filter: blur(80px);
    opacity: 0.28;
    pointer-events: none;
}

.support-glow-left {
    left: -120px;
    top: -120px;
    background: rgba(61, 220, 132, 0.45);
}

.support-glow-right {
    right: -160px;
    bottom: -180px;
    background: rgba(175, 194, 245, 0.35);
}

.support-intro-card,
.support-form-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)), rgba(16, 24, 39, 0.78);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
}

.support-intro-card {
    padding: 34px;
}

    .support-intro-card h1 {
        margin-bottom: 14px;
        font-size: clamp(34px, 4vw, 48px);
        line-height: 1.04;
        letter-spacing: -0.04em;
    }

    .support-intro-card p:not(.eyebrow) {
        max-width: 700px;
        margin-bottom: 0;
        color: var(--muted);
        font-size: 18px;
    }

.support-form-section {
    padding: 54px 0 90px;
    background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
}

.support-form-card {
    padding: 34px;
}

    .support-form-card h2 {
        margin-bottom: 26px;
        font-size: 30px;
        line-height: 1.1;
        letter-spacing: -0.035em;
    }

@media (max-width: 620px) {
    .support-container {
        width: min(100% - 28px, 920px);
    }

    .support-hero {
        padding-top: 34px;
    }

    .support-intro-card,
    .support-form-card {
        padding: 24px;
    }

        .support-intro-card h1 {
            font-size: 34px;
        }

        .support-form-card h2 {
            font-size: 26px;
        }
}

/* Support/contact form styling */

.contact-card h2,
.support-form-card h2 {
    margin-bottom: 22px;
}

.contact-form-grid {
    display: grid;
    gap: 20px;
}

.contact-honeypot {
    position: absolute !important;
    left: -9999px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.contact-label {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-weight: 720;
    font-size: 15px;
}

.contact-input {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid var(--line-strong);
    border-radius: 16px;
    background: rgba(5, 8, 20, 0.72);
    color: var(--text);
    font: inherit;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

    .contact-input::placeholder {
        color: rgba(185, 192, 206, 0.58);
    }

    .contact-input:focus {
        border-color: rgba(61, 220, 132, 0.72);
        box-shadow: 0 0 0 4px rgba(61, 220, 132, 0.11);
        background: rgba(5, 8, 20, 0.9);
    }

.contact-textarea {
    resize: vertical;
    min-height: 170px;
}

.contact-challenge-box {
    width: min(260px, 100%);
    min-height: 68px;
    padding: 14px 18px;
    border: 1px solid rgba(61, 220, 132, 0.32);
    border-radius: 18px;
    background: radial-gradient(circle at top left, rgba(61, 220, 132, 0.16), transparent 18rem), rgba(5, 8, 20, 0.78);
    color: var(--text);
    display: grid;
    place-items: center;
    font-size: 30px;
    font-weight: 850;
    letter-spacing: 0.24em;
    user-select: none;
    margin-bottom: 12px;
}

.contact-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

    .contact-button-row .button {
        border: none;
        cursor: pointer;
        font-family: inherit;
        font-size: 15px;
    }

        .contact-button-row .button.secondary {
            border: 1px solid var(--line-strong);
        }

        .contact-button-row .button:disabled {
            opacity: 0.62;
            cursor: not-allowed;
            transform: none;
        }

.contact-status {
    min-height: 24px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

@media (max-width: 620px) {
    .contact-button-row {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-challenge-box {
        width: 100%;
    }
}

/* QR downloads page */

.qr-page {
    min-height: 100vh;
}

.qr-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.qr-hero {
    position: relative;
    padding: 58px 0 38px;
}

.qr-hero-card,
.qr-info-card,
.qr-card,
.qr-note-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)), rgba(16, 24, 39, 0.76);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
}

.qr-hero-card {
    padding: 42px;
    max-width: 920px;
}

    .qr-hero-card h1 {
        max-width: 820px;
        margin-bottom: 18px;
        font-size: clamp(38px, 5vw, 66px);
        line-height: 1;
        letter-spacing: -0.055em;
    }

    .qr-hero-card p:not(.eyebrow) {
        max-width: 760px;
        color: var(--muted);
        font-size: 18px;
    }

.qr-hero-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.qr-info-section {
    padding: 22px 0 40px;
}

.qr-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.qr-info-card {
    padding: 24px;
}

    .qr-info-card h2 {
        margin-bottom: 10px;
        font-size: 24px;
        line-height: 1.12;
        letter-spacing: -0.035em;
    }

    .qr-info-card p {
        margin-bottom: 0;
        color: var(--muted);
    }

.qr-download-section {
    padding: 56px 0 100px;
}

.qr-heading {
    margin-bottom: 32px;
}

    .qr-heading h2 {
        font-size: clamp(34px, 4vw, 52px);
    }

.qr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.qr-card {
    padding: 22px;
}

.qr-card-header {
    margin-bottom: 18px;
}

    .qr-card-header h3 {
        margin-bottom: 6px;
        font-size: 25px;
    }

    .qr-card-header p {
        margin-bottom: 0;
        color: var(--muted);
    }

.qr-preview {
    min-height: 290px;
    margin-bottom: 18px;
    padding: 16px;
    border-radius: 22px;
    background: #ffffff;
    display: grid;
    place-items: center;
}

    .qr-preview img {
        width: 100%;
        max-width: 255px;
        border-radius: 8px;
    }

.qr-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

    .qr-actions .button {
        width: 100%;
        min-height: 48px;
        font-size: 14px;
    }

.qr-full {
    grid-column: 1 / -1;
}

.qr-note-card {
    margin-top: 28px;
    padding: 28px;
}

    .qr-note-card h2 {
        margin-bottom: 10px;
        font-size: 28px;
    }

    .qr-note-card p {
        margin-bottom: 0;
        max-width: 880px;
        color: var(--muted);
        font-size: 17px;
    }

@media (max-width: 980px) {
    .qr-info-grid,
    .qr-grid {
        grid-template-columns: 1fr;
    }

    .qr-card {
        max-width: 520px;
    }
}

@media (max-width: 620px) {
    .qr-container {
        width: min(100% - 28px, 1180px);
    }

    .qr-hero {
        padding-top: 34px;
    }

    .qr-hero-card,
    .qr-info-card,
    .qr-card,
    .qr-note-card {
        padding: 22px;
    }

        .qr-hero-card h1 {
            font-size: 38px;
            line-height: 1.04;
        }

    .qr-hero-actions {
        flex-direction: column;
    }

    .qr-actions {
        grid-template-columns: 1fr;
    }

    .qr-full {
        grid-column: auto;
    }

    .qr-preview {
        min-height: 240px;
    }
}

/* ================================
   LoopBreak data deletion page
   ================================ */

.support-form-card p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
    margin: 0 0 22px;
}

.support-form-card a {
    color: #8fb8ff;
    text-decoration: none;
    font-weight: 700;
}

    .support-form-card a:hover {
        text-decoration: underline;
    }

.support-form-card ul {
    margin: 0 0 28px 0;
    padding-left: 24px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.support-form-card li {
    margin-bottom: 10px;
}

.support-form-card h2:not(:first-child) {
    margin-top: 34px;
}

@media (max-width: 620px) {
    .support-form-card p,
    .support-form-card ul {
        font-size: 16px;
        line-height: 1.6;
    }

    .support-form-card ul {
        padding-left: 20px;
    }
}