/* Landing page styles — layered on top of design-system tokens + styles.css */

.landing { background: #fff; }

/* Hero band */
.lp-hero {
  position: relative;
  padding-bottom: 80px;
  overflow: hidden;
  background: #fff;
}
.lp-hero-mesh {
  position: absolute; top: 0; left: 0; right: 0;
  width: 100%; height: 720px;
  object-fit: cover; z-index: 0; pointer-events: none;
  opacity: 0.42;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 100%);
}
.lp-hero-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
}

.lp-hero-copy { padding-top: 80px; max-width: 880px; text-align: center; margin: 0 auto; }
.lp-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(13,37,61,0.06);
  border-radius: 9999px;
  color: var(--ink);
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.lp-eyebrow .accent-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-rust); }

.lp-hero h1 {
  font-family: var(--font-display);
  font-size: 76px; font-weight: 300; line-height: 1.0;
  letter-spacing: -2.4px;
  color: var(--ink);
  margin: 0 0 24px;
}
.lp-hero h1 .tag-accent { color: var(--primary); }

.word-flip {
  position: relative;
  display: inline-block;
  vertical-align: baseline;
  padding: 0 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f3f4f6, #e5e7eb);
  box-shadow:
    inset 0 -1px #d1d5db,
    inset 0 0 0 1px #d1d5db,
    0 4px 12px rgba(13,37,61,0.08);
  color: var(--primary);
  white-space: nowrap;
  overflow: hidden;
  transition: width 350ms cubic-bezier(0.22, 0.61, 0.36, 1);
  line-height: 1.1;
  margin: 4px 0;
}
.lp-hero h1 .word-flip { display: inline-flex; align-items: center; justify-content: center; text-align: center; margin: 14px 0 10px; }
.word-flip-measure {
  position: absolute;
  visibility: hidden;
  pointer-events: none;
  top: 0; left: 0;
  padding: 0 14px;
}
.word-flip-text {
  display: inline-block;
}
.word-flip-ch {
  display: inline-block;
  opacity: 0;
  filter: blur(10px);
  animation: wf-in 360ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
@keyframes wf-in {
  to { opacity: 1; filter: blur(0); }
}

.hero-rotator {
  position: relative;
  height: 36px;
  margin: 4px 0 28px;
  font-family: var(--font-display);
  font-size: 22px; font-weight: 300; letter-spacing: -0.4px;
  line-height: 1.3;
  color: var(--ink);
}
.hero-rot-line {
  position: absolute; inset: 0;
  display: flex; justify-content: center; align-items: center; gap: 8px;
  flex-wrap: wrap; text-align: center;
  opacity: 0; transform: translateY(8px);
  transition: opacity 600ms ease, transform 600ms ease;
  pointer-events: none;
}
.hero-rot-line.on { opacity: 1; transform: translateY(0); }
.hero-rot-lead {
  color: var(--primary); font-weight: 400;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 1px;
}
.hero-rot-trail { color: var(--ink-secondary); font-weight: 300; }
.lp-hero .lead {
  font-size: 19px; font-weight: 300; line-height: 1.55;
  color: var(--ink-secondary);
  max-width: 620px; margin: 0 auto 32px;
}
.lp-ctas { display: inline-flex; gap: 12px; align-items: center; }
.lp-trust {
  margin-top: 24px;
  font-size: 12px; color: var(--ink-mute);
  display: inline-flex; gap: 18px; align-items: center;
}
.lp-trust .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-mute); display: inline-block; opacity: 0.5; }

