:root {
    --navy: #061528;
    --navy-light: #10263e;
    --lime: #b7f52c;
    --blue: #1978ea;
    --cyan: #18bde3;
    --white: #ffffff;
    --text: #d7e1ed;
    --muted: #8fa3ba;
    --line: rgba(255,255,255,.11);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--navy);
    color: var(--white);
    font-family: Inter, Arial, sans-serif;
}

a {
    color: inherit;
}

.site-header {
    min-height: 84px;
    padding: 16px max(28px, calc((100vw - 1240px) / 2));
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    background: rgba(6,21,40,.94);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand-mark {
    height: 34px;
    display: flex;
    align-items: flex-end;
    gap: 4px;
}

.brand-mark i {
    width: 9px;
    border-radius: 2px;
    transform: skew(-8deg);
}

.brand-mark i:nth-child(1) {
    height: 24px;
    background: var(--lime);
}

.brand-mark i:nth-child(2) {
    height: 34px;
    background: #d8ff49;
}

.brand-mark i:nth-child(3) {
    height: 28px;
    background: var(--cyan);
}

.brand-copy {
    display: flex;
    flex-direction: column;
}

.brand-copy strong {
    font-size: 18px;
}

.brand-copy small {
    color: var(--muted);
    font-size: 11px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header-nav > a {
    color: #b7c6d8;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.header-nav .header-login {
    padding: 11px 17px;
    border: 1px solid rgba(183,245,44,.42);
    border-radius: 10px;
    color: var(--white);
}

.hero {
    min-height: calc(100vh - 84px);
    padding: 90px max(28px, calc((100vw - 1240px) / 2));
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: center;
    gap: 80px;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.hero-glow-one {
    width: 380px;
    height: 380px;
    left: -180px;
    bottom: -120px;
    background: rgba(39,201,148,.16);
}

.hero-glow-two {
    width: 300px;
    height: 300px;
    right: -100px;
    top: 20px;
    background: rgba(25,120,234,.17);
}

.hero-content,
.hero-panel {
    position: relative;
    z-index: 2;
}

.eyebrow,
.section-tag,
.section-heading > span,
.cta-section > div > span {
    color: var(--lime);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

h1 {
    max-width: 780px;
    margin: 20px 0 24px;
    font-size: clamp(50px, 6vw, 84px);
    line-height: .98;
    letter-spacing: -.055em;
}

h1 span {
    color: var(--lime);
}

.hero-description {
    max-width: 650px;
    color: #a9bbce;
    font-size: 18px;
    line-height: 1.7;
}

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

.primary-button,
.secondary-button {
    padding: 15px 21px;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.primary-button {
    background: var(--blue);
    color: white;
    box-shadow: 0 16px 40px rgba(25,120,234,.25);
}

.secondary-button {
    border: 1px solid var(--line);
    color: #c8d5e3;
}

.trust-row {
    margin-top: 38px;
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 12px;
}

.status-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 7px;
    background: var(--lime);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(183,245,44,.08);
}

.hero-panel {
    padding: 28px;
    background: linear-gradient(145deg, #10263e, #091b30);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 22px;
    box-shadow: 0 34px 100px rgba(0,0,0,.3);
}

.panel-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.panel-label {
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .13em;
}

.panel-top h2 {
    margin: 5px 0 0;
    font-size: 23px;
}

.live-badge {
    height: fit-content;
    padding: 7px 10px;
    border: 1px solid rgba(183,245,44,.2);
    border-radius: 20px;
    color: #d7f99a;
    font-size: 11px;
}

.live-badge i {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 5px;
    background: var(--lime);
    border-radius: 50%;
}

.platform-card {
    margin-top: 12px;
    padding: 17px;
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 13px;
    background: rgba(255,255,255,.035);
    border: 1px solid var(--line);
    border-radius: 13px;
}

.platform-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: white;
    font-weight: 900;
}

.facebook {
    background: #1877f2;
    font-size: 24px;
}

.instagram {
    background: linear-gradient(135deg, #7048d5, #e44c78, #f6a13a);
    font-size: 12px;
}

.platform-card div:nth-child(2) {
    display: flex;
    flex-direction: column;
}

.platform-card span {
    color: var(--muted);
    font-size: 11px;
}

.setup-state {
    padding: 6px 9px;
    border-radius: 20px;
    background: rgba(183,245,44,.08);
    color: #ccef80 !important;
    white-space: nowrap;
}

.panel-metrics {
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
}

.panel-metrics div {
    padding: 14px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--line);
}

.panel-metrics div:last-child {
    border-right: 0;
}

.panel-metrics span {
    color: var(--muted);
    font-size: 10px;
}

.panel-metrics strong {
    margin-top: 4px;
    font-size: 13px;
}

.panel-login {
    padding: 14px;
    display: flex;
    justify-content: center;
    gap: 14px;
    border-radius: 10px;
    background: var(--blue);
    color: white;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.platform-section {
    padding: 110px max(28px, calc((100vw - 1240px) / 2));
    background: #f6f8fb;
    color: #152033;
}

.section-heading {
    max-width: 720px;
}

.section-heading > span {
    color: var(--blue);
}

.section-heading h2,
.security-section h2,
.cta-section h2 {
    margin: 12px 0;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.section-heading p {
    color: #657287;
    line-height: 1.7;
}

.feature-grid {
    margin-top: 52px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-grid article {
    min-height: 250px;
    padding: 30px;
    background: white;
    border: 1px solid #e0e6ee;
    border-radius: 17px;
}

.feature-number {
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
}

.feature-grid h3 {
    margin-top: 42px;
    font-size: 22px;
}

.feature-grid p {
    color: #657287;
    line-height: 1.7;
}

.security-section {
    padding: 100px max(28px, calc((100vw - 1240px) / 2));
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.security-list div {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--line);
}

.security-list span {
    margin-top: 6px;
    color: var(--muted);
    font-size: 14px;
}

.cta-section {
    margin: 20px max(28px, calc((100vw - 1240px) / 2)) 90px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: var(--navy-light);
    border: 1px solid var(--line);
    border-radius: 22px;
}

.site-footer {
    padding: 32px max(28px, calc((100vw - 1240px) / 2));
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 30px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
}

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

.site-footer nav {
    display: flex;
    gap: 18px;
}

.site-footer a {
    color: #aebed0;
    text-decoration: none;
}

@media (max-width: 950px) {
    .header-nav > a:not(.header-login) {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 50px;
        padding-top: 60px;
    }

    .feature-grid,
    .security-section {
        grid-template-columns: 1fr;
    }

    .site-footer {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .brand-copy small {
        display: none;
    }

    .hero {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-actions,
    .trust-row,
    .cta-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .platform-card {
        grid-template-columns: 44px 1fr;
    }

    .setup-state {
        grid-column: 2;
    }

    .panel-metrics {
        grid-template-columns: 1fr;
    }

    .panel-metrics div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

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

/* PRIVACY SAFE HOME PAGE POLISH */
.safe-panel {
    overflow: hidden;
}

.access-visual {
    margin: 26px 0;
    padding: 34px 24px;
    text-align: center;
    background:
        radial-gradient(
            circle at center,
            rgba(25, 120, 234, .13),
            transparent 68%
        );
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 16px;
}

.access-shield {
    width: 74px;
    height: 74px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(183,245,44,.27);
    border-radius: 22px;
    background: rgba(183,245,44,.07);
    box-shadow: 0 18px 50px rgba(0,0,0,.22);
}

.access-shield svg {
    width: 38px;
    height: 38px;
    fill: none;
    stroke: #b7f52c;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.access-visual h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

.access-visual p {
    max-width: 330px;
    margin: 0 auto;
    color: #8fa3ba;
    font-size: 13px;
    line-height: 1.7;
}

.privacy-points {
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 13px;
    overflow: hidden;
}

.privacy-points div {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid rgba(255,255,255,.09);
}

.privacy-points div:last-child {
    border-bottom: 0;
}

.privacy-points span {
    color: #b7f52c;
    font-size: 10px;
    font-weight: 900;
}

.privacy-points strong {
    color: #dce7f3;
    font-size: 12px;
}

.security-description {
    max-width: 520px;
    color: #8fa3ba;
    line-height: 1.8;
}

.footer-login {
    padding: 9px 13px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
}

.primary-button,
.secondary-button,
.header-login,
.panel-login,
.footer-login {
    transition:
        transform .2s ease,
        border-color .2s ease,
        background-color .2s ease,
        box-shadow .2s ease;
}

.primary-button:hover,
.header-login:hover,
.panel-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(25,120,234,.3);
}

.secondary-button:hover,
.footer-login:hover {
    border-color: rgba(183,245,44,.42);
    transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
    }
}
