/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --page-bg:      #0B0F14;
    --card-bg:      #141A22;
    --card-bg-hover:#1A2230;
    --card-border:  #1E2A36;
    --header-bg:    #080C12;
    --text-primary: #D8DEE4;
    --text-heading: #EEF1F5;
    --text-muted:   #8A96A4;
    --text-dim:     #4A5668;
    --gold:         #D4A843;
    --gold-light:   #E8C96A;
    --gold-glow:    rgba(212,168,67,0.12);
    --green:        #2E9B6B;
    --green-light:  #3DB87E;
    --green-glow:   rgba(46,155,107,0.2);
    --teal:         #3D8A9A;
    --wine:         #9B4050;
    --navy:         #0A1628;
    --deep-blue:    #0F1E38;
    --lake-blue:    #2E6B8A;
    --surface-alt:  #1E2830;
    --radius:       16px;
    --radius-sm:    10px;
}

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--page-bg);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
}

/* ── Typography ───────────────────────────────────── */
h1, h2, h3 { color: var(--text-heading); font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 1rem; letter-spacing: -0.01em; }
h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
p  { color: var(--text-muted); }

.gold   { color: var(--gold); }
.teal   { color: var(--teal); }
.green  { color: var(--green); }

/* ── Layout ───────────────────────────────────────── */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

section { padding: 88px 0; }

/* ── Nav ──────────────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(8,12,18,0.88);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-brand img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-brand-text .elevated {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
}

.nav-brand-text .fishing {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-heading);
}

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

.nav-links a.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-links a.nav-link:hover { color: var(--gold); }

nav a.cta-sm {
    background: var(--green);
    color: white;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: background 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

nav a.cta-sm:hover {
    background: var(--green-light);
    box-shadow: 0 0 20px var(--green-glow);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-muted);
    margin: 5px 0;
    transition: transform 0.3s, opacity 0.3s;
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
    padding-top: 140px;
    padding-bottom: 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(46,155,107,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(212,168,67,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 0%, rgba(46,107,138,0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0%   { opacity: 0.7; transform: translateX(-50%) scale(1); }
    100% { opacity: 1;   transform: translateX(-50%) scale(1.05); }
}

.hero .container { position: relative; z-index: 1; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(46,155,107,0.1);
    border: 1px solid rgba(46,155,107,0.25);
    color: var(--green-light);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.hero-logo {
    display: block;
    width: 200px;
    height: auto;
    margin: 0 auto 32px;
    filter: drop-shadow(0 8px 40px rgba(46,155,107,0.3));
}

.hero h1 .gradient {
    background: linear-gradient(135deg, var(--green), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .h1-subhead {
    display: block;
    margin-top: 18px;
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0;
}

/* Brand wordmark inside H1 — small eyebrow over the main copy. Keeps "Elevated Fishing" in the H1 for search indexability without dominating the visual. */
.hero h1 .h1-brand {
    display: block;
    font-size: clamp(0.7rem, 1.1vw, 0.85rem);
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 14px;
    opacity: 0.9;
}

.hero .subtitle {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--text-muted);
    max-width: 560px;
    margin: 24px auto 36px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--green), #28875D);
    color: white;
    padding: 16px 40px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 24px var(--green-glow), inset 0 1px 0 rgba(255,255,255,0.1);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(46,155,107,0.35), inset 0 1px 0 rgba(255,255,255,0.1);
}

/* Visually-similar Coming Soon button: no hover lift, no pointer, slightly muted. */
.cta-disabled,
.cta-disabled:hover {
    opacity: 0.85;
    cursor: default;
    transform: none;
    box-shadow: 0 4px 24px var(--green-glow), inset 0 1px 0 rgba(255,255,255,0.1);
}

/* Live "Get it on Google Play" badge — swaps in for .cta-disabled at launch. */
.store-badge {
    display: inline-block;
    line-height: 0;
    transition: transform 0.2s ease, filter 0.2s ease;
}
.store-badge img {
    width: 200px;
    height: auto;
    display: block;
}
.store-badge:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}
.store-badge:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 3px;
    border-radius: 10px;
}

/* Primary hero CTA — larger and softly glowing so it reads as THE action.
   Scoped to .hero, so footer / landing / blog badges stay at the default 200px. */
