/* ============================================================
   JIL Technology — Landing Page
   Loaded after styles.css, only on index.html.
   All classes are lp-* to avoid touching shared styles.
   ============================================================ */

:root {
    --lp-grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    --lp-font-accent: 'Fraunces', Georgia, serif;
    --lp-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --lp-gray: #6b645c;       /* AA-contrast body gray on cream/white */
    --lp-gold-text: #8a6a20;  /* AA-contrast gold for small text on cream/white */
}

/* ============ SHARED PRIMITIVES ============ */

.lp-kicker {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--lp-gold-text);
    margin-bottom: 18px;
}

.lp-kicker-gold { color: var(--gold); }

.lp-h2 {
    font-size: clamp(1.9rem, 3.6vw, 2.75rem);
    letter-spacing: -0.025em;
    line-height: 1.08;
    margin-bottom: 18px;
}

.lp-section-head {
    max-width: 640px;
    margin-bottom: 56px;
}

.lp-section-head-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.lp-sub {
    color: var(--lp-gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

.lp-center {
    text-align: center;
    margin-top: 52px;
}

/* Buttons */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    border-radius: 12px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform 0.25s var(--lp-ease), box-shadow 0.25s var(--lp-ease), background-color 0.25s, border-color 0.25s, color 0.25s;
    white-space: nowrap;
}

.lp-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.lp-btn-lg { padding: 18px 36px; font-size: 1.05rem; }

.lp-btn-gold {
    background: linear-gradient(160deg, var(--gold-light), var(--gold));
    color: var(--navy-dark);
    box-shadow: 0 6px 24px rgba(196, 154, 60, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.lp-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(196, 154, 60, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.lp-btn-ghost {
    background: rgba(255, 255, 255, 0.02);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(4px);
}

.lp-btn-ghost:hover {
    background: var(--white);
    color: var(--navy-dark);
    border-color: var(--white);
    transform: translateY(-2px);
}

.lp-btn-navy {
    background: var(--navy-dark);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.lp-btn-navy:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--navy);
}

.lp-btn-navy svg { transition: transform 0.25s var(--lp-ease); }
.lp-btn-navy:hover svg { transform: translateX(4px); }

.lp-btn:focus-visible,
.lp-dogs-link:focus-visible,
.lp-area:focus-visible {
    outline: 2px solid var(--navy-dark);
    outline-offset: 3px;
}

.lp-hero .lp-btn:focus-visible,
.lp-final .lp-btn:focus-visible {
    outline-color: var(--gold-light);
}

/* ============ HERO ============ */

.lp-hero {
    position: relative;
    background:
        radial-gradient(1100px 520px at 78% -10%, rgba(196, 154, 60, 0.13), transparent 65%),
        radial-gradient(800px 600px at -10% 110%, rgba(30, 68, 113, 0.55), transparent 60%),
        var(--navy-dark);
    color: var(--white);
    padding: 165px 0 0;
    overflow: hidden;
}

.lp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(196, 154, 60, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(196, 154, 60, 0.05) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, black 30%, transparent 75%);
    mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, black 30%, transparent 75%);
    pointer-events: none;
}

.lp-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--lp-grain);
    opacity: 0.05;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.lp-hero-glow {
    position: absolute;
    top: 12%;
    right: 4%;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(196, 154, 60, 0.14) 0%, transparent 65%);
    pointer-events: none;
}

.lp-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
    padding-bottom: 110px;
}

.lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold-light);
    margin-bottom: 26px;
}

.lp-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(196, 154, 60, 0.18);
    animation: lpPulse 2.4s ease-in-out infinite;
}

@keyframes lpPulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(196, 154, 60, 0.22); }
    50% { box-shadow: 0 0 0 8px rgba(196, 154, 60, 0); }
}

