@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
    --primary: #667eea;
    --secondary: #764ba2;
    --accent: #ff7a59;
    --ink: #1d2138;
    --muted: #5d6884;
    --bg: #f4f6fb;
    --white: #ffffff;
    --line: #e4e8f2;
    --shadow: 0 14px 30px rgba(15, 20, 40, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--ink);
    background: var(--bg);
    min-height: 100vh;
    font-size: 17px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: inherit;
}

p {
    font-size: 1rem;
    color: var(--muted);
}

a {
    color: inherit;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: 900px;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    padding: 1.2rem 0;
    box-shadow: 0 12px 30px rgba(10, 20, 40, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(102, 126, 234, 0.18);
}

.notice-bar {
    background: linear-gradient(120deg, #1f274d 0%, #2f3566 50%, #213051 100%);
    color: var(--white);
    padding: 0.7rem 0;
    font-size: 0.95rem;
}

.notice-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-align: center;
    flex-wrap: wrap;
}

.notice-bar a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    align-items: center;
}

.nav-links a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(102, 126, 234, 0.08);
    border: 1px solid transparent;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary);
    background: rgba(102, 126, 234, 0.16);
    border-color: rgba(102, 126, 234, 0.3);
}

/* Hero */
.hero {
    padding: 4.5rem 0 3.5rem;
}

.hero--gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
}

.hero--center {
    text-align: center;
}

.hero--split {
    text-align: left;
}

.hero h1 {
    font-size: 3.1rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    color: rgba(255, 255, 255, 0.88);
}

.hero--light p {
    color: var(--muted);
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.hero-copy p {
    max-width: 560px;
}

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

.hero-media img {
    width: 100%;
    max-width: 520px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(15, 20, 40, 0.25);
    background: rgba(255, 255, 255, 0.08);
    padding: 1.2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 0.9rem 1.6rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 122, 89, 0.3);
}

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: var(--white);
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section--white {
    background: var(--white);
}

.section--muted {
    background: #f8f9fc;
}

.section-title {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: var(--ink);
}

.section-title--light {
    color: var(--white);
}

.section-title--left {
    text-align: left;
    margin-bottom: 1rem;
}

/* Cards */
.apps-grid,
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.app-card,
.benefit-card,
.feature-card,
.doc-card,
.content-card {
    background: var(--white);
    border-radius: 18px;
    padding: 2.2rem;
    box-shadow: var(--shadow);
}

.app-card {
    position: relative;
    overflow: hidden;
}

.app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.app-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.app-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.app-description {
    color: var(--muted);
    margin-bottom: 1.4rem;
}

.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Home sections */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-intro {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.contact-email {
    font-size: 1.15rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-email:hover {
    color: var(--secondary);
}

/* Store locator hero card */
.hero-card {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(90, 209, 199, 0.6) 0%, rgba(90, 209, 199, 0) 70%);
    top: -60px;
    right: -40px;
}

.hero-card h2 {
    color: var(--white);
    margin-bottom: 0.6rem;
    font-size: 1.6rem;
}

.hero-card p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.stat {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1rem 1.2rem;
}

.stat h3 {
    font-size: 1.5rem;
    color: var(--white);
}

.stat span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

.icon-pill {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent), #ffb199);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-card,
.benefit-card {
    border: 1px solid #f0efe7;
}

.benefit-card h3,
.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
}

.benefit-card p,
.feature-card p {
    font-size: 0.98rem;
}

/* Store locator screenshots */
.screenshots-header {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 2rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.screenshots-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.7rem;
}

.screenshots-intro {
    max-width: 520px;
    font-size: 1.05rem;
}

.screenshots-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: flex-end;
}

.screenshots-tags span {
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.12), rgba(118, 75, 162, 0.18));
    color: var(--ink);
    font-weight: 600;
    font-size: 0.9rem;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.8rem;
}

.screenshot-card {
    background: var(--white);
    border-radius: 22px;
    padding: 1.1rem;
    box-shadow: var(--shadow);
    border: 1px solid #edf0f6;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.screenshot-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(15, 20, 40, 0.18);
}

.screenshot-frame {
    border-radius: 18px;
    padding: 0.9rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.12), rgba(118, 75, 162, 0.12));
}

.screenshot-frame img {
    border-radius: 14px;
    border: 1px solid #d9e0ef;
    background: var(--white);
    box-shadow: 0 10px 24px rgba(31, 39, 77, 0.12);
}

.screenshot-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

.screenshot-card p {
    font-size: 0.98rem;
    color: var(--muted);
}

.screenshot-card img {
    cursor: zoom-in;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    z-index: 200;
}

.lightbox--open {
    opacity: 1;
    visibility: visible;
}

.lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 24, 0.75);
    backdrop-filter: blur(6px);
}

.lightbox__image {
    position: relative;
    max-width: min(92vw, 1100px);
    max-height: 86vh;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(10, 14, 24, 0.4);
    z-index: 1;
}

.lightbox__close {
    position: absolute;
    top: 28px;
    right: 28px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.lightbox__close:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.25);
}

.no-scroll {
    overflow: hidden;
}

/* CTA */
.cta {
    background: linear-gradient(120deg, #1f274d 0%, #2f3566 50%, #213051 100%);
    color: var(--white);
    border-radius: 30px;
    padding: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    align-items: center;
}

.cta h2 {
    font-size: 2.1rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.8rem;
}

/* Docs layout */
.layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    padding: 3rem 0;
}

.sidebar {
    background: #1f2750;
    border-radius: 18px;
    padding: 1.6rem;
    height: fit-content;
    position: sticky;
    top: 90px;
}

.sidebar h3 {
    color: var(--white);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.sidebar ul {
    list-style: none;
    display: grid;
    gap: 0.6rem;
}

.sidebar a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.6rem 0.8rem;
    border-radius: 12px;
    transition: background 0.2s, color 0.2s;
}

.sidebar a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: #f1f3fb;
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.fields {
    display: grid;
    gap: 0.9rem;
}

.field-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 1rem;
    background: #f4f6fb;
    border-radius: 12px;
    padding: 0.9rem 1.1rem;
}

.field-name {
    font-weight: 700;
    font-size: 1rem;
}

.field-desc {
    color: var(--muted);
}

.note {
    background: #fff3ee;
    border-left: 4px solid var(--accent);
    padding: 0.9rem 1.1rem;
    border-radius: 12px;
    color: #7a3c2b;
    margin-top: 1.2rem;
}

.steps,
.checklist {
    list-style: none;
    display: grid;
    gap: 0.7rem;
    margin-top: 1rem;
}

.steps li,
.checklist li {
    background: #f4f6fb;
    border-radius: 12px;
    padding: 0.9rem 1rem;
    color: var(--muted);
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
}

.checklist li span {
    font-weight: 700;
    color: var(--accent);
}

.screenshot {
    margin-top: 1.2rem;
    border-radius: 16px;
    background: #f4f6fb;
    border: 1px dashed #cfd6e6;
    padding: 1.2rem;
    color: var(--muted);
    display: grid;
    gap: 0.4rem;
}

.screenshot img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid #d7deef;
    box-shadow: 0 12px 24px rgba(31, 39, 77, 0.08);
    background: var(--white);
}

.screenshot span {
    font-size: 0.95rem;
}

.screenshot strong {
    color: var(--ink);
}

.highlight {
    background: linear-gradient(120deg, #1f274d 0%, #2a3560 100%);
    color: var(--white);
    border-radius: 18px;
    padding: 1.5rem;
    margin-top: 1.2rem;
}

.highlight h4 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

/* Policy pages */
.page-hero {
    text-align: center;
    padding: 3rem 0 2rem;
}

.page-hero h1 {
    font-size: 2.4rem;
    margin-bottom: 0.6rem;
}

.page-hero p {
    color: var(--muted);
}

.content-card h2,
.doc-card h2 {
    margin-bottom: 0.6rem;
    font-size: 1.6rem;
}

.doc-card {
    margin-top: 1.6rem;
}
.content-card p {
    color: var(--muted);
    margin-bottom: 1rem;
}

.content-card ul {
    margin-left: 1.2rem;
    color: var(--muted);
}

.content-card li {
    margin: 0.4rem 0;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    list-style: none;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.app-card {
    animation: fadeInUp 0.6s ease-out;
}

.app-card:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 20px 40px rgba(15, 20, 40, 0.25);
    }
    50% {
        box-shadow: 0 28px 60px rgba(90, 209, 199, 0.25);
    }
}

.hero-copy {
    animation: floatIn 0.8s ease-out both;
}

.hero-copy .hero-actions {
    animation: floatIn 1s ease-out both;
    animation-delay: 0.15s;
}

.hero-media img {
    animation: floatIn 0.9s ease-out both, glowPulse 3.5s ease-in-out infinite;
    animation-delay: 0.1s;
}

/* Responsive */
@media (max-width: 980px) {
    .layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .notice-bar {
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .hero--split {
        text-align: center;
    }

    .hero-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .apps-grid,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-title--left {
        text-align: center;
    }

    .screenshots-header {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .screenshots-intro {
        margin-left: auto;
        margin-right: auto;
    }

    .screenshots-tags {
        justify-content: center;
    }

    .cta {
        padding: 2.2rem;
    }

    .field-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .doc-card,
    .content-card {
        padding: 1.6rem;
    }
}