.hero .store-badge {
    filter: drop-shadow(0 8px 28px rgba(46,155,107,0.45));
}
.hero .store-badge:hover {
    filter: drop-shadow(0 10px 32px rgba(46,155,107,0.6)) brightness(1.06);
}
.hero .store-badge img {
    width: 248px;
}

.hero-platform {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-dim);
}
/* Make the free-trial hook pop next to the CTA — it's the strongest reason to tap. */
.hero-free {
    color: var(--green-light);
    font-weight: 700;
}

/* Sticky mobile install bar — base hidden; shown only on phones (see the ≤768px query). */
.mobile-install-bar { display: none; }

/* ── Notify-me mailto: outline secondary CTA paired with the Coming Soon button ── */
.notify-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 12px 28px;
    border: 1.5px solid var(--gold);
    border-radius: 12px;
    color: var(--gold);
    background: transparent;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.notify-cta:hover {
    background: var(--gold);
    color: var(--page-bg);
    transform: translateY(-1px);
}
.notify-cta:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 3px;
}
.notify-recipient {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: var(--gold-light);
    opacity: 0.85;
}

/* ── Notify Capture (compact, hero-adjacent) ──────── */
.notify-capture {
    margin: 28px auto 0;
    max-width: 460px;
    padding: 18px 20px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    text-align: left;
}

.notify-capture .notify-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.notify-capture .notify-help {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.notify-form {
    display: flex;
    gap: 8px;
}

.notify-form input[type=email] {
    flex: 1;
    min-width: 0;
    padding: 10px 14px;
    background: var(--page-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    color: var(--text-heading);
    font-size: 14px;
    font-family: inherit;
}

.notify-form input[type=email]:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px var(--green-glow);
}

.notify-form button {
    padding: 10px 20px;
    background: var(--green);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
    font-family: inherit;
}

.notify-form button:hover { background: var(--green-light); }

/* ── Screenshot Showcase ──────────────────────────── */
.screenshot-strip {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 64px;
    flex-wrap: wrap;
}

.phone-frame {
    width: 220px;
    height: 440px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 12px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.03);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.phone-frame:hover { transform: translateY(-8px); }
.phone-frame:nth-child(2) { transform: translateY(-12px); }
.phone-frame:nth-child(2):hover { transform: translateY(-20px); }

.phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Feature Grid ─────────────────────────────────── */
.features { background: var(--header-bg); }

.features-header {
    text-align: center;
    margin-bottom: 56px;
}

.features-header p {
    max-width: 520px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 28px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s, background 0.3s;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(46,155,107,0.3);
    background: var(--card-bg-hover);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 0 1px rgba(46,155,107,0.1);
}

.feature-icon {
    font-size: 28px;
    margin-bottom: 14px;
    display: block;
}

.feature-card h3 { color: var(--gold); }

.feature-card p {
    font-size: 14px;
    line-height: 1.65;
}

.feature-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, var(--green), var(--teal));
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ── More Features (collapsible) ──────────────────── */
.more-features {
    margin-top: 32px;
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    background: var(--card-bg);
    overflow: hidden;
}

.more-features summary {
    padding: 18px 24px;
    cursor: pointer;
    font-weight: 600;
    color: var(--gold);
    font-size: 15px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
}

.more-features summary::-webkit-details-marker { display: none; }

.more-features summary::after {
    content: '+';
    font-size: 22px;
    font-weight: 400;
    color: var(--text-muted);
    transition: transform 0.3s;
    line-height: 1;
}

.more-features[open] summary::after { content: '\2212'; }

.more-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    padding: 8px 24px 24px;
}

.more-feature {
    padding: 16px;
    border-radius: var(--radius-sm);
    background: var(--page-bg);
    border: 1px solid var(--card-border);
}

.more-feature h4 {
    color: var(--text-heading);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.more-feature p {
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-muted);
}

/* ── What We Don't Do ─────────────────────────────── */
.dont-do {
    background: var(--page-bg);
}

.dont-do-header {
    text-align: center;
    margin-bottom: 40px;
}

.dont-do-header h2 .gold { color: var(--gold); }