.lp-h1 {
    font-size: clamp(2.7rem, 5.2vw, 4.35rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.04;
    letter-spacing: -0.035em;
    margin-bottom: 26px;
}

.lp-actually {
    font-family: var(--lp-font-accent);
    font-style: italic;
    font-weight: 500;
    color: var(--gold-light);
    letter-spacing: -0.01em;
    padding-right: 0.04em;
}

.lp-quickly {
    position: relative;
    display: inline-block;
    color: var(--gold);
}

.lp-quickly-stroke {
    position: absolute;
    left: -2%;
    bottom: -0.28em;
    width: 104%;
    height: 0.32em;
    color: var(--gold);
    opacity: 0.85;
}

.lp-lede {
    font-size: 1.13rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.68);
    max-width: 500px;
    margin-bottom: 36px;
}

.lp-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 30px;
}

.lp-cta-row-center { justify-content: center; }

.lp-hero-proof {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    padding: 0;
    margin: 0;
}

.lp-hero-proof li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
}

.lp-hero-proof svg {
    width: 15px;
    height: 15px;
    color: var(--gold);
    flex-shrink: 0;
}

/* Hero entrance */
.lp-hero-anim {
    opacity: 0;
    animation: lpRise 0.8s var(--lp-ease) forwards;
    animation-delay: calc(var(--d, 0) * 0.11s + 0.05s);
}

@keyframes lpRise {
    from { opacity: 0; transform: translateY(26px); }
    to { opacity: 1; transform: translateY(0); }
}

/* LCP candidates paint from the first frame and only slide in */
.lp-h1.lp-hero-anim,
.lp-lede.lp-hero-anim {
    opacity: 1;
    animation-name: lpRiseSlide;
    animation-fill-mode: both;
}

@keyframes lpRiseSlide {
    from { transform: translateY(26px); }
    to { transform: translateY(0); }
}

/* --- Chat card --- */

.lp-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.lp-chat {
    position: relative;
    width: min(440px, 100%);
    background: var(--off-white);
    border-radius: 20px;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.45),
        0 12px 28px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.08);
    transform: rotate(-1.6deg);
    margin: 0;
    animation: lpCard 0.9s var(--lp-ease) 0.35s both;
}

@keyframes lpCard {
    from { opacity: 0; transform: rotate(-1.6deg) translateY(36px) scale(0.97); }
    to { opacity: 1; transform: rotate(-1.6deg) translateY(0) scale(1); }
}

.lp-chat-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--gray-light);
}

.lp-chat-dots { display: flex; gap: 6px; }

.lp-chat-dots i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-light);
}

.lp-chat-dots i:nth-child(1) { background: #e8847c; }
.lp-chat-dots i:nth-child(2) { background: #ecc06b; }
.lp-chat-dots i:nth-child(3) { background: #8fc78f; }

.lp-chat-title {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy-dark);
    flex: 1;
}

.lp-chat-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--success);
}

.lp-chat-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--success);
    animation: lpPulse 2s ease-in-out infinite;
}

