/* landing.css — Pennyworth marketing site styles (pennyworth-public/).
   Ported from the Claude Design mockup (public/marketing/landing.css +
   inline JSX styles). Tokens, class names and layout are kept verbatim
   where the source used real CSS; inline React styles have been promoted
   to classes below since this build is plain HTML/CSS/JS. */

:root {
  --navy: #10131C;
  --navy-deep: #0A0C14;
  --paper: #F5F2EB;
  --paper2: #EDE8DA;
  --light: #EBE8E0;
  --gold: #B07D14;
  --gold-lt: #C99428;
  --gold-dk: #8A610C;
  --gold-bright: #D4A840;
  --muted: #6B7280;
  --muted-d: rgba(235, 232, 224, 0.62);
  --border: #E5E7EB;
  --border-d: rgba(235, 232, 224, 0.14);
  --sans: 'Sora', sans-serif;
  --mono: 'Space Mono', ui-monospace, monospace;

  --lp-pad: 56px;
  --lp-bg: #fff;
  --lp-fg: var(--navy);
  --lp-sub: var(--muted);
  --lp-border: var(--border);
  --lp-surface: var(--paper2);
  --lp-card-bg: #fff;
  --lp-popover-bg: #fff;
}

html[data-theme="dark"] {
  --lp-bg: var(--navy-deep);
  --lp-fg: var(--light);
  --lp-sub: var(--muted-d);
  --lp-border: var(--border-d);
  --lp-surface: rgba(255, 255, 255, 0.03);
  --lp-card-bg: rgba(255, 255, 255, 0.03);
  --lp-popover-bg: #181C28;
}

@media (max-width: 900px) { :root { --lp-pad: 32px; } }
@media (max-width: 480px) { :root { --lp-pad: 18px; } }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background: var(--lp-bg);
  color: var(--lp-fg);
  min-height: 100vh;
}
a { color: inherit; }
img { max-width: 100%; }

/* ---- Nav ---- */
.lp-nav-bar { position: sticky; top: 0; z-index: 20; background: var(--lp-bg); border-bottom: 1px solid var(--lp-border); }
.lp-nav { display: flex; flex-wrap: wrap; align-items: center; padding: 18px var(--lp-pad); gap: 16px; row-gap: 12px; }
.lp-nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; text-decoration: none; }
.lp-nav-wordmark { font-family: var(--sans); font-weight: 700; font-size: 22px; color: var(--lp-fg); letter-spacing: -0.02em; line-height: 1; }
.lp-nav-links { display: flex; align-items: center; justify-content: center; gap: 32px; flex: 1; min-width: 0; }
.lp-nav-links a { font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--lp-sub); white-space: nowrap; text-decoration: none; }
.lp-nav-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; margin-left: auto; }
.lp-nav-signin { font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--lp-sub); text-decoration: none; white-space: nowrap; }
.lp-nav-cta { font-family: var(--sans); font-size: 14px; font-weight: 700; color: var(--navy-deep); background: var(--gold-lt); border: none; border-radius: 8px; padding: 10px 18px; cursor: pointer; white-space: nowrap; text-decoration: none; display: inline-block; }

.lp-nav-burger {
  display: none; align-items: center; justify-content: center; width: 44px; height: 44px; margin-left: auto;
  border-radius: 9px; border: 1px solid transparent; background: transparent; cursor: pointer;
  flex-shrink: 0; padding: 0; color: var(--lp-fg);
}
.lp-nav-burger svg { width: 25px; height: 25px; pointer-events: none; }
.lp-nav-burger .icon-close { display: none; }
.lp-nav-burger[aria-expanded="true"] .icon-open { display: none; }
.lp-nav-burger[aria-expanded="true"] .icon-close { display: block; }

.lp-mobile-menu { display: none; flex-direction: column; padding: 0; background: var(--lp-bg); }
.lp-mobile-menu.open { display: flex; border-top: 1px solid var(--lp-border); }
.lp-mobile-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 15px 20px;
  border-bottom: 1px solid var(--lp-border); cursor: pointer; font-family: var(--sans); font-size: 15.5px;
  font-weight: 600; color: var(--lp-fg); text-decoration: none;
}
.lp-mobile-row:hover { background: rgba(128, 128, 128, 0.06); }
.lp-mobile-row svg { stroke: var(--lp-sub); }
.lp-mobile-static { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 15px 20px; border-bottom: 1px solid var(--lp-border); cursor: default; }
.lp-mobile-static span:first-child { font-family: var(--sans); font-size: 14.5px; font-weight: 600; color: var(--lp-sub); }
.lp-mobile-cta { padding: 16px 20px 20px; }
.lp-mobile-cta button, .lp-mobile-cta a { display: block; width: 100%; text-align: center; font-family: var(--sans); font-size: 15px; font-weight: 700; color: var(--navy-deep); background: var(--gold-lt); border: none; border-radius: 9px; padding: 14px 0; cursor: pointer; text-decoration: none; }

