/* ============================================================
   SAYPH "START HERE" LINKS HUB  (/links)
   Scoped styles for links/index.html, links/v-hub.html and
   links/v-landing.html. Loaded AFTER main-v5.css, so it only
   needs the page-specific bits; brand tokens, buttons, header,
   footer, modal, testimonial and waitlist styles all come from
   main-v5.css. Everything here is prefixed `lh-` to stay scoped.
   ============================================================ */

/* The hub uses a minimal logo-only header, so push content below
   the fixed header and give the page a soft branded backdrop. */
.lh-main {
    padding-top: var(--header-height);
    background: linear-gradient(180deg, #f7f8fc 0%, #fff5f5 38%, #ffffff 100%);
    min-height: 100vh;
}

.lh-wrap {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Dismissible announcement strip (FEATURED.banner) -------- */
.lh-announce {
    background: var(--color-navy-dark);
    color: #fff;
}

.lh-announce-inner {
    max-width: 640px;
    margin: 0 auto;
    padding: 10px 44px 10px 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    text-align: center;
}

.lh-announce a.lh-announce-link {
    color: #fff;
    font-size: var(--font-size-sm);
    font-weight: 600;
    line-height: 1.4;
}

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

.lh-announce-eyebrow {
    display: inline-block;
    padding: 2px 9px;
    border-radius: var(--radius-full);
    background: var(--color-red);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.lh-announce-close {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    border-radius: var(--radius-full);
}

.lh-announce-close:hover { color: #fff; background: rgba(255,255,255,0.12); }

/* ---- Hero ---------------------------------------------------- */
.lh-hero {
    text-align: center;
    padding: 36px 0 8px;
}

.lh-hero-logo {
    height: 40px;
    width: auto;
    margin: 0 auto 22px;
}

.lh-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    margin-bottom: 18px;
    border-radius: var(--radius-full);
    background: var(--color-bg-warm);
    color: var(--color-red);
    border: 1px solid rgba(254, 87, 87, 0.18);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.lh-hero h1 {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-navy-dark);
    margin-bottom: 14px;
}

.lh-hero-sub {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 30em;
    margin: 0 auto 8px;
}

.lh-hero-support {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin: 0 auto 24px;
}

.lh-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 380px;
    margin: 0 auto;
}

.lh-hero-actions .btn { width: 100%; }

/* ---- Featured card (FEATURED.card, above Most Popular) ------- */
.lh-featured {
    display: block;
    margin: 8px 0 4px;
    padding: 20px 22px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
    color: #fff;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}

.lh-featured:hover { transform: translateY(-2px); box-shadow: var(--shadow-xl); }

.lh-featured-eyebrow {
    display: inline-block;
    padding: 3px 10px;
    margin-bottom: 10px;
    border-radius: var(--radius-full);
    background: var(--color-red);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.lh-featured-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.lh-featured-label .lh-arrow { color: #fff; flex-shrink: 0; }

/* ---- Sections ----------------------------------------------- */
.lh-section { padding: 22px 0 4px; }

.lh-section-title {
    font-size: var(--font-size-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin: 0 0 14px 4px;
}

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

/* ---- Link cards --------------------------------------------- */
.lh-card {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-height: 60px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    color: var(--color-navy-dark);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.lh-card:hover,
.lh-card:focus-visible {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(254, 87, 87, 0.4);
}

.lh-card-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border-radius: var(--radius-sm);
    background: var(--color-bg-warm);
}

.lh-card-body { flex: 1; min-width: 0; }

.lh-card-label {
    display: block;
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--color-navy-dark);
    line-height: 1.35;
}

.lh-card-desc {
    display: block;
    margin-top: 2px;
    font-size: var(--font-size-sm);
    font-weight: 400;
    color: var(--color-text-muted);
    line-height: 1.45;
}

.lh-card-badge {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    background: var(--color-red);
    color: #fff;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    vertical-align: middle;
}

.lh-arrow {
    flex-shrink: 0;
    color: var(--color-text-muted);
    transition: transform var(--transition), color var(--transition);
}

.lh-card:hover .lh-arrow { color: var(--color-red); transform: translateX(3px); }

/* Primary-emphasis card (e.g. Get a Sayph phone) */
.lh-card--primary {
    background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
    border-color: var(--color-red);
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.lh-card--primary .lh-card-label,
.lh-card--primary .lh-arrow { color: #fff; }

.lh-card--primary .lh-card-desc { color: rgba(255,255,255,0.88); }

.lh-card--primary .lh-card-icon { background: rgba(255,255,255,0.18); }

.lh-card--primary .lh-card-badge { background: #fff; color: var(--color-red-dark); }

.lh-card--primary:hover { border-color: #fff; filter: brightness(1.03); }

.lh-card--primary:hover .lh-arrow { color: #fff; }

/* "Most Popular" section gets slightly larger, more prominent cards */
.lh-section--popular .lh-card { min-height: 68px; padding: 18px 20px; }
.lh-section--popular .lh-card-label { font-size: var(--font-size-lg); }

/* ---- Compact mode (Concept 1 - Link Hub) -------------------- */
/* Hides descriptions and icons for the tightest, most Linktree-like
   scan, while reusing the exact same config and renderer. */
.lh-compact .lh-card-desc { display: none; }
.lh-compact .lh-card-icon {
    width: 34px; height: 34px; font-size: 1.1rem;
}
.lh-compact .lh-card { min-height: 56px; }
.lh-compact .lh-section--popular .lh-card-label { font-size: var(--font-size-base); }

/* ---- Trust / press logos row -------------------------------- */
.lh-trust-note {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    text-align: center;
    margin: 4px 0 0;
}

/* ---- Waiting-list block spacing ----------------------------- */
.lh-waitlist {
    margin: 36px 0 8px;
}

.lh-waitlist .waitlist-card { box-shadow: var(--shadow-md); }

.lh-waitlist-intro {
    text-align: center;
    margin-bottom: 18px;
}

.lh-waitlist-intro .section-label { display: inline-block; margin-bottom: 8px; }

.lh-waitlist-intro h2 {
    font-size: clamp(1.4rem, 5vw, 1.9rem);
    color: var(--color-navy-dark);
    margin-bottom: 8px;
}

.lh-waitlist-intro p {
    color: var(--color-text-muted);
    max-width: 32em;
    margin: 0 auto;
}

/* ---- Footer mini links / social ----------------------------- */
.lh-footer {
    text-align: center;
    padding: 40px 0 56px;
}

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

.lh-footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: #fff;
    border: 1px solid var(--color-border);
    color: var(--color-navy);
    transition: all var(--transition);
}

.lh-footer-social a:hover {
    color: var(--color-red);
    border-color: rgba(254, 87, 87, 0.4);
    transform: translateY(-2px);
}

.lh-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 18px;
    font-size: var(--font-size-sm);
    margin-bottom: 14px;
}

.lh-footer-links a, .lh-footer-links button {
    color: var(--color-text-muted);
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
    padding: 0;
}

.lh-footer-links a:hover, .lh-footer-links button:hover { color: var(--color-red); }

.lh-footer-copy {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

/* ============================================================
   CONCEPT 3 - MINI LANDING PAGE (v-landing.html)
   Reuses main-v5.css section/testimonial classes; only the
   page-specific tiles and price callout live here.
   ============================================================ */
.lh-landing-hero {
    text-align: center;
    padding: 40px 0 16px;
}

.lh-landing-hero h1 {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-navy-dark);
    margin-bottom: 14px;
}

.lh-tiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 8px 0;
}

.lh-tile {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 18px 16px;
    box-shadow: var(--shadow-sm);
}

.lh-tile-icon {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--color-bg-warm);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.lh-tile h3 {
    font-size: var(--font-size-base);
    color: var(--color-navy-dark);
    margin-bottom: 4px;
}

.lh-tile p {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: 1.5;
}

.lh-price {
    text-align: center;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 26px 22px;
    margin: 18px 0;
}

.lh-price-amount {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--color-navy-dark);
    line-height: 1;
}

.lh-price-amount span { font-size: 1.2rem; vertical-align: super; }

.lh-price-sub {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin: 8px 0 18px;
}

.lh-landing-section { padding: 26px 0 6px; }

.lh-landing-section > .lh-section-title { text-align: center; margin-left: 0; }

/* ---- Reduced motion ----------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    .lh-card, .lh-featured, .lh-arrow, .lh-footer-social a, .lh-card--primary {
        transition: none;
    }
    .lh-card:hover, .lh-featured:hover, .lh-footer-social a:hover { transform: none; }
}

/* ---- Wider screens: keep the column but breathe a little ----- */
@media (min-width: 700px) {
    .lh-hero { padding-top: 48px; }
    .lh-section--popular .lh-list { gap: 14px; }
}
