:root {
    --bg: #07100d;
    --bg-2: #0b1714;
    --surface: #101b18;
    --surface-2: #14231f;
    --text: #f4f7f4;
    --muted: #a9b7af;
    --faint: #728078;
    --line: rgba(231, 245, 236, 0.13);
    --green: #63d67d;
    --green-2: #9de7c0;
    --cyan: #83dff4;
    --amber: #f2c15d;
    --danger: #ff6f61;
    --shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        linear-gradient(120deg, rgba(99, 214, 125, 0.08), transparent 34%),
        linear-gradient(180deg, var(--bg), #09120f 46%, #050807);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Segoe UI, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
}

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

.navbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(7, 16, 13, 0.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}

.nav-container {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 760;
    font-size: 1.12rem;
}

.logo-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--muted);
    font-size: 0.94rem;
}

.nav-links a {
    text-decoration: none;
}

.nav-links a:hover,
.footer a:hover,
.pricing-note a:hover {
    color: var(--green-2);
}

.hero {
    padding: 86px 0 96px;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(155deg, transparent 0 52%, rgba(131, 223, 244, 0.08) 52% 63%, transparent 63%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 42%);
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.02fr 0.78fr;
    align-items: center;
    gap: 72px;
}

.hero-copy {
    padding-top: 16px;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--green-2);
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 760;
    letter-spacing: 0.12em;
}

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

h1 {
    margin-bottom: 22px;
    font-size: 4.6rem;
    line-height: 0.96;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 18px;
    font-size: 3rem;
    line-height: 1.04;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.22rem;
    letter-spacing: 0;
}

.hero-subtitle,
.section-heading p,
.privacy-layout p,
.pricing-note,
.footer-brand p,
.legal-content p,
.support-card p,
.faq-answer {
    color: var(--muted);
}

.hero-subtitle {
    max-width: 700px;
    margin-bottom: 30px;
    font-size: 1.28rem;
}

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

.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 720;
}

.btn-primary {
    background: var(--green);
    color: #04110a;
}

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

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--muted);
    font-size: 0.94rem;
}

.hero-points span {
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
}

.hero-device {
    display: flex;
    justify-content: center;
}

.device-frame {
    width: min(360px, 82vw);
    padding: 14px;
    border-radius: 46px;
    background: #020302;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.device-frame img {
    border-radius: 34px;
    overflow: hidden;
}

.screen-band,
.features,
.privacy-section,
.pricing-section,
.legal-page,
.support-page {
    padding: 92px 0;
}

.screen-band {
    background: var(--bg-2);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading.align-left {
    margin-left: 0;
    text-align: left;
}

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

.screen-card,
.feature-card,
.price-card,
.support-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
}

.screen-card {
    padding: 16px;
}

.screen-card img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: #eef1f4;
}

.screen-card h3 {
    margin: 18px 0 8px;
}

.screen-card p,
.feature-card p,
.price-card p {
    color: var(--muted);
}

.features {
    background:
        linear-gradient(120deg, rgba(99, 214, 125, 0.08), transparent 38%),
        var(--bg);
}

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

.feature-card {
    padding: 26px;
}

.feature-index {
    width: 42px;
    height: 34px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border: 1px solid rgba(99, 214, 125, 0.38);
    border-radius: 8px;
    color: var(--green-2);
    font-size: 0.78rem;
    font-weight: 800;
}

.privacy-section {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(155deg, transparent 0 58%, rgba(242, 193, 93, 0.08) 58% 68%, transparent 68%),
        var(--bg-2);
}

.privacy-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: start;
}

.privacy-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.privacy-list div {
    padding: 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid var(--line);
}

.privacy-list strong,
.privacy-list span {
    display: block;
}

.privacy-list span {
    margin-top: 6px;
    color: var(--muted);
}

.pricing-section {
    background: var(--bg);
}

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

.price-card {
    position: relative;
    padding: 28px;
}