@media (max-width: 1120px) {
  .lp-nav-links { display: none; }
  .lp-nav-burger { display: inline-flex; }
  .lp-nav-right { display: none; }
}
@media (max-width: 560px) {
  .lp-nav { padding: 14px var(--lp-pad); }
  .lp-nav-wordmark { font-size: 18px !important; }
}

/* ---- Theme toggle ---- */
.lp-theme-toggle {
  position: relative; width: 54px; height: 28px; border-radius: 100px; border: 1px solid var(--lp-border);
  background: #F3F4F6; cursor: pointer; flex-shrink: 0; padding: 0; transition: background .2s;
}
html[data-theme="dark"] .lp-theme-toggle { background: rgba(201, 148, 40, 0.20); }
.lp-theme-toggle svg { position: absolute; top: 50%; width: 14px; height: 14px; stroke: #9CA3AF; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; pointer-events: none; transform: translateY(-50%); }
.lp-theme-toggle .lp-sun { left: 7px; }
.lp-theme-toggle .lp-moon { right: 7px; }
.lp-theme-thumb {
  position: absolute; top: 2px; left: 2px; width: 22px; height: 22px; border-radius: 50%;
  background: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, .2); transition: left .2s, background .2s;
}
html[data-theme="dark"] .lp-theme-thumb { left: 30px; background: var(--gold); }

/* ---- Language selector ---- */
.lp-lang { position: relative; }
.lp-lang-trigger {
  display: flex; align-items: center; gap: 6px; font-family: var(--sans); font-size: 13px; font-weight: 700;
  color: var(--lp-fg); background: transparent; border: 1px solid var(--lp-border); border-radius: 100px;
  padding: 7px 12px; cursor: pointer; text-transform: uppercase;
}
.lp-lang-trigger svg { stroke: var(--lp-sub); transition: transform .15s; }
.lp-lang[data-open="true"] .lp-lang-trigger svg { transform: rotate(180deg); }
.lp-lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0; background: var(--lp-popover-bg); border: 1px solid var(--lp-border);
  border-radius: 10px; box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18); padding: 6px; min-width: 168px; z-index: 30;
  max-height: 320px; overflow-y: auto; display: none; list-style: none; margin: 0;
}
.lp-lang[data-open="true"] .lp-lang-menu { display: block; }
.lp-lang-item {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  font-family: var(--sans); font-size: 13.5px; font-weight: 500; color: var(--lp-fg);
  padding: 8px 10px; border-radius: 7px; cursor: pointer; text-decoration: none;
}
.lp-lang-item:hover { background: rgba(128, 128, 128, 0.08); }
.lp-lang-item.active { font-weight: 700; color: var(--gold-lt); }
.lp-lang-item span.code { font-family: var(--mono); font-size: 10.5px; color: var(--lp-sub); text-transform: uppercase; }

/* ---- Buttons ---- */
.lp-btn { font-family: var(--sans); font-weight: 700; font-size: 15px; border-radius: 8px; padding: 14px 24px; cursor: pointer; text-decoration: none; display: inline-block; border: none; }
.lp-btn-gold { color: var(--navy-deep); background: var(--gold-lt); }
.lp-btn-ghost { color: var(--lp-fg); background: transparent; border: 1.5px solid var(--lp-border); }
.lp-btn-sm { font-size: 14px; padding: 12px 0; width: 100%; text-align: center; }

/* ---- Eyebrow / headings ---- */
.lp-eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 14px; }
h1, h2 { font-family: var(--sans); font-weight: 700; letter-spacing: -0.02em; margin: 0; color: var(--lp-fg); }
p { margin: 0; }

