/* ============================================================
   BURGI GARDEN — Landing page
   "Verdant Luxury" — exclusive dark-forest marketing page
   Relies on tokens from variables.css
   ============================================================ */

.lp {
    /* Same typeface as the app (Inter); kept as a var so heading styles read clearly */
    --serif: var(--font-sans);
    font-family: var(--font-sans);   /* landing doesn't load main.css, so set base font here */
    font-size: 16px;
    line-height: 1.6;
    background: var(--gradient-body);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
}
.lp code, .lp pre, .lp .lp-mock-bar .url { font-family: var(--font-mono); }
.lp * { box-sizing: border-box; }
.lp ::selection { background: rgba(16, 185, 129, 0.35); color: #fff; }

/* Ambient flora shapes / glow blobs behind everything */
.lp-ambient {
    position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.lp-blob {
    position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.22;
}
.lp-blob.b1 { width: 540px; height: 540px; top: -160px; right: -120px;
    background: radial-gradient(circle, var(--accent-emerald), transparent 70%); }
.lp-blob.b2 { width: 460px; height: 460px; top: 40%; left: -160px;
    background: radial-gradient(circle, var(--accent-gold), transparent 70%); opacity: 0.14; }
.lp-blob.b3 { width: 420px; height: 420px; bottom: -140px; right: 10%;
    background: radial-gradient(circle, var(--accent-bloom), transparent 70%); opacity: 0.12; }
.lp-leaf {
    position: absolute; color: rgba(16, 185, 129, 0.06);
    animation: lp-float 14s ease-in-out infinite;
}
.lp-leaf .material-symbols-outlined { font-size: 120px; }
.lp-leaf.l1 { top: 12%; left: 6%; }
.lp-leaf.l2 { top: 60%; right: 8%; animation-delay: -5s; color: rgba(224,179,65,0.05); }
.lp-leaf.l3 { bottom: 14%; left: 12%; animation-delay: -9s; color: rgba(255,111,181,0.05); }
@keyframes lp-float { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-26px) rotate(8deg); } }

/* ── Top nav ── */
.lp-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px clamp(20px, 5vw, 56px);
    transition: background var(--transition-slow), backdrop-filter var(--transition-slow), border-color var(--transition-slow);
    border-bottom: 1px solid transparent;
}
.lp-nav.scrolled {
    background: rgba(7, 20, 14, 0.78); backdrop-filter: var(--glass-blur);
    border-bottom-color: var(--glass-border);
}
.lp-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text-primary); }
.lp-brand .mark {
    width: 38px; height: 38px; display: grid; place-items: center; font-size: 20px;
    border-radius: 11px; background: rgba(16,185,129,0.12); border: 1px solid var(--glass-border);
    box-shadow: var(--glow-emerald);
}
.lp-brand .name { font-weight: 800; letter-spacing: 3px; font-size: 15px; }
.lp-brand .name small { display: block; font-weight: 500; letter-spacing: 4px; font-size: 10px;
    color: var(--accent-gold); text-transform: uppercase; }
.lp-nav-links { display: flex; align-items: center; gap: 28px; }
/* The CTA button in the nav is also an <a>; keep its dark-on-emerald text
   (the generic nav-link color below is more specific and would wash it out). */
.lp-nav-links a.lp-btn-primary, .lp-nav-links a.lp-btn-primary:hover { color: #04130C; }
.lp-nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 14px; font-weight: 500;
    transition: color var(--transition-fast); }
.lp-nav-links a:hover { color: var(--text-primary); }
.lp-nav-links a.hide-sm { }
@media (max-width: 820px) { .lp-nav-links a.hide-sm { display: none; } }