.lp-chat-body {
    padding: 22px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-msg {
    max-width: 82%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.93rem;
    line-height: 1.5;
    opacity: 0;
    animation: lpMsg 0.5s var(--lp-ease) forwards;
    animation-delay: calc(0.9s + var(--m, 0) * 0.75s);
}

@keyframes lpMsg {
    from { opacity: 0; transform: translateY(14px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.lp-msg p { margin: 0 0 4px; }

.lp-msg time {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    opacity: 0.6;
}

.lp-msg-them {
    align-self: flex-start;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-bottom-left-radius: 4px;
    color: var(--gray-dark);
}

.lp-msg-us {
    align-self: flex-end;
    background: linear-gradient(160deg, var(--navy-light), var(--navy-dark));
    border-bottom-right-radius: 4px;
    color: rgba(255, 255, 255, 0.94);
}

.lp-msg-us time { color: var(--gold-light); opacity: 0.9; }

.lp-chat-meta {
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    padding: 9px 18px;
    border-radius: 100px;
    background: rgba(196, 154, 60, 0.14);
    border: 1px solid rgba(196, 154, 60, 0.35);
    color: var(--gold-dark);
    font-size: 0.82rem;
    font-weight: 600;
    opacity: 0;
    animation: lpMsg 0.5s var(--lp-ease) forwards;
    animation-delay: calc(0.9s + var(--m, 0) * 0.75s);
}

.lp-chat-meta svg { width: 15px; height: 15px; }
.lp-chat-meta strong { color: var(--navy-dark); }

/* Rotating stamp badge — anchored to the chat card's top-right corner */
.lp-stamp {
    position: absolute;
    top: -38px;
    right: -26px;
    width: 110px;
    height: 110px;
    z-index: 2;
    opacity: 0;
    animation: lpStampIn 0.7s var(--lp-ease) 1.2s forwards;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
}

@keyframes lpStampIn {
    from { opacity: 0; transform: scale(0.6) rotate(-30deg); }
    to { opacity: 1; transform: scale(1) rotate(0deg); }
}

.lp-stamp svg {
    width: 100%;
    height: 100%;
}

.lp-stamp-coin { fill: var(--navy-light); }

.lp-stamp-ring {
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.5;
}

.lp-stamp-ring-inner {
    stroke-width: 1;
    stroke-dasharray: 1.5 3;
    opacity: 0.7;
}

.lp-stamp-spin {
    animation: lpSpin 28s linear infinite;
    transform-origin: center;
    transform-box: view-box;
}

@keyframes lpSpin {
    to { transform: rotate(360deg); }
}

.lp-stamp text {
    fill: var(--gold-light);
    font-family: var(--font-body);
    font-size: 10.2px;
    font-weight: 800;
}

.lp-stamp-bolt { fill: var(--gold); }

/* --- Marquee --- */

.lp-marquee {
    position: relative;
    z-index: 2;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, var(--gold-dark));
    border-top: 1px solid rgba(11, 26, 46, 0.18);
    padding: 13px 0;
    overflow: hidden;
}

.lp-marquee-track {
    display: flex;
    width: max-content;
    animation: lpMarquee 36s linear infinite;
}

.lp-marquee:hover .lp-marquee-track { animation-play-state: paused; }

@keyframes lpMarquee {
    to { transform: translateX(-50%); }
}

.lp-marquee-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.lp-marquee-group span,
.lp-marquee-group i {
    font-family: var(--font-heading);
    font-size: 0.86rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--navy-dark);
    white-space: nowrap;
    padding: 0 18px;
    font-style: normal;
}

.lp-marquee-group i {
    padding: 0;
    font-size: 0.7rem;
    opacity: 0.55;
}

.lp-marquee-em {
    font-family: var(--lp-font-accent) !important;
    font-style: italic !important;
    text-transform: none !important;
    letter-spacing: 0.02em !important;
    font-weight: 600 !important;
}

/* ============ PAIN vs FIX ============ */

.lp-pain {
    background: var(--cream);
    padding: 110px 0;
}

.lp-pain-rows {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 840px;
}

.lp-pain-row {
    display: grid;
    grid-template-columns: 0.9fr 56px 1.25fr;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 14px;
    padding: 22px 30px;
    transition: transform 0.3s var(--lp-ease), border-color 0.3s, box-shadow 0.3s;
}

.lp-pain-row:hover {
    transform: translateX(8px);
    border-color: rgba(196, 154, 60, 0.5);
    box-shadow: var(--shadow-md);
}

.lp-pain-no {
    font-size: 1.05rem;
    color: var(--gray);
    text-decoration: line-through;
    text-decoration-color: rgba(201, 65, 60, 0.65);
    text-decoration-thickness: 1.5px;
}

.lp-pain-arrow {
    color: var(--gold);
    display: flex;
    justify-content: center;
}

.lp-pain-arrow svg { width: 36px; height: 16px; }

.lp-pain-yes {
    font-size: 1.1rem;
    color: var(--navy-dark);
}

.lp-pain-yes strong {
    font-weight: 700;
    box-shadow: inset 0 -0.45em rgba(196, 154, 60, 0.28);
}

/* ============ PROMISE (giant 15) ============ */

.lp-promise {
    position: relative;
    background:
        radial-gradient(900px 500px at 15% 20%, rgba(30, 68, 113, 0.5), transparent 60%),
        var(--navy-dark);
    color: var(--white);
    padding: 120px 0;
    overflow: hidden;
}

.lp-promise::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--lp-grain);
    opacity: 0.05;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.lp-promise-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(40px, 7vw, 100px);
    align-items: center;
}

