:root {
    --apple-blue: #0071e3;
    --sky-blue: #1687d9;
    --soft-sky: #eaf7ff;
    --ink: #172436;
    --text-main: #1d1d1f;
    --text-secondary: #86868b;
    --bg-soft: #f5f5f7;
    --line-soft: #c8e1f5;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
    background-color: #f4faff;
    color: var(--text-main);
    margin: 0;
    display: block; 
    min-height: auto; 
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

/* --- NAVIGATION BAR --- */
.top-nav {
    background-color: transparent; 
    position: absolute; 
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1100px; 
    margin: 0 auto;
    padding: 25px 40px; 
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--ink);
    text-decoration: none;
}

.nav-brand:hover {
    color: var(--sky-blue);
}

.nav-logo {
    width: 30px;
    height: 30px;
    border-radius: 6px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    text-decoration: none;
    color: #34465d;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--sky-blue); 
}

/* DROPDOWN */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: transparent;
    color: #34465d;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
}

.dropbtn:hover {
    color: var(--sky-blue);
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0; 
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0 16px 34px rgba(23, 36, 54, 0.12);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
}

.dropdown-content a:hover {
    background-color: #eef8ff;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* --- MAIN HERO SECTION --- */
main {
    padding-top: 120px; 
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-section {
    margin-top: 20px;
    text-align: center;
}

.app-icon {
    width: 120px;
    height: 120px;
    border-radius: 24%; 
    margin: 0 auto 30px auto; 
    display: block;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

h1 {
    font-size: 48px; 
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 8px;
}

.tagline {
    font-size: 20px; 
    font-weight: 500;
    color: #1d1d1f;
    margin-bottom: 12px;
}

.description {
    font-size: 17px; 
    color: #86868b;
    line-height: 1.5;
    max-width: 480px; 
    margin: 0 auto 32px auto;
}

.button {
    background-color: #000000; 
    color: #ffffff;
    padding: 18px 36px; 
    border-radius: 8px; 
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0;
}

.button:hover {
    background-color: #1c1c1e;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* --- TIGHTER ZIG-ZAG FEATURE ROWS --- */
/* --- TIGHTER ZIG-ZAG FEATURE ROWS (NO ICONS) --- */
.features-container {
    max-width: 900px;
    margin: 60px auto 50px auto;
    padding: 0 20px;
}

.feature-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 80px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 0 1 420px;
    text-align: left;
}

.feature-text h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px; /* Pulls the heading closer to the paragraph */
    color: #1d1d1f;
}

.feature-text p {
    font-size: 17px;
    line-height: 1.6;
    color: #6e6e73;
}

.feature-screenshot {
    width: 260px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

/* --- HOME PAGE --- */
.home-page {
    background:
        linear-gradient(180deg, rgba(247, 252, 255, 0.96) 0%, rgba(229, 245, 255, 0.86) 48%, #ffffff 100%);
    color: var(--ink);
}

.home-page .top-nav {
    position: fixed;
    background: rgba(247, 252, 255, 0.82);
    border-bottom: 1px solid rgba(200, 225, 245, 0.78);
    backdrop-filter: blur(16px);
}

.home-page .nav-container {
    max-width: 1180px;
    padding: 14px 28px;
}

.home-page main {
    padding-top: 80px;
    overflow: hidden;
}

.home-page .header-section {
    width: min(1060px, calc(100% - 56px));
    min-height: 760px;
    margin: 0 auto;
    padding: 80px 28px 90px;
    position: relative;
    display: grid;
    place-items: center;
    isolation: isolate;
}

.home-page .header-section::before {
    content: "";
    position: absolute;
    inset: 28px 0 36px;
    border: 1px solid rgba(22, 135, 217, 0.20);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 36px 90px rgba(23, 36, 54, 0.12);
    backdrop-filter: blur(22px) saturate(145%);
    z-index: -2;
}

.home-page .header-section::after {
    display: none;
}

.hero-copy {
    width: min(100%, 900px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--sky-blue);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.home-page .app-icon {
    width: 164px;
    height: 164px;
    margin-bottom: 26px;
    border-radius: 32px;
    box-shadow: 0 18px 34px rgba(23, 36, 54, 0.16);
}

.home-page h1 {
    max-width: 760px;
    margin: 0 0 14px;
    font-size: 58px;
    line-height: 1.02;
    color: var(--ink);
}

.home-page .tagline {
    max-width: 720px;
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.35;
    color: #24384f;
}

.home-page .description {
    max-width: 720px;
    margin-bottom: 30px;
    color: #53687f;
    font-size: 18px;
}

.home-page .cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.home-page .button {
    background: #1269b0;
    box-shadow: 0 14px 28px rgba(18, 105, 176, 0.22);
}

.home-page .button:hover {
    background: #0f5d9d;
}

.text-link {
    color: var(--sky-blue);
    font-weight: 700;
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}

.home-page .features-container {
    max-width: 1060px;
    margin: 70px auto 80px;
    padding: 0 28px;
}

.section-intro {
    max-width: 680px;
    margin: 0 auto 58px;
    text-align: center;
}

.section-intro h2,
.privacy-section h2 {
    margin: 0 0 14px;
    font-size: 44px;
    line-height: 1.08;
    letter-spacing: 0;
    color: var(--ink);
}

#features-heading {
    scroll-margin-top: 96px;
}

.section-intro p,
.privacy-section p {
    color: #53687f;
    font-size: 18px;
    line-height: 1.6;
}

.home-page .feature-row {
    gap: 70px;
    margin-bottom: 70px;
    padding: 42px;
    border: 1px solid var(--line-soft);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 22px 54px rgba(23, 36, 54, 0.10);
    backdrop-filter: blur(20px) saturate(145%);
}

.home-page .feature-text h3 {
    font-size: 30px;
    color: var(--ink);
}

.home-page .feature-text p {
    color: #53687f;
}

.home-page .feature-screenshot {
    width: 360px;
    height: 545px;
    display: block;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

.privacy-section {
    width: 100%;
    margin: 0;
    padding: 52px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
    border-radius: 8px;
    background: rgba(234, 247, 255, 0.82);
    border: 1px solid rgba(22, 135, 217, 0.18);
    backdrop-filter: blur(20px) saturate(145%);
}

.privacy-copy p {
    margin-bottom: 22px;
}

.privacy-points {
    display: grid;
    gap: 14px;
}

.privacy-points p {
    margin: 0;
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(22, 135, 217, 0.16);
}

.privacy-points strong {
    display: block;
    color: var(--ink);
}

.site-footer {
    width: 100%;
    padding: 0 28px 42px;
}

.footer-inner {
    width: min(1060px, 100%);
    margin: 0 auto;
    padding: 26px 0 0;
    border-top: 1px solid var(--line-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.footer-copy {
    margin: 0;
    color: #53687f;
    font-size: 14px;
    font-weight: 650;
}

.footer-nav {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #53687f;
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
}

.footer-nav a:hover {
    color: var(--sky-blue);
    text-decoration: underline;
}

/* --- BLOG PAGE --- */
.blog-main {
    width: min(1060px, calc(100% - 56px));
    margin: 0 auto;
    padding: 110px 0 86px;
}

.blog-hero {
    margin-bottom: 42px;
    text-align: center;
}

.blog-hero h1 {
    max-width: 760px;
    margin: 0 auto 16px;
    color: var(--ink);
    font-size: 52px;
    line-height: 1.05;
    letter-spacing: 0;
}

.blog-hero p {
    max-width: 680px;
    margin: 0 auto;
    color: #53687f;
    font-size: 18px;
    line-height: 1.6;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.blog-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line-soft);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 22px 54px rgba(23, 36, 54, 0.10);
    backdrop-filter: blur(20px) saturate(145%);
}

.blog-card-image {
    width: 100%;
    height: 190px;
    display: block;
    object-fit: cover;
    object-position: top center;
    background: var(--soft-sky);
}

.blog-card-body {
    padding: 24px;
}

.blog-meta {
    margin: 0 0 10px;
    color: var(--sky-blue);
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 0;
    text-transform: uppercase;
}

.blog-card h2 {
    margin: 0 0 12px;
    color: var(--ink);
    font-size: 23px;
    line-height: 1.18;
    letter-spacing: 0;
}

.blog-card p {
    color: #53687f;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    margin-top: 8px;
    color: var(--sky-blue);
    font-weight: 750;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

/* --- SUPPORT PAGE --- */
.support-page main {
    width: min(900px, calc(100% - 56px));
    margin: 0 auto;
    padding: 120px 0 80px;
}

.support-page .hero {
    margin-bottom: 34px;
    text-align: center;
}

.support-page .features-grid {
    width: 100%;
    display: grid;
    gap: 24px;
}

.support-page .feature-card {
    padding: 34px;
    border: 1px solid var(--line-soft);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 22px 54px rgba(23, 36, 54, 0.10);
    backdrop-filter: blur(20px) saturate(145%);
}

.support-page .icon-wrapper {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    color: var(--sky-blue);
}

.support-page .icon-wrapper svg {
    width: 100%;
    height: 100%;
}

.support-page .feature-card h3,
.support-page .faq-container h3 {
    margin: 0 0 12px;
    color: var(--ink);
    font-size: 24px;
}

.support-page .feature-card p,
.support-page .faq-container p,
.support-page .pro-content li {
    color: #53687f;
    line-height: 1.6;
}

.support-page .faq-container {
    max-width: none;
    margin: 0;
    padding: 0;
}

.support-page details {
    padding: 16px 0;
    border-bottom: 1px solid var(--line-soft);
}

.support-page summary {
    cursor: pointer;
    color: var(--ink);
    font-weight: 700;
}

.support-page .pro-content ul {
    margin-bottom: 0;
    padding-left: 20px;
}

.blog-article {
    width: min(820px, calc(100% - 56px));
    margin: 0 auto;
    padding: 118px 0 86px;
    display: block;
    align-items: initial;
    text-align: left;
}

.article-back-link {
    display: inline-block;
    margin-bottom: 26px;
    color: var(--sky-blue);
    font-weight: 750;
    text-decoration: none;
}

.article-back-link:hover {
    text-decoration: underline;
}

.blog-article h1 {
    margin: 0 0 24px;
    color: var(--ink);
    font-size: 40px;
    line-height: 1.12;
    letter-spacing: 0;
    text-align: left;
}

.blog-article p {
    color: #53687f;
    font-size: 18px;
    line-height: 1.7;
    text-align: left;
}

.blog-article h2,
.blog-article h3 {
    color: var(--ink);
    letter-spacing: 0;
    text-align: left;
}

.blog-article h2 {
    margin: 42px 0 14px;
    font-size: 30px;
    line-height: 1.18;
}

.blog-article h3 {
    margin: 28px 0 10px;
    font-size: 22px;
    line-height: 1.25;
}

.blog-article ul {
    margin: 14px 0 28px;
    padding-left: 22px;
    color: #53687f;
    text-align: left;
}

.blog-article li {
    margin-bottom: 10px;
    text-align: left;
}

.blog-article li p {
    margin: 0;
}

.blog-article a {
    color: var(--sky-blue);
    font-weight: 650;
}

.blog-article img {
    width: 100%;
    max-height: 460px;
    margin: 8px 0 28px;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 24px;
}

.article-image {
    width: 100%;
    max-height: 420px;
    margin: 8px 0 28px;
    display: block;
    object-fit: cover;
    object-position: top center;
    border-radius: 24px;
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 768px) {
    .nav-container {
        padding: 14px 12px;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-title {
        display: none;
    }

    .nav-title,
    .nav-links a {
        font-size: 0.86rem;
    }

    .dropbtn {
        font-size: 0.86rem;
    }

    .home-page .header-section {
        min-height: auto;
        width: calc(100% - 36px);
        padding: 54px 18px 64px;
    }

    .home-page .header-section::before,
    .home-page .header-section::after {
        inset: 18px 0 18px;
    }

    .home-page .header-section::before {
        background: #ffffff;
    }

    .home-page h1 {
        font-size: 38px;
        line-height: 1.04;
    }

    .home-page .app-icon {
        width: 132px;
        height: 132px;
        border-radius: 28px;
    }

    .home-page .tagline {
        font-size: 20px;
    }

    .home-page .description {
        font-size: 16px;
    }

    .home-page .button {
        width: 100%;
        max-width: 330px;
        text-align: center;
        padding: 16px 18px;
    }

    .section-intro h2,
    .privacy-section h2 {
        font-size: 32px;
    }

    .section-intro p,
    .privacy-section p {
        font-size: 16px;
    }

    .home-page .features-container {
        padding: 0 18px;
    }

    .home-page .feature-row {
        padding: 28px 20px;
        gap: 28px;
        margin-bottom: 34px;
    }

    .home-page .feature-text h3 {
        font-size: 25px;
    }

    .home-page .feature-screenshot {
        width: min(100%, 320px);
        height: 480px;
    }

    .privacy-section {
        width: 100%;
        padding: 30px 20px;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .feature-row, .feature-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .feature-text {
        flex: 1;
        text-align: center;
        max-width: 100%;
    }

    .site-footer {
        padding: 0 18px 34px;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-nav {
        justify-content: flex-start;
        gap: 14px;
    }

    .blog-main {
        width: calc(100% - 36px);
        padding: 84px 0 62px;
    }

    .blog-hero h1 {
        font-size: 36px;
    }

    .blog-hero p {
        font-size: 16px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card-image {
        height: 220px;
    }

    .blog-article {
        width: calc(100% - 36px);
        padding: 92px 0 62px;
    }

    .blog-article h1 {
        font-size: 30px;
    }

    .blog-article p {
        font-size: 16px;
    }

    .blog-article h2 {
        font-size: 26px;
    }

    .blog-article h3 {
        font-size: 20px;
    }

    .blog-article img {
        max-height: 320px;
        border-radius: 18px;
    }

}


/* --- LEGAL & FAQ PAGES --- */
.faq-container, 
.faq-section,
.legal-container {
    text-align: left;
    max-width: 600px;
    margin: 60px auto;
    padding: 0 20px;
    display: block;
    align-items: initial;
}

.legal-container h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
}

.legal-hero-page .legal-container h1 {
    margin-bottom: 24px;
    font-size: 58px;
    line-height: 1.02;
}

.legal-updated {
    color: #24384f;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.35;
    text-align: center;
}

.legal-container h2 {
    font-size: 18px;
    color: #1d1d1f;
    margin-top: 30px;
    margin-bottom: 10px;
    text-align: left;
    align-self: stretch;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.6;
    color: #6e6e73;
    margin-bottom: 20px;
    text-align: left;
    align-self: stretch;
}

.back-link {
    margin-top: 50px;
    text-align: center;
}

.back-link a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

.back-link a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-hero-page .legal-container h1 {
        font-size: 38px;
    }

    .legal-updated {
        font-size: 20px;
    }
}
