/* Shared styling for the two sending-domain landing pages.
   Self-contained on purpose: these pages live on getlyreleads.com and
   trylyreleads.com, so they cannot reference lyreleads.com's stylesheets
   without creating a cross-origin dependency that breaks the page if the
   main site moves. Palette and type match the Scandi theme. */

:root {
    --page-bg: #FCFCFD;
    --card-bg: #FFFFFF;
    --primary-text: #111827;
    --secondary-text: #5B6472;
    --page-border: rgba(0, 0, 0, 0.08);
    --accent: #D14D6A;
    --accent-soft: rgba(209, 77, 106, 0.08);
    --good: #10B981;
    --max: 940px;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    background: var(--page-bg);
    color: var(--primary-text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

header.site {
    border-bottom: 1px solid var(--page-border);
    padding: 18px 0;
    background: var(--card-bg);
}
header.site .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; }
.brand span { color: var(--accent); }

h1 {
    font-size: clamp(2rem, 5vw, 2.9rem);
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin: 0 0 18px;
    font-weight: 700;
}
h2 {
    font-size: clamp(1.35rem, 3vw, 1.7rem);
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
    font-weight: 650;
}
h3 { font-size: 1.05rem; margin: 0 0 8px; font-weight: 650; }

p { margin: 0 0 16px; }
.lede { font-size: 1.15rem; color: var(--secondary-text); max-width: 62ch; }
.muted { color: var(--secondary-text); }
.small { font-size: 0.9rem; }

section { padding: 52px 0; border-bottom: 1px solid var(--page-border); }
section.hero { padding: 72px 0 60px; border-bottom: 1px solid var(--page-border); }

.grid { display: grid; gap: 18px; }
@media (min-width: 720px) { .grid.two { grid-template-columns: 1fr 1fr; } }

.card {
    background: var(--card-bg);
    border: 1px solid var(--page-border);
    border-radius: 10px;
    padding: 20px 22px;
}

ul.plain { margin: 0 0 16px; padding-left: 20px; }
ul.plain li { margin-bottom: 8px; }

.cta {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 13px 24px;
    border-radius: 8px;
    border: 1px solid var(--accent);
}
.cta:hover { filter: brightness(0.94); }
.cta.ghost { background: transparent; color: var(--accent); }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 22px; }

a { color: var(--accent); }

table.facts { border-collapse: collapse; width: 100%; font-size: 0.95rem; }
table.facts th, table.facts td {
    text-align: left; padding: 9px 12px; border-bottom: 1px solid var(--page-border); vertical-align: top;
}
table.facts th { font-weight: 650; width: 34%; }
.table-scroll { overflow-x: auto; }

.note {
    background: var(--accent-soft);
    border-left: 3px solid var(--accent);
    padding: 14px 18px;
    border-radius: 0 8px 8px 0;
    font-size: 0.94rem;
    margin: 20px 0;
}

footer.site { padding: 34px 0 48px; font-size: 0.9rem; color: var(--secondary-text); }
footer.site a { color: var(--secondary-text); }

/* --- Figures inside a note ---------------------------------------------
   The two proof notes were a wall of prose with the numbers buried in it, so
   the thing a visitor should remember read the same as the sentence around it.
   These pull the figures out: big, in the accent colour, with the label under
   them, and an arrow between when the point is a comparison.

   Deliberately built from the existing tokens rather than a new palette, so a
   note still reads as part of the page and not as a banner someone dropped in. */

.note-figures {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin: 16px 0 14px;
}
.note-fig { display: flex; flex-direction: column; gap: 3px; text-align: center; min-width: 130px; }
.note-fig b {
    font-size: 2.5rem; font-weight: 700; line-height: 1;
    color: var(--primary-text);
    /* Digits line up so a pair reads as a comparison rather than two headlines. */
    font-variant-numeric: tabular-nums;
}
.note-fig span { font-size: 0.82rem; color: var(--secondary-text); line-height: 1.35; }
/* The figure the page is actually arguing for. */
.note-fig-hero b { color: var(--accent); font-size: 3.1rem; }
.note-fig-hero span { color: var(--primary-text); font-weight: 600; }
.note-vs { font-size: 1.3rem; color: var(--accent); opacity: 0.55; padding-bottom: 12px; }

@media (max-width: 540px) {
    /* Stacked, a sideways arrow points nowhere. */
    .note-figures { flex-direction: column; align-items: center; gap: 10px; }
    .note-vs { transform: rotate(90deg); padding: 0; }
    .note-fig b { font-size: 2.1rem; }
    .note-fig-hero b { font-size: 2.5rem; }
}