.lp-promise-num {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 0.8;
}

.lp-fifteen {
    font-family: var(--font-heading);
    font-size: clamp(9rem, 24vw, 22rem);
    font-weight: 800;
    letter-spacing: -0.06em;
    color: transparent;
    -webkit-text-stroke: 4px var(--gold);
    text-stroke: 4px var(--gold);
    filter: drop-shadow(0 0 34px rgba(196, 154, 60, 0.25));
}

.lp-fifteen-unit {
    margin-top: 20px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    text-align: center;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.65);
}

.lp-promise-copy .lp-h2 { color: var(--white); }

.lp-promise-copy p {
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.75;
    margin-bottom: 16px;
    max-width: 560px;
}

.lp-promise-strong {
    font-family: var(--lp-font-accent);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--gold-light) !important;
}

.lp-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
    padding-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    max-width: 560px;
}

.lp-stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.7rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -0.02em;
}

.lp-stat-label {
    display: block;
    margin-top: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.55);
}

/* ============ SERVICES ============ */

.lp-services {
    background: var(--cream);
    padding: 110px 0 120px;
}

.lp-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.lp-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 16px;
    padding: 30px 26px;
    transition: transform 0.3s var(--lp-ease), border-color 0.3s, box-shadow 0.3s;
}

.lp-card:hover {
    transform: translateY(-5px);
    border-color: rgba(196, 154, 60, 0.55);
    box-shadow: var(--shadow-lg);
}

.lp-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 13px;
    background: var(--navy-dark);
    color: var(--gold);
    margin-bottom: 20px;
    transition: transform 0.3s var(--lp-ease);
}

.lp-card:hover .lp-card-icon { transform: scale(1.08) rotate(-4deg); }

.lp-card-icon svg { width: 24px; height: 24px; }

.lp-card h3 {
    font-size: 1.08rem;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.lp-card h3 a {
    color: inherit;
    text-decoration: none;
}

.lp-card h3 a:hover { color: var(--gold-dark); }
.lp-card-dark h3 a:hover { color: var(--gold-light); }

.lp-card h3 a:focus-visible {
    outline: 2px solid var(--navy-dark);
    outline-offset: 3px;
}

.lp-card-dark h3 a:focus-visible { outline-color: var(--gold-light); }

.lp-card p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--lp-gray);
    margin: 0;
}

/* Builder cards */
.lp-build { margin-top: 64px; }

.lp-build-label {
    text-align: center;
    font-size: 1.05rem;
    color: var(--lp-gray);
    margin-bottom: 24px;
}

.lp-build-label strong {
    color: var(--navy-dark);
    box-shadow: inset 0 -0.45em rgba(196, 154, 60, 0.28);
}

.lp-build-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.lp-card-dark {
    position: relative;
    background:
        radial-gradient(420px 220px at 100% 0%, rgba(196, 154, 60, 0.12), transparent 60%),
        var(--navy-dark);
    border-color: rgba(196, 154, 60, 0.2);
    overflow: hidden;
}

.lp-card-dark:hover { border-color: rgba(196, 154, 60, 0.6); }

.lp-card-dark .lp-card-icon {
    background: rgba(196, 154, 60, 0.14);
    border: 1px solid rgba(196, 154, 60, 0.3);
}

.lp-card-dark h3 { color: var(--white); }
.lp-card-dark p { color: rgba(255, 255, 255, 0.6); }

/* ============ STEPS ============ */

.lp-steps {
    background: var(--white);
    padding: 110px 0;
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
}

.lp-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1040px;
    margin: 0 auto;
}

.lp-step {
    position: relative;
    padding: 12px 40px 0;
}

.lp-step + .lp-step { border-left: 1px dashed var(--gray-light); }