/* Hero product visual */
.lp-product-frame {
  margin: 64px auto 0;
  max-width: 1100px;
  position: relative;
  perspective: 1800px;
}
.lp-product-frame .device {
  background: #fff;
  border: 1px solid rgba(13,37,61,0.10);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,55,112,0.18), 0 8px 16px rgba(0,55,112,0.06);
  transform: perspective(1800px) rotateX(2deg);
  overflow: hidden;
}
.device-bar {
  height: 36px;
  background: #f9fafc;
  border-bottom: 1px solid var(--hairline);
  display: flex; align-items: center; gap: 8px;
  padding: 0 14px;
}
.device-bar .dot { width: 11px; height: 11px; border-radius: 50%; background: #d8dde6; }
.device-bar .dot.r { background: #f59f9f; }
.device-bar .dot.y { background: #f5d290; }
.device-bar .dot.g { background: #b3dcb5; }
.device-bar .url {
  margin-left: 12px;
  font-size: 11px; color: var(--ink-mute);
  background: #fff; border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: 3px 10px;
  font-family: ui-monospace, monospace;
  letter-spacing: 0;
}

.device-body {
  display: grid; grid-template-columns: 1.4fr 1fr;
  min-height: 540px;
}
.device-inputs {
  padding: 28px 32px;
  border-right: 1px solid var(--hairline);
  background: #fff;
}
.device-inputs h4 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 300; letter-spacing: -0.3px;
  margin: 0 0 4px;
}
.device-inputs .crumb { font-size: 11px; color: var(--ink-mute); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.4px; }
.device-inputs .ip-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin: 14px 0;
}
.device-inputs .ip {
  display: flex; flex-direction: column; gap: 5px;
}
.device-inputs .ip .l { font-size: 11px; color: var(--ink-secondary); font-weight: 500; }
.device-inputs .ip .v {
  font-feature-settings: "ss01", "tnum"; font-variant-numeric: tabular-nums;
  border: 1px solid var(--hairline-input);
  border-radius: 6px;
  padding: 7px 10px;
  font-size: 13px; color: var(--ink);
  background: #fff;
}
.device-inputs .ip .v.focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(31,107,74,0.14); }
.device-inputs .accord {
  margin-top: 18px;
  border-top: 1px solid var(--hairline);
  padding-top: 14px;
}
.device-inputs .accord-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0;
  font-size: 12px; color: var(--ink-secondary);
}
.device-inputs .accord-row .ix {
  width: 22px; height: 22px; border-radius: 6px;
  background: var(--canvas-soft); border: 1px solid var(--hairline);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--ink-mute); margin-right: 8px;
  font-feature-settings: "ss01","tnum";
}

