:root {
    --teal: #14b8a6;
    --teal-light: #2dd4bf;
    --teal-dark: #0d9488;
    --amber: #f59e0b;
    --red: #ef4444;
    --bg: #fafafa;
    --bg-card: #ffffff;
    --text: #1a1a1a;
    --text-muted: #6b7280;
    --radius: 16px;
    --nav-height: 64px;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg: #111111;
        --bg-card: #1e1e1e;
        --text: #f0f0f0;
        --text-muted: #9ca3af;
    }
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-top: var(--nav-height);
}

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

/* ---- Navigation ---- */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg);
    border-bottom: 1px solid rgba(128,128,128,0.12);
    height: var(--nav-height);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

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

.nav-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-links a {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 10px;
    transition: color 0.15s, background 0.15s;
}

.nav-links a:hover {
    color: var(--text);
    background: rgba(128,128,128,0.08);
}

.nav-links a.active {
    color: var(--teal);
    background: rgba(20,184,166,0.08);
}

/* Burger button */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.2s;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 600px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: var(--bg);
        border-bottom: 1px solid rgba(128,128,128,0.12);
        flex-direction: column;
        padding: 8px 24px 16px;
        gap: 0;
        display: none;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 12px 16px;
        font-size: 1rem;
    }
}

/* ---- Header ---- */
header {
    padding: 60px 0 40px;
    text-align: center;
}

header .logo {
    width: 96px;
    height: 96px;
    margin-bottom: 20px;
    border-radius: 22px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

header .tagline {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.badge-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    background: var(--teal);
    color: #fff;
}

.badge.amber { background: var(--amber); }

/* ---- Features (homepage grid) ---- */
.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 40px 0;
}