/* ── Buttons ── */
.lp-btn {
    display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
    padding: 12px 22px; border-radius: var(--radius-pill); font-weight: 600; font-size: 14px;
    text-decoration: none; border: 1px solid transparent; transition: all var(--transition-normal);
    white-space: nowrap;
}
.lp-btn .material-symbols-outlined { font-size: 18px; }
.lp-btn-primary {
    background: linear-gradient(135deg, var(--accent-emerald), #0E9E70);
    color: #04130C; box-shadow: var(--glow-emerald);
}
.lp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 28px rgba(16,185,129,0.5); }
.lp-btn-ghost { background: rgba(255,255,255,0.04); color: var(--text-primary); border-color: var(--glass-border); backdrop-filter: var(--glass-blur); }
.lp-btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(16,185,129,0.4); }
.lp-btn-gold {
    background: linear-gradient(135deg, var(--accent-gold), #CFA033); color: #1B1402; box-shadow: var(--glow-gold);
}
.lp-btn-gold:hover { transform: translateY(-2px); box-shadow: 0 0 28px rgba(224,179,65,0.5); }
.lp-btn-lg { padding: 15px 30px; font-size: 15px; }

/* ── Layout helpers ── */
.lp-wrap { position: relative; z-index: 1; }
.lp-section { max-width: 1200px; margin: 0 auto; padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 56px); }
.lp-eyebrow {
    display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase; color: var(--accent-gold);
    margin-bottom: 18px;
}
.lp-eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--accent-gold); opacity: 0.7; }
.lp-h2 { font-family: var(--serif); font-size: clamp(30px, 4.5vw, 52px); font-weight: 600; line-height: 1.1; letter-spacing: 0.5px; }
.lp-h2 em { font-style: italic; color: var(--accent-emerald); }
.lp-lead { color: var(--text-secondary); font-size: clamp(15px, 1.6vw, 18px); max-width: 620px; margin-top: 16px; }
.lp-hairline { height: 1px; border: 0; background: linear-gradient(90deg, transparent, rgba(224,179,65,0.4), transparent); margin: 0; }

/* ── HERO ── */
.lp-hero { position: relative; min-height: 100vh; display: flex; align-items: center; isolation: isolate; }
.lp-hero-bg {
    position: absolute; inset: 0; z-index: -2;
    background-size: cover; background-position: center; background-repeat: no-repeat;
    transform: scale(1.05); animation: lp-kenburns 24s ease-in-out infinite alternate;
}
@keyframes lp-kenburns { from { transform: scale(1.05) translateY(0); } to { transform: scale(1.14) translateY(-12px); } }
.lp-hero-fade {
    position: absolute; inset: 0; z-index: -1;
    background:
      linear-gradient(180deg, rgba(7,20,14,0.55) 0%, rgba(7,20,14,0.35) 35%, rgba(7,20,14,0.85) 80%, var(--bg-deepest) 100%),
      linear-gradient(100deg, rgba(7,20,14,0.92) 0%, rgba(7,20,14,0.45) 55%, transparent 100%);
}
.lp-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 4vw, 64px); align-items: center;
    max-width: 1280px; margin: 0 auto; padding: 120px clamp(20px, 5vw, 56px) 80px; width: 100%; }