.price-card.highlighted {
    border-color: rgba(99, 214, 125, 0.56);
    background: linear-gradient(180deg, rgba(99, 214, 125, 0.11), rgba(255, 255, 255, 0.03));
}

.plan-label {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(99, 214, 125, 0.16);
    color: var(--green-2);
    font-size: 0.74rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.plan-name {
    margin-bottom: 4px;
    color: var(--text);
    font-weight: 760;
}

.plan-price {
    margin-bottom: 0;
    color: var(--text);
    font-size: 2.5rem;
    line-height: 1;
    font-weight: 820;
}

.plan-period {
    margin: 8px 0 18px;
    color: var(--faint);
}

.pricing-note {
    max-width: 850px;
    margin: 26px auto 0;
    text-align: center;
    font-size: 0.96rem;
}

.pricing-note a {
    color: var(--green-2);
}

.footer {
    padding: 54px 0 28px;
    background: #050807;
    border-top: 1px solid var(--line);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
}

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

.footer-column h4 {
    margin: 0 0 12px;
}

.footer-column a {
    display: block;
    margin: 7px 0;
    color: var(--muted);
    text-decoration: none;
}

.footer-bottom {
    margin-top: 38px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    color: var(--faint);
    font-size: 0.92rem;
}

.legal-content {
    max-width: 820px;
    margin: 0 auto;
}

.legal-content h1,
.support-header h1 {
    font-size: 3.1rem;
    margin-bottom: 12px;
}

.legal-content h2 {
    margin-top: 42px;
    font-size: 1.65rem;
}

.legal-content h3 {
    margin-top: 28px;
}

.legal-content ul,
.mac-features,
.watch-features,
.focus-features {
    color: var(--muted);
    padding-left: 22px;
}

.legal-content a,
.support-card a,
.faq-answer a {
    color: var(--green-2);
}

.legal-date {
    color: var(--faint);
}

.support-header {
    max-width: 720px;
    margin-bottom: 38px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 58px;
}

.support-card {
    padding: 24px;
}

.support-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 8px;
    background: rgba(99, 214, 125, 0.13);
    color: var(--green-2);
    font-weight: 800;
}

.faq-section {
    max-width: 860px;
}

.faq-section h2 {
    text-align: left;
}

.faq-item {
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.faq-question {
    color: var(--text);
    font-weight: 740;
    margin-bottom: 8px;
}

.faq-answer p:last-child,
.support-card p:last-child,
.screen-card p:last-child,
.feature-card p:last-child,
.price-card p:last-child,
.footer p:last-child,
.legal-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .nav-container,
    .hero-layout,
    .privacy-layout,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 0;
    }

    .nav-links {
        width: 100%;
        flex-wrap: wrap;
        gap: 14px 18px;
    }

    h1 {
        font-size: 3.35rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .hero {
        padding: 58px 0 74px;
    }

    .hero-layout {
        gap: 44px;
    }

    .screen-grid,
    .feature-grid,
    .pricing-grid,
    .support-grid,
    .privacy-list,
    .footer-links {
        grid-template-columns: 1fr;
    }

    .screen-band,
    .features,
    .privacy-section,
    .pricing-section,
    .legal-page,
    .support-page {
        padding: 68px 0;
    }
}

@media (max-width: 520px) {
    .container {
        width: calc(100% - 28px);
    }

    .nav-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 12px;
        font-size: 0.9rem;
    }

    .nav-links a {
        min-width: 0;
    }

    .hero-device {
        max-width: 100%;
        overflow: hidden;
    }

    .device-frame {
        width: min(318px, 100%);
        padding: 12px;
        border-radius: 40px;
    }

    .device-frame img {
        border-radius: 30px;
    }

    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 1.92rem;
    }

    .hero-subtitle {
        font-size: 1.08rem;
        max-width: 30ch;
        overflow-wrap: break-word;
    }

    .btn {
        width: 100%;
    }

    .legal-content h1,
    .support-header h1 {
        font-size: 2.35rem;
    }
}
