:root {
  --ink: #0a1828;
  --ink-soft: #112b40;
  --lime: #d2a745;
  --lime-dark: #b78a30;
  --cream: #f2f0ec;
  --paper: #faf9f6;
  --white: #ffffff;
  --silver: #a4a7ab;
  --muted: #68747d;
  --line: #d9d9d7;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s cubic-bezier(.2,.75,.25,1), transform .75s cubic-bezier(.2,.75,.25,1);
  transition-delay: var(--reveal-delay, 0ms);
}
body.motion-ready [data-reveal="left"] { transform: translateX(-32px); }
body.motion-ready [data-reveal="right"] { transform: translateX(32px); }
body.motion-ready [data-reveal].is-visible { opacity: 1; transform: translate(0); }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 110px 0; }

.announcement {
  background: linear-gradient(90deg, #b8892f, #e1bd68, #b8892f);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}
.announcement-inner { height: 34px; display: flex; align-items: center; justify-content: space-between; }
.announcement a { text-decoration: underline; text-underline-offset: 3px; }
.site-header { position: relative; z-index: 50; background: var(--ink); }
.navbar { height: 82px; display: flex; align-items: center; gap: 44px; }
.logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo img { display: block; width: 188px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 34px; margin-left: auto; }
.nav-links a { font-size: 14px; font-weight: 600; color: #c3c6c9; }
.nav-links a:hover { color: var(--white); }
.button {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 22px;
  border-radius: 5px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .25s, background .25s, box-shadow .25s;
}
.button::after {
  content: "";
  position: absolute;
  width: 45px;
  height: 180%;
  left: -75px;
  top: -40%;
  background: rgba(255,255,255,.3);
  transform: rotate(18deg);
  transition: left .55s ease;
}
.button:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(0,0,0,.16); }
.button:hover::after { left: calc(100% + 35px); }
.button > span { position: relative; z-index: 1; transition: transform .25s ease; }
.button:hover > span { transform: translate(2px, -2px); }
.button-small { padding: 13px 17px; color: var(--ink); background: var(--lime); font-size: 13px; }
.button-primary { color: var(--ink); background: linear-gradient(135deg, #e1bd68, var(--lime-dark)); box-shadow: 0 12px 24px rgba(183, 138, 48, .2); }
.button-primary:hover { background: var(--lime-dark); }
.menu-toggle { display: none; border: 0; background: transparent; }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  padding: 92px 0 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .22; }
.hero-glow-one { width: 500px; height: 500px; background: #365978; left: -230px; top: -120px; }
.hero-glow-two { width: 340px; height: 340px; background: var(--lime); right: -240px; top: 180px; opacity: .1; }
.hero-grid { min-height: 570px; position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 60px; }
.eyebrow { display: flex; align-items: center; gap: 10px; color: #687883; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; }
.eyebrow > span { width: 20px; height: 2px; background: var(--lime-dark); }
.eyebrow.light { color: #aeb2b7; }
h1, h2 { font: 700 58px/1.08 "Manrope", sans-serif; letter-spacing: -3.1px; margin: 22px 0; }
h1 em, h2 em { color: var(--lime); font-style: normal; }
.hero-copy > p { max-width: 620px; color: #b6c3c4; font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 14px; }
.play-icon { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; display: inline-grid; place-items: center; font-size: 10px; padding-left: 2px; }
.hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 42px; }
.avatar-stack { display: flex; }
.avatar-stack span { width: 34px; height: 34px; margin-left: -7px; border: 2px solid var(--ink); border-radius: 50%; display: grid; place-items: center; color: var(--ink); background: #e9cbb8; font-size: 9px; font-weight: 800; }
.avatar-stack span:first-child { margin-left: 0; background: #aac7c5; }
.avatar-stack span:nth-child(2) { background: #e5b7a8; }
.avatar-stack span:nth-child(3) { background: #d7d39d; }
.avatar-stack span:last-child { background: var(--lime); }
.hero-trust strong, .hero-trust small { display: block; }
.hero-trust strong { font-size: 13px; }
.hero-trust small { color: #879a9c; font-size: 11px; margin-top: 2px; }
.hero-visual { position: relative; height: 470px; }
.funding-network { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.funding-network .network-path { fill: none; stroke: rgba(210,167,69,.22); stroke-width: 1.2; stroke-dasharray: 7 12; }
.funding-network circle { fill: var(--lime); opacity: .6; filter: drop-shadow(0 0 6px rgba(210,167,69,.55)); }
.network-path-one { animation: networkFlow 16s linear infinite; }
.network-path-two { animation: networkFlow 20s linear infinite reverse; }
.visual-orbit { position: absolute; border: 1px solid rgba(210,167,69,.18); border-radius: 50%; }
.orbit-one { width: 470px; height: 470px; top: 10px; left: 30px; animation: orbitRotate 28s linear infinite; }
.orbit-two { width: 330px; height: 330px; top: 80px; left: 100px; animation: orbitRotate 22s linear infinite reverse; }
.orbit-one::after, .orbit-two::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 12%;
  left: 14%;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(210,167,69,.75);
}
.capital-card {
  position: absolute;
  width: 330px;
  height: 208px;
  top: 113px;
  left: 94px;
  padding: 27px;
  border-radius: 18px;
  color: var(--ink);
  background: linear-gradient(135deg, #edcf84, #b8892f);
  transform: rotate(-5deg);
  box-shadow: 0 32px 70px rgba(0,0,0,.35);
  overflow: hidden;
  transition: transform .25s ease-out;
}
.capital-card::after { content: ""; position: absolute; width: 230px; height: 230px; border: 1px solid rgba(0,0,0,.09); border-radius: 50%; right: -115px; top: -80px; box-shadow: 0 0 0 34px rgba(255,255,255,.05), 0 0 0 68px rgba(255,255,255,.04); }
.card-top { display: flex; justify-content: space-between; position: relative; z-index: 1; }
.mini-logo { font: 800 16px "Manrope"; }
.card-chip { width: 31px; height: 23px; background: rgba(7,28,32,.17); border-radius: 4px; }
.capital-card p { margin: 24px 0 0; font-size: 11px; opacity: .68; }
.capital-card > strong { font: 800 30px "Manrope"; }
.card-meta { margin-top: 18px; display: flex; gap: 36px; }
.card-meta span { font-size: 12px; font-weight: 800; }
.card-meta small { display: block; font-size: 9px; font-weight: 500; opacity: .6; }
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  color: var(--ink);
  background: rgba(255,255,255,.94);
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(0,0,0,.2);
  backdrop-filter: blur(10px);
}
.floating-card small, .floating-card strong { display: block; }
.floating-card small { color: #718083; font-size: 9px; }
.floating-card strong { font-size: 12px; }
.approval-card { top: 64px; right: 5px; }
.status-icon { width: 28px; height: 28px; display: grid; place-items: center; background: #f1e5c7; color: #8a641d; border-radius: 50%; font-weight: 800; }
.lender-card { bottom: 65px; left: 18px; display: block; width: 145px; }
.lender-card > strong { font: 800 19px "Manrope"; margin: 2px 0 8px; }
.tiny-bars { display: flex; align-items: end; height: 24px; gap: 4px; }
.tiny-bars span { flex: 1; height: 10px; background: var(--lime-dark); border-radius: 2px 2px 0 0; }
.tiny-bars span:nth-child(2) { height: 17px; }.tiny-bars span:nth-child(3) { height: 14px; }.tiny-bars span:nth-child(4) { height: 23px; }
.secured-badge { position: absolute; bottom: 18px; right: 27px; display: flex; gap: 10px; align-items: center; color: #b9c5c6; }
.secured-badge > span { color: var(--lime); }
.secured-badge strong, .secured-badge small { display: block; }
.secured-badge strong { color: white; font-size: 11px; }.secured-badge small { font-size: 9px; }
.approval-card { animation: cardFloat 5.5s ease-in-out infinite; }
.lender-card { animation: cardFloat 6.5s ease-in-out -2s infinite; }
.secured-badge { animation: cardFloat 7s ease-in-out -1s infinite; }
.trust-strip { position: relative; z-index: 2; border-top: 1px solid rgba(255,255,255,.1); min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.trust-strip > span { color: #7e9294; font-size: 11px; max-width: 115px; line-height: 1.4; }
.partner-list { display: flex; align-items: center; justify-content: space-between; flex: 1; color: #9aabab; opacity: .72; }
.partner-list strong { font-size: 13px; }

.section-heading h2, .why-copy h2, .calculator-section h2, .faq-section h2 { font-size: 46px; }
.section-heading h2 em, .calculator-section h2 em, .faq-section h2 em { color: #81868b; }
.split-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 50px; }
.split-heading > p { width: 390px; margin-bottom: 28px; color: var(--muted); }
.loan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.loan-card { min-height: 400px; position: relative; padding: 30px 26px; background: #fff; border: 1px solid #e1e4de; border-radius: 8px; overflow: hidden; transition: transform .3s, box-shadow .3s, border-color .3s; }
.loan-card::after { content: ""; position: absolute; width: 150px; height: 150px; right: -90px; top: -90px; border: 1px solid rgba(183,138,48,.2); border-radius: 50%; transition: transform .5s ease, background .5s ease; }
.loan-card:hover { transform: translateY(-8px); border-color: rgba(183,138,48,.35); box-shadow: 0 24px 50px rgba(21,43,47,.11); }
.loan-card:hover::after { transform: scale(1.35); background: rgba(210,167,69,.05); }
.loan-card.featured { color: white; background: var(--ink); border-color: var(--ink); }
.loan-icon { width: 46px; height: 46px; display: grid; place-items: center; color: var(--ink); background: var(--lime); border-radius: 50%; font-size: 20px; font-weight: 800; }
.loan-tag { position: absolute; right: 20px; top: 25px; padding: 6px 9px; color: var(--lime); border: 1px solid rgba(210,167,69,.35); border-radius: 20px; font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.loan-card h3 { margin: 30px 0 12px; font: 700 20px "Manrope"; }
.loan-card p { color: var(--muted); font-size: 13px; line-height: 1.65; }
.loan-card.featured p { color: #a5b4b5; }
.loan-card ul { list-style: none; padding: 10px 0; margin: 0; font-size: 12px; line-height: 2; }
.loan-card li::before { content: "✓"; color: var(--lime-dark); font-weight: 800; margin-right: 8px; }
.loan-card a { position: absolute; left: 26px; right: 26px; bottom: 25px; padding-top: 15px; border-top: 1px solid #e4e7e1; display: flex; justify-content: space-between; font-size: 12px; font-weight: 800; }
.loan-card.featured a { border-color: rgba(255,255,255,.12); }
.cgtmse-card { background: #f3ead5; }
.cgtmse-card .loan-icon { font-size: 11px; }
.business-proof { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 420px; margin-top: 18px; overflow: hidden; color: white; background: var(--ink); border-radius: 10px; box-shadow: 0 22px 50px rgba(10,24,40,.12); }
.business-proof-image { position: relative; min-height: 420px; overflow: hidden; }
.business-proof-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 55%, rgba(10,24,40,.4)); }
.business-proof-image img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; transition: transform 1s cubic-bezier(.2,.75,.25,1); }
.business-proof:hover .business-proof-image img { transform: scale(1.035); }
.business-proof-image > span, .advisory-scene > small { position: absolute; z-index: 2; left: 16px; bottom: 14px; padding: 5px 8px; color: rgba(255,255,255,.75); background: rgba(10,24,40,.68); border: 1px solid rgba(255,255,255,.12); border-radius: 3px; font-size: 7px; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(7px); }
.business-proof-copy { align-self: center; padding: 50px; }
.business-proof-copy .eyebrow { color: #a6b1b7; }
.business-proof-copy h3 { margin: 18px 0; font: 700 34px/1.12 "Manrope", sans-serif; letter-spacing: -1.8px; }
.business-proof-copy h3 em { color: var(--lime); font-style: normal; }
.business-proof-copy > p { color: #a6b3ba; font-size: 13px; }
.business-proof-points { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 25px; }
.business-proof-points span { padding: 7px 10px; color: #dcc786; border: 1px solid rgba(210,167,69,.28); border-radius: 20px; font-size: 8px; font-weight: 700; }

.product-details-section { padding: 0 0 110px; background: var(--paper); }
.product-details { display: grid; gap: 16px; }
.product-detail { scroll-margin-top: 30px; display: grid; grid-template-columns: 45px .85fr 1.15fr; gap: 32px; align-items: start; padding: 42px; background: white; border: 1px solid var(--line); border-radius: 8px; }
.product-detail:nth-child(2) { background: #f3f1ec; }
.product-detail:nth-child(3) { color: white; background: var(--ink-soft); border-color: var(--ink-soft); }
.product-detail-number { color: var(--lime-dark); font: 800 11px "Manrope"; }
.product-detail h2 { margin: 15px 0 12px; font-size: 30px; letter-spacing: -1.5px; }
.product-detail-main > p { color: var(--muted); font-size: 13px; max-width: 430px; }
.product-detail:nth-child(3) .product-detail-main > p { color: #a5b4bd; }
.button-dark { margin-top: 12px; color: white; background: var(--ink); font-size: 11px; }
.product-detail:nth-child(3) .button-dark { color: var(--ink); background: var(--lime); }
.product-facts { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.product-detail:nth-child(3) .product-facts { border-color: rgba(255,255,255,.13); }
.product-facts > div { min-height: 105px; padding: 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-detail:nth-child(3) .product-facts > div { border-color: rgba(255,255,255,.13); }
.product-facts small, .product-facts strong { display: block; }
.product-facts small { color: #8a969b; font-size: 8px; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.product-facts strong { margin-top: 7px; font: 700 15px "Manrope"; }
.product-facts p { margin: 7px 0 0; color: var(--muted); font-size: 10px; line-height: 1.55; }
.product-detail:nth-child(3) .product-facts p { color: #9dabb4; }
.product-disclaimer { margin: 6px 0 0; color: #899398; font-size: 9px; text-align: center; }

.why-section { color: var(--white); background: var(--ink); overflow: hidden; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.why-visual { height: 480px; position: relative; }
.why-visual::before { content: ""; position: absolute; width: 430px; height: 430px; border-radius: 50%; background: #122b42; top: 5px; left: 25px; box-shadow: 0 0 0 55px rgba(55,82,106,.14); }
.metric-card { position: absolute; border: 1px solid rgba(255,255,255,.12); background: rgba(17,43,64,.9); backdrop-filter: blur(8px); border-radius: 12px; box-shadow: 0 25px 55px rgba(0,0,0,.25); }
.metric-pulse { position: absolute; width: 9px; height: 9px; z-index: 2; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 0 rgba(210,167,69,.45); animation: metricPulse 2.6s ease-out infinite; }
.pulse-one { left: 35px; top: 92px; }
.pulse-two { right: 38px; bottom: 76px; animation-delay: 1.3s; }
.metric-main { width: 330px; height: 260px; top: 96px; left: 65px; padding: 30px; }
.metric-card > span { display: block; color: #9fafb0; font-size: 11px; }
.metric-main > strong { font: 800 43px "Manrope"; }
.growth-line { margin-top: 25px; color: var(--lime); overflow: hidden; }
.growth-line path:first-child { stroke-dasharray: 400; stroke-dashoffset: 400; }
.is-visible .growth-line path:first-child { animation: drawChart 1.8s .35s ease forwards; }
.metric-side { padding: 18px 22px; top: 34px; right: 10px; }
.metric-side strong { display: block; color: var(--lime); font: 800 24px "Manrope"; }
.metric-score { padding: 18px 22px; bottom: 25px; right: 0; }
.metric-score strong { display: block; font: 800 24px "Manrope"; }
.metric-score small { color: var(--lime); font-size: 9px; letter-spacing: 2px; }
.why-copy h2 { margin-top: 20px; }
.why-copy > p { color: #a6b4b5; max-width: 520px; }
.benefit-list { margin-top: 32px; }
.benefit-list > div { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.11); }
.benefit-list > div > span { color: var(--lime); font: 700 11px "Manrope"; }
.benefit-list strong { font: 700 14px "Manrope"; }
.benefit-list p { color: #819395; font-size: 11px; margin: 3px 0 0; }

.guidance-section { background: var(--paper); }
.advisory-scene { position: relative; min-height: 450px; margin-bottom: 18px; overflow: hidden; background: var(--ink); border-radius: 10px; }
.advisory-scene::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,24,40,.08) 30%, rgba(10,24,40,.85) 100%); }
.advisory-scene img { width: 100%; height: 450px; display: block; object-fit: cover; object-position: center; transition: transform 1s cubic-bezier(.2,.75,.25,1); }
.advisory-scene:hover img { transform: scale(1.025); }
.advisory-scene-overlay { position: absolute; z-index: 2; right: 46px; bottom: 45px; width: min(420px, 45%); padding: 26px; color: white; background: rgba(10,24,40,.82); border: 1px solid rgba(255,255,255,.14); border-radius: 8px; backdrop-filter: blur(10px); }
.advisory-scene-overlay span { display: block; margin-bottom: 10px; color: var(--lime); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.advisory-scene-overlay strong { font: 700 20px/1.45 "Manrope", sans-serif; }
.guidance-journey { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.journey-progress { position: absolute; z-index: 2; left: 0; right: 0; top: -2px; height: 3px; overflow: hidden; pointer-events: none; }
.journey-progress span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--lime-dark), #e5c879); transform: scaleX(0); transform-origin: left; }
.guidance-journey.is-visible .journey-progress span { animation: journeyProgress 1.8s .3s cubic-bezier(.2,.8,.25,1) forwards; }
.guidance-journey article { position: relative; min-height: 300px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; }
.guidance-journey article > span { position: absolute; right: 20px; top: 20px; color: #a1a9ac; font-size: 9px; font-weight: 800; }
.journey-icon { width: 44px; height: 44px; display: grid; place-items: center; color: var(--ink); background: var(--lime); border-radius: 50%; font-size: 18px; font-weight: 800; }
.guidance-journey article:hover .journey-icon { animation: iconPop .5s ease; }
.guidance-journey h3 { margin: 48px 0 12px; font: 700 18px "Manrope"; }
.guidance-journey p { color: var(--muted); font-size: 12px; line-height: 1.7; }
.guidance-cta { display: flex; justify-content: space-between; align-items: center; gap: 30px; margin-top: 18px; padding: 24px 28px; color: white; background: var(--ink); border-radius: 7px; }
.guidance-cta strong, .guidance-cta span { display: block; }
.guidance-cta strong { font: 700 15px "Manrope"; }
.guidance-cta > div > span { margin-top: 3px; color: #92a1aa; font-size: 10px; }

.lender-section { background: var(--cream); }
.lender-intro { max-width: 580px; margin: 0 auto; color: var(--muted); font-size: 13px; }
.lender-logo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 45px; }
.lender-logo { min-height: 102px; display: flex; align-items: center; justify-content: center; padding: 18px; background: white; border: 1px solid #e2e1dc; border-radius: 7px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.lender-logo:hover { transform: translateY(-4px); border-color: rgba(183,138,48,.35); box-shadow: 0 14px 30px rgba(21,43,47,.08); }
.lender-logo strong { color: #273942; font: 700 15px "Manrope"; line-height: 1.2; text-align: center; }
.more-lenders { color: white; background: var(--ink); }
.more-lenders span { color: var(--lime); font: 800 28px "Manrope"; }
.more-lenders strong { color: white; }
.lender-disclaimer { margin: 20px auto 0; color: #8a9396; max-width: 760px; text-align: center; font-size: 8px; }

.founder-section { color: white; background: var(--ink); overflow: hidden; }
.founder-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; }
.founder-identity { position: relative; height: 480px; }
.founder-orbit { position: absolute; width: 410px; height: 410px; left: 20px; top: 20px; border: 1px solid rgba(210,167,69,.22); border-radius: 50%; box-shadow: 0 0 0 48px rgba(210,167,69,.035), 0 0 0 96px rgba(210,167,69,.02); }
.founder-orbit-dot { position: absolute; z-index: 3; width: 10px; height: 10px; left: 62px; top: 89px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 18px rgba(210,167,69,.7); animation: founderDot 12s linear infinite; transform-origin: 163px 136px; }
.founder-photo { position: absolute; width: 315px; height: 390px; left: 68px; top: 35px; padding: 5px; background: linear-gradient(145deg,#ead18f,#b88a32); border-radius: 155px 155px 12px 12px; box-shadow: 0 30px 60px rgba(0,0,0,.3); overflow: hidden; }
.founder-photo img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 25%; border-radius: 150px 150px 9px 9px; }
.founder-photo > span { position: absolute; left: 18px; right: 18px; bottom: 17px; padding: 12px 15px; color: #d2d8dc; background: rgba(10,24,40,.9); border: 1px solid rgba(255,255,255,.12); border-radius: 6px; backdrop-filter: blur(8px); font-size: 9px; }
.founder-photo > span strong { display: block; color: white; font-size: 13px; }
.founder-company { position: absolute; right: 0; bottom: 20px; width: 190px; padding: 18px; color: var(--ink); background: white; border-radius: 7px; box-shadow: 0 18px 35px rgba(0,0,0,.22); }
.founder-company span, .founder-company strong { display: block; }
.founder-company span { color: #829096; font-size: 8px; text-transform: uppercase; letter-spacing: .1em; }
.founder-company strong { margin-top: 6px; font-size: 11px; }
.founder-copy h2 { font-size: 48px; }
.founder-copy > p { color: #9eacb4; font-size: 13px; line-height: 1.75; }
.founder-copy .founder-lead { color: white; font-size: 16px; }
.founder-values { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 25px; }
.founder-values span { padding: 8px 11px; color: #d7c38e; border: 1px solid rgba(210,167,69,.3); border-radius: 20px; font-size: 9px; font-weight: 800; }

.calculator-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 100px; align-items: center; }
.section-intro { color: var(--muted); max-width: 500px; }
.calculator { margin-top: 35px; }
.calculator > label { display: flex; justify-content: space-between; font-size: 13px; font-weight: 700; }
.calculator output { color: var(--ink); font: 800 18px "Manrope"; }
input[type="range"] { width: 100%; height: 5px; margin: 18px 0 5px; appearance: none; border-radius: 4px; background: linear-gradient(90deg, var(--lime-dark) 9%, #d8dadd 9%); }
input[type="range"]::-webkit-slider-thumb { appearance: none; width: 19px; height: 19px; border: 5px solid var(--ink); border-radius: 50%; background: var(--lime); cursor: pointer; }
.range-labels { display: flex; justify-content: space-between; color: #889598; font-size: 10px; }
.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 25px; }
.input-row label { font-size: 12px; font-weight: 700; }
.input-wrap { display: flex; margin-top: 8px; background: white; border: 1px solid var(--line); border-radius: 5px; overflow: hidden; }
.input-wrap input { min-width: 0; width: 100%; border: 0; outline: 0; padding: 13px; font-weight: 700; }
.input-wrap i { white-space: nowrap; padding: 13px; background: #f1f2ed; color: #6e7e80; font-style: normal; font-size: 11px; }
.result-card { padding: 42px; color: white; background: var(--ink); border-radius: 12px; box-shadow: 0 25px 60px rgba(7,28,32,.18); }
.result-card > span { color: #94a4a6; font-size: 12px; }
.result-card > strong { display: block; margin: 4px 0 28px; color: var(--lime); font: 800 42px "Manrope"; }
.result-breakdown { border-top: 1px solid rgba(255,255,255,.12); margin-bottom: 26px; padding-top: 10px; }
.result-breakdown > div { display: flex; justify-content: space-between; padding: 10px 0; }
.result-breakdown span { color: #8fa0a2; font-size: 11px; }
.result-breakdown strong { font-size: 12px; }
.full-width { width: 100%; }
.result-card > small { display: block; text-align: center; color: #6f8385; margin-top: 14px; font-size: 8px; }

.testimonials { background: var(--cream); }
.centered { text-align: center; }
.centered .eyebrow { justify-content: center; }
.testimonial-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; margin-top: 48px; }
.testimonial-grid blockquote { grid-column: span 2; }
.testimonial-grid blockquote:nth-child(4) { grid-column: 2 / span 2; }
.testimonial-grid blockquote:nth-child(5) { grid-column: 4 / span 2; }
blockquote { margin: 0; padding: 28px; background: white; border: 1px solid #e1e1d9; border-radius: 8px; }
blockquote { transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
blockquote:hover { transform: translateY(-6px); border-color: rgba(183,138,48,.3); box-shadow: 0 18px 38px rgba(21,43,47,.08); }
.quote-mark { color: var(--lime-dark); font: 800 42px/1 Georgia, serif; }
blockquote > p { min-height: 125px; color: #43565a; font-size: 13px; }
blockquote footer { display: grid; grid-template-columns: 38px 1fr auto; gap: 10px; align-items: center; border-top: 1px solid #e7e8e2; padding-top: 18px; }
blockquote footer > span { width: 38px; height: 38px; display: grid; place-items: center; background: #e5e3df; border-radius: 50%; font-size: 9px; font-weight: 800; }
blockquote footer strong, blockquote footer small { display: block; }
blockquote footer strong { font-size: 11px; } blockquote footer small { color: #899597; font-size: 9px; }
blockquote footer em { color: var(--lime-dark); font-size: 8px; letter-spacing: 1px; }

.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.faq-grid > div:first-child > p { color: var(--muted); max-width: 420px; }
.faq-grid .text-link { margin-top: 20px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; padding: 22px 0; border: 0; background: transparent; display: flex; justify-content: space-between; gap: 20px; text-align: left; color: var(--ink); font-weight: 700; cursor: pointer; }
.faq-item button span { color: #809092; font-size: 20px; font-weight: 400; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { margin: -6px 50px 22px 0; color: var(--muted); font-size: 13px; }
.faq-item.open .faq-answer { max-height: 150px; }

.cta-section { padding: 30px 0 100px; }
.eligibility-box { position: relative; overflow: hidden; display: grid; grid-template-columns: .8fr 1.2fr; gap: 65px; align-items: start; padding: 68px; color: white; background: var(--ink-soft); border-radius: 14px; }
.eligibility-box::before { content: ""; position: absolute; width: 380px; height: 380px; border: 1px solid rgba(210,167,69,.15); border-radius: 50%; left: -190px; bottom: -250px; box-shadow: 0 0 0 55px rgba(210,167,69,.04), 0 0 0 110px rgba(210,167,69,.025); }
.eligibility-copy { position: sticky; top: 30px; }
.eligibility-copy h2 { font-size: 41px; }
.eligibility-copy > p { color: #aeb8bf; font-size: 14px; max-width: 460px; }
.eligibility-copy > small { display: block; max-width: 430px; margin-top: 28px; color: #788b98; font-size: 9px; line-height: 1.6; }
.eligibility-points { margin-top: 30px; border-top: 1px solid rgba(255,255,255,.1); }
.eligibility-points > div { display: grid; grid-template-columns: 38px 1fr; gap: 10px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.eligibility-points > div > span { color: var(--lime); font-size: 10px; font-weight: 800; }
.eligibility-points p { margin: 0; color: #8596a1; font-size: 11px; }
.eligibility-points strong { display: block; color: white; font-size: 12px; }
.eligibility-form { position: relative; z-index: 1; padding: 30px; background: white; color: var(--ink); border-radius: 9px; box-shadow: 0 25px 50px rgba(0,0,0,.18); }
.form-title { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.form-title span { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.form-title strong { color: var(--lime-dark); font: 700 14px "Manrope"; }
.eligibility-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.eligibility-form label { display: block; }
.eligibility-form label > span:first-child { display: block; margin-bottom: 5px; font-size: 10px; font-weight: 800; }
.eligibility-form input:not([type="checkbox"]), .eligibility-form select { width: 100%; height: 43px; padding: 10px 12px; border: 1px solid #d7dbdd; border-radius: 4px; outline: none; color: var(--ink); background: white; font-size: 12px; }
.eligibility-form input:focus, .eligibility-form select:focus { border-color: var(--lime-dark); box-shadow: 0 0 0 3px rgba(210,167,69,.18); }
.field-wide { grid-column: 1 / -1; }
.currency-input { display: flex !important; align-items: center; height: 43px; margin: 0 !important; border: 1px solid #d7dbdd; border-radius: 4px; overflow: hidden; }
.currency-input:focus-within { border-color: var(--lime-dark); box-shadow: 0 0 0 3px rgba(210,167,69,.18); }
.currency-input i { padding: 0 0 0 12px; color: #7d898f; font-style: normal; font-size: 12px; }
.currency-input input { height: 41px !important; border: 0 !important; box-shadow: none !important; }
.consent-field { display: grid !important; grid-template-columns: 17px 1fr; gap: 9px; align-items: start; margin: 19px 0 15px; cursor: pointer; }
.consent-field input { width: 16px; height: 16px; accent-color: var(--lime-dark); }
.consent-field span { margin: 0 !important; color: #65737b; font-size: 9px !important; line-height: 1.5; font-weight: 500 !important; }
.eligibility-submit { width: 100%; }
.privacy-note { display: block; margin-top: 10px; color: #8a969c; font-size: 8px; line-height: 1.5; text-align: center; }
.eligibility-loader { display: none; margin-top: 16px; color: var(--lime-dark); text-align: center; font-size: 11px; font-weight: 800; }
.email-status { display: none; margin-top: 10px; padding: 9px 11px; border-radius: 4px; text-align: center; font-size: 9px; }
.email-status.sending { display: block; color: #665122; background: #faf2df; }
.email-status.sent { display: block; color: #24593a; background: #e7f4eb; }
.email-status.failed { display: block; color: #711f29; background: #fbeaec; }
.website-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.eligibility-result { display: none; margin-top: 18px; padding: 20px; border-radius: 6px; font-size: 12px; }
.eligibility-result.show { display: block; }
.eligibility-result.eligible { color: #183e29; background: #e9f4eb; border: 1px solid #c3ddc9; }
.eligibility-result.not-eligible { color: #5c391d; background: #fbf1df; border: 1px solid #e8d3ad; }
.eligibility-result.error { color: #711f29; background: #fbeaec; border: 1px solid #ecc8cd; }
.result-heading { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font: 800 18px "Manrope"; }
.result-heading span { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.7); }
.result-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 12px 0; }
.result-stats div { padding: 10px; background: rgba(255,255,255,.6); border-radius: 4px; }
.result-stats small, .result-stats strong { display: block; }
.result-stats small { opacity: .7; font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.result-issues { margin: 10px 0 0; padding-left: 18px; }
.result-issues li { margin: 6px 0; }
.assessment-note { margin: 10px 0 !important; padding: 9px 10px; background: rgba(255,255,255,.55); border-radius: 4px; font-size: 9px !important; }
.result-whatsapp { display: flex; justify-content: center; margin-top: 15px; padding: 12px; color: white; background: #187b46; border-radius: 4px; font-weight: 800; }

footer { padding: 65px 0 25px; color: #afbcbd; background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 80px; }
.logo-footer img { width: 215px; }
.footer-brand p { max-width: 320px; font-size: 12px; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 8px; font-size: 11px; }
.footer-grid > div > strong { color: white; margin-bottom: 8px; font: 700 12px "Manrope"; }
.footer-grid p { margin: 0; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 50px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #718486; font-size: 9px; }
.whatsapp { position: fixed; right: 24px; bottom: 24px; z-index: 30; width: 50px; height: 50px; display: grid; place-items: center; color: var(--ink); background: var(--lime); border-radius: 50%; font-size: 22px; box-shadow: 0 10px 28px rgba(0,0,0,.22); }
.whatsapp::before { content: ""; position: absolute; inset: -6px; border: 1px solid rgba(210,167,69,.55); border-radius: 50%; animation: whatsappPulse 2.8s ease-out infinite; }

@keyframes networkFlow { to { stroke-dashoffset: -190; } }
@keyframes orbitRotate { to { transform: rotate(360deg); } }
@keyframes cardFloat { 0%, 100% { translate: 0 0; } 50% { translate: 0 -8px; } }
@keyframes metricPulse { 70%, 100% { box-shadow: 0 0 0 22px rgba(210,167,69,0); } }
@keyframes drawChart { to { stroke-dashoffset: 0; } }
@keyframes journeyProgress { to { transform: scaleX(1); } }
@keyframes iconPop { 50% { transform: scale(1.12) rotate(6deg); } }
@keyframes founderDot { to { transform: rotate(360deg); } }
@keyframes whatsappPulse { 70%, 100% { transform: scale(1.35); opacity: 0; } }

@media (max-width: 980px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 12px; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  h1 { font-size: 47px; }
  .hero-visual { transform: scale(.85); transform-origin: center; }
  .loan-grid { grid-template-columns: 1fr 1fr; }
  .business-proof-copy { padding: 38px; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .product-detail { grid-template-columns: 35px .85fr 1.15fr; gap: 20px; padding: 32px; }
  .lender-logo-grid { grid-template-columns: repeat(3, 1fr); }
  .guidance-journey { grid-template-columns: 1fr 1fr; }
  .testimonial-grid blockquote, .testimonial-grid blockquote:nth-child(4), .testimonial-grid blockquote:nth-child(5) { grid-column: auto; }
  .why-grid, .calculator-grid { gap: 45px; }
  .founder-grid { gap: 45px; }
  .faq-grid { gap: 50px; }
  .eligibility-box { padding: 50px; grid-template-columns: .75fr 1.25fr; gap: 40px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 600px); }
  .section { padding: 75px 0; }
  .announcement-inner { justify-content: center; }
  .announcement-inner > span { display: none; }
  .navbar { height: 70px; }
  .menu-toggle { display: flex; margin-left: auto; width: 30px; height: 30px; flex-direction: column; justify-content: center; gap: 5px; padding: 3px; }
  .menu-toggle span { height: 2px; background: #d6d7d8; width: 100%; }
  .nav-links { display: none; position: absolute; top: 104px; left: 0; right: 0; padding: 25px; background: var(--ink); box-shadow: 0 14px 24px rgba(0,0,0,.18); flex-direction: column; align-items: flex-start; }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .logo img { width: 166px; }
  .hero { padding-top: 70px; }
  .hero-grid { display: block; min-height: auto; }
  h1, h2 { letter-spacing: -2px; }
  h1 { font-size: 43px; }
  .section-heading h2, .why-copy h2, .calculator-section h2, .faq-section h2, .eligibility-box h2 { font-size: 36px; }
  .hero-copy > p { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-visual { width: 540px; margin: 20px 0 -15px; left: 50%; transform: translateX(-50%) scale(.68); }
  .funding-network { opacity: .7; }
  .trust-strip { align-items: flex-start; padding: 25px 0; }
  .partner-list { flex-wrap: wrap; gap: 15px 24px; }
  .partner-list strong { font-size: 10px; }
  .split-heading { display: block; }
  .split-heading > p { width: auto; }
  .loan-grid, .why-grid, .calculator-grid, .testimonial-grid, .faq-grid, .eligibility-box, .footer-grid, .founder-grid { grid-template-columns: 1fr; }
  .business-proof { grid-template-columns: 1fr; }
  .business-proof-image { min-height: 360px; }
  .business-proof-image::after { background: linear-gradient(0deg, rgba(10,24,40,.35), transparent 55%); }
  .business-proof-copy { padding: 34px 26px; }
  .business-proof-copy h3 { font-size: 29px; }
  .loan-card { min-height: 370px; }
  .product-detail { grid-template-columns: 1fr; }
  .product-detail-number { display: none; }
  .product-facts { margin-top: 15px; }
  .lender-logo-grid { grid-template-columns: 1fr 1fr; }
  .guidance-journey { grid-template-columns: 1fr; }
  .advisory-scene, .advisory-scene img { height: 480px; }
  .advisory-scene img { object-position: 64% center; }
  .advisory-scene::after { background: linear-gradient(0deg, rgba(10,24,40,.94), transparent 75%); }
  .advisory-scene-overlay { left: 18px; right: 18px; bottom: 18px; width: auto; padding: 20px; }
  .advisory-scene-overlay strong { font-size: 16px; }
  .journey-progress { width: 3px; height: 100%; right: auto; top: 0; }
  .journey-progress span { transform: scaleY(0); transform-origin: top; }
  .guidance-journey.is-visible .journey-progress span { animation-name: journeyProgressMobile; }
  .guidance-journey article { min-height: 245px; }
  .guidance-cta { align-items: flex-start; flex-direction: column; }
  .why-grid { gap: 35px; }
  .why-visual { height: 400px; transform: scale(.85); transform-origin: left center; }
  .calculator-grid, .faq-grid { gap: 45px; }
  .result-card { padding: 30px 24px; }
  blockquote > p { min-height: auto; }
  .cta-section { padding-bottom: 60px; }
  .eligibility-box { width: 100%; border-radius: 0; padding: 55px 20px; gap: 35px; }
  .eligibility-copy { position: static; }
  .eligibility-form { padding: 22px; }
  .founder-grid { gap: 30px; }
  .founder-identity { width: 100%; height: 430px; left: auto; transform: none; margin-bottom: 0; }
  .founder-orbit { width: 350px; height: 350px; left: 50%; top: 25px; transform: translateX(-50%); }
  .founder-photo { width: 275px; height: 350px; left: 50%; top: 28px; transform: translateX(-50%); }
  .founder-company { right: 5px; bottom: 8px; width: 165px; }
  .footer-grid { gap: 35px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@keyframes journeyProgressMobile { to { transform: scaleY(1); } }

@media (max-width: 420px) {
  .hero-visual { transform: translateX(-50%) scale(.61); margin-top: 0; margin-bottom: -40px; }
  .trust-strip > span { display: none; }
  .loan-grid { grid-template-columns: 1fr; }
  .business-proof-image { min-height: 310px; }
  .product-detail { padding: 25px 20px; }
  .product-facts { grid-template-columns: 1fr; }
  .lender-logo-grid { grid-template-columns: 1fr; }
  .why-visual { transform: scale(.7); height: 340px; }
  .founder-identity { height: 400px; }
  .founder-orbit { width: 315px; height: 315px; }
  .founder-photo { width: 245px; height: 315px; }
  .founder-company { right: 0; width: 150px; }
  .input-row { grid-template-columns: 1fr; }
  .eligibility-fields, .result-stats { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  body.motion-ready [data-reveal] { opacity: 1; transform: none; }
  .growth-line path:first-child { stroke-dashoffset: 0; }
  .journey-progress span { transform: none; }
}