.dont-do-list {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.dont-do-item {
    padding: 22px 28px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-left: 3px solid var(--wine);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.dont-do-item .x {
    color: var(--wine);
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.dont-do-item strong {
    color: var(--text-heading);
    font-weight: 700;
}

.dont-do-item p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 15px;
}

/* ── How It Works ─────────────────────────────────── */
.how-it-works-header {
    text-align: center;
    margin-bottom: 56px;
}

.how-it-works-header p {
    max-width: 480px;
    margin: 0 auto;
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--green), var(--teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: white;
    box-shadow: 0 4px 20px var(--green-glow);
}

.step h3 {
    color: var(--text-heading);
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.step p {
    font-size: 14px;
    max-width: 260px;
    margin: 0 auto;
}

/* ── Highlight Row ────────────────────────────────── */
.highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.highlight.reverse { direction: rtl; }
.highlight.reverse > * { direction: ltr; }

.highlight-visual {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 9/16;
    max-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    margin: 0 auto;
    max-width: 260px;
    width: 100%;
    box-shadow: 0 12px 48px rgba(0,0,0,0.3);
    transition: transform 0.4s;
}

.highlight-visual:hover { transform: translateY(-6px); }

.highlight-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-text h2 { margin-bottom: 16px; }

.highlight-text p {
    font-size: 15px;
    margin-bottom: 12px;
    line-height: 1.7;
}

.highlight-text ul {
    list-style: none;
    margin-top: 16px;
}

.highlight-text ul li {
    padding: 7px 0;
    font-size: 14px;
    color: var(--text-muted);
}

.highlight-text ul li::before {
    content: '\2713';
    color: var(--green);
    font-weight: 700;
    margin-right: 10px;
}

/* ── Stats Bar ────────────────────────────────────── */
.stats-bar {
    background: linear-gradient(135deg, var(--deep-blue), var(--navy));
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(46,155,107,0.06), transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(212,168,67,0.05), transparent 60%);
    pointer-events: none;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
    text-align: center;
    padding: 28px 0;
    position: relative;
}

.stat-item h3 {
    font-size: 2.4rem;
    color: var(--gold);
    letter-spacing: -0.02em;
}

.stat-item p {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

/* ── Founder Section ──────────────────────────────── */
.founder {
    background: linear-gradient(180deg, var(--page-bg) 0%, var(--header-bg) 100%);
}

.founder-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 56px;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
}

.founder-photo {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    object-fit: cover;
    object-position: center 28%;
    box-shadow: 0 12px 48px rgba(0,0,0,0.4);
}

.founder-photo-placeholder {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 2px dashed var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    font-size: 12px;
    text-align: center;
    padding: 20px;
    line-height: 1.4;
}

.founder-text h2 { margin-bottom: 16px; }

.founder-text p {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 14px;
}

.founder-quote {
    margin-top: 32px;
    padding: 28px 32px;
    background: var(--card-bg);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-sm);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-style: italic;
    color: var(--text-heading);
    line-height: 1.5;
    position: relative;
}

.founder-quote::before {
    content: '\201C';
    position: absolute;
    top: -6px;
    left: 16px;
    font-size: 3.5rem;
    color: var(--gold);
    line-height: 1;
    font-style: normal;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .founder-photo, .founder-photo-placeholder {
        margin: 0 auto;
    }
}

/* ── FAQ ──────────────────────────────────────────── */
.faq { background: var(--header-bg); }

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item[open] { border-color: rgba(212,168,67,0.3); }

.faq-item summary {
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-heading);
    font-size: 16px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
    gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 22px;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    flex-shrink: 0;
}

.faq-item[open] summary::after { content: '\2212'; }

.faq-item .faq-body {
    padding: 0 24px 22px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item .faq-body p { margin-bottom: 10px; }
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* ── CTA Banner ───────────────────────────────────── */
.cta-banner {
    text-align: center;
    background: linear-gradient(180deg, var(--header-bg) 0%, var(--page-bg) 100%);
    position: relative;
}

.cta-banner h2 { margin-bottom: 12px; }

.cta-banner p {
    max-width: 480px;
    margin: 0 auto 32px;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-dim);
}

.cta-trust-item span:first-child {
    color: var(--green);
    font-size: 16px;
}

/* ── Footer ───────────────────────────────────────── */
footer {
    border-top: 1px solid var(--card-border);
    padding: 40px 0 32px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-bottom: 16px;
    font-size: 14px;
}