.device-results {
  padding: 28px 28px;
  background: linear-gradient(180deg, #fbfcfe, #fff);
}
.device-results .label {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--ink-mute); font-weight: 500;
}
.device-results .hero-num {
  font-family: var(--font-display);
  font-size: 44px; font-weight: 300; letter-spacing: -1.2px;
  color: var(--ok);
  margin-top: 6px;
  font-feature-settings: "ss01","tnum"; font-variant-numeric: tabular-nums;
}
.device-results .delta-pill {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--ok-bg); color: var(--ok);
  padding: 2px 8px; border-radius: 9999px;
  font-size: 11px; font-weight: 500; margin-top: 8px;
}
.device-results .grid2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--hairline);
  margin-top: 24px; border: 1px solid var(--hairline); border-radius: 8px; overflow: hidden;
}
.device-results .grid2 .cell { background: #fff; padding: 10px 12px; }
.device-results .grid2 .cell .l { font-size: 10px; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.4px; font-weight: 500; }
.device-results .grid2 .cell .v {
  font-family: var(--font-display); font-size: 16px; font-weight: 400;
  letter-spacing: -0.3px; color: var(--ink); margin-top: 2px;
  font-feature-settings: "ss01","tnum"; font-variant-numeric: tabular-nums;
}
.device-results .badges { display: flex; flex-direction: column; gap: 6px; margin-top: 16px; }
.device-results .b {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; padding: 4px 9px; border-radius: 9999px;
  font-weight: 500;
}
.device-results .b.ok { background: var(--ok-bg); color: var(--ok); }
.device-results .b.warn { background: var(--warn-bg); color: var(--warn); }
.device-results .b .d { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.device-results .ex {
  margin-top: 18px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.device-results .ex button {
  border: 0; background: var(--primary); color: #fff;
  padding: 9px; border-radius: 9999px;
  font-size: 12px; font-weight: 500; cursor: pointer; font-family: inherit;
}
.device-results .ex button.ghost { background: #fff; color: var(--primary); border: 1px solid var(--hairline); }

/* Floating UI annotations on hero device */
.floater {
  position: absolute;
  background: #fff; border: 1px solid var(--hairline);
  border-radius: 10px; box-shadow: 0 8px 24px rgba(0,55,112,0.10);
  padding: 12px 14px;
  font-size: 12px; color: var(--ink-secondary);
  font-weight: 300;
  display: flex; align-items: center; gap: 10px;
}
.floater .ico {
  width: 26px; height: 26px; border-radius: 7px;
  background: var(--ok-bg); color: var(--ok);
  display: inline-flex; align-items: center; justify-content: center;
}
.floater.warn .ico { background: var(--warn-bg); color: var(--warn); }
.floater.indigo .ico { background: rgba(31,107,74,0.12); color: var(--primary); }
.floater strong { color: var(--ink); font-weight: 500; }

/* Logos strip */
.logos-band {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: #fbfcfe;
  padding: 28px 24px;
}
.logos-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
  font-size: 13px; color: var(--ink-mute);
}
.logos-inner .lbl { white-space: nowrap; }
.logos-inner .lgs {
  display: flex; gap: 40px; align-items: center; flex: 1;
  font-family: var(--font-display);
  letter-spacing: -0.4px; opacity: 0.65;
}
.logos-inner .lgs span { font-size: 17px; font-weight: 400; color: var(--ink); }

/* Section base */
.lp-section {
  max-width: 1200px; margin: 0 auto;
  padding: 96px 24px;
}
.lp-section.tinted { background: var(--canvas-soft); max-width: none; padding-left: 0; padding-right: 0; }
.lp-section.tinted .lp-section-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.lp-section-eyebrow {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--primary); font-weight: 500; margin-bottom: 14px;
}
.lp-section h2 {
  font-family: var(--font-display);
  font-size: 48px; font-weight: 300; line-height: 1.1; letter-spacing: -1.2px;
  margin: 0 0 16px; color: var(--ink);
}
.lp-section .lp-section-lead {
  font-size: 18px; font-weight: 300; line-height: 1.55;
  color: var(--ink-secondary); max-width: 620px;
  margin: 0;
}

/* Problem framing */
.problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 56px;
}
.problem-card {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 300; line-height: 1.3; letter-spacing: -0.3px;
  color: var(--ink);
  padding: 32px 0 0;
  border-top: 2px solid var(--ink);
}
.problem-card .num {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 500; letter-spacing: 0.5px;
  text-transform: uppercase; color: var(--ink-mute);
  margin-bottom: 12px;
  font-feature-settings: "ss01","tnum";
}
.transitional {
  margin-top: 56px;
  font-family: var(--font-display);
  font-size: 28px; font-weight: 300; letter-spacing: -0.4px;
  color: var(--ink);
}
.transitional .underline {
  text-decoration: underline;
  text-decoration-color: var(--accent-rust);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

/* Three calculators */
.calcs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 56px;
}
.calc-card {
  background: #fff; border: 1px solid var(--hairline); border-radius: 14px;
  padding: 28px; display: flex; flex-direction: column; gap: 14px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  cursor: pointer;
}
.calc-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 16px 40px rgba(31,107,74,0.10);
}
.calc-card .topline {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.4px;
  color: var(--primary); font-weight: 500;
}
.calc-card .preview {
  background: var(--canvas-soft); border-radius: 10px;
  padding: 18px; height: 180px;
  border: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 8px; justify-content: center;
  font-feature-settings: "ss01","tnum"; font-variant-numeric: tabular-nums;
}
.calc-card .preview .label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.4px; color: var(--ink-mute); font-weight: 500; }
.calc-card .preview .num { font-family: var(--font-display); font-size: 30px; font-weight: 300; letter-spacing: -0.6px; color: var(--ok); }
.calc-card .preview .num.alt { color: var(--ink); }
.calc-card .preview .row { display: flex; justify-content: space-between; font-size: 11px; color: var(--ink-mute); }
.calc-card .preview .row strong { color: var(--ink); font-weight: 500; }
.calc-card h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400; letter-spacing: -0.3px;
  margin: 0;
}
.calc-card p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--ink-secondary); font-weight: 300; }
.calc-card .open-cta {
  margin-top: auto; padding-top: 8px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; color: var(--primary); font-weight: 500;
  border-top: 1px solid var(--hairline);
  padding-top: 14px;
}
.calc-card:hover .open-cta { gap: 10px; }

