:root {
    --bg: #f6f2ea;
    --bg-2: #fcfaf6;
    --card: rgba(255, 255, 255, 0.82);
    --ink: #151515;
    --muted: #625d56;
    --line: rgba(21, 21, 21, 0.10);
    --accent: #0f766e;
    --accent-2: #b45309;
    --accent-3: #1d4ed8;
    --shadow: 0 24px 60px rgba(17, 24, 39, 0.10);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --max: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 12% 10%, rgba(15, 118, 110, 0.14), transparent 28%),
        radial-gradient(circle at 88% 14%, rgba(180, 83, 9, 0.12), transparent 22%),
        radial-gradient(circle at 50% 100%, rgba(29, 78, 216, 0.07), transparent 30%),
        linear-gradient(180deg, var(--bg-2), var(--bg));
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(21, 21, 21, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21, 21, 21, 0.02) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.62), transparent 88%);
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.shell {
    position: relative;
    max-width: var(--max);
    margin: 0 auto;
    padding: 22px 20px 64px;
}

.nav {
    position: sticky;
    top: 14px;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    display: block;
    object-fit: cover;
    box-shadow: 0 10px 24px rgba(15, 118, 110, 0.22);
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.nav-links a {
    padding: 9px 14px;
    border-radius: 999px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
}

.nav-links a:hover {
    background: rgba(15, 118, 110, 0.08);
    text-decoration: none;
}

.hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
    padding: 34px 0 24px;
}

.hero-copy {
    padding: 18px 4px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(15, 118, 110, 0.18);
    background: rgba(15, 118, 110, 0.06);
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    max-width: 11ch;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: -0.07em;
}

.hero p {
    max-width: 620px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.1rem;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 18px;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-primary {
    color: white;
    background: linear-gradient(135deg, var(--accent), #115e59);
    box-shadow: 0 14px 30px rgba(15, 118, 110, 0.24);
}

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

.hero-panel {
    position: relative;
    padding: 8px;
    display: grid;
    place-items: center;
    overflow: visible;
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: 10% 10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 118, 110, 0.22), transparent 65%);
    filter: blur(28px);
    z-index: 0;
}

.hero-phone {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    width: min(100%, 320px);
    aspect-ratio: 9 / 19.5;
    border-radius: 44px;
    padding: 8px;
    background: linear-gradient(160deg, #1a1a1a, #2c2c2c 40%, #0d0d0d);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.06) inset,
        0 28px 60px rgba(17, 24, 39, 0.22),
        0 8px 20px rgba(17, 24, 39, 0.10);
}

.hero-phone::after {
    content: "";
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 36%;
    height: 22px;
    background: #0a0a0a;
    border-radius: 0 0 16px 16px;
    z-index: 2;
}

.hero-phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 36px;
    display: block;
    background: #f3efe7;
}

.section {
    margin-top: 24px;
    padding: 0;
}

.section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin: 34px 0 14px;
}

.section-header h2 {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    letter-spacing: -0.05em;
}

.section-header p {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 16px;
}

.feature-card {
    grid-column: span 12;
    padding: 22px;
    border-radius: var(--radius-lg);
    background: var(--card);
    border: 1px solid var(--line);
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.05);
}

.feature-card h3 {
    margin: 0 0 8px;
    font-size: 1.12rem;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.97rem;
}

.feature-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.chip {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.08);
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
}

/* -------------------- Gallery -------------------- */

.gallery-rail {
    --shot-w: 240px;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: var(--shot-w);
    gap: 18px;
    padding: 6px 4px 22px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(21, 21, 21, 0.18) transparent;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
}

.gallery-rail::-webkit-scrollbar {
    height: 8px;
}

.gallery-rail::-webkit-scrollbar-track {
    background: transparent;
}

.gallery-rail::-webkit-scrollbar-thumb {
    background: rgba(21, 21, 21, 0.16);
    border-radius: 999px;
}

.shot {
    margin: 0;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: zoom-in;
}

.shot-frame {
    position: relative;
    aspect-ratio: 9 / 19.5;
    border-radius: 32px;
    padding: 6px;
    background: linear-gradient(160deg, #1a1a1a, #2c2c2c 40%, #0d0d0d);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.06) inset,
        0 18px 36px rgba(17, 24, 39, 0.18),
        0 4px 10px rgba(17, 24, 39, 0.10);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.shot:hover .shot-frame,
.shot:focus-visible .shot-frame {
    transform: translateY(-3px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.08) inset,
        0 26px 48px rgba(17, 24, 39, 0.22),
        0 6px 14px rgba(17, 24, 39, 0.12);
}

.shot-frame::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 38%;
    height: 18px;
    background: #0a0a0a;
    border-radius: 0 0 14px 14px;
    z-index: 2;
}

.shot-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 26px;
    display: block;
    background: #f3efe7;
}

.shot figcaption {
    padding: 0 4px;
}

.shot figcaption strong {
    display: block;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.shot figcaption span {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.45;
}

.gallery-hint {
    margin: 4px 4px 0;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Lightbox */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(8, 10, 14, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    animation: fade 180ms ease-out both;
}

.lightbox[hidden] {
    display: none;
}

.lightbox-img {
    max-width: min(92vw, 460px);
    max-height: 86vh;
    border-radius: 28px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    background: #f3efe7;
    object-fit: contain;
}

.lightbox-caption {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 160ms ease, transform 160ms ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-50%) scale(1.04);
}

.lightbox-close {
    top: 22px;
    right: 22px;
    transform: none;
    font-size: 1.6rem;
}

.lightbox-close:hover {
    transform: scale(1.06);
}

.lightbox-prev {
    left: 22px;
}

.lightbox-next {
    right: 22px;
}

@keyframes fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* -------------------- Trust / FAQ / Footer -------------------- */

.trust-band {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.trust-card {
    padding: 22px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.80);
    border: 1px solid var(--line);
}

.trust-card h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
}