.footer-links a { color: var(--gold); }
.footer-links a:hover { color: var(--gold-light); }
.footer-links .sep { color: var(--text-dim); }

.footer-social {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.footer-social a:hover {
    color: var(--gold);
    border-color: rgba(212,168,67,0.3);
    background: var(--card-bg-hover);
}

.footer-contact {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.footer-contact a {
    color: var(--gold);
    text-decoration: none;
}

.footer-contact a:hover { color: var(--gold-light); }

footer p.copyright {
    font-size: 13px;
    color: var(--text-dim);
}

footer a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover { color: var(--gold-light); }

/* ── Scroll Animations ────────────────────────────── */
.fade-in-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card.fade-in-up:nth-child(2) { transition-delay: 0.06s; }
.feature-card.fade-in-up:nth-child(3) { transition-delay: 0.12s; }
.feature-card.fade-in-up:nth-child(4) { transition-delay: 0.18s; }
.feature-card.fade-in-up:nth-child(5) { transition-delay: 0.24s; }
.feature-card.fade-in-up:nth-child(6) { transition-delay: 0.30s; }
.feature-card.fade-in-up:nth-child(7) { transition-delay: 0.36s; }
.feature-card.fade-in-up:nth-child(8) { transition-delay: 0.42s; }
.feature-card.fade-in-up:nth-child(9) { transition-delay: 0.48s; }

.stat-item.fade-in-up:nth-child(2) { transition-delay: 0.1s; }
.stat-item.fade-in-up:nth-child(3) { transition-delay: 0.2s; }
.stat-item.fade-in-up:nth-child(4) { transition-delay: 0.3s; }
.stat-item.fade-in-up:nth-child(5) { transition-delay: 0.4s; }
.stat-item.fade-in-up:nth-child(6) { transition-delay: 0.5s; }

.step.fade-in-up:nth-child(2) { transition-delay: 0.15s; }
.step.fade-in-up:nth-child(3) { transition-delay: 0.30s; }
.step.fade-in-up:nth-child(4) { transition-delay: 0.45s; }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 768px) {
    .highlight {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .highlight.reverse { direction: ltr; }
    .screenshot-strip { gap: 12px; }
    .phone-frame {
        width: 155px;
        height: 310px;
    }
    .phone-frame:nth-child(2) { transform: translateY(-8px); }
    section { padding: 56px 0; }
    .feature-grid { grid-template-columns: 1fr; }
    .steps-row { grid-template-columns: 1fr 1fr; gap: 24px; }

    .nav-links a.nav-link { display: none; }
    .nav-toggle { display: block; }

    .nav-links.open {
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(8,12,18,0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 16px 24px;
        border-bottom: 1px solid var(--card-border);
        gap: 12px;
    }

    .nav-links.open a.nav-link {
        display: block;
        font-size: 15px;
        padding: 8px 0;
    }

    .cta-trust { gap: 16px; }

    .notify-form { flex-direction: column; }
    .notify-form button { width: 100%; }

    /* Lift the hero store badge above the mobile fold: smaller logo, tighter stack,
       less top padding. (Badge was rendering at y≈779 on an 844px phone.) */
    .hero { padding-top: 96px; padding-bottom: 64px; }
    .hero-logo { width: 112px; margin-bottom: 16px; }
    .hero-badge { margin-bottom: 16px; }
    .hero h1 .h1-subhead { margin-top: 12px; }
    .hero .subtitle { margin: 18px auto 24px; }

    /* Always-visible sticky install CTA on phones; own GoatCounter event play-home-sticky. */
    .mobile-install-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        position: fixed;
        left: 0; right: 0; bottom: 0;
        z-index: 200;
        padding: 10px 16px;
        padding-bottom: calc(10px + env(safe-area-inset-bottom));
        background: rgba(8,12,18,0.97);
        backdrop-filter: blur(12px);
        border-top: 1px solid var(--card-border);
        box-shadow: 0 -4px 24px rgba(0,0,0,0.45);
        text-decoration: none;
    }
    .mobile-install-text {
        font-size: 13px;
        font-weight: 600;
        line-height: 1.25;
        color: var(--green-light);
    }
    .mobile-install-btn {
        flex-shrink: 0;
        white-space: nowrap;
        background: linear-gradient(135deg, var(--green), #28875D);
        color: #fff;
        font-weight: 700;
        font-size: 14px;
        padding: 10px 18px;
        border-radius: 12px;
        box-shadow: 0 4px 16px var(--green-glow), inset 0 1px 0 rgba(255,255,255,0.12);
    }
    /* Keep the fixed bar from covering page-bottom content. */
    body { padding-bottom: 78px; }
}

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

/* ── Two Pillars ─────────────────────────────────── */
.pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 760px;
    margin: 0 auto;
}

.pillar {
    text-align: center;
    padding: 32px 24px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    transition: transform 0.3s, border-color 0.3s;
}

.pillar:hover {
    transform: translateY(-4px);
    border-color: rgba(212,168,67,0.3);
}

.pillar-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
}

.pillar h3 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.pillar p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}

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

