/* ============================================================
 * Lampka Performance — Marketing site styles
 * Consumes tokens from ../../colors_and_type.css
 * ============================================================ */

* { box-sizing: border-box; }

html, body { margin:0; padding:0; background:#000; color:#fff; }
body { font-family: 'Poppins', system-ui, sans-serif; font-weight:400; -webkit-font-smoothing:antialiased; }

.lp-container { max-width:1280px; margin:0 auto; padding: 0 32px; }

/* ---------- Header ---------- */
.lp-header {
  position:sticky; top:0; z-index:50;
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 32px;
  background:rgba(0,0,0,0.78); backdrop-filter: blur(8px);
}
.lp-brand { display:flex; align-items:center; gap:12px; color:#fff; text-decoration:none; }
.lp-wm { font-weight:700; font-size:16px; letter-spacing:0.01em; color:#fff; }
.lp-nav { display:flex; gap:32px; }
.lp-nav a {
  position:relative; color:rgba(255,255,255,0.72); text-decoration:none;
  font-size:14px; font-weight:500; padding:6px 2px; transition:color .2s;
}
.lp-nav a:hover { color:#fff; }
/* Hand-drawn yellow underline — marker stroke, slightly wavy.
   Mirrors the brand voice: not a corpo underline, a marker on the page. */
.lp-nav a::after {
  content:""; position:absolute; left:-4px; right:-4px; bottom:-2px; height:8px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 8' preserveAspectRatio='none'><path d='M2 5 Q 20 1, 38 4 T 74 4 T 118 3' stroke='%23EFD500' stroke-width='3' fill='none' stroke-linecap='round'/></svg>");
  background-repeat:no-repeat; background-size:100% 100%;
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .25s cubic-bezier(.2,.7,.2,1);
}
.lp-nav a:hover::after, .lp-nav a.is-active::after { transform: scaleX(1); }

/* ---------- Buttons ---------- */
.lp-btn { display:inline-flex; align-items:center; gap:10px; padding:14px 24px; border-radius:999px;
          font-family:'Poppins',sans-serif; font-weight:600; font-size:15px; cursor:pointer; border:0;
          text-decoration:none; transition:background .2s, color .2s, transform .1s; }
.lp-btn-cta { background:#F39200; color:#fff; }
.lp-btn-cta:hover { background:#ED6B06; }
.lp-btn-cta:active { transform:scale(0.98); }
.lp-btn-ghost { background:transparent; color:#EFD500; border:2px solid #EFD500; padding:12px 22px; }
.lp-btn-ghost:hover { background:#EFD500; color:#000; }
.lp-arrow { font-weight:700; }

/* ---------- Sygnet helpers ---------- */
.lp-sygnet { display:inline-block; }
.lp-sygnet svg { display:block; width:100%; height:100%; }

/* ---------- Hero ---------- */
.lp-hero { position:relative; overflow:hidden; padding: 64px 0 32px; }
.lp-hero-inner {
  display:grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  column-gap:48px; row-gap:0;
  align-items:start;
}
.lp-hero-copy { min-width:0; grid-column:1; grid-row:1; }
.lp-hero-bottom { grid-column:1 / -1; grid-row:2; margin-top:0; text-align:center; }
.lp-hero-bottom .lp-lead { margin-left:auto; margin-right:auto; }
.lp-hero-bottom .lp-btn-row { justify-content:center; }
.lp-hero-bottom .lp-hero-channels { justify-content:center; }
.lp-hero-bottom .lp-hero-channels ul { justify-content:center; }
.lp-hero-top { display:contents; }

/* Portrait — transparent cutout PNG on a yellow lamp-glow + sygnet backdrop */
.lp-hero-portrait {
  position:relative; grid-column:2; grid-row:1;
  aspect-ratio: 1 / 1.15; width:100%; max-width:380px;
  justify-self:end; align-self:start;
  margin-top:-12px; margin-right:32px;
}
.lp-hero-portrait image-slot {
  position:relative; z-index:2; width:100%; height:100%; display:block;
  --is-frame-bg: transparent;
  --is-text: rgba(239,213,0,.85);
  --is-accent: #EFD500;
  --is-ring: rgba(239,213,0,.35);
}
/* The lamp glow — soft radial yellow behind the silhouette */
.lp-hero-portrait-glow {
  position:absolute; inset:-10% -15% -5% -15%; z-index:1; pointer-events:none;
  background:
    radial-gradient(60% 55% at 50% 45%, rgba(239,213,0,.55) 0%, rgba(239,213,0,.18) 38%, transparent 72%);
  filter: blur(8px);
}
/* Offset yellow frame behind — editorial / printed-photo feel.
   Diagonally offset down-right for depth. */
.lp-hero-portrait::before {
  content:""; position:absolute; inset:14px -14px -14px 14px;
  border:2px solid #EFD500; z-index:1; pointer-events:none;
}
/* Corner L-marks on the photo itself — viewfinder / brand "L" motif */
.lp-hero-portrait::after {
  content:""; position:absolute; inset:0; z-index:3; pointer-events:none;
  background:
    /* top-left */
    linear-gradient(#EFD500,#EFD500) top    left  / 28px 3px no-repeat,
    linear-gradient(#EFD500,#EFD500) top    left  / 3px 28px no-repeat,
    /* top-right */
    linear-gradient(#EFD500,#EFD500) top    right / 28px 3px no-repeat,
    linear-gradient(#EFD500,#EFD500) top    right / 3px 28px no-repeat,
    /* bottom-left */
    linear-gradient(#EFD500,#EFD500) bottom left  / 28px 3px no-repeat,
    linear-gradient(#EFD500,#EFD500) bottom left  / 3px 28px no-repeat,
    /* bottom-right */
    linear-gradient(#EFD500,#EFD500) bottom right / 28px 3px no-repeat,
    linear-gradient(#EFD500,#EFD500) bottom right / 3px 28px no-repeat;
}
/* Sygnet behind it all, off to the upper right, very subtle */
.lp-hero-portrait-bg {
  position:absolute; right:-22%; top:-18%; width:90%; height:90%;
  color:#fff; opacity:.10; z-index:0; pointer-events:none;
}

/* Caption overlay — yellow block sitting on bottom-left of the photo */
.lp-hero-portrait-caption {
  position:absolute; left:-6px; bottom:18px; z-index:4;
  display:flex; flex-direction:column; gap:2px;
  background:#EFD500; color:#000;
  padding:10px 16px 12px;
  font-family:'Poppins',sans-serif;
  box-shadow: 4px 4px 0 rgba(0,0,0,.35);
}
.lp-portrait-dash { display:none; }
.lp-portrait-name {
  font-weight:800; font-size:18px; color:#000; letter-spacing:-0.01em; line-height:1.1;
}
.lp-portrait-role {
  font-size:10px; font-weight:700; letter-spacing:.16em; text-transform:uppercase;
  color:#000; opacity:.7;
}
.lp-eyebrow { font-size:13px; letter-spacing:.18em; text-transform:uppercase;
              font-weight:600; color:#EFD500; }
.lp-eyebrow.lp-dim { color:rgba(255,255,255,.55); }
.lp-h-display { font-family:'Poppins',sans-serif; font-weight:900;
                font-size: clamp(48px, 7vw, 92px); line-height:0.95;
                letter-spacing:-0.025em; margin: 24px 0 24px;
                /* establish stacking context so children can layer */
                position:relative; isolation:isolate; }
.lp-h-display mark {
  /* Narrower band — yellow only covers the middle of the cap-height,
     not the full line-box, so ascenders/descenders stay clear. */
  background: linear-gradient(180deg,
    transparent 0 10%,
    #EFD500 10% 88%,
    transparent 88% 100%);
  color:#000; padding: 0 0.12em;
  box-decoration-break: clone; -webkit-box-decoration-break: clone;
  position:relative; z-index:1;
}
/* White-text lines render above the yellow band — produces the deliberate
   overlap where letterforms hang over the top edge of the highlight. */
.lp-h-display .lp-h-line { position:relative; z-index:2; }
.lp-lead { font-size:20px; font-weight:300; line-height:1.55; color:rgba(255,255,255,.78); max-width:680px; margin:0; }
.lp-btn-row { display:flex; gap:16px; margin-top:40px; flex-wrap:wrap; }
.lp-hero-channels { margin-top:64px; display:flex; align-items:center; gap:32px; flex-wrap:wrap; }
.lp-hero-channels ul { list-style:none; padding:0; margin:0; display:flex; gap:24px; flex-wrap:wrap; }
.lp-hero-channels li { font-size:14px; color:rgba(255,255,255,.6); font-weight:500; }

/* ---------- Generic section ---------- */
.lp-section { padding: 40px 0; }
.lp-h-section { font-family:'Poppins',sans-serif; font-weight:900;
                font-size: clamp(36px, 4.5vw, 60px); line-height:1.15;
                letter-spacing:-0.02em; margin:16px 0 56px; max-width:980px; }
.lp-h-section mark {
  background: linear-gradient(180deg,
    transparent 0 12%,
    #EFD500 12% 88%,
    transparent 88% 100%);
  color:#000; padding: 0 0.12em;
  box-decoration-break: clone; -webkit-box-decoration-break: clone;
}
.lp-section-lead {
  max-width:780px; font-size:18px; font-weight:300; line-height:1.55;
  color:rgba(255,255,255,.72); margin: 0 0 48px;
}

/* ---------- Pains ---------- */
.lp-pains-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:20px; }
.lp-pain-card { background:#141414; border:1px solid rgba(255,255,255,.10); border-radius:12px;
                padding:28px; display:flex; flex-direction:column; gap:12px; }
.lp-pain-icon { width:36px; height:36px; }
.lp-pain-title { font-size:18px; font-weight:800; line-height:1.25; letter-spacing:-0.01em; margin:0; }
.lp-pain-desc { font-size:14px; font-weight:300; line-height:1.55; color:rgba(255,255,255,.7); margin:0; }

/* ---------- Consultant ---------- */
.lp-consultant { background:#0a0a0a; border-top:1px solid rgba(255,255,255,.06); border-bottom:1px solid rgba(255,255,255,.06); }
.lp-consultant-grid { display:grid; grid-template-columns: 1fr 1fr; gap:32px 48px; margin-top:8px; }
.lp-consultant-pillar { display:grid; grid-template-columns: 72px 1fr; gap:20px; align-items:start; }
.lp-consultant-num {
  font-family:'Poppins',sans-serif; font-weight:900; font-size:48px;
  line-height:1; letter-spacing:-0.04em; color:#EFD500;
  border-top:3px solid #EFD500; padding-top:10px;
}
.lp-consultant-title { font-size:22px; font-weight:800; letter-spacing:-0.01em; margin:0 0 10px; }
.lp-consultant-desc { font-size:15px; font-weight:300; line-height:1.55; color:rgba(255,255,255,.72); margin:0; }

/* ---------- Process ---------- */
.lp-process-list { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:0; }
.lp-process-step {
  display:grid; grid-template-columns: 220px 1fr; gap:48px;
  padding:36px 0; border-top:1px solid rgba(255,255,255,.10);
}
.lp-process-step:last-child { border-bottom:1px solid rgba(255,255,255,.10); }
.lp-process-meta { display:flex; flex-direction:column; gap:6px; }
.lp-process-num {
  font-family:'Poppins',sans-serif; font-weight:900; font-size:64px;
  line-height:.9; letter-spacing:-0.04em; color:#EFD500;
}
.lp-process-label { font-size:18px; font-weight:700; color:#fff; }
.lp-process-time {
  font-size:11px; letter-spacing:.14em; text-transform:uppercase;
  font-weight:600; color:rgba(255,255,255,.5);
}
.lp-process-title { font-size:24px; font-weight:800; letter-spacing:-0.01em; margin:0 0 16px; line-height:1.2; }
.lp-process-body ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:8px; }
.lp-process-body li {
  font-size:15px; font-weight:300; line-height:1.55; color:rgba(255,255,255,.78);
  padding-left:22px; position:relative;
}
.lp-process-body li::before {
  content:""; position:absolute; left:0; top:0.6em; width:10px; height:2px; background:#EFD500;
}

/* ---------- Success Spotlight ---------- */
.lp-success { padding-bottom:48px; }
.lp-success-inner { display:flex; flex-direction:column; align-items:center; text-align:center; gap:24px; }
.lp-success .lp-eyebrow { text-align:center; }
.lp-success .lp-h-section { text-align:center; margin-bottom:0; max-width:none; }
.lp-success-card {
  position:relative;
  background:#141414; border:2px dashed rgba(239,213,0,.5); border-radius:18px;
  padding:32px 48px; min-width:520px; max-width:640px;
  display:flex; flex-direction:column; align-items:center; gap:10px;
  margin-bottom:0;
}
.lp-success-card-mark {
  position:absolute; top:-14px; left:50%; transform:translateX(-50%);
  background:#EFD500; color:#000; padding:4px 14px; border-radius:999px;
  font-size:10px; letter-spacing:.16em; text-transform:uppercase; font-weight:700;
  white-space:nowrap;
}
.lp-success-card-stat {
  font-family:'Poppins',sans-serif; font-weight:900; font-size:120px; line-height:.9;
  letter-spacing:-0.04em; color:#EFD500;
}
.lp-success-card-lbl { font-size:16px; color:rgba(255,255,255,.72); font-weight:300; max-width:380px; }
.lp-success-card-footer {
  display:flex; gap:24px; flex-wrap:wrap; justify-content:center;
  margin-top:14px; padding-top:14px; width:100%;
  border-top:1px solid rgba(255,255,255,.10);
  font-size:12px; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.5);
}
.lp-success-pitch { max-width:780px; }
.lp-success-pitch p {
  font-size:17px; font-weight:300; line-height:1.6; color:rgba(255,255,255,.78);
  margin:0 0 14px;
}
.lp-success-pitch p:last-child { margin-bottom:0; }
.lp-success-meta {
  display:grid; grid-template-columns:repeat(3,1fr); gap:32px;
  margin-top:48px; width:100%; max-width:880px;
}
.lp-success-meta-block { text-align:center; }
.lp-success-meta-num {
  font-family:'Poppins',sans-serif; font-weight:900; font-size:64px;
  line-height:1; letter-spacing:-0.04em; color:#fff;
}
.lp-success-meta-lbl { margin-top:8px; font-size:13px; color:rgba(255,255,255,.6); line-height:1.45; }

/* ---------- FAQ ---------- */
.lp-faq-list { display:flex; flex-direction:column; }
.lp-faq-item { border-top:1px solid rgba(255,255,255,.10); }
.lp-faq-item:last-child { border-bottom:1px solid rgba(255,255,255,.10); }
.lp-faq-q {
  width:100%; background:transparent; color:#fff; border:0; cursor:pointer;
  display:grid; grid-template-columns: 60px 1fr 32px; gap:16px; align-items:center;
  padding:22px 4px; text-align:left;
  font-family:'Poppins',sans-serif;
}
.lp-faq-num {
  font-family:ui-monospace,Menlo,monospace; font-size:13px; font-weight:600;
  color:#EFD500; letter-spacing:.04em;
}
.lp-faq-q-text { font-size:18px; font-weight:600; letter-spacing:-0.005em; }
.lp-faq-toggle {
  font-family:'Poppins',sans-serif; font-size:28px; font-weight:300;
  color:#EFD500; text-align:center; line-height:1;
  transition: transform .2s;
}
.lp-faq-item.is-open .lp-faq-toggle { transform: rotate(90deg); }
.lp-faq-a {
  padding: 0 4px 24px calc(60px + 16px); /* indent past the number col */
}
.lp-faq-a p {
  font-size:16px; font-weight:300; line-height:1.6;
  color:rgba(255,255,255,.78); margin:0; max-width:780px;
}
.lp-strike { text-decoration:line-through; text-decoration-color:#CE0B10;
             text-decoration-thickness:5px; color:rgba(255,255,255,.4); }

/* ---------- Service cards ---------- */
.lp-services-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:20px; }
.lp-card { background:#141414; border:1px solid rgba(255,255,255,.10); border-radius:14px;
           padding:32px; display:flex; flex-direction:column; gap:18px; min-height:0; }
.lp-card-featured { border-top:4px solid #EFD500; }
.lp-card-icon { width:48px; height:48px; }
.lp-card-title { font-size:24px; font-weight:800; letter-spacing:-0.01em; margin:0; }
.lp-card-desc { font-size:15px; font-weight:300; line-height:1.55; color:rgba(255,255,255,.7); margin:0; }
.lp-card-meta { margin-top:auto; font-size:12px; letter-spacing:.14em; text-transform:uppercase;
                color:#EFD500; font-weight:600; }

/* ---------- Compare ---------- */
.lp-compare { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.lp-compare-col { padding:32px; border-radius:14px; }
.lp-compare-bad { background:#1f0a0a; border:1px solid rgba(206,11,16,.4); }
.lp-compare-good { background:#141414; border:1px solid rgba(239,213,0,.45); }
.lp-compare-col h3 { font-size:22px; font-weight:800; margin:0 0 20px 0; }
.lp-compare-bad h3 { color:#CE0B10; }
.lp-compare-good h3 { color:#EFD500; }
.lp-compare-col ul { margin:0; padding:0; list-style:none; display:flex; flex-direction:column; gap:12px;
                     font-size:16px; font-weight:300; line-height:1.45; color:rgba(255,255,255,.85); }
.lp-compare-col li { padding-left:28px; position:relative; }
.lp-compare-bad li::before { content:"✕"; position:absolute; left:0; color:#CE0B10; font-weight:900; }
.lp-compare-good li::before { content:"✓"; position:absolute; left:0; color:#EFD500; font-weight:900; }

/* ---------- Stats ---------- */
.lp-stats { background:#0a0a0a; border-top:1px solid rgba(255,255,255,.06); border-bottom:1px solid rgba(255,255,255,.06); }
.lp-stats-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:32px; margin-top:24px; }
.lp-stat { padding:32px 0; }
.lp-stat-num { font-family:'Poppins',sans-serif; font-weight:900;
               font-size: clamp(56px, 7vw, 96px); line-height:.95; letter-spacing:-0.03em; color:#fff; }
.lp-stat.is-win .lp-stat-num { color:#EFD500; }
.lp-stat.is-danger .lp-stat-num { color:#CE0B10; }
.lp-stat-lbl { margin-top:14px; font-size:15px; font-weight:300; line-height:1.45; color:rgba(255,255,255,.7); max-width:380px; }

/* ---------- Quote ---------- */
.lp-quote-section { background:#FAF8F2; color:#111; }
.lp-quote-mark { font-family:'Poppins',sans-serif; font-weight:900; font-size:200px; line-height:.5;
                 color:#EFD500; height:80px; }
.lp-quote-body { font-family:'Poppins',sans-serif; font-weight:300;
                 font-size: clamp(28px, 3.6vw, 46px); line-height:1.25; letter-spacing:-0.01em;
                 max-width:1100px; margin:24px 0 36px; color:#111; }
.lp-quote-body mark { background:#EFD500; color:#000; padding: 0 0.1em; }
.lp-quote-author { display:flex; align-items:center; gap:16px; }
.lp-avatar { width:56px; height:56px; border-radius:50%; background:#111; color:#EFD500;
             display:flex; align-items:center; justify-content:center;
             font-weight:800; font-size:18px; letter-spacing:0.02em; }
.lp-quote-name { font-weight:700; font-size:18px; color:#111; }
.lp-quote-role { font-size:14px; color:rgba(0,0,0,.55); }

/* ---------- Contact ---------- */
.lp-contact { position:relative; overflow:hidden; padding-bottom:120px; }
.lp-contact-bleed { position:absolute; right:-380px; bottom:-260px; width:560px; height:560px; color:#fff; pointer-events:none; opacity:.32; }
.lp-contact-inner { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start; position:relative; }
.lp-h-display-sm { font-size: clamp(40px, 5vw, 72px); }
.lp-contact-meta { display:flex; gap:48px; margin-top:48px; flex-wrap:wrap; }
.lp-contact-line { font-size:20px; font-weight:700; margin-top:6px; }

.lp-form { background:#141414; border:1px solid rgba(255,255,255,.10); border-radius:14px; padding:32px;
           display:flex; flex-direction:column; gap:18px; }
.lp-form label { display:flex; flex-direction:column; gap:8px; }
.lp-form label > span { font-size:12px; letter-spacing:.10em; text-transform:uppercase;
                        color:rgba(255,255,255,.6); font-weight:600; }
.lp-form input, .lp-form textarea { font-family:inherit; background:#0a0a0a; color:#fff;
                                    border:1px solid rgba(255,255,255,.12); border-radius:8px;
                                    padding:14px 16px; font-size:15px; outline:none; }
.lp-form input:focus, .lp-form textarea:focus { border-color:#EFD500; box-shadow:0 0 0 3px rgba(239,213,0,.25); }
.lp-check { flex-direction:row !important; align-items:center; gap:12px !important; }
.lp-check input {
  appearance:none; -webkit-appearance:none;
  width:20px; height:20px; min-width:20px;
  border:2px solid rgba(255,255,255,.4);
  border-radius:4px; position:relative; cursor:pointer; flex:none;
  background:#0a0a0a; padding:0; margin:0;
  display:inline-flex; align-items:center; justify-content:center;
}
.lp-check input:checked { background:#EFD500; border-color:#EFD500; }
.lp-check input:checked::after {
  content:"";
  display:block;
  width:5px; height:9px;
  border:solid #000; border-width:0 2px 2px 0;
  transform:rotate(45deg);
  position:absolute;
  top:2px; left:6px;
}
.lp-check span { text-transform:none !important; letter-spacing:0 !important;
                 font-size:14px !important; color:rgba(255,255,255,.85) !important; font-weight:400 !important; }
.lp-form button { align-self:flex-start; }
.lp-form-success { padding:24px 0; }

/* ---------- Footer ---------- */
.lp-footer { border-top:1px solid rgba(255,255,255,.06); padding:48px 0 32px; background:#000; }
.lp-footer-inner { display:flex; flex-direction:column; gap:24px; }
.lp-footer-brand { display:flex; align-items:center; gap:12px; }
.lp-footer-nav { display:flex; gap:24px; flex-wrap:wrap; }
.lp-footer-nav a { color:rgba(255,255,255,.6); text-decoration:none; font-size:14px; }
.lp-footer-nav a:hover { color:#EFD500; }
.lp-footer-legal { display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap;
                   font-size:12px; color:rgba(255,255,255,.45); border-top:1px solid rgba(255,255,255,.06); padding-top:24px; }
.lp-footer-legal .lp-dim { color:rgba(255,255,255,.35); }

/* ---------- Animations ---------- */

/* Fade-in on scroll */
.lp-animate {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s cubic-bezier(0.2,0.7,0.2,1), transform 0.5s cubic-bezier(0.2,0.7,0.2,1);
}
.lp-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.lp-section-animate {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.2,0.7,0.2,1);
}
.lp-section-animate.is-visible {
  opacity: 1;
}

/* Card hover */
.lp-card {
  transition: transform 0.22s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.22s;
}
.lp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,.4), inset 0 3px 0 #EFD500;
}

/* Typing cursor */
@keyframes lp-cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.lp-cursor {
  animation: lp-cursor-blink 0.7s steps(1) infinite;
  font-weight: 300;
  margin-left: 1px;
}

/* Logo arc — segmented reveal on load */
@keyframes lp-arc-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.lp-header svg.lp-sygnet path:nth-of-type(1),
svg.lp-hero-portrait-bg path:nth-of-type(1) { animation: lp-arc-in 0.2s ease 0.3s both; }
.lp-header svg.lp-sygnet path:nth-of-type(2),
svg.lp-hero-portrait-bg path:nth-of-type(2) { animation: lp-arc-in 0.2s ease 0.5s both; }
.lp-header svg.lp-sygnet path:nth-of-type(3),
svg.lp-hero-portrait-bg path:nth-of-type(3) { animation: lp-arc-in 0.2s ease 0.7s both; }
.lp-header svg.lp-sygnet path:nth-of-type(4),
svg.lp-hero-portrait-bg path:nth-of-type(4) { animation: lp-arc-in 0.2s ease 0.9s both; }
.lp-header svg.lp-sygnet path:nth-of-type(5),
svg.lp-hero-portrait-bg path:nth-of-type(5) { animation: lp-arc-in 0.2s ease 1.1s both; }

/* ---------- Responsive (rough — for preview only) ---------- */
@media (max-width: 1080px) {
  .lp-nav { display:none; }
  .lp-hero-inner { grid-template-columns: 1fr; }
  .lp-hero-portrait {
    grid-column:1; grid-row:2;
    justify-self:center; align-self:start;
    margin-top:24px; margin-right:0;
    max-width:320px;
  }
  .lp-hero-bottom { grid-column:1; grid-row:3; margin-top:32px; text-align:center; }
  .lp-hero-bottom .lp-lead { margin-left:auto; margin-right:auto; }
  .lp-btn-row { justify-content:center; }
  .lp-hero-channels { justify-content:center; }
  .lp-hero-channels ul { justify-content:center; }
  .lp-services-grid, .lp-compare, .lp-stats-grid, .lp-contact-inner { grid-template-columns: 1fr; }
  .lp-pains-grid, .lp-consultant-grid, .lp-success-meta { grid-template-columns: 1fr; }
  .lp-process-step { grid-template-columns: 1fr; gap:16px; }
  .lp-success-card { min-width:0; padding:36px 24px; }
  .lp-success-card-stat { font-size:88px; }
  .lp-faq-q { grid-template-columns: 36px 1fr 24px; gap:12px; }
  .lp-faq-q-text { font-size:16px; }
  .lp-faq-a { padding-left: calc(36px + 12px); }
}