/* How it works */
.how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  margin-top: 64px;
  position: relative;
}
.how-step {
  position: relative;
  padding: 0;
}
.how-step .num {
  font-family: var(--font-display);
  font-size: 64px; font-weight: 300; line-height: 1;
  letter-spacing: -2px;
  color: var(--ink);
  font-feature-settings: "ss01","tnum"; font-variant-numeric: tabular-nums;
  margin-bottom: 16px;
  display: inline-block;
}
.how-step .num .accent { color: var(--accent-rust); }
.how-step h4 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400; letter-spacing: -0.3px; line-height: 1.2;
  margin: 0 0 8px;
}
.how-step p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ink-secondary); font-weight: 300; }

/* Why this is different */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: start;
}
.why-bullets { display: flex; flex-direction: column; }
.why-bullet {
  padding: 22px 0;
  border-top: 1px solid var(--hairline);
  display: grid; grid-template-columns: 24px 1fr;
  gap: 14px; align-items: start;
  font-size: 16px; color: var(--ink); font-weight: 400; line-height: 1.45;
}
.why-bullet:last-child { border-bottom: 1px solid var(--hairline); }
.why-bullet .check {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--ok-bg); color: var(--ok);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-bullet .copy { font-weight: 300; color: var(--ink-secondary); }
.why-bullet .copy strong { color: var(--ink); font-weight: 500; }

/* Lender ready */
.lender-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; margin-top: 32px;
}
.lender-copy h2 { margin-bottom: 16px; }
.lender-bullets { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.lender-bullet {
  display: flex; align-items: center; gap: 12px;
  font-size: 16px; color: var(--ink); font-weight: 400;
}
.lender-bullet .check {
  width: 22px; height: 22px; flex-shrink: 0;
  color: var(--ok);
  display: inline-flex; align-items: center; justify-content: center;
}
.lender-mock { display: flex; justify-content: center; }
.lender-pdf {
  background: #fff; border: 1px solid var(--hairline);
  border-radius: 10px; padding: 28px 32px;
  width: 100%; max-width: 440px;
  box-shadow: 0 24px 60px rgba(0,55,112,0.12), 0 4px 12px rgba(0,55,112,0.04);
  font-feature-settings: "ss01","tnum"; font-variant-numeric: tabular-nums;
}
.pdf-band { height: 4px; background: var(--primary); border-radius: 2px; width: 60px; margin-bottom: 18px; }
.pdf-title { font-family: var(--font-display); font-size: 20px; font-weight: 400; letter-spacing: -0.3px; color: var(--ink); }
.pdf-sub { font-size: 12px; color: var(--ink-mute); margin: 4px 0 18px; }
.pdf-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--hairline);
  font-size: 13px; color: var(--ink-secondary); font-weight: 300;
}
.pdf-row strong { color: var(--ink); font-weight: 500; }
.pdf-row.total {
  border-bottom: 0; padding-top: 14px; margin-top: 4px;
  border-top: 2px solid var(--ink);
  font-size: 14px; color: var(--ink); font-weight: 500;
}
.pdf-row.total strong { color: var(--ok); font-size: 18px; }
.pdf-foot {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-top: 28px;
}
.sig-line {
  border-top: 1px solid var(--ink-secondary);
  padding-top: 6px; font-size: 10px;
  color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.4px;
}

/* Testimonial */
.testimonial-inner { max-width: 920px; margin: 0 auto; text-align: center; }
.testimonial-inner .stars { color: var(--primary); display: flex; justify-content: center; gap: 4px; margin-bottom: 28px; }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 300; line-height: 1.35; letter-spacing: -0.6px;
  color: var(--ink);
  margin: 0 0 32px;
  text-wrap: pretty;
}
.testimonial-author {
  display: inline-flex; align-items: center; gap: 14px;
  text-align: left;
}
.testimonial-author .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, #c5a96a, #8e7846);
}
.testimonial-author .name { font-size: 14px; font-weight: 500; color: var(--ink); }
.testimonial-author .meta { font-size: 13px; color: var(--ink-mute); font-weight: 300; }
.testimonial-quote, .testimonial-author { animation: testimonial-fade 480ms ease both; }
@keyframes testimonial-fade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.testimonial-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 28px;
}
.testimonial-dot {
  width: 7px; height: 7px; padding: 0; border: 0; border-radius: 50%;
  background: var(--hairline);
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}
.testimonial-dot:hover { background: var(--ink-mute); }
.testimonial-dot.on { background: var(--primary); transform: scale(1.2); }