.lp-step-num {
    display: block;
    font-family: var(--lp-font-accent);
    font-style: italic;
    font-size: 4.6rem;
    font-weight: 500;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--gold);
    text-stroke: 1.5px var(--gold);
    margin-bottom: 18px;
}

.lp-step h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.lp-step p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--lp-gray);
    margin: 0;
}

/* ============ TESTIMONIALS ============ */

.lp-quotes {
    background: var(--cream);
    padding: 110px 0 130px;
}

.lp-quotes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: start;
}

.lp-quote {
    position: relative;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 18px;
    padding: 36px 30px 30px;
    margin: 0;
    transition: transform 0.35s var(--lp-ease), box-shadow 0.35s;
}

.lp-quote:nth-child(1) { transform: rotate(-1.4deg); }
.lp-quote:nth-child(2) { transform: rotate(0.9deg) translateY(14px); }
.lp-quote:nth-child(3) { transform: rotate(-0.7deg); }

.lp-quote:hover {
    transform: rotate(0deg) translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.lp-quote::before {
    content: '\201C';
    position: absolute;
    top: -8px;
    left: 18px;
    font-family: var(--lp-font-accent);
    font-style: italic;
    font-size: 7rem;
    line-height: 1;
    color: rgba(196, 154, 60, 0.22);
    pointer-events: none;
}

.lp-quote-stars {
    color: var(--gold);
    font-size: 0.95rem;
    letter-spacing: 5px;
    margin-bottom: 16px;
}

.lp-quote blockquote {
    font-family: var(--lp-font-accent);
    font-style: italic;
    font-weight: 400;
    font-size: 1.12rem;
    line-height: 1.6;
    color: var(--navy-dark);
    margin: 0 0 24px;
}

.lp-quote figcaption {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    line-height: 1.45;
    color: var(--lp-gray);
}

.lp-quote figcaption strong { color: var(--navy-dark); }

.lp-quote-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--navy-dark);
    color: var(--gold);
    font-family: var(--font-heading);
    font-weight: 700;
    flex-shrink: 0;
}

/* ============ TRANSPARENCY ============ */

.lp-open {
    position: relative;
    background: var(--navy-dark);
    color: var(--white);
    padding: 110px 0 120px;
    overflow: hidden;
}

.lp-open::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--lp-grain);
    opacity: 0.045;
    mix-blend-mode: overlay;
    pointer-events: none;
}

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

.lp-open .lp-h2 { color: var(--white); }

.lp-open-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    overflow: hidden;
}

.lp-open-item {
    background: var(--navy-dark);
    padding: 38px 36px;
    transition: background 0.3s;
}

.lp-open-item:hover { background: rgba(255, 255, 255, 0.04); }

.lp-open-icon {
    display: inline-flex;
    color: var(--gold);
    margin-bottom: 18px;
}

.lp-open-icon svg { width: 28px; height: 28px; }

.lp-open-item h3 {
    font-size: 1.12rem;
    color: var(--white);
    margin-bottom: 8px;
}

.lp-open-item p {
    font-size: 0.93rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

/* ============ LOCAL + DOGS ============ */

.lp-local {
    background: var(--cream);
    padding: 110px 0;
}

.lp-local-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.lp-actually-dark {
    font-family: var(--lp-font-accent);
    font-style: italic;
    font-weight: 500;
    color: var(--gold-dark);
}

.lp-local-copy > p {
    color: var(--gray-dark);
    line-height: 1.75;
    max-width: 540px;
    margin-bottom: 28px;
}

.lp-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
}

.lp-area {
    padding: 8px 18px;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy-dark);
    transition: border-color 0.25s, transform 0.25s var(--lp-ease), box-shadow 0.25s;
}

.lp-area:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Dogs aside */
.lp-dogs {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 20px;
    padding: 36px 32px;
    text-align: center;
    transform: rotate(1.2deg);
    transition: transform 0.35s var(--lp-ease), box-shadow 0.35s;
}

.lp-dogs:hover {
    transform: rotate(0deg);
    box-shadow: var(--shadow-lg);
}