/* ---- Hero ---- */
.lp-hero { padding: 96px var(--lp-pad) 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; border-bottom: 1px solid var(--lp-border); }
.lp-hero h1 { font-size: clamp(30px, 4.4vw, 52px); line-height: 1.08; letter-spacing: -0.03em; margin: 0 0 22px; }
.lp-hero-badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--gold-lt); border: 1px solid var(--lp-border); border-radius: 100px; padding: 6px 14px; margin-bottom: 26px; }
.lp-hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: #3FBF6F; }
.lp-hero-sub { font-family: var(--sans); font-size: 17px; line-height: 1.6; color: var(--lp-sub); max-width: 480px; margin: 0 0 34px; }
.lp-hero-actions { display: flex; gap: 14px; margin-bottom: 30px; flex-wrap: wrap; }
.lp-hero-install { font-family: var(--mono); font-size: 12.5px; color: var(--lp-sub); background: var(--lp-surface); border: 1px solid var(--lp-border); border-radius: 8px; padding: 12px 16px; display: inline-block; max-width: 100%; overflow-x: auto; }
.lp-hero-shot { border-radius: 14px; overflow: hidden; border: 1px solid var(--lp-border); box-shadow: 0 30px 80px rgba(16, 19, 28, 0.14); }
html[data-theme="dark"] .lp-hero-shot { box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45); }
.lp-hero-shot img { width: 100%; display: block; }
.lp-hero-grid {
  background-image: linear-gradient(rgba(176, 125, 20, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(176, 125, 20, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
}
html[data-theme="dark"] .lp-hero-grid {
  background-image: linear-gradient(rgba(201, 148, 40, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 148, 40, 0.05) 1px, transparent 1px);
}
@media (max-width: 900px) {
  .lp-hero { grid-template-columns: 1fr; padding: 64px var(--lp-pad) 48px; gap: 36px; }
  .lp-hero-shot { order: 2; }
  .lp-hero-copy { order: 1; }
}
@media (max-width: 480px) { .lp-hero { padding: 44px var(--lp-pad) 36px; } }

/* ---- Stats strip ---- */
.lp-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--lp-border); border-bottom: 1px solid var(--lp-border); }
.lp-stat { padding: 26px 30px; background: var(--lp-bg); }
.lp-stat-value { font-family: var(--mono); font-size: 15px; font-weight: 700; color: var(--gold-lt); }
.lp-stat-label { font-family: var(--sans); font-size: 13px; color: var(--lp-sub); margin-top: 4px; }
@media (max-width: 760px) { .lp-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .lp-stats { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .lp-stat { padding: 20px; } }

/* ---- Generic section ---- */
.lp-section { padding: 96px var(--lp-pad); }
.lp-section h2 { font-size: clamp(24px, 3.4vw, 34px); }
.lp-section-narrow { max-width: 760px; margin: 0 auto; text-align: center; }
.lp-section-wide { max-width: 1200px; margin: 0 auto; }
.lp-section-bordered { border-bottom: 1px solid var(--lp-border); }
@media (max-width: 760px) { .lp-section { padding: 64px var(--lp-pad); } }
@media (max-width: 480px) { .lp-section { padding: 48px var(--lp-pad); } }

/* ---- Feature cards / grids ---- */
.lp-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1080px) { .lp-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .lp-features-grid { grid-template-columns: 1fr; } }
.lp-features-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .lp-features-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .lp-features-grid-3 { grid-template-columns: 1fr; } }

.lp-feature-card { background: var(--lp-card-bg); border: 1px solid var(--lp-border); border-radius: 14px; padding: 28px 26px; position: relative; }
.lp-feature-icon { font-size: 26px; margin-bottom: 14px; }
.lp-feature-title { font-family: var(--sans); font-weight: 700; font-size: 17px; color: var(--lp-fg); margin-bottom: 8px; }
.lp-feature-desc { font-family: var(--sans); font-size: 14.5px; line-height: 1.6; color: var(--lp-sub); }
.lp-feature-soon {
  position: absolute; top: 20px; right: 20px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--lp-sub); border: 1px solid var(--lp-border); border-radius: 100px; padding: 3px 9px;
}

/* ---- Screenshot section ---- */
.lp-shot-section { padding: 0 var(--lp-pad) 96px; max-width: 1200px; margin: 0 auto; }
.lp-shot-section > div { border-radius: 14px; overflow: hidden; border: 1px solid var(--lp-border); }
.lp-shot-section img { width: 100%; display: block; }
@media (max-width: 760px) { .lp-shot-section { padding: 0 var(--lp-pad) 64px; } }
@media (max-width: 480px) { .lp-shot-section { padding: 0 var(--lp-pad) 48px; } }

