/* ============================================================================
   List your tool — book-a-call page.
   Replaced the pricing cards on 2026-09-11: listings are now arranged on a
   call. A "Book a call" button links out to Calendly (the inline embed and
   agenda card were removed 2026-09-13). Hero follows the Good deals
   page. Uses the global theme tokens from /style.css.
   ============================================================================ */

.lyt-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 64px 0 96px;
}

/* ── Hero ─────────────────────────────────────────────────────────────── */
.lyt-hero {
    position: relative;          /* anchors the absolutely-positioned starfield */
    overflow: hidden;            /* orbits run up to ~1000px wide — clip them */
    padding: 24px 24px 8px;
    text-align: center;
}

/* The field is positioned with z-index 0, so it would paint over the in-flow
   copy. Lift every sibling above it, as on Good deals. */
.lyt-hero > :not(.stars-field) {
    position: relative;
    z-index: 1;
}

.lyt-eyebrow {
    font-family: "Geist", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    color: var(--muted);
    margin: 0 0 18px;
}

/* Circular photo. The panel background shows as a placeholder until the image loads. */
.lyt-avatar {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 24px;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    background: var(--panel-soft);
}

.lyt-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;             /* clip here so the LinkedIn badge can overhang */
    object-fit: cover;
    object-position: center 20%;   /* keep the face, not the sweater, in frame */
}

/* LinkedIn badge sitting on the bottom-right edge of the circle */
.lyt-avatar-linkedin {
    position: absolute;
    right: 4px;
    bottom: 4px;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 3px solid var(--bg, #111);
    border-radius: 50%;
    background: #0a66c2;
    color: #fff;
    transition: transform 0.15s ease;
}

.lyt-avatar-linkedin:hover,
.lyt-avatar-linkedin:focus-visible {
    transform: scale(1.08);
}

.lyt-title {
    font-family: "Geist", sans-serif;
    font-weight: 200;
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--text);
    margin: 0 auto 20px;
}

.lyt-subtitle {
    max-width: 54ch;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.6;
    margin: 0 auto 28px;
}

.lyt-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 999px;
    background: var(--text);
    color: var(--bg);
    font-family: "Geist", sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.lyt-book-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.lyt-book-btn:focus-visible {
    outline: 2px solid var(--text);
    outline-offset: 3px;
}

@media (max-width: 700px) {
    .lyt-main { padding: 40px 0 64px; }
    .lyt-hero { padding-inline: 0; }
}