/* Stat cards — Stripe DS card-feature pattern */
.stat-strip {
  margin-top: var(--space-huge);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  text-align: left;
}
.stat-card {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: var(--space-xxl);
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 16px 40px rgba(31,107,74,0.10);
}
.stat-card .stat-num {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -2.4px;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}
.stat-card .stat-num .pct {
  font-size: 56px;
  letter-spacing: -1.6px;
  margin-left: 2px;
  color: var(--primary);
}
.stat-card .stat-label {
  font-size: 17px;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 400;
  max-width: 32ch;
}
@media (max-width: 760px) {
  .stat-strip { grid-template-columns: 1fr; }
  .stat-card .stat-num { font-size: 60px; }
  .stat-card .stat-num .pct { font-size: 44px; }
}

/* Stat-strip CTA — heading + button below stat cards */
.stat-cta {
  margin-top: var(--space-huge);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
}
.stat-cta h2 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 300;
  letter-spacing: -1.2px;
  line-height: 1.1;
  color: var(--ink);
  margin: 0;
  max-width: 18ch;
}
.stat-cta .btn-primary-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--primary);
  color: #fff;
  border: 0;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 24px;
  cursor: pointer;
  line-height: 1;
  transition: background 160ms ease;
}
.stat-cta .btn-primary-pill:hover { background: var(--primary-deep); }
.stat-cta .btn-primary-pill:active { background: var(--primary-press); }
@media (max-width: 760px) {
  .stat-cta h2 { font-size: 32px; }
}

/* Export comparison */
.exp-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-top: 56px;
}
.exp-card {
  background: #fff; border: 1px solid var(--hairline); border-radius: 14px;
  padding: 32px; display: flex; flex-direction: column; gap: 16px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.exp-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 16px 40px rgba(31,107,74,0.10);
}
.exp-card.dark:hover {
  border-color: transparent;
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}
.exp-card.dark {
  background: var(--ink); color: #fff; border: 0;
}
.exp-card.dark .exp-list li { color: rgba(255,255,255,0.85); }
.exp-card.dark .exp-list li::before { background: var(--lavender); }
.exp-card.dark h3 { color: #fff; }
.exp-card .badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px; border-radius: 9999px;
  background: var(--canvas-soft);
  width: fit-content;
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.4px;
  color: var(--ink-secondary);
}
.exp-card.dark .badge { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); }
.exp-card .badge .ico { width: 14px; height: 14px; }
.exp-card h3 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 300; letter-spacing: -0.5px;
  margin: 0;
}
.exp-card .price {
  font-family: var(--font-display);
  font-size: 38px; font-weight: 300; letter-spacing: -0.8px;
  font-feature-settings: "ss01","tnum"; font-variant-numeric: tabular-nums;
}
.exp-card.dark .price { color: #fff; }
.exp-list { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 10px; }
.exp-list li {
  font-size: 14px; line-height: 1.5; color: var(--ink-secondary); font-weight: 300;
  display: flex; gap: 10px; align-items: flex-start;
}
.exp-list li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary); margin-top: 8px; flex-shrink: 0;
}