.lp-hero-title { font-family: var(--serif); font-weight: 600; font-size: clamp(40px, 6.5vw, 78px); line-height: 1.02; letter-spacing: 0.5px; }
.lp-hero-title .grad { background: linear-gradient(120deg, var(--accent-lime), var(--accent-emerald) 50%, var(--accent-gold)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.lp-hero-title em { font-style: italic; color: var(--accent-bloom); }
.lp-hero-sub { margin-top: 22px; font-size: clamp(15px, 1.7vw, 19px); color: var(--text-secondary); max-width: 540px; }
.lp-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.lp-hero-stats { display: flex; gap: 30px; margin-top: 42px; flex-wrap: wrap; }
.lp-hero-stats .s strong { font-family: var(--serif); font-size: 30px; font-weight: 600; color: var(--text-primary); display: block; line-height: 1; }
.lp-hero-stats .s span { font-size: 12px; color: var(--text-muted); letter-spacing: 0.5px; }
.lp-hero-stats .s b { color: var(--accent-emerald); }

/* floating plant / bed chips — float in FRONT of the app preview */
.lp-chips { position: absolute; inset: 0; z-index: 4; pointer-events: none; }
.lp-chip {
    position: absolute; display: inline-flex; align-items: center; gap: 7px;
    padding: 8px 14px; border-radius: var(--radius-pill);
    background: rgba(10, 26, 18, 0.72); border: 1px solid rgba(16,185,129,0.22);
    backdrop-filter: var(--glass-blur); font-size: 13px; font-weight: 500; color: var(--text-primary);
    box-shadow: 0 12px 38px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
    animation: lp-bob 7s ease-in-out infinite; white-space: nowrap;
}
.lp-chip .material-symbols-outlined { font-size: 16px; }
.lp-chip.bloom { color: var(--accent-bloom); } .lp-chip.bloom .material-symbols-outlined { color: var(--accent-bloom); }
.lp-chip.water { color: var(--accent-sky); } .lp-chip.water .material-symbols-outlined { color: var(--accent-sky); }
.lp-chip.leaf  .material-symbols-outlined { color: var(--accent-emerald); }
.lp-chip.gold  { color: var(--accent-gold); } .lp-chip.gold .material-symbols-outlined { color: var(--accent-gold); }
.lp-chip.c1 { top: 11%; right: 4%;  animation-delay: 0s; }
.lp-chip.c2 { top: 22%; right: 31%; animation-delay: -1.2s; }
.lp-chip.c3 { top: 43%; right: 1%;  animation-delay: -2.4s; }
.lp-chip.c4 { top: 59%; right: 27%; animation-delay: -3.6s; }
.lp-chip.c5 { top: 35%; right: 46%; animation-delay: -4.6s; }
.lp-chip.c6 { top: 77%; right: 7%;  animation-delay: -5.6s; }
.lp-chip.c7 { top: 86%; right: 33%; animation-delay: -6.4s; }
@media (max-width: 1200px) { .lp-chip.c5 { display: none; } }
@media (max-width: 980px) { .lp-chips { display: none; } }
@keyframes lp-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* small reassurance line under the hero CTA */
.lp-hero-note { margin-top: 16px; font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 7px; }

/* ── Mock app screens ── */
.lp-mock {
    border-radius: 14px; overflow: hidden; background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(16,185,129,0.06);
}
.lp-mock-bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: var(--bg-deep); border-bottom: 1px solid rgba(255,255,255,0.05); }
.lp-mock-bar i { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.lp-mock-bar i:nth-child(1) { background: #FF6B6B; } .lp-mock-bar i:nth-child(2) { background: #E0B341; } .lp-mock-bar i:nth-child(3) { background: #39FF14; }
.lp-mock-bar .url { margin-left: 12px; font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); }
.lp-mock-body { padding: 18px; }

/* Real production screenshot slot: <img> replaces the styled mock once it loads */
.lp-mock .shot-img { display: none; width: 100%; height: auto; vertical-align: bottom; }
.lp-mock.has-shot .shot-img { display: block; }
.lp-mock.has-shot .shot-fallback { display: none; }
.lp-hero-mock { transform: perspective(1600px) rotateY(-9deg) rotateX(3deg); transition: transform var(--transition-slow); }
.lp-hero-mock:hover { transform: perspective(1600px) rotateY(-3deg) rotateX(1deg); }
@media (max-width: 980px) { .lp-hero-grid { grid-template-columns: 1fr; } .lp-hero-mock { transform: none; } }

/* mini UI primitives inside mocks */
.m-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.m-card { background: var(--bg-elevated); border: 1px solid rgba(255,255,255,0.05); border-radius: 10px; padding: 12px 14px; }
.m-label { font-size: 11px; color: var(--text-muted); letter-spacing: 0.4px; }
.m-big { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--text-primary); }
.m-chip { font-size: 10.5px; padding: 3px 9px; border-radius: var(--radius-pill); font-weight: 600; }
.m-chip.ok { background: rgba(57,255,20,0.14); color: var(--accent-lime); }
.m-chip.warn { background: rgba(224,179,65,0.16); color: var(--accent-gold); }
.m-chip.bad { background: rgba(224,122,95,0.16); color: var(--accent-clay); }
.m-chip.water { background: rgba(56,189,248,0.14); color: var(--accent-sky); }
.m-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.m-grid3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.m-thumb { aspect-ratio: 1; border-radius: 9px; background: linear-gradient(135deg, #1B3326, #0E2017); display: grid; place-items: center; color: var(--accent-emerald); }
.m-thumb .material-symbols-outlined { font-size: 26px; }
.m-thumb.bloom { color: var(--accent-bloom); background: linear-gradient(135deg, #2a1622, #160e14); }
.m-bars { display: flex; align-items: flex-end; gap: 7px; height: 90px; margin-top: 10px; }
.m-bars .bar { flex: 1; border-radius: 5px 5px 0 0; background: linear-gradient(180deg, var(--accent-sky), rgba(56,189,248,0.25)); position: relative; }
.m-bars .bar.et { background: linear-gradient(180deg, var(--accent-clay), rgba(224,122,95,0.25)); }
.m-legend { display: flex; gap: 16px; margin-top: 10px; font-size: 11px; color: var(--text-secondary); }
.m-legend i { width: 9px; height: 9px; border-radius: 2px; display: inline-block; margin-right: 5px; }
.m-bubble { max-width: 86%; padding: 9px 13px; border-radius: 13px; font-size: 12.5px; line-height: 1.45; }
.m-bubble.bot { background: var(--bg-elevated); border: 1px solid rgba(16,185,129,0.18); border-bottom-left-radius: 4px; color: var(--text-primary); }
.m-bubble.me { background: linear-gradient(135deg, var(--accent-emerald), #0E9E70); color: #04130C; margin-left: auto; border-bottom-right-radius: 4px; font-weight: 500; }
/* Ferdinand "thinking" preview bubble */
.m-bubble.lp-thinking { display: inline-flex; align-items: center; gap: 7px; color: var(--text-secondary); }
.lp-think-ic { font-size: 16px; color: var(--accent-emerald); animation: lp-dig 1.1s ease-in-out infinite; }
.lp-dots { display: inline-block; width: 1.1em; text-align: left; }
.lp-dots::after { content: '…'; animation: lp-dots-anim 1.4s steps(1, end) infinite; }
@keyframes lp-dots-anim { 0% { content: '.'; } 33% { content: '..'; } 66%, 100% { content: '…'; } }
@keyframes lp-dig { 0%, 100% { transform: rotate(-12deg); } 50% { transform: rotate(12deg); } }
@media (prefers-reduced-motion: reduce) { .lp-think-ic { animation: none; } .lp-dots::after { animation: none; } }

/* Dashboard-faithful mock: welcome banner + weather + forecast + water balance */
.mk-banner { background: radial-gradient(120% 150% at 0% 0%, rgba(16,185,129,0.16), transparent 55%), var(--bg-elevated); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 14px 15px; }
.mk-greet { font-size: 17px; font-weight: 700; color: var(--text-primary); }
.mk-greet span { color: var(--accent-emerald); }
.mk-sub { font-size: 11px; color: var(--text-muted); margin-top: 1px; }
.mk-now { display: flex; align-items: center; gap: 11px; margin-top: 12px; padding: 9px 12px; border-radius: 10px;
    background: rgba(56,189,248,0.07); border: 1px solid rgba(56,189,248,0.16); }
.mk-now .emoji { font-size: 30px; line-height: 1; }
.mk-now .temp { font-size: 23px; font-weight: 700; color: var(--text-primary); line-height: 1.05; }
.mk-now .lbl { font-size: 10.5px; color: var(--text-secondary); }
.mk-now .meta { font-size: 10px; color: var(--text-muted); white-space: nowrap; }
.mk-fc { display: flex; gap: 6px; margin-top: 9px; }
.mk-fc .d { flex: 1; text-align: center; padding: 7px 2px; border-radius: 9px; background: var(--bg-card); border: 1px solid rgba(255,255,255,0.04); }
.mk-fc .dow { font-size: 9px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .4px; }
.mk-fc .em { font-size: 15px; margin: 2px 0; }
.mk-fc .t { font-size: 10px; color: var(--text-primary); font-weight: 600; }
.mk-fc .t span { color: var(--text-muted); font-weight: 400; }
.mk-fc .p { font-size: 8.5px; color: var(--accent-sky); min-height: 11px; }
.mk-wb { display: flex; align-items: center; gap: 10px; margin-top: 10px; padding: 9px 12px; border-radius: 10px;
    background: rgba(224,179,65,0.08); border: 1px solid rgba(224,179,65,0.2); }
.mk-wb .material-symbols-outlined { color: var(--accent-gold); font-size: 22px; }
.mk-wb .num { font-size: 18px; font-weight: 700; color: var(--text-primary); }
.mk-wb .verdict { font-size: 11px; color: var(--accent-gold); font-weight: 600; }
.mk-wb .detail { font-size: 10px; color: var(--text-muted); margin-top: 1px; }
.mk-water { display: flex; align-items: center; gap: 8px; margin-top: 10px; padding: 9px 12px; border-radius: 10px;
    font-size: 12px; color: var(--text-secondary); background: rgba(56,189,248,0.06); border: 1px solid rgba(56,189,248,0.14); }
.mk-water .material-symbols-outlined { font-size: 18px; color: var(--accent-sky); }
.mk-water strong { color: var(--text-primary); }

/* ── Feature grid ── */
.lp-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
@media (max-width: 900px) { .lp-features { grid-template-columns: 1fr; } }
.lp-feature {
    position: relative; background: var(--bg-card); border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg); padding: 26px; overflow: hidden;
    transition: transform var(--transition-normal), border-color var(--transition-normal);
}
.lp-feature:hover { transform: translateY(-4px); border-color: rgba(16,185,129,0.3); }
.lp-feature .ic { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px;
    background: rgba(16,185,129,0.1); color: var(--accent-emerald); border: 1px solid var(--glass-border); }
.lp-feature .ic .material-symbols-outlined { font-size: 26px; }
.lp-feature.water .ic { background: rgba(56,189,248,0.1); color: var(--accent-sky); }
.lp-feature.heal  .ic { background: rgba(224,122,95,0.1); color: var(--accent-clay); }
.lp-feature.bloom .ic { background: rgba(255,111,181,0.1); color: var(--accent-bloom); }
.lp-feature.gold  .ic { background: rgba(224,179,65,0.1); color: var(--accent-gold); }
.lp-feature h3 { font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.lp-feature p { font-size: 14px; color: var(--text-secondary); }

/* ── Showcase (alternating) ── */
.lp-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: center; margin-top: 50px; }
.lp-showcase + .lp-showcase { margin-top: clamp(50px, 7vw, 90px); }
.lp-showcase.rev .lp-showcase-text { order: 2; }
@media (max-width: 900px) { .lp-showcase, .lp-showcase.rev .lp-showcase-text { grid-template-columns: 1fr; order: 0; } }
.lp-showcase-text h3 { font-family: var(--serif); font-size: clamp(24px, 3vw, 34px); font-weight: 600; color: var(--text-primary); margin-bottom: 12px; }
.lp-tick { list-style: none; margin: 16px 0 0; padding: 0; }
.lp-tick li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; color: var(--text-secondary); font-size: 14px; }
.lp-tick li .material-symbols-outlined { font-size: 18px; color: var(--accent-emerald); margin-top: 1px; }

/* ── Ferdinand (dominant) ── */
.lp-ferdinand { position: relative; }
.lp-ferdinand-inner {
    position: relative; border-radius: 26px; overflow: hidden;
    background: radial-gradient(120% 120% at 0% 0%, rgba(16,185,129,0.16), transparent 55%), var(--bg-card);
    border: 1px solid var(--glass-border);
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(24px, 4vw, 56px);
    padding: clamp(30px, 5vw, 64px); align-items: center;
}
@media (max-width: 900px) { .lp-ferdinand-inner { grid-template-columns: 1fr; text-align: center; } }
.lp-ferdinand-photo { position: relative; justify-self: center; }
.lp-ferdinand-photo img { width: clamp(180px, 22vw, 280px); height: clamp(180px, 22vw, 280px); object-fit: cover; border-radius: 50%;
    border: 3px solid rgba(16,185,129,0.4); box-shadow: 0 0 50px rgba(16,185,129,0.4); position: relative; z-index: 1; }
.lp-ferdinand-photo .ring { position: absolute; inset: -16px; border-radius: 50%; border: 1px dashed rgba(224,179,65,0.4); animation: lp-spin 30s linear infinite; }
@keyframes lp-spin { to { transform: rotate(360deg); } }
.lp-ferdinand h2 { font-family: var(--serif); font-size: clamp(30px, 4vw, 46px); font-weight: 600; color: var(--text-primary); }
.lp-ferdinand h2 em { font-style: italic; color: var(--accent-emerald); }
.lp-ferdinand .tag { color: var(--accent-gold); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; font-size: 12px; }
.lp-ferdinand p { color: var(--text-secondary); font-size: 15px; margin-top: 14px; max-width: 560px; }
.lp-tech-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
@media (max-width: 900px) { .lp-tech-badges { justify-content: center; } }
.lp-tech-badge { display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px; border-radius: var(--radius-pill);
    background: var(--bg-elevated); border: 1px solid rgba(255,255,255,0.07); font-size: 13px; font-weight: 600; color: var(--text-primary); }
.lp-tech-badge .material-symbols-outlined { font-size: 17px; color: var(--accent-emerald); }
.lp-tech-badge.tg .material-symbols-outlined { color: var(--accent-sky); }
.lp-tech-badge.n8n .material-symbols-outlined { color: var(--accent-bloom); }

/* ── Notion / tech strip ── */
.lp-stack { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.lp-stack .pill { display: inline-flex; align-items: center; gap: 9px; padding: 11px 18px; border-radius: var(--radius-pill);
    background: var(--bg-card); border: 1px solid rgba(255,255,255,0.07); font-size: 14px; color: var(--text-primary); font-weight: 500; }
.lp-stack .pill .material-symbols-outlined { font-size: 18px; color: var(--accent-gold); }

/* ── CTA Burgi ── */
.lp-burgi { text-align: center; }
.lp-burgi-card {
    position: relative; max-width: 760px; margin: 0 auto; padding: clamp(36px, 5vw, 64px);
    border-radius: 24px; overflow: hidden;
    background: radial-gradient(130% 130% at 50% 0%, rgba(224,179,65,0.14), transparent 60%), var(--bg-card);
    border: 1px solid rgba(224,179,65,0.22); box-shadow: 0 30px 90px rgba(0,0,0,0.5);
}
.lp-burgi-card .avatar { width: 104px; height: 104px; border-radius: 50%; margin: 0 auto 18px; display: block;
    object-fit: cover; border: 2px solid var(--accent-gold); box-shadow: var(--glow-gold); }
.lp-burgi-card h2 { font-family: var(--serif); font-size: clamp(26px, 3.4vw, 38px); font-weight: 600; color: var(--text-primary); }
.lp-burgi-card p { color: var(--text-secondary); margin: 14px auto 26px; max-width: 520px; }

/* ── Footer ── */
.lp-footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 34px clamp(20px, 5vw, 56px); text-align: center; position: relative; z-index: 1; }
.lp-footer .small { color: var(--text-muted); font-size: 13px; }
.lp-footer a { color: var(--accent-emerald); text-decoration: none; }
.lp-footer a:hover { text-decoration: underline; }

/* reveal on scroll */
.lp-reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.lp-reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .lp-reveal { opacity: 1; transform: none; }
    .lp-hero-bg, .lp-leaf, .lp-chip, .lp-ferdinand-photo .ring { animation: none; }
}