/* ---- Open source split ---- */
.lp-oss { padding: 80px var(--lp-pad); border-top: 1px solid var(--lp-border); border-bottom: 1px solid var(--lp-border); background: var(--lp-surface); }
.lp-oss-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.lp-oss-grid > div { min-width: 0; }
.lp-oss h2 { font-size: clamp(24px, 3.4vw, 32px); margin: 0 0 16px; }
.lp-oss p { font-family: var(--sans); font-size: 15.5px; line-height: 1.65; color: var(--lp-sub); max-width: 480px; }
.lp-oss-code {
  font-family: var(--mono); font-size: 13px; color: var(--lp-sub); background: var(--lp-bg);
  border: 1px solid var(--lp-border); border-radius: 10px; padding: 22px; line-height: 1.9;
  white-space: nowrap; overflow-x: auto; min-width: 0;
}
.lp-oss-code .cmt { color: #3FBF6F; }
.lp-oss-code .note { color: var(--lp-sub); opacity: 0.7; }
@media (max-width: 900px) {
  .lp-oss { padding: 56px var(--lp-pad); }
  .lp-oss-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 480px) { .lp-oss { padding: 44px var(--lp-pad); } }

/* ---- Pricing ---- */
.lp-pricing { padding: 96px var(--lp-pad); max-width: 1120px; margin: 0 auto; }
.lp-pricing .lp-eyebrow, .lp-pricing > h2 { text-align: center; }
.lp-pricing > .lp-pricing-head { text-align: center; margin-bottom: 56px; }
.lp-pricing-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.lp-price-card { background: var(--lp-card-bg); border: 1px solid var(--lp-border); border-radius: 16px; padding: 32px 28px; display: flex; flex-direction: column; }
.lp-price-card.featured { background: var(--navy-deep); border-color: var(--gold-lt); box-shadow: 0 20px 50px rgba(176, 125, 20, 0.18); color: var(--light); }
.lp-price-name { font-family: var(--sans); font-weight: 700; font-size: 18px; display: flex; align-items: center; gap: 10px; }
.lp-price-badge { font-family: var(--mono); font-size: 10px; background: var(--gold-lt); color: var(--navy-deep); padding: 3px 8px; border-radius: 100px; }
.lp-price-tag { font-family: var(--sans); font-size: 13px; color: var(--lp-sub); margin-top: 6px; }
.lp-price-card.featured .lp-price-tag { color: var(--muted-d); }
.lp-price-value { font-family: var(--sans); font-weight: 700; font-size: 40px; margin-top: 20px; }
.lp-price-feats { list-style: none; padding: 0; margin: 22px 0 26px; display: flex; flex-direction: column; gap: 11px; }
.lp-price-feats li { font-family: var(--sans); font-size: 14px; color: var(--lp-sub); display: flex; gap: 9px; }
.lp-price-card.featured .lp-price-feats li { color: var(--light); }
.lp-price-feats li::before { content: '✓'; color: var(--gold-lt); }
.lp-price-btn { margin-top: auto; }
@media (max-width: 900px) {
  .lp-pricing { padding: 64px var(--lp-pad); }
  .lp-pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}
@media (max-width: 480px) { .lp-pricing { padding: 48px var(--lp-pad); } }

/* ---- Compare table (pricing page) ---- */
.lp-compare { border: 1px solid var(--lp-border); border-radius: 14px; overflow: hidden; }
.lp-compare-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; align-items: center; gap: 12px; padding: 16px 22px; border-bottom: 1px solid var(--lp-border); }
.lp-compare-row:last-child { border-bottom: none; }
.lp-compare-row:nth-child(odd) { background: var(--lp-surface); }
.lp-compare-row .label { font-family: var(--sans); font-size: 14.5px; font-weight: 600; color: var(--lp-fg); }
.lp-compare-row .val { font-family: var(--sans); font-size: 14px; color: var(--lp-sub); text-align: center; }
.lp-compare-row .val.highlight { color: var(--gold-lt); font-weight: 700; }

/* ---- FAQ ---- */
.lp-faq { padding: 96px var(--lp-pad); max-width: 820px; margin: 0 auto; }
.lp-faq h2 { font-size: clamp(24px, 3.6vw, 34px); text-align: center; margin-bottom: 44px; }
.lp-faq-item { border-bottom: 1px solid var(--lp-border); padding: 20px 0; cursor: pointer; }
.lp-faq-item summary { display: flex; justify-content: space-between; align-items: center; list-style: none; cursor: pointer; font-family: var(--sans); font-weight: 600; font-size: 16px; color: var(--lp-fg); }
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::after { content: '+'; font-family: var(--mono); color: var(--gold-lt); font-size: 18px; }
.lp-faq-item[open] summary::after { content: '\2013'; }
.lp-faq-item p { font-family: var(--sans); font-size: 14.5px; color: var(--lp-sub); margin-top: 12px; line-height: 1.65; max-width: 680px; }
@media (max-width: 760px) { .lp-faq { padding: 64px var(--lp-pad); } }
@media (max-width: 480px) { .lp-faq { padding: 48px var(--lp-pad); } }