/* Pricing teaser */
.lp-pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 720px; margin: 56px auto 0;
}
.lp-pricing-card {
  background: #fff; border: 1px solid var(--hairline); border-radius: 14px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.lp-pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 16px 40px rgba(31,107,74,0.10);
}
.lp-pricing-card.feat:hover {
  border-color: transparent;
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}
.lp-pricing-card.feat {
  background: var(--ink); color: #fff; border: 0;
}
.lp-pricing-card .pop-badge {
  position: absolute; top: -10px; right: 18px;
  background: var(--accent-rust); color: #fff;
  padding: 4px 12px; border-radius: 9999px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.4px; text-transform: uppercase;
}
.lp-pricing-card .pname { font-size: 13px; font-weight: 500; }
.lp-pricing-card.feat .pname { color: rgba(255,255,255,0.85); }
.lp-pricing-card .pprice {
  font-family: var(--font-display);
  font-size: 44px; font-weight: 300; letter-spacing: -1.2px;
  font-feature-settings: "ss01","tnum"; font-variant-numeric: tabular-nums;
}
.lp-pricing-card.feat .pprice { color: #fff; }
.lp-pricing-card .pprice small {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 400; color: var(--ink-mute);
  letter-spacing: 0;
}
.lp-pricing-card.feat .pprice small { color: rgba(255,255,255,0.65); }
.lp-pricing-card .psub {
  font-size: 13px; color: var(--ink-secondary); font-weight: 300;
}
.lp-pricing-card.feat .psub { color: rgba(255,255,255,0.75); }
.pricing-link {
  text-align: center; margin-top: 32px;
}
.pricing-link a { color: var(--primary); font-size: 14px; text-decoration: none; font-weight: 500; }
.pricing-link .btn-primary-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

/* FAQ section */
.faq-list { margin-top: 0; max-width: 760px; }
.faq-list .faq-item { border-top: 1px solid var(--hairline); cursor: pointer; }
.faq-list .faq-item:last-child { border-bottom: 1px solid var(--hairline); }
.faq-list .faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; user-select: none;
  font-size: 17px; color: var(--ink); font-weight: 400; line-height: 1.4;
  gap: 24px;
}
.faq-list .faq-q svg { flex-shrink: 0; color: var(--ink-mute); }
.faq-list .faq-item.open .faq-q { color: var(--ink); }
.faq-list .faq-a {
  padding: 0 56px 22px 0;
  font-size: 15px; color: var(--ink-secondary); line-height: 1.65; font-weight: 300;
}

/* Final CTA on landing */
.lp-final {
  background:
    radial-gradient(62% 52% at 12% 6%, rgba(224,184,79,.80) 0%, transparent 56%),
    linear-gradient(158deg, #FBF8EF 0%, #ECDA9E 20%, #6FC089 54%, #1E8F4C 82%, #11603A 100%);
  color: var(--ink);
  position: relative; overflow: hidden;
}
.lp-final-inner {
  position: relative;
  max-width: 1200px; margin: 0 auto;
  padding: 96px 24px;
  text-align: center;
}
.lp-final h2 {
  font-family: var(--font-display);
  font-size: 56px; font-weight: 300; letter-spacing: -1.6px;
  margin: 0 0 12px; color: var(--ink);
  line-height: 1.05;
}
.lp-final p { margin: 0 0 32px; color: rgba(12,42,26,0.75); font-size: 18px; font-weight: 300; }
.lp-final .lp-ctas .btn-primary-pill { background: var(--ink); color: #fff; }
.lp-final .lp-ctas .btn-primary-pill:hover { background: #0a2014; }
/* Selector carries .lp-final so it beats `.lp-final p` (which would
   otherwise zero out the top margin and stick this to the CTA button). */
.lp-final .lp-final-contact { margin: 24px 0 0; font-size: 16px; font-weight: 300; color: rgba(12,42,26,0.62); }
.lp-final-contact a { color: var(--ink); text-decoration: none; border-bottom: 1px solid rgba(12,42,26,0.35); }
.lp-final-contact a:hover { color: var(--ink); border-bottom-color: var(--ink); }

/* Newsletter at footer */
.newsletter {
  max-width: 1200px; margin: 0 auto; padding: 56px 24px 0;
  border-top: 1px solid var(--hairline);
}
.newsletter h4 { font-family: var(--font-display); font-size: 18px; font-weight: 400; margin: 0 0 8px; }
.newsletter p { font-size: 13px; color: var(--ink-mute); margin: 0 0 16px; font-weight: 300; }
.newsletter form { display: flex; gap: 8px; max-width: 420px; }
.newsletter input { flex: 1; padding: 10px 14px; border: 1px solid var(--hairline-input); border-radius: 9999px; font-family: inherit; font-size: 13px; outline: none; }
.newsletter input:focus { border-color: var(--primary); }
.newsletter button { background: var(--ink); color: #fff; border: 0; border-radius: 9999px; padding: 10px 18px; font-family: inherit; font-size: 13px; font-weight: 500; cursor: pointer; }