.feature {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.feature .icon {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.feature h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

@media (max-width: 520px) {
    .features { grid-template-columns: 1fr; }
}

/* ---- Beta Banner ---- */
.beta-banner {
    padding: 0 0 32px;
}

.beta-banner-inner {
    background: linear-gradient(135deg, var(--teal-dark), var(--teal));
    border-radius: var(--radius);
    padding: 36px 32px;
    text-align: center;
    color: #fff;
    box-shadow: 0 4px 24px rgba(20,184,166,0.25);
}

.beta-banner-inner h2 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}

.beta-banner-inner p {
    font-size: 0.95rem;
    opacity: 0.9;
    max-width: 480px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.beta-banner-btn {
    display: inline-block;
    background: #fff;
    color: var(--teal-dark);
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: opacity 0.2s, transform 0.15s;
}

.beta-banner-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* ---- Coming Soon ---- */
.coming-soon {
    padding: 40px 0 0;
}

.coming-soon h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.section-subtitle {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.roadmap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.roadmap-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.roadmap-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.roadmap-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.roadmap-status {
    flex-shrink: 0;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-top: 2px;
}

.roadmap-status.planned {
    background: rgba(20,184,166,0.12);
    color: var(--teal);
}

/* ---- Community ---- */
.community {
    padding: 40px 0;
}

.community-box {
    background: var(--bg-card);
    border: 2px dashed rgba(128,128,128,0.2);
    border-radius: var(--radius);
    padding: 36px 32px;
    text-align: center;
}

.community-box h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.community-box > p {
    color: var(--text-muted);
    margin-bottom: 20px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.community-btn {
    display: inline-block;
    background: var(--amber);
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: opacity 0.2s;
}

.community-btn:hover { opacity: 0.85; }

.community-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 12px;
}

/* ---- CTA ---- */
.cta {
    text-align: center;
    padding: 40px 0 60px;
}

.cta a {
    display: inline-block;
    background: var(--teal);
    color: #fff;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s;
}

.cta a:hover { background: var(--teal-dark); }

/* ---- Footer ---- */
footer {
    border-top: 1px solid rgba(128,128,128,0.15);
    padding: 32px 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

footer a:hover { text-decoration: underline; }

footer .links {
    margin-bottom: 8px;
}

footer .links a { margin: 0 12px; }

/* ---- Privacy page ---- */
.legal {
    padding: 40px 0 60px;
}

.legal h1 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.legal .effective {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 32px;
}

.legal h2 {
    font-size: 1.2rem;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--teal);
}

.legal p, .legal ul {
    margin-bottom: 16px;
}

.legal ul {
    padding-left: 24px;
}

.legal li {
    margin-bottom: 6px;
}

.back-link {
    display: inline-block;
    margin-bottom: 24px;
    color: var(--teal);
    text-decoration: none;
    font-size: 0.9rem;
}

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


/* ========================================
   FEATURES PAGE
   ======================================== */

.feat-hero {
    text-align: center;
    padding: 60px 0 20px;
}

.feat-hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.feat-hero-sub {
    font-size: 1.2rem;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 16px;
}

.feat-hero-body {
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto;
    font-size: 1rem;
}

/* Problem / Solution */
.problem-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 40px 0;
}

.ps-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.ps-card h2 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.ps-card.problem h2 { color: var(--red); }
.ps-card.solution h2 { color: var(--teal); }

.ps-card ul {
    list-style: none;
    padding: 0;
}

.ps-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.ps-card ul li::before {
    content: "\00D7";
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.4;
}

.ps-card.solution p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

@media (max-width: 600px) {
    .problem-solution { grid-template-columns: 1fr; }
}

/* Showcase items */
.feat-showcase {
    padding: 20px 0 40px;
}

.showcase-item {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
}

.showcase-item.reverse {
    flex-direction: row-reverse;
}

.showcase-mockup {
    flex-shrink: 0;
}

.showcase-text {
    flex: 1;
    min-width: 0;
}

.showcase-label {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: rgba(20,184,166,0.1);
    color: var(--teal);
    margin-bottom: 12px;
}

.showcase-text h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.showcase-text > p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.benefit-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
}

@media (max-width: 600px) {
    .showcase-item,
    .showcase-item.reverse {
        flex-direction: column;
        gap: 24px;
    }
}

/* ---- Phone mockup ---- */
.phone-frame {
    width: 220px;
    background: var(--bg-card);
    border-radius: 24px;
    border: 3px solid rgba(128,128,128,0.15);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.phone-screen {
    padding: 16px 14px 20px;
    font-size: 0.72rem;
    min-height: 340px;
}

.mock-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.mock-greeting {
    font-weight: 700;
    font-size: 0.82rem;
}

.mock-icon {
    font-size: 1rem;
}

.mock-title {
    font-weight: 700;
    font-size: 0.9rem;
}

.mock-section-title {
    font-weight: 600;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
    margin-top: 12px;
}

.mock-card {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg);
    border-radius: 10px;
    padding: 10px 10px;
    margin-bottom: 6px;
    font-size: 0.7rem;
}

.mock-card strong {
    display: block;
    font-size: 0.72rem;
    margin-bottom: 1px;
}

.mock-card small {
    color: var(--text-muted);
    font-size: 0.6rem;
}

.mock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.mock-dot.red { background: var(--red); }
.mock-dot.amber { background: var(--amber); }
.mock-dot.teal { background: var(--teal); }

.mock-chips {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.mock-chip {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(20,184,166,0.1);
    color: var(--teal);
    font-size: 0.62rem;
    font-weight: 600;
}

.mock-tabs {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(128,128,128,0.1);
    padding-bottom: 8px;
}

.mock-tab {
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-muted);
}

.mock-tab.active {
    color: var(--teal);
    background: rgba(20,184,166,0.08);
    font-weight: 600;
}

.badge-tab {
    display: flex;
    align-items: center;
    gap: 4px;
}

.mock-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: 0.5rem;
    font-weight: 700;
}