/* ---- Final CTA ---- */
.lp-final { padding: 80px var(--lp-pad); text-align: center; border-top: 1px solid var(--lp-border); }
.lp-final h2 { font-size: clamp(24px, 4vw, 32px); margin: 0 0 26px; }
.lp-final-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.lp-final p { font-family: var(--sans); font-size: 15px; line-height: 1.6; color: var(--lp-sub); max-width: 560px; margin: 0 auto 26px; }
@media (max-width: 480px) { .lp-final { padding: 56px var(--lp-pad); } }

/* ---- Footer ---- */
.lp-footer { padding: 48px var(--lp-pad); display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; border-top: 1px solid var(--lp-border); }
.lp-footer-brand { display: flex; align-items: center; gap: 9px; text-decoration: none; }
.lp-footer-brand span.name { font-family: var(--sans); font-weight: 700; font-size: 14px; color: var(--lp-fg); }
.lp-footer-brand span.year { font-family: var(--mono); font-size: 11px; color: var(--lp-sub); margin-left: 8px; }
.lp-footer-links { display: flex; gap: 20px; row-gap: 8px; flex-wrap: wrap; }
.lp-footer-links a { font-family: var(--sans); font-size: 13px; font-weight: 600; color: var(--lp-sub); text-decoration: none; }
@media (max-width: 480px) { .lp-footer { padding: 32px var(--lp-pad); } }

/* ---- Privacy / legal doc page (kept close to pennyworth.css .login-doc conventions) ---- */
.lp-doc { max-width: 760px; margin: 0 auto; }
.lp-doc h3 { font-family: var(--sans); font-weight: 700; font-size: 18px; color: var(--lp-fg); margin: 32px 0 10px; }
.lp-doc h3:first-child { margin-top: 0; }
.lp-doc p, .lp-doc li { font-family: var(--sans); font-size: 15px; line-height: 1.7; color: var(--lp-sub); }
.lp-doc ul { padding-left: 20px; }

/* ---- Contact page ---- */
.lp-contact-card {
  background: var(--lp-card-bg); border: 1px solid var(--lp-border); border-radius: 16px; padding: 36px 32px;
}
html[data-theme="light"] .lp-contact-card { background: #fff; box-shadow: 0 20px 50px rgba(16, 19, 28, 0.06); }
.lp-contact-form { display: flex; flex-direction: column; gap: 18px; }
.lp-contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 480px) { .lp-contact-row { grid-template-columns: 1fr; } }

.lp-field { display: flex; flex-direction: column; gap: 8px; }
.lp-field-label { font-family: var(--sans); font-size: 13px; font-weight: 600; color: var(--lp-fg); }
.lp-field-input {
  font-family: var(--sans); font-size: 15px; color: var(--lp-fg); background: var(--lp-bg);
  border: 1.5px solid var(--lp-border); border-radius: 9px; padding: 12px 14px; outline: none; width: 100%;
  transition: border-color .15s, box-shadow .15s;
}
html[data-theme="dark"] .lp-field-input { background: rgba(255, 255, 255, 0.04); }
.lp-field-input:focus {
  border-color: var(--gold-lt); box-shadow: 0 0 0 3px rgba(201, 148, 40, 0.14);
}
html[data-theme="dark"] .lp-field-input:focus { box-shadow: 0 0 0 3px rgba(201, 148, 40, 0.18); }
.lp-field-input.has-error { border-color: var(--danger, #dc4040); }
.lp-field-error { font-family: var(--sans); font-size: 12.5px; color: var(--danger, #dc4040); }
.lp-field-select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px;
}
.lp-field-textarea { resize: vertical; line-height: 1.5; }

.lp-contact-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.lp-contact-success { text-align: center; padding: 40px 0; }
.lp-contact-success-icon {
  width: 52px; height: 52px; border-radius: 50%; background: rgba(176, 125, 20, 0.1);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; color: var(--gold-lt); font-size: 22px; font-weight: 700;
}
html[data-theme="dark"] .lp-contact-success-icon { background: rgba(201, 148, 40, 0.15); }
.lp-contact-success-h2 { font-family: var(--sans); font-weight: 700; font-size: 20px; color: var(--lp-fg); margin-bottom: 8px; }
.lp-contact-success-sub { font-family: var(--sans); font-size: 14.5px; color: var(--lp-sub); }