.trust-card p {
    margin: 0;
    color: var(--muted);
}

/* -------------------- Privacy at a glance -------------------- */

.privacy-glance {
    margin-top: 28px;
    padding: 28px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid var(--line);
    box-shadow: 0 12px 32px rgba(17, 24, 39, 0.05);
}

.privacy-glance-head {
    max-width: 720px;
}

.privacy-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.10);
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.privacy-glance-head h2 {
    margin: 0 0 8px;
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    letter-spacing: -0.04em;
}

.privacy-glance-head p {
    margin: 0 0 22px;
    color: var(--muted);
}

.privacy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.privacy-grid li {
    position: relative;
    padding: 16px 18px 16px 48px;
    border-radius: var(--radius-md);
    background: rgba(252, 250, 246, 0.85);
    border: 1px solid var(--line);
}

.privacy-grid li::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 22px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #5ce5b9, #0f766e 70%);
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.14);
}

.privacy-grid strong {
    display: block;
    margin-bottom: 2px;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.privacy-grid span {
    display: block;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.5;
}

@media (min-width: 820px) {
    .privacy-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
}

/* -------------------- Pro section -------------------- */

.pro-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 100% 0%, rgba(15, 118, 110, 0.14), transparent 55%),
        radial-gradient(circle at 0% 100%, rgba(180, 83, 9, 0.10), transparent 55%),
        linear-gradient(180deg, #111315, #0c0e10);
    color: #f5efe6;
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

.pro-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(circle at 70% 30%, rgba(0, 0, 0, 0.7), transparent 70%);
    pointer-events: none;
}

.pro-copy {
    position: relative;
    z-index: 1;
}

.pro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #f5efe6;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pro-crown {
    color: #f5b54a;
    font-size: 14px;
    line-height: 1;
}

.pro-copy h3 {
    margin: 18px 0 10px;
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #fff;
}

.pro-copy > p {
    margin: 0;
    color: rgba(245, 239, 230, 0.75);
    font-size: 1rem;
    max-width: 56ch;
}

.pro-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 22px 0 18px;
    padding: 0;
    list-style: none;
}

.pro-list li {
    position: relative;
    padding: 14px 16px 14px 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pro-list li::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transform: translateY(-50%);
    background:
        radial-gradient(circle at 30% 30%, #5ce5b9, #0f766e 70%);
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.18);
}

.pro-list strong {
    display: block;
    margin-bottom: 2px;
    font-size: 0.98rem;
    color: #fff;
    letter-spacing: -0.01em;
}

.pro-list span {
    display: block;
    color: rgba(245, 239, 230, 0.65);
    font-size: 0.9rem;
    line-height: 1.45;
}

.pro-billing {
    margin: 0;
    color: rgba(245, 239, 230, 0.55);
    font-size: 0.86rem;
}

.pro-shots {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-content: start;
}

.pro-shot {
    cursor: default;
}

.pro-shot .shot-frame {
    aspect-ratio: 9 / 19.5;
    background: linear-gradient(160deg, #2a2a2a, #1a1a1a 40%, #0d0d0d);
}

.pro-shot figcaption strong {
    color: #f5efe6;
}

.pro-shot figcaption span {
    color: rgba(245, 239, 230, 0.6);
}

.faq-section {
    display: grid;
    gap: 14px;
}

.faq-item {
    padding: 22px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
}

.faq-item h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
}

.faq-item p {
    margin: 0;
    color: var(--muted);
}

.footer {
    margin-top: 34px;
    padding: 24px 0 0;
    border-top: 1px solid rgba(21, 21, 21, 0.08);
    color: var(--muted);
    font-size: 0.95rem;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-links a {
    color: var(--muted);
    font-weight: 700;
}

.footer-links a:hover {
    color: var(--accent);
}

.micro {
    margin-top: 12px;
    font-size: 0.86rem;
    color: var(--muted);
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-copy,
.hero-panel,
.feature-card,
.trust-card,
.faq-item {
    animation: rise 420ms ease-out both;
}

.hero-panel {
    animation-delay: 60ms;
}

.feature-card:nth-child(2) { animation-delay: 70ms; }
.feature-card:nth-child(3) { animation-delay: 120ms; }
.feature-card:nth-child(4) { animation-delay: 170ms; }
.trust-card:nth-child(2) { animation-delay: 70ms; }
.faq-item:nth-child(2) { animation-delay: 70ms; }
.faq-item:nth-child(3) { animation-delay: 120ms; }

@media (min-width: 820px) {
    .hero {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 34px;
        padding-top: 44px;
    }

    .feature-card {
        grid-column: span 4;
    }

    .feature-card.feature-wide {
        grid-column: span 6;
    }

    .gallery-rail {
        --shot-w: 260px;
    }

    .pro-panel {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 36px;
        padding: 36px;
        align-items: center;
    }
}

@media (max-width: 820px) {
    .nav {
        border-radius: 24px;
        align-items: flex-start;
        flex-direction: column;
    }

    .nav-links {
        justify-content: flex-start;
    }

    .stats,
    .summary-grid,
    .trust-band {
        grid-template-columns: 1fr;
    }

    .section-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .gallery-rail {
        --shot-w: 210px;
    }

    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}

@media (max-width: 600px) {
    .shell {
        padding-left: 14px;
        padding-right: 14px;
    }

    h1 {
        max-width: none;
    }

    .cta-row {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .gallery-rail {
        --shot-w: 200px;
    }
}

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

    .hero-copy,
    .hero-panel,
    .feature-card,
    .trust-card,
    .faq-item,
    .lightbox {
        animation: none;
    }
}