.lp-dogs-photos {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.lp-dogs-photos img {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
    background-color: var(--cream);
}

.lp-dogs-photos img:nth-child(1) { transform: rotate(-6deg); }
.lp-dogs-photos img:nth-child(2) { margin-left: -16px; transform: rotate(3deg) translateY(-6px); z-index: 1; }
.lp-dogs-photos img:nth-child(3) { margin-left: -16px; transform: rotate(7deg); }

.lp-dogs h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.lp-dogs p {
    font-size: 0.92rem;
    color: var(--lp-gray);
    margin-bottom: 16px;
}

.lp-dogs-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--lp-gold-text);
}

.lp-dogs-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.25s var(--lp-ease);
}

.lp-dogs-link:hover svg { transform: translateX(4px); }

/* ============ FINAL CTA ============ */

.lp-final {
    background: var(--cream);
    padding: 30px 0 120px;
}

.lp-final-card {
    position: relative;
    background:
        radial-gradient(700px 320px at 50% -20%, rgba(196, 154, 60, 0.18), transparent 65%),
        var(--navy-dark);
    border: 1px solid rgba(196, 154, 60, 0.35);
    border-radius: 26px;
    padding: clamp(48px, 7vw, 84px) clamp(24px, 5vw, 80px);
    text-align: center;
    overflow: hidden;
}

.lp-final-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--lp-grain);
    opacity: 0.05;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.lp-final-card > * { position: relative; z-index: 1; }

.lp-final-card .lp-h2 {
    color: var(--white);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.lp-final-card p {
    color: rgba(255, 255, 255, 0.65);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

/* ============ SCROLL REVEAL ============ */

[data-reveal],
[data-reveal-group] > * {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--lp-ease), transform 0.7s var(--lp-ease);
}

/* No-JS fallback: if landing.js never runs, everything stays visible */
html:not(.js) [data-reveal],
html:not(.js) [data-reveal-group] > * {
    opacity: 1;
    transform: none;
    transition: none;
}

[data-reveal].is-in,
[data-reveal-group].is-in > * {
    opacity: 1;
    transform: none;
}

/* preserve testimonial tilt after reveal */
[data-reveal-group].is-in > .lp-quote:nth-child(1) { transform: rotate(-1.4deg); }
[data-reveal-group].is-in > .lp-quote:nth-child(2) { transform: rotate(0.9deg) translateY(14px); }
[data-reveal-group].is-in > .lp-quote:nth-child(3) { transform: rotate(-0.7deg); }
[data-reveal-group].is-in > .lp-quote:hover { transform: rotate(0deg) translateY(-4px); }

[data-reveal-group] > *:nth-child(1) { transition-delay: 0.05s; }
[data-reveal-group] > *:nth-child(2) { transition-delay: 0.12s; }
[data-reveal-group] > *:nth-child(3) { transition-delay: 0.19s; }
[data-reveal-group] > *:nth-child(4) { transition-delay: 0.26s; }
[data-reveal-group] > *:nth-child(5) { transition-delay: 0.33s; }
[data-reveal-group] > *:nth-child(6) { transition-delay: 0.4s; }
[data-reveal-group] > *:nth-child(7) { transition-delay: 0.47s; }
[data-reveal-group] > *:nth-child(8) { transition-delay: 0.54s; }
[data-reveal-group] > *:nth-child(9) { transition-delay: 0.61s; }
[data-reveal-group] > *:nth-child(10) { transition-delay: 0.68s; }
[data-reveal-group] > *:nth-child(11) { transition-delay: 0.75s; }
[data-reveal-group] > *:nth-child(12) { transition-delay: 0.82s; }

/* ============ REDUCED MOTION ============ */

@media (prefers-reduced-motion: reduce) {
    .lp-hero-anim,
    .lp-msg,
    .lp-chat,
    .lp-chat-meta,
    .lp-stamp {
        animation: none;
        opacity: 1;
    }

    .lp-stamp-spin { animation: none; }
    .lp-marquee-track { animation: none; }
    .lp-eyebrow-dot, .lp-chat-status i { animation: none; }

    [data-reveal],
    [data-reveal-group] > * {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Landing-scoped: pull the dog-photos button into the warm navy/gold family */
body.lp .btn-sparkle {
    background: #c2703f;
    box-shadow: 0 2px 12px rgba(194, 112, 63, 0.25);
}

body.lp .btn-sparkle:hover {
    background: #a85c2e;
    box-shadow: 0 4px 20px rgba(194, 112, 63, 0.35);
}

/* ============ RESPONSIVE ============ */

@media (max-width: 1100px) {
    .lp-services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .lp-hero-copy .btn-sparkle-mobile {
        display: inline-flex;
        align-items: center;
        min-height: 44px;
        padding: 10px 34px 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 1024px) {
    .lp-hero { padding-top: 140px; }

    .lp-hero-grid {
        grid-template-columns: 1fr;
        gap: 70px;
        padding-bottom: 90px;
    }

    .lp-hero-copy { text-align: center; }
    .lp-lede { margin-left: auto; margin-right: auto; }
    .lp-cta-row { justify-content: center; }
    .lp-hero-proof { justify-content: center; }

    .lp-promise-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .lp-promise-copy p { margin-left: auto; margin-right: auto; }
    .lp-stats { margin-left: auto; margin-right: auto; }
    .lp-section-head { margin-left: auto; margin-right: auto; text-align: center; }
    .lp-pain-rows { margin: 0 auto; }

    .lp-local-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .lp-local-copy { text-align: center; }
    .lp-local-copy > p { margin-left: auto; margin-right: auto; }
    .lp-areas { justify-content: center; }
    .lp-dogs { max-width: 420px; margin: 0 auto; }
}

@media (max-width: 900px) {
    .lp-build-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }

    .lp-quotes-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
        gap: 22px;
    }

    .lp-quote:nth-child(2) { transform: rotate(0.9deg); }
    [data-reveal-group].is-in > .lp-quote:nth-child(2) { transform: rotate(0.9deg); }

    .lp-steps-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        gap: 40px;
    }

    .lp-step { padding: 0; }
    .lp-step + .lp-step {
        border-left: none;
        border-top: 1px dashed var(--gray-light);
        padding-top: 36px;
    }

    .lp-open-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
    .lp-pain-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 22px 24px;
    }

    .lp-pain-arrow { display: none; }

    .lp-pain-no { font-size: 0.92rem; }

    /* bottom corner on phones — the top corner would cover the chat header */
    .lp-stamp {
        width: 88px;
        height: 88px;
        top: auto;
        bottom: -30px;
        right: -8px;
    }

    .lp-stats { gap: 16px; }
    .lp-stat-num { font-size: 2.1rem; }
    .lp-stat-label { font-size: 0.7rem; letter-spacing: 0.07em; }
}