/* ═══════════════════════════════════════════════════════════════════
   SHARED CONTENT-PAGE CLASSES
   Used by interior landing pages, the blog, and the legal pages.
   Added when the design system was extracted into this shared file.
   ═══════════════════════════════════════════════════════════════════ */

/* Interior page hero — same wordmark/heading rhythm as the homepage hero
   but without the animated radial glow (reserved for the homepage). */
.page-hero {
    padding-top: 128px;
    padding-bottom: 56px;
    text-align: center;
}

.page-hero .eyebrow {
    display: inline-block;
    font-size: clamp(0.7rem, 1.1vw, 0.85rem);
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 14px;
}

.page-hero h1 {
    max-width: 880px;
    margin: 0 auto;
}

.page-hero .subtitle {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--text-muted);
    max-width: 620px;
    margin: 22px auto 0;
}

/* Breadcrumb trail for interior + blog pages. */
.breadcrumb {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 8px; color: var(--text-dim); }

/* Long-form reading column. Used by the legal pages and any prose section. */
.prose {
    max-width: 760px;
    margin: 0 auto;
}

.prose h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 12px;
}

.prose h2 {
    font-size: 1.5rem;
    margin: 44px 0 14px;
    color: var(--gold);
}

.prose h3 {
    font-size: 1.15rem;
    margin: 26px 0 8px;
    color: var(--gold-light);
}

.prose p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.75;
}

.prose strong { color: var(--text-heading); }

.prose a { color: var(--gold); text-decoration: none; }
.prose a:hover { color: var(--gold-light); text-decoration: underline; }

.prose ul, .prose ol {
    list-style: none;
    margin: 0 0 18px 0;
}

.prose ul li, .prose ol li {
    padding: 5px 0 5px 24px;
    position: relative;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.65;
}

.prose ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

.prose .effective {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 28px;
}

/* Top padding so prose that follows the fixed nav (no hero) clears it. */
.content-top { padding-top: 116px; }

/* Answer-first callout for AEO pages — the quotable direct answer that
   AI engines and search snippets pull. Restated-question-first paragraph. */
.answer-box {
    max-width: 760px;
    margin: 0 auto 36px;
    padding: 24px 28px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-left: 4px solid var(--green);
    border-radius: var(--radius-sm);
}

.answer-box p {
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.answer-box .answer-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 8px;
}

/* Comparison table — zebra rows, horizontal scroll on small screens. */
.table-wrap {
    max-width: 880px;
    margin: 0 auto 24px;
    overflow-x: auto;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 520px;
}

.comparison-table th,
.comparison-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--card-border);
}

.comparison-table thead th {
    background: var(--header-bg);
    color: var(--text-heading);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.015); }
.comparison-table tbody td:first-child { color: var(--text-primary); font-weight: 600; }
.comparison-table .yes { color: var(--green-light); font-weight: 700; }
.comparison-table .no  { color: var(--wine); font-weight: 700; }

/* Blog / Field Notes index grid. */
.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.post-card {
    display: block;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 28px;
    text-decoration: none;
    transition: transform 0.3s, border-color 0.3s, background 0.3s;
}

.post-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212,168,67,0.3);
    background: var(--card-bg-hover);
}

.post-card h3 {
    color: var(--gold);
    font-size: 1.15rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.post-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.65;
}

.post-meta {
    display: block;
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

/* Centered CTA block reused on interior pages (Coming Soon mailto). */
.inline-cta {
    text-align: center;
    margin-top: 8px;
}