.mock-check {
    font-size: 1rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

.mock-priority {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-left: auto;
}

.mock-priority.high { background: var(--red); }
.mock-priority.medium { background: var(--amber); }

.mock-fab {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: var(--teal);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 300;
    margin-left: auto;
    margin-top: 8px;
    box-shadow: 0 2px 8px rgba(20,184,166,0.3);
}

.mock-status {
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    flex-shrink: 0;
}

.mock-status.ok { background: rgba(20,184,166,0.12); color: var(--teal); }
.mock-status.soon { background: rgba(245,158,11,0.12); color: var(--amber); }
.mock-status.expired { background: rgba(239,68,68,0.1); color: var(--red); }

.mock-summary {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    padding: 10px;
    background: var(--bg);
    border-radius: 10px;
}

.mock-summary-item {
    flex: 1;
    text-align: center;
}

.mock-summary-item small {
    display: block;
    font-size: 0.58rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.mock-summary-item strong {
    font-size: 0.9rem;
    color: var(--teal);
}

.mock-amount {
    font-weight: 700;
    font-size: 0.72rem;
    color: var(--teal);
    flex-shrink: 0;
    margin-left: auto;
}

.mock-stars {
    color: var(--amber);
    font-size: 0.7rem;
    flex-shrink: 0;
    margin-left: auto;
}

/* ---- Extras grid ---- */
.extras {
    padding: 20px 0 40px;
}

.extras h2 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
}

.extras-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.extra-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.extra-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.extra-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.extra-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 600px) {
    .extras-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 400px) {
    .extras-grid { grid-template-columns: 1fr; }
}

/* Feature CTA */
.feat-cta {
    text-align: center;
    padding: 40px 0 60px;
}

.feat-cta h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feat-cta > p {
    color: var(--text-muted);
    margin-bottom: 8px;
}

.cta-btn {
    display: inline-block;
    background: var(--teal);
    color: #fff;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s;
    margin-top: 8px;
}

.cta-btn:hover { background: var(--teal-dark); }


/* ========================================
   HELP PAGE
   ======================================== */

.help-hero {
    text-align: center;
    padding: 60px 0 20px;
}

.help-hero h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.help-hero p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Table of contents */
.help-toc {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin: 32px 0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.help-toc h2 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--teal);
}

.help-toc ul {
    list-style: none;
    padding: 0;
    columns: 2;
    column-gap: 24px;
}

.help-toc li {
    break-inside: avoid;
    margin-bottom: 6px;
}

.help-toc a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 4px 0;
    display: block;
    transition: color 0.15s;
}

.help-toc a:hover {
    color: var(--teal);
}

@media (max-width: 480px) {
    .help-toc ul { columns: 1; }
}

/* Help sections */
.help-sections {
    padding-bottom: 60px;
}

.help-section {
    padding: 32px 0;
    border-bottom: 1px solid rgba(128,128,128,0.1);
    scroll-margin-top: calc(var(--nav-height) + 16px);
}

.help-section:last-child {
    border-bottom: none;
}

.help-section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--teal);
}

.help-section h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 10px;
}

.help-section p {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.help-section ul, .help-section ol {
    margin-bottom: 14px;
    padding-left: 24px;
}

.help-section li {
    margin-bottom: 6px;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.help-section li strong {
    color: var(--text);
}

.help-section a {
    color: var(--teal);
    text-decoration: none;
}

.help-section a:hover {
    text-decoration: underline;
}

/* Tip box */
.help-tip {
    background: rgba(20,184,166,0.06);
    border-left: 3px solid var(--teal);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 14px 18px;
    margin: 16px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.help-tip strong {
    color: var(--teal);
}

/* Text colour helpers */
.text-teal { color: var(--teal); }
.text-amber { color: var(--amber); }
.text-red { color: var(--red); }
.text-muted { color: var(--text-muted); }

/* Comparison table */
.help-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 20px 0;
}

.comparison-col {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.comparison-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.comparison-col ul {
    list-style: none;
    padding: 0;
}

.comparison-col li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.comparison-col li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
}

.premium-col {
    border: 2px solid var(--teal);
}

.premium-col h4 {
    color: var(--teal);
}

.help-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
}

/* FAQ */
.faq-item {
    margin-bottom: 24px;
}

.faq-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    margin-top: 0;
    color: var(--text);
}