@media (max-width: 600px) {
    .lp-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .lp-card { padding: 22px 16px; }
    .lp-card-icon { width: 42px; height: 42px; margin-bottom: 14px; }
    .lp-card h3 { font-size: 1rem; }
    .lp-card p { font-size: 0.88rem; }

    .lp-pain, .lp-steps, .lp-local { padding: 72px 0; }
    .lp-promise { padding: 80px 0; }
    .lp-services { padding: 72px 0 80px; }
    .lp-quotes { padding: 72px 0 84px; }
    .lp-open { padding: 72px 0 80px; }
    .lp-hero-grid { padding-bottom: 70px; }
    .lp-build { margin-top: 48px; }

    .lp-hero-proof {
        flex-direction: column;
        align-items: center;
        row-gap: 8px;
    }

    .lp-hero { padding-top: 120px; }

    .lp-cta-row .lp-btn { width: 100%; }

    .lp-btn-lg { padding: 16px 28px; }

    .lp-chat { transform: rotate(0deg); }

    @keyframes lpCard {
        from { opacity: 0; transform: translateY(36px) scale(0.97); }
        to { opacity: 1; transform: translateY(0) scale(1); }
    }

    .lp-fifteen { -webkit-text-stroke-width: 2px; }

    .lp-open-item { padding: 30px 26px; }

    .lp-final { padding-bottom: 90px; }
}
