﻿:root {
    --text: #0f172a;
    --muted: #475569;
    --muted2: #64748b;
    --border: #e2e8f0;
    --brand: #0284c7;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Apple Color Emoji","Segoe UI Emoji";
    color: var(--text);
    background: linear-gradient(#fff,#f8fafc 35%,#fff 100%);
    font-size: 19px;
    line-height: 1.65;
}

a {
    text-decoration: none;
    color: #0369a1;
}

.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 56px 24px;
}

.section {
    padding: 56px 0;
}

.badge {
    letter-spacing: .2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    font-size: 16px;
    color: #475569;
    background: rgba(255,255,255,.8);
    border: 1px solid var(--border);
    border-radius: 999px;
    backdrop-filter: blur(6px);
}

.badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0ea5e9;
    display: inline-block;
}

.h1 {
    font-size: clamp(32px,4.8vw,56px);
    line-height: 1.12;
    font-weight: 800;
    margin: 16px 0 8px;
    letter-spacing: .2px;
}

.h2 {
    font-size: clamp(31px,4.5vw,50px);
    line-height: 1.18;
    font-weight: 800;
    margin: 0 0 10px;
}

.p-lg {
    font-size: clamp(18px,2.2vw,22px);
    color: #475569;
}

.note {
    display: inline-block;
    border: 1px solid #bae6fd;
    background: #f0f9ff;
    color: #0c4a6e;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: .2s ease;
}

.btn--primary {
    background: #0284c7;
    color: #fff;
}

    .btn--primary:hover {
        background: #0369a1;
    }

.btn--outline {
    background: #fff;
    color: #0f172a;
    border-color: #e2e8f0;
}

    .btn--outline:hover {
        background: #f8fafc;
    }

.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 20px;
}

@media (min-width:768px) {
    .grid-2 {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (min-width:1024px) {
    .grid-3 {
        grid-template-columns: repeat(3,1fr);
    }
}

.card {
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(2,132,199,.05);
}

    .card .body {
        padding: 26px;
    }

.muted {
    color: var(--muted2);
    font-size: 16px;
}

.list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .list li {
        display: flex;
        gap: 10px;
        align-items: flex-start;
        color: #0f172a;
        font-size: 16px;
        margin: 10px 0;
    }

        .list li svg {
            color: #059669;
            flex: 0 0 20px;
            margin-top: 2px;
        }

.mock {
    width: 100%;
    height: auto;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg,#e2e8f0,#cbd5e1);
}

    .mock img {
        display: block;
        width: 100%;
        height: auto;
    }

.grad-sky-emerald {
    background: linear-gradient(90deg,#f0f9ff,#ecfdf5);
}

.grad-emerald-sky {
    background: linear-gradient(90deg,#ecfdf5,#f0f9ff);
}

.grad-sky-indigo {
    background: linear-gradient(90deg,#f0f9ff,#e0e7ff);
}

.grad-indigo-sky {
    background: linear-gradient(90deg,#e0e7ff,#f0f9ff);
}

.cta {
    text-align: center;
}

.footer {
    border-top: 1px solid var(--border);
    padding: 32px 0;
    background: #fff;
}

.owners {
    background: linear-gradient(180deg,#ffffff 0%, #f0fdf4 40%, #ecfeff 100%);
}

.owners-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
}

@media (min-width:768px) {
    .owners-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (min-width:1024px) {
    .owners-grid {
        grid-template-columns: repeat(3,1fr);
    }
}

.owners-grid .ico {
    width: 44px;
    height: 44px;
    border-radius: 9999px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    margin-bottom: 10px;
}

.owners-grid .ttl {
    font-weight: 800;
    margin-bottom: 6px;
}

.owners-grid .txt {
    font-size: 16px;
    color: #64748b;
}

.faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 20px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--muted2);
}

.pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #0ea5e9;
}

.price-tag {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
}

.price-note {
    font-size: 15px;
    color: var(--muted2);
}

/* Vertical rhythm */
section[id], .section {
    padding-top: 80px;
    padding-bottom: 90px;
    position: relative;
}

    section[id] + section[id]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: rgba(15,23,42,0.06);
    }

    section[id] .badge {
        margin: 0 0 20px 0;
    }

    section[id] .h2, section[id] h2 {
        margin: 0 0 24px 0;
    }

    section[id] .grid,
    section[id] .row,
    section[id] .faq-list {
        margin-top: 28px;
    }

section[id] {
    scroll-margin-top: 110px;
}

/* Header */
.landing-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.landing-header .header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.landing-header .logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
}

    .landing-header .logo-img {
        width: 60px;
        height: 60px;
        display: inline-block;
        margin: -30px 0;
    }

.landing-header .brand-text {
    font-weight: 500;
    font-style: italic;
    font-size: clamp(1.35rem, 1.05rem + 1vw, 1.9rem);
    letter-spacing: .1px;
    color: #16323a;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.landing-header .nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.landing-header .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

.landing-header .nav-links a:hover {
    color: var(--brand);
}

.landing-header .header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.landing-header .btn-header {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.landing-header .btn-header--outline {
    color: var(--text);
    border: 1px solid var(--border);
    background: transparent;
}

.landing-header .btn-header--outline:hover {
    background: #f8fafc;
    border-color: var(--brand);
}

.landing-header .btn-header--primary {
    background: var(--brand);
    color: #fff;
    border: 1px solid var(--brand);
}

.landing-header .btn-header--primary:hover {
    background: #0369a1;
    border-color: #0369a1;
}

@media (max-width: 768px) {
    .landing-header .nav-links {
        display: none;
    }

    .landing-header .header-container {
        padding: 12px 20px;
    }
}

.section.description {
    padding-top: 80px;
}

    .section.description .promo-buttons {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        margin-top: 16px;
    }

.section.looks .description {
    margin-top: 14px;
    font-size: 15px;
}

.register {
    margin-top: 32px;
}

.faq-question {
    font-weight: 800;
    margin-bottom: 6px;
}

.footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
    color: #94a3b8;
}