.faq-item p {
    font-size: 0.92rem;
    color: var(--text-muted);
}

@media (max-width: 480px) {
    .help-comparison { grid-template-columns: 1fr; }
}


/* ========================================
   BLOG
   ======================================== */

.blog-hero {
    text-align: center;
    padding: 60px 0 20px;
}

.blog-hero h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.blog-hero p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Blog listing */
.blog-list {
    padding: 32px 0 60px;
}

.blog-card {
    display: block;
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 28px 28px 24px;
    margin-bottom: 20px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    text-decoration: none;
    color: var(--text);
    transition: box-shadow 0.2s, transform 0.2s;
}

.blog-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.blog-card h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.blog-card > p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 12px;
}

.blog-date {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.blog-read-more {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--teal);
}

/* Blog post */
.blog-post {
    padding: 24px 0 60px;
}

.blog-post-header {
    margin-bottom: 36px;
}

.blog-post-header h1 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 12px;
}

.blog-post-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.blog-body h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 16px;
    color: var(--teal);
}

.blog-body p {
    margin-bottom: 16px;
    font-size: 0.97rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.blog-body ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.blog-body li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.blog-body li strong {
    color: var(--text);
}

.blog-body a {
    color: var(--teal);
    text-decoration: none;
}

.blog-body a:hover {
    text-decoration: underline;
}

.blog-cta-box {
    background: var(--bg-card);
    border: 2px solid var(--teal);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    margin-top: 40px;
}

.blog-cta-box > p:first-child {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.blog-cta-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 12px;
}

.blog-cta-sub a {
    color: var(--teal);
    text-decoration: none;
}

.blog-cta-sub a:hover {
    text-decoration: underline;
}


/* ========================================
   SCREENSHOTS PAGE
   ======================================== */

.screenshots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 40px 0;
}

.screenshot-item {
    margin: 0;
    text-align: center;
}

.screenshot-item img {
    width: 100%;
    max-width: 280px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    border: 2px solid rgba(128,128,128,0.1);
}

.screenshot-item figcaption {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 600px) {
    .screenshots-grid { grid-template-columns: 1fr; }
}


/* ========================================
   PRICING PAGE
   ======================================== */

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    padding: 40px 0;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 32px 24px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    position: relative;
}

.pricing-card.premium {
    border: 2px solid var(--teal);
    box-shadow: 0 4px 24px rgba(20,184,166,0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: #fff;
    padding: 4px 16px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(128,128,128,0.1);
}

.pricing-card-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-card.premium .pricing-card-header h3 {
    color: var(--teal);
}

.pricing-amount {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
}

.pricing-card.premium .pricing-amount {
    color: var(--teal);
}

.pricing-period {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.pricing-savings {
    display: inline-block;
    margin-top: 8px;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    background: rgba(20,184,166,0.1);
    color: var(--teal);
}

.pricing-features {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.pricing-features li::before {
    position: absolute;
    left: 0;
    font-weight: 700;
}

.pricing-features li.included::before {
    content: "\2713";
    color: var(--teal);
}

.pricing-features li.coming-soon::before {
    content: "\25CB";
    color: var(--amber);
}

.pricing-features li.coming-soon::after {
    content: " (coming soon)";
    font-size: 0.75rem;
    color: var(--amber);
    font-style: italic;
}

.pricing-features li strong {
    color: var(--text);
}

/* Pricing FAQ */
.pricing-faq {
    padding: 20px 0 40px;
}

.pricing-faq h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

@media (max-width: 700px) {
    .pricing-cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .pricing-card.premium { order: -1; }
}
