:root {
  --slate-950: #0f1419;
  --slate-900: #1a2029;
  --slate-800: #252d38;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --blue-500: #4080d4;
  --blue-400: #5b9cf5;
  --blue-300: #a8d1ff;
  --blue-600: #3b82f6;
  --green-500: #afe73f;
  --green-600: #93c72b;
  --green-700: #7aa821;
  --green-400: #c4ee6d;
  --green-300: #d0f18d;
  --green-subtle: rgba(175, 231, 63, 0.1);
  --cream: #faf8f5;
  --warm-100: #f5f2ee;
  --warm-200: #ebe7e0;
  --white: #fff;
  --bg-page: var(--cream);
  --bg-cool: #f4f5f7;
  --bg-surface: var(--white);
  --bg-muted: var(--warm-100);
  --bg-dark: var(--slate-900);
  --bg-darker: var(--slate-950);
  --text-heading: var(--slate-900);
  --text-body: var(--slate-700);
  --text-muted: var(--slate-600);
  --text-faint: var(--slate-500);
  --text-on-dark: var(--slate-100);
  --text-on-dark-muted: var(--slate-400);
  --accent: var(--blue-500);
  --accent-hover: var(--blue-600);
  --accent-subtle: rgba(64, 128, 212, 0.08);
  --border-light: var(--slate-200);
  --border-dark: rgba(255, 255, 255, 0.08);
  --font-display: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-body:
    'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-md: 1.125rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 2.75rem;
  --text-4xl: 3.5rem;
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;
  --sp-40: 10rem;
  --max-w: 1200px;
  --nav-h: 68px;
  --radius: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-pill: 100px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.08);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--text-body);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}
ul,
ol {
  list-style: none;
}
input {
  font: inherit;
  color: inherit;
}
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--slate-900);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius);
  z-index: 10000;
  font-size: var(--text-sm);
}
.skip-link:focus {
  top: 16px;
}
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-8);
}
@media (max-width: 640px) {
  .container {
    padding: 0 var(--sp-6);
  }
}
.section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: var(--sp-4);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, var(--text-3xl));
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-heading);
  margin: 0;
}
.section-title em {
  font-style: italic;
}
.section-desc {
  font-size: var(--text-md);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 540px;
  margin: var(--sp-4) 0 0;
}
.sec-head {
  margin-bottom: var(--sp-12);
}
.sec-head--center {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.sec-head--center .section-desc {
  margin-left: auto;
  margin-right: auto;
}
.sec-head--on-dark .section-label {
  color: var(--accent);
}
.sec-head--on-dark .section-title {
  color: var(--text-on-dark);
}
.sec-head--on-dark .section-desc {
  color: var(--text-on-dark-muted);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-sm);
  line-height: 1;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  transition: all 200ms var(--ease);
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.btn-primary {
  background: var(--slate-900);
  color: #fff;
  border-color: var(--slate-900);
}
.btn-primary:hover {
  background: var(--slate-800);
  border-color: var(--slate-800);
}
.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}
.btn-outline {
  background: transparent;
  color: var(--slate-900);
  border-color: var(--border-light);
}
.btn-outline:hover {
  border-color: var(--slate-900);
  background: var(--slate-900);
  color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--slate-900);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--slate-100);
}
.btn-ghost {
  background: transparent;
  color: var(--accent);
  border-color: rgba(91, 156, 245, 0.3);
}
.btn-ghost:hover {
  background: var(--accent-subtle);
  border-color: var(--accent);
}
.btn-lg {
  padding: 16px 32px;
  font-size: var(--text-base);
}
.btn-sm {
  padding: 8px 20px;
  font-size: var(--text-xs);
  border-radius: var(--radius-full);
}
.site-header {
  position: relative;
  top: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 200ms;
  max-width: 100vw;
  overflow-x: clip;
}
.site-header.is-scrolled {
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-8);
  gap: var(--sp-8);
}
.nav-wordmark {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
@media (max-width: 1023px) {
  .nav-wordmark {
    margin-right: auto;
  }
}
.nav-wordmark img {
  height: 28px;
  width: auto;
}
.nav-logo-full {
  display: none;
}
.nav-logo-icon {
  display: block;
}
@media (min-width: 1024px) {
  .nav-logo-full {
    display: block;
  }
  .nav-logo-icon {
    display: none;
  }
}
.nav-menu {
  display: none;
  align-items: center;
  gap: var(--sp-1);
  margin-right: auto;
}
@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
  }
}
.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 10px 14px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius);
  transition: color 150ms;
  cursor: pointer;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -12px;
  height: 2px;
  background: var(--slate-900);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 250ms var(--ease);
  z-index: 1001;
}
.nav-item:hover > .nav-link::after,
.nav-link:hover::after {
  transform: scaleX(1);
}
.nav-item:hover > .nav-link {
  color: var(--slate-900);
}
.nav-chevron {
  transition: transform 150ms;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}
.nav-item:hover .nav-chevron {
  transform: rotate(180deg);
}
.nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 20px;
  background: transparent;
  pointer-events: none;
}
.nav-item:hover > .nav-link::before {
  pointer-events: auto;
}
.nav-item {
  position: static;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 16px 40px rgba(15, 20, 25, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
  z-index: 100;
}
.nav-item:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 180ms ease,
    visibility 0s;
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}
.dropdown--mega {
  padding: 0;
  border-bottom: 1px solid var(--border-light);
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
}
.mega-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-8) var(--sp-8) var(--sp-10);
}
.mega-grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: var(--sp-10);
}
.mega-col-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-400);
  margin-bottom: var(--sp-6);
}
.mega-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  font-size: 14px;
  font-weight: 450;
  color: var(--text-heading);
  padding: var(--sp-3) var(--sp-4);
  margin: 0 calc(-1 * var(--sp-4));
  border-radius: var(--radius);
  transition:
    color 150ms,
    background 200ms var(--ease);
  line-height: 1.3;
}
.mega-link::after {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a2029' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14M12 5l7 7-7 7'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity 200ms ease,
    transform 250ms var(--ease);
  flex-shrink: 0;
}
.mega-link:hover {
  background: var(--warm-100);
  color: var(--text-heading);
  font-weight: 550;
}
.mega-link:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.mega-link-all {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  font-size: 14px;
  font-weight: 550;
  color: var(--accent);
  padding: var(--sp-3) var(--sp-4);
  margin: 0 calc(-1 * var(--sp-4));
  border-radius: var(--radius);
  transition:
    color 150ms,
    background 200ms var(--ease);
  line-height: 1.3;
}
.mega-link-all::after {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234080d4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14M12 5l7 7-7 7'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
  transition: transform 200ms var(--ease);
}
.mega-link-all:hover {
  background: var(--warm-100);
  color: var(--accent-hover);
}
.mega-link-all:hover::after {
  transform: translateX(4px);
}
.mega-actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.mega-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  background: var(--warm-100);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-heading);
  transition: background 150ms;
}
.mega-action:hover {
  background: var(--warm-200);
}
.mega-action svg {
  color: var(--text-faint);
  flex-shrink: 0;
  transition:
    color 150ms,
    transform 150ms;
}
.mega-action:hover svg {
  color: var(--accent);
  transform: translateX(2px);
}
.mega-feature {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
  padding: 0;
  transition: opacity 150ms;
}
.mega-feature:hover {
  opacity: 0.85;
}
.mega-feature-img {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--radius);
  overflow: hidden;
}
.mega-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mega-feature-title {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-heading);
  line-height: 1.4;
}
.mega-feature-desc {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.5;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.nav-apply {
  display: inline-flex;
  padding: 8px 16px;
  font-size: var(--text-xs);
}
@media (min-width: 1024px) {
  .nav-apply {
    padding: 10px 24px;
    font-size: var(--text-sm);
  }
}
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  width: 38px;
  height: 38px;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1024px) {
  .burger {
    display: none;
  }
}
.burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--slate-700);
  border-radius: 2px;
  transition:
    transform 300ms var(--ease),
    opacity 200ms;
}
.burger.is-active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.burger.is-active span:nth-child(2) {
  opacity: 0;
}
.burger.is-active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.mobile-panel {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: calc(100dvh - var(--nav-h));
  background: var(--white);
  z-index: 9999;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  transition:
    clip-path 400ms var(--ease),
    opacity 300ms ease;
}
.mobile-panel.open {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}
.mobile-body {
  flex: 1;
  padding: 0 var(--sp-6);
}
.mobile-foot {
  padding: var(--sp-6);
}
.m-item {
  border-bottom: 1px solid var(--border-light);
}
.m-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--sp-5) 0;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text-heading);
}
.m-trigger svg {
  transition: transform 150ms;
}
.m-trigger[aria-expanded='true'] svg {
  transform: rotate(180deg);
}
.m-sub {
  display: none;
  padding: 0 0 var(--sp-4) var(--sp-4);
}
.m-trigger[aria-expanded='true'] + .m-sub {
  display: block;
}
.m-sub a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-2) 0;
  font-size: var(--text-sm);
  color: var(--text-muted);
  transition: color 120ms;
}
.m-sub a::after {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
  opacity: 0.5;
  transition:
    opacity 150ms,
    transform 150ms;
}
.m-sub a:hover::after {
  opacity: 1;
  transform: translateX(2px);
}
.m-sub a:hover {
  color: var(--accent);
}
.overlay {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 20, 25, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 250ms;
}
.overlay.show {
  opacity: 1;
  visibility: visible;
}
.hero {
  padding: 0;
  background: var(--bg-page);
  overflow: hidden;
}
.hero--product {
  padding: var(--sp-8) 0 var(--sp-16);
}
@media (max-width: 960px) {
  .page-product .hero {
    padding: var(--sp-8) 0 var(--sp-12);
  }
  .page-product .hero__copy {
    text-align: left;
    margin: 0;
    max-width: 100%;
  }
  .page-product .hero__title {
    font-size: clamp(2.6rem, 5.5vw, 4rem);
  }
  .page-product .hero__sub {
    font-size: var(--text-base);
    margin-bottom: var(--sp-6);
  }
  .page-product .hero__actions {
    justify-content: flex-start;
  }
  .page-product .hero__trust-row {
    justify-content: flex-start;
  }
  .page-product .hero__grid {
    gap: var(--sp-10);
    padding-top: var(--sp-8);
    padding-bottom: var(--sp-4);
  }
  .page-product .breadcrumb {
    justify-content: flex-start;
  }
  .page-industry .ind-hero {
    padding: var(--sp-8) 0 var(--sp-12);
  }
}
@media (max-width: 960px) {
  .hero {
    padding: var(--sp-8) 0;
  }
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
  min-height: min(70vh, 500px);
}
@media (max-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-12);
    min-height: 0;
    padding-bottom: var(--sp-8);
  }
}
.hero__copy {
  max-width: 540px;
}
@media (max-width: 960px) {
  .hero__copy {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: var(--sp-6);
}
.hero__eyebrow svg {
  color: var(--accent);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-heading);
  margin-bottom: var(--sp-5);
  letter-spacing: -0.01em;
}
.hero__title em {
  font-style: italic;
  color: var(--green-600);
}
.hero__title sup {
  font-size: 0.35em;
  vertical-align: super;
  font-family: var(--font-body);
  font-weight: 400;
}
.hero__sub {
  font-size: var(--text-md);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--sp-8);
}
.hero__sub sup {
  font-size: 0.6em;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}
@media (max-width: 960px) {
  .hero__actions {
    justify-content: center;
  }
}
.hero__trust-row {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
@media (max-width: 960px) {
  .hero__trust-row {
    justify-content: center;
  }
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--text-heading);
  font-weight: 500;
}
.hero__trust-item svg {
  color: var(--green-600);
  flex-shrink: 0;
}
.hero__trust-item strong {
  color: var(--text-heading);
  font-weight: 600;
}
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media (max-width: 960px) {
  .hero__visual {
    padding: 0;
  }
}
.hero__card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow:
    0 20px 60px rgba(15, 20, 25, 0.12),
    0 1px 3px rgba(15, 20, 25, 0.06);
  padding: var(--sp-8);
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}
@media (max-width: 960px) {
  .hero__card {
    max-width: 650px;
  }
}
.hero__notif {
  position: absolute;
  bottom: -16px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px rgba(15, 20, 25, 0.12);
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.hero__notif-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(147, 199, 43, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  flex-shrink: 0;
}
.hero__notif-text {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-heading);
}
.hero__notif-sub {
  font-size: 11px;
  color: var(--text-faint);
}
@media (max-width: 640px) {
  .hero__notif {
    left: 0;
    bottom: -16px;
  }
}
.hero__badge {
  position: absolute;
  bottom: -10px;
  right: -16px;
  background: var(--slate-900);
  color: var(--text-on-dark);
  border-radius: var(--radius-lg);
  padding: var(--sp-4) var(--sp-5);
  z-index: 3;
  box-shadow: 0 12px 32px rgba(15, 20, 25, 0.18);
  animation: float 3s ease-in-out infinite;
}
.hero__badge-val {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  line-height: 1;
}
.hero__badge-label {
  font-size: 11px;
  color: var(--text-on-dark-muted);
  margin-top: 2px;
}
@media (max-width: 640px) {
  .hero__badge {
    right: 0;
    bottom: -20px;
  }
}
.hd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--border-light);
}
.hd-greeting {
  font-size: var(--text-sm);
  color: var(--text-faint);
}
.hd-greeting strong {
  color: var(--text-heading);
  font-weight: 600;
  font-size: var(--text-base);
}
.hd-status {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: 11px;
  font-weight: 600;
  color: var(--green-500);
  background: var(--green-subtle);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.hd-status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green-500);
  border-radius: 50%;
  flex-shrink: 0;
}
.hd-amount-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin-bottom: 2px;
}
.hd-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--text-heading);
  line-height: 1;
  margin-bottom: var(--sp-6);
}
.hd-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}
.hd-stat {
  background: var(--slate-50);
  border-radius: var(--radius);
  padding: var(--sp-4);
}
.hd-stat-label {
  font-size: 11px;
  color: var(--text-faint);
  margin-bottom: 2px;
}
.hd-stat-val {
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--text-heading);
}
.hd-bar {
  height: 8px;
  background: var(--slate-100);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: var(--sp-2);
}
.hd-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent), var(--blue-400));
  width: 72%;
}
.hd-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-faint);
}
.bento-section {
  padding: var(--sp-16) 0 var(--sp-8);
  background: var(--bg-page);
  overflow: hidden;
}
.bento-scroll {
  overflow: hidden;
  position: relative;
  margin: 0 -32px;
}
.bento-scroll::before,
.bento-scroll::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.bento-scroll::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-page), transparent);
}
.bento-scroll::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-page), transparent);
}
.bento-track {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-auto-flow: column;
  grid-auto-columns: 280px;
  gap: var(--sp-5);
  animation: bento-drift 60s linear infinite;
  width: max-content;
  padding: 0 32px;
}
@keyframes bento-drift {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.b-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-6);
}
.b-card--tall {
  grid-row: span 2;
  min-height: 380px;
}
.b-card--quote {
  background: var(--slate-900);
  color: var(--text-on-dark);
  justify-content: center;
}
.b-card--quote .b-quote {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: var(--slate-100);
  margin-bottom: var(--sp-4);
}
.b-card--quote .b-author {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--slate-200);
}
.b-card--quote .b-role {
  font-size: var(--text-xs);
  color: var(--slate-400);
  margin-top: 2px;
}
.b-card--stat-green {
  background: var(--green-500);
  color: var(--slate-900);
  justify-content: center;
}
.b-card--stat-green .b-stat-val {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.b-card--stat-green .b-stat-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--slate-700);
}
.b-card--stat-dark {
  background: var(--slate-800);
  color: var(--text-on-dark);
  justify-content: center;
}
.b-card--stat-dark .b-stat-val {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.b-card--stat-dark .b-stat-label {
  font-size: var(--text-sm);
  color: var(--slate-400);
}
.b-card--photo {
  padding: 0;
  position: relative;
}
.b-card--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.b-card--photo .b-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-5) var(--sp-6);
  background: linear-gradient(transparent, rgba(15, 20, 25, 0.75));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-3);
}
.b-card--photo .b-overlay-text {
  color: #fff;
}
.b-card--photo .b-overlay-name {
  font-size: var(--text-sm);
  font-weight: 600;
}
.b-card--photo .b-overlay-desc {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}
.b-card--review {
  background: var(--slate-800);
  color: var(--text-on-dark);
  justify-content: flex-start;
}
.b-review-stars {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
}
.b-review-stars svg {
  color: var(--green-500);
}
.b-card--cta {
  text-decoration: none;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--sp-6);
  transition: transform 200ms var(--ease);
}
.b-card--cta:hover {
  transform: scale(1.03);
}
.b-cta-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-3);
  flex-shrink: 0;
}
.b-cta-label {
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.3;
}
.b-cta-arrow {
  font-size: var(--text-sm);
  line-height: 1;
  margin-top: var(--sp-2);
  opacity: 0.5;
  transition:
    opacity 150ms,
    transform 150ms;
}
.b-card--cta:hover .b-cta-arrow {
  opacity: 1;
  transform: translateX(3px);
}
.b-card--cta-dark {
  background: var(--slate-900);
  color: #fff;
}
.b-card--cta-dark .b-cta-icon {
  background: var(--slate-800);
  color: var(--accent);
}
.b-card--cta-dark .b-cta-label {
  color: var(--slate-100);
}
.b-card--cta-dark .b-cta-arrow {
  color: var(--accent);
}
.b-card--cta-accent {
  background: var(--accent);
  color: var(--slate-900);
}
.b-card--cta-accent .b-cta-icon {
  background: rgba(15, 20, 25, 0.12);
  color: var(--slate-900);
}
.b-card--cta-accent .b-cta-label {
  color: var(--slate-900);
}
.b-card--cta-accent .b-cta-arrow {
  color: var(--slate-900);
}
.b-card--cta-cream {
  background: var(--white);
  border: 1px solid var(--border-light);
  color: var(--text-heading);
}
.b-card--cta-cream .b-cta-icon {
  background: var(--accent-subtle);
  color: var(--accent);
}
.b-card--cta-cream .b-cta-label {
  color: var(--text-heading);
}
.b-card--cta-cream .b-cta-arrow {
  color: var(--accent);
}
.trust-bar {
  padding: var(--sp-16) 0;
  background: var(--bg-page);
}
.trust-row {
  display: flex;
  justify-content: center;
  gap: var(--sp-16);
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .trust-row {
    gap: var(--sp-8);
  }
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}
.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-sup {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  line-height: 1.3;
}
.trust-val {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-heading);
  line-height: 1.2;
}
.why-section {
  padding: var(--sp-24) 0;
  background: var(--bg-page);
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow-card);
}
@media (max-width: 768px) {
  .why-card {
    grid-template-columns: 1fr;
  }
}
.why-img {
  min-height: 400px;
  position: relative;
  overflow: hidden;
}
.why-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-content {
  padding: var(--sp-16) var(--sp-12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .why-content {
    padding: var(--sp-10) var(--sp-8);
  }
}
.why-content .section-title {
  font-size: var(--text-2xl);
  margin-bottom: var(--sp-8);
}
.why-quote {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  line-height: 1.5;
  font-style: italic;
  color: var(--text-heading);
  margin-bottom: var(--sp-6);
}
.why-author strong {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-heading);
}
.why-author span {
  font-size: var(--text-sm);
  color: var(--text-faint);
  display: block;
  margin-top: 2px;
}
.marquee {
  padding: var(--sp-6) 0;
  background: var(--slate-900);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: var(--sp-12);
  width: max-content;
  animation: scroll 35s linear infinite;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.marquee-item {
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--slate-400);
}
.calc-section {
  padding: var(--sp-24) 0;
  background: var(--bg-page);
  overflow-x: hidden;
}
.calc-outer {
  max-width: 680px;
  margin: 0 auto;
}
.calc-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--sp-10);
  box-shadow: var(--shadow-card);
}
@media (max-width: 640px) {
  .calc-card {
    padding: var(--sp-6);
  }
}
.slider-section {
  margin-bottom: var(--sp-8);
}
.slider-section .calc-label {
  margin-bottom: var(--sp-3);
}
.calc-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-heading);
}
.fico-pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-2);
}
@media (max-width: 480px) {
  .fico-pills {
    grid-template-columns: repeat(2, 1fr);
  }
}
.fico-pill {
  cursor: pointer;
}
.fico-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.fico-pill span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  font-size: var(--text-sm);
  font-weight: 500;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  transition: all 150ms;
  background: var(--white);
  color: var(--text-body);
  text-align: center;
}
.fico-pill input:checked + span {
  background: var(--slate-900);
  color: #fff;
  border-color: var(--slate-900);
}
.fico-pill:hover span {
  border-color: var(--slate-400);
}
.fico-pill input:focus-visible + span {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.slider-value {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--text-heading);
  text-align: center;
  margin-bottom: var(--sp-4);
}
.calc-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(
    to right,
    var(--accent) 0,
    var(--accent) var(--fill, 30%),
    var(--slate-200) var(--fill, 30%),
    var(--slate-200) 100%
  );
  outline: none;
  cursor: pointer;
}
.calc-range--green {
  background: linear-gradient(
    to right,
    var(--accent) 0,
    var(--accent) var(--fill, 48%),
    var(--slate-200) var(--fill, 48%),
    var(--slate-200) 100%
  );
}
.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--white);
  box-shadow: 0 2px 6px rgba(15, 20, 25, 0.18);
  cursor: pointer;
}
.calc-range--green::-webkit-slider-thumb {
  background: var(--accent);
}
.calc-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--white);
  box-shadow: 0 2px 6px rgba(15, 20, 25, 0.18);
  cursor: pointer;
}
.calc-range--green::-moz-range-thumb {
  background: var(--accent);
}
.slider-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--text-faint);
  margin-top: var(--sp-2);
}
.funding-result {
  text-align: center;
  padding: var(--sp-8) 0;
  margin-bottom: var(--sp-4);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.funding-result-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--sp-2);
}
.funding-result-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--text-heading);
  line-height: 1;
}
.calc-foot {
  text-align: center;
  padding-top: var(--sp-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
}
.calc-inline-note {
  font-size: var(--text-xs);
  color: var(--text-faint);
}
.calc-note {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--text-faint);
  margin-top: var(--sp-6);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.products {
  padding: var(--sp-24) 0;
  background: var(--bg-page);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}
.prod-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  transition:
    box-shadow 250ms var(--ease),
    transform 250ms var(--ease);
}
.prod-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.prod-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  color: var(--accent);
}
.prod-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--text-heading);
  margin-bottom: var(--sp-3);
}
.prod-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--sp-5);
}
.prod-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--accent);
  transition: color 150ms;
}
.prod-link:hover {
  color: var(--accent-hover);
}
.how {
  padding: var(--sp-24) 0;
  background: var(--slate-900);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}
@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }
}
.step {
  text-align: center;
  padding: var(--sp-8);
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-4);
}
.step-num span {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}
.how-marquee {
  overflow: hidden;
  margin: var(--sp-12) calc(-1 * var(--sp-8)) 0;
  padding: var(--sp-6) 0;
}
.how-marquee-track {
  display: flex;
  gap: var(--sp-12);
  width: max-content;
  animation: scroll 40s linear infinite;
}
.how-marquee-item {
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--slate-500);
}
.step h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--text-on-dark);
  margin-bottom: var(--sp-3);
}
.step p {
  font-size: var(--text-sm);
  color: var(--text-on-dark-muted);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}
.how-cta {
  text-align: center;
  margin-top: var(--sp-10);
}
.quals {
  padding: var(--sp-24) 0;
  background: var(--bg-page);
}
.quals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .quals-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
}
.quals h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--text-heading);
  margin-bottom: var(--sp-5);
}
.quals li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-base);
  color: var(--text-body);
  padding: var(--sp-2) 0;
}
.quals .check {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 3px;
}
.quals-cta {
  text-align: center;
  margin-top: var(--sp-12);
}
.quals-note {
  font-size: var(--text-sm);
  color: var(--text-faint);
  margin-top: var(--sp-4);
}
.final-cta {
  padding: var(--sp-16) 0 var(--sp-24);
  background: var(--bg-page);
}
.final-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}
@media (max-width: 768px) {
  .final-grid {
    grid-template-columns: 1fr;
  }
}
.final-card {
  border-radius: var(--radius-xl);
  padding: var(--sp-12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-4);
}
.final-card h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  line-height: 1.2;
}
.final-card p {
  font-size: var(--text-base);
  opacity: 0.75;
  line-height: 1.6;
}
.final-card .btn {
  margin-top: var(--sp-4);
}
.final-card--dark {
  background: var(--slate-900);
  color: var(--text-on-dark);
}
.final-card--accent {
  background: var(--accent);
  color: #fff;
}
.footer-pre {
  background: var(--slate-800);
  padding: var(--sp-12) 0;
}
.footer-pre-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-8);
  align-items: center;
}
@media (max-width: 768px) {
  .footer-pre-inner {
    grid-template-columns: 1fr;
  }
}
.footer-pre h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--text-on-dark);
  margin-bottom: var(--sp-2);
}
.footer-pre p {
  font-size: var(--text-base);
  color: var(--text-on-dark-muted);
  max-width: 440px;
  margin-bottom: var(--sp-4);
}
.footer-pre .link {
  font-weight: 600;
  color: var(--accent);
  transition: color 150ms;
}
.footer-pre .link:hover {
  color: var(--accent-hover);
}
.footer-quote-btn {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  background: var(--white);
  color: var(--slate-900);
  padding: var(--sp-6) var(--sp-8);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: var(--text-md);
  transition:
    transform 150ms,
    box-shadow 150ms;
}
.footer-quote-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}
.footer-main {
  background: var(--slate-900);
  padding: var(--sp-16) 0 var(--sp-8);
}
.footer-top {
  margin-bottom: var(--sp-10);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--white);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  padding-bottom: var(--sp-10);
  border-bottom: 1px solid var(--border-dark);
}
@media (max-width: 640px) {
  .footer-cols {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-400);
  margin-bottom: var(--sp-5);
}
.footer-col a {
  display: block;
  font-size: var(--text-sm);
  color: var(--slate-200);
  padding: var(--sp-1) 0;
  transition: color 150ms;
}
.footer-col a:hover {
  color: var(--accent);
}
.footer-bottom {
  padding-top: var(--sp-8);
}
.footer-social {
  display: flex;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}
.footer-social a {
  color: var(--slate-200);
  transition: color 150ms;
}
.footer-social a:hover {
  color: var(--accent);
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-5);
  margin-bottom: var(--sp-5);
}
.footer-legal a {
  font-size: var(--text-sm);
  color: var(--slate-200);
  transition: color 150ms;
}
.footer-legal a:hover {
  color: var(--accent);
}
.footer-copy {
  font-size: var(--text-xs);
  color: var(--slate-200);
  margin-bottom: var(--sp-5);
}
.footer-disc {
  font-size: var(--text-xs);
  color: var(--slate-200);
  line-height: 1.6;
  max-width: 780px;
  margin-bottom: var(--sp-5);
}
.footer-notes p {
  font-size: var(--text-xs);
  color: var(--slate-200);
  line-height: 1.6;
  margin-bottom: var(--sp-2);
}
@media (prefers-reduced-motion: no-preference) {
  .hero__copy .hero__eyebrow,
  .hero__copy .hero__title,
  .hero__copy .hero__sub,
  .hero__copy .hero__actions,
  .hero__copy .hero__trust-row {
    animation: rise 0.65s ease both;
  }
  .hero__copy .hero__eyebrow {
    animation-delay: 0s;
  }
  .hero__copy .hero__title {
    animation-delay: 0.08s;
  }
  .hero__copy .hero__sub {
    animation-delay: 0.16s;
  }
  .hero__copy .hero__actions {
    animation-delay: 0.24s;
  }
  .hero__copy .hero__trust-row {
    animation-delay: 0.32s;
  }
  .hero__visual {
    animation: rise 0.7s ease both;
    animation-delay: 0.2s;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-8);
  padding-top: var(--sp-8);
  font-size: var(--text-sm);
  color: var(--text-faint);
}
@media (max-width: 960px) {
  .breadcrumb {
    justify-content: center;
  }
  .page-industry .breadcrumb {
    justify-content: flex-start;
  }
}
.breadcrumb a {
  color: var(--text-muted);
  transition: color 150ms;
}
.breadcrumb a:hover {
  color: var(--accent);
}
.breadcrumb svg {
  color: var(--text-faint);
  flex-shrink: 0;
}
.breadcrumb span {
  color: var(--text-heading);
  font-weight: 500;
}
.loc-approval-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--border-light);
}
.loc-approval-status {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 11px;
  font-weight: 600;
  color: var(--green-600);
  background: rgba(147, 199, 43, 0.12);
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.loc-status-dot {
  width: 6px;
  height: 6px;
  background: var(--green-600);
  border-radius: 50%;
}
.loc-approval-time {
  font-size: var(--text-xs);
  color: var(--text-faint);
}
.loc-approval-amount-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin-bottom: 4px;
}
.loc-approval-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--text-heading);
  line-height: 1;
  margin-bottom: var(--sp-6);
}
.loc-credit-bar {
  height: 8px;
  background: var(--slate-100);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: var(--sp-3);
}
.loc-credit-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent), var(--blue-400));
  width: 28%;
}
.loc-credit-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  padding-bottom: var(--sp-6);
  margin-bottom: var(--sp-6);
  border-bottom: 1px solid var(--border-light);
}
.loc-credit-stat-label {
  font-size: 11px;
  color: var(--text-faint);
  margin-bottom: 2px;
}
.loc-credit-stat-value {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-heading);
}
.loc-actions {
  display: flex;
  gap: var(--sp-3);
}
.loc-action-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: var(--text-sm);
  font-weight: 500;
  background: var(--slate-100);
  color: var(--text-heading);
  transition: background 150ms;
  border: none;
  cursor: pointer;
}
.loc-action-btn:hover {
  background: var(--slate-200);
}
.loc-action-btn--primary {
  background: var(--slate-900);
  color: #fff;
}
.loc-action-btn--primary:hover {
  background: var(--slate-800);
}
.prose-section {
  padding: var(--sp-24) 0;
  background: var(--bg-page);
}
.prose-section--narrow {
  padding: var(--sp-16) 0;
}
.prose-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}
@media (max-width: 960px) {
  .prose-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-12);
  }
}
.prose-narrow {
  max-width: 780px;
  margin: 0 auto;
}
.prose {
  color: var(--text-body);
  font-size: var(--text-base);
  line-height: 1.7;
}
.prose p {
  margin-bottom: var(--sp-5);
}
.prose p:last-child {
  margin-bottom: 0;
}
.prose strong {
  color: var(--text-heading);
  font-weight: 600;
}
.prose-list {
  margin: var(--sp-4) 0;
  padding-left: 0;
  list-style: none;
}
.prose-list li {
  position: relative;
  padding-left: var(--sp-6);
  margin-bottom: var(--sp-3);
  line-height: 1.6;
  color: var(--text-body);
}
.prose-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.prose-content .section-title {
  margin-bottom: var(--sp-6);
}
.feature-cards {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition:
    box-shadow 200ms,
    transform 200ms;
}
.feature-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.feature-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.feature-card-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--text-heading);
  margin: 0;
}
.feature-card-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.qual-section {
  padding: var(--sp-16) 0;
  background: var(--bg-page);
}
.qual-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--sp-12);
  box-shadow: var(--shadow-card);
}
@media (max-width: 640px) {
  .qual-card {
    padding: var(--sp-8) var(--sp-6);
  }
}
.qual-header {
  text-align: center;
  margin-bottom: var(--sp-10);
}
.qual-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-10);
  padding-bottom: var(--sp-10);
  border-bottom: 1px solid var(--border-light);
}
@media (max-width: 768px) {
  .qual-cols {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
}
.qual-col-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--text-heading);
  margin-bottom: var(--sp-5);
}
.qual-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.qual-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-base);
  color: var(--text-body);
  padding: var(--sp-3) 0;
  line-height: 1.5;
}
.qual-list svg {
  color: var(--green-600);
  flex-shrink: 0;
  margin-top: 3px;
}
.qual-foot {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
}
.qual-foot-note {
  font-size: var(--text-xs);
  color: var(--text-faint);
  margin: 0;
}
.loc-calc-section {
  padding: var(--sp-24) 0;
  background: var(--bg-page);
  overflow-x: hidden;
}
.loc-calc-outer {
  max-width: 920px;
  margin: 0 auto;
}
.loc-calc-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--sp-10);
  box-shadow: var(--shadow-card);
}
@media (max-width: 640px) {
  .loc-calc-card {
    padding: var(--sp-6);
  }
}
.loc-calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-10);
  align-items: start;
}
@media (max-width: 768px) {
  .loc-calc-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
}
.loc-calc-inputs {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}
.loc-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
@media (max-width: 480px) {
  .loc-input-row {
    grid-template-columns: 1fr;
  }
}
.loc-input-group {
  display: flex;
  flex-direction: column;
}
.loc-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-heading);
  margin-bottom: var(--sp-3);
}
.loc-amount-input-wrap {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
  border-bottom: 2px solid var(--border-light);
  padding-bottom: var(--sp-2);
  margin-bottom: var(--sp-4);
  transition: border-color 200ms;
}
.loc-amount-input-wrap:focus-within {
  border-color: var(--accent);
}
.loc-amount-prefix {
  font-size: var(--text-xl);
  color: var(--text-faint);
  font-weight: 500;
}
.loc-amount-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: var(--text-2xl);
  font-weight: 600;
  background: transparent;
  color: var(--text-heading);
  padding: 0;
  min-width: 0;
}
.loc-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(
    to right,
    var(--accent) 0,
    var(--accent) var(--fill, 12%),
    var(--slate-200) var(--fill, 12%),
    var(--slate-200) 100%
  );
  outline: none;
  cursor: pointer;
}
.loc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--white);
  box-shadow: 0 2px 6px rgba(15, 20, 25, 0.18);
  cursor: pointer;
}
.loc-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--white);
  box-shadow: 0 2px 6px rgba(15, 20, 25, 0.18);
  cursor: pointer;
}
.loc-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--text-faint);
  margin-top: var(--sp-2);
}
.loc-select-wrap {
  position: relative;
}
.loc-select {
  width: 100%;
  padding: 12px 36px 12px 14px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-heading);
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  transition: border-color 150ms;
  font-family: inherit;
}
.loc-select:focus {
  border-color: var(--accent);
}
.loc-select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}
.loc-calc-results {
  background: var(--bg-page);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
}
.loc-result-row {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  padding: var(--sp-3) 0;
}
.loc-result-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  font-weight: 500;
}
.loc-result-value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--text-heading);
  line-height: 1.1;
}
.loc-result-value--primary {
  font-size: 2.2rem;
}
.loc-result-divider {
  height: 1px;
  background: var(--border-light);
  margin: var(--sp-2) 0;
}
.loc-result-cta {
  margin-top: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border-light);
}
.loc-result-cta h4 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-heading);
  margin: 0 0 var(--sp-2);
}
.loc-result-cta p {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 0 var(--sp-4);
}
.loc-toggle-btn {
  margin-top: var(--sp-6);
  padding: var(--sp-3) var(--sp-5);
  background: transparent;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--accent);
  cursor: pointer;
  transition: color 150ms;
  font-family: inherit;
}
.loc-toggle-btn:hover {
  color: var(--accent-hover);
}
.loc-toggle-btn .loc-chevron {
  transition: transform 200ms;
}
.loc-toggle-btn.is-open .loc-chevron {
  transform: rotate(180deg);
}
.loc-amort-details {
  margin-top: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border-light);
}
.loc-amort-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}
@media (max-width: 640px) {
  .loc-amort-summary {
    grid-template-columns: 1fr 1fr;
  }
}
.loc-amort-stat {
  background: var(--bg-page);
  border-radius: var(--radius);
  padding: var(--sp-4);
}
.loc-amort-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  margin-bottom: var(--sp-1);
}
.loc-amort-stat-value {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-heading);
}
.loc-amort-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}
.loc-amort-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
  min-width: 560px;
}
.loc-amort-table th {
  text-align: left;
  padding: var(--sp-3) var(--sp-4);
  background: var(--bg-page);
  font-weight: 600;
  color: var(--text-heading);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border-light);
}
.loc-amort-table td {
  padding: var(--sp-3) var(--sp-4);
  color: var(--text-body);
  border-bottom: 1px solid var(--border-light);
}
.loc-amort-table tr:last-child td {
  border-bottom: none;
}
.loc-amort-table tr:nth-child(even) td {
  background: var(--bg-page);
}
.loc-calc-disclaimer {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--text-faint);
  line-height: 1.6;
  margin-top: var(--sp-6);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.how-steps-detail {
  display: flex;
  flex-direction: column;
  gap: var(--sp-12);
}
.how-step-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-6);
  align-items: start;
}
@media (max-width: 640px) {
  .how-step-detail {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }
}
.how-step-detail-num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--accent);
  background: var(--accent-subtle);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.how-step-detail-body h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--text-heading);
  margin: 0 0 var(--sp-4);
}
.how-step-detail-body p {
  font-size: var(--text-base);
  color: var(--text-body);
  line-height: 1.7;
  margin: 0 0 var(--sp-4);
}
.how-step-detail-body p:last-child {
  margin-bottom: 0;
}
.proscons-section {
  padding: var(--sp-16) 0;
  background: var(--bg-page);
}
.proscons-card {
  max-width: 980px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--sp-12);
  box-shadow: var(--shadow-card);
}
@media (max-width: 640px) {
  .proscons-card {
    padding: var(--sp-8) var(--sp-6);
  }
}
.proscons-header {
  text-align: center;
  margin-bottom: var(--sp-10);
}
.proscons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
}
@media (max-width: 640px) {
  .proscons-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
}
.proscons-col-header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--border-light);
}
.proscons-col-header h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--text-heading);
  margin: 0;
}
.proscons-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.proscons-icon--pros {
  background: rgba(147, 199, 43, 0.12);
  color: var(--green-600);
}
.proscons-icon--cons {
  background: rgba(244, 57, 62, 0.1);
  color: #dc2626;
}
.proscons-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.proscons-list li {
  position: relative;
  padding: var(--sp-3) 0 var(--sp-3) var(--sp-6);
  font-size: var(--text-base);
  color: var(--text-body);
  line-height: 1.5;
}
.proscons-col--pros .proscons-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.15em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-600);
}
.proscons-col--cons .proscons-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.15em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dc2626;
}
.faq-section {
  padding: var(--sp-24) 0;
  background: var(--bg-page);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-16);
  align-items: start;
}
@media (max-width: 960px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    border-color 150ms,
    box-shadow 150ms;
}
.faq-item[open] {
  border-color: var(--slate-300);
  box-shadow: var(--shadow-card);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  cursor: pointer;
  list-style: none;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text-heading);
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:hover {
  background: var(--bg-page);
}
.faq-chevron {
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 200ms var(--ease);
}
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}
.faq-answer {
  padding: 0 var(--sp-6) var(--sp-6);
  font-size: var(--text-base);
  color: var(--text-body);
  line-height: 1.7;
}
.faq-answer p {
  margin: 0;
}
.legal-disclaimer {
  padding: var(--sp-16) 0;
  background: var(--bg-page);
}
.legal-disclaimer p {
  font-size: 11px;
  color: var(--text-faint);
  line-height: 1.7;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.how-section {
  padding: var(--sp-24) 0;
  background: var(--bg-page);
}
.how-section .container {
  max-width: 1100px;
  margin: 0 auto;
}
.how-steps {
  position: relative;
  background: var(--slate-900);
  border-radius: var(--radius-xl);
  padding: var(--sp-16) var(--sp-12);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-12);
  overflow: hidden;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: calc(var(--sp-16)+28px);
  left: calc(var(--sp-12)+40px);
  right: calc(var(--sp-12)+40px);
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--slate-700),
    var(--slate-700),
    transparent
  );
  z-index: 0;
}
@media (max-width: 768px) {
  .how-steps {
    grid-template-columns: 1fr;
    padding: var(--sp-10) var(--sp-6);
    gap: var(--sp-10);
  }
  .how-steps::before {
    display: none;
  }
}
.how-step {
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  z-index: 1;
}
.how-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  letter-spacing: -0.01em;
  position: relative;
  transition:
    transform 300ms var(--ease),
    background 300ms var(--ease);
}
.how-step-num::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(91, 156, 245, 0.15),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 300ms;
}
.how-step:hover .how-step-num {
  background: var(--slate-700);
  transform: scale(1.05);
}
.how-step:hover .how-step-num::before {
  opacity: 1;
}
.how-step h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--text-on-dark);
  margin: var(--sp-2) 0 0;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.how-step p {
  font-size: var(--text-sm);
  color: var(--slate-400);
  line-height: 1.65;
  margin: 0;
}
.how-cta {
  text-align: center;
  margin-top: var(--sp-12);
}
.how-step-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 500;
}
.how-step-tag::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--accent);
}
.cat-hero-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.cat-hero-tile {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  box-shadow: 0 4px 16px rgba(15, 20, 25, 0.04);
  transition:
    transform 300ms var(--ease),
    box-shadow 300ms var(--ease);
}
.cat-hero-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 20, 25, 0.08);
}
.cat-hero-tile-1 {
  margin-left: 0;
  transform: rotate(-1deg);
}
.cat-hero-tile-2 {
  margin-left: var(--sp-6);
  box-shadow: 0 12px 32px rgba(15, 20, 25, 0.1);
  z-index: 2;
  position: relative;
}
.cat-hero-tile-3 {
  margin-left: var(--sp-3);
  transform: rotate(1.5deg);
}
@media (max-width: 960px) {
  .cat-hero-tile-1,
  .cat-hero-tile-2,
  .cat-hero-tile-3 {
    margin-left: 0;
    transform: none;
  }
}
.cat-hero-tile-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--accent-subtle);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cat-hero-tile-body {
  flex: 1;
  min-width: 0;
}
.cat-hero-tile-title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-heading);
  line-height: 1.2;
  margin-bottom: 2px;
}
.cat-hero-tile-meta {
  font-size: 11px;
  color: var(--text-muted);
}
.cat-hero-tile-chip {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  background: rgba(147, 199, 43, 0.12);
  color: var(--green-600);
  flex-shrink: 0;
}
.cat-products {
  padding: var(--sp-24) 0;
  background: var(--bg-page);
}
.cat-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
@media (max-width: 960px) {
  .cat-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .cat-products-grid {
    grid-template-columns: 1fr;
  }
}
.cat-product-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition:
    transform 250ms var(--ease),
    box-shadow 250ms var(--ease),
    border-color 250ms var(--ease);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.cat-product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--slate-300);
}
.cat-product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(91, 156, 245, 0.03)
  );
  transition: opacity 300ms;
}
.cat-product-card:hover::after {
  opacity: 1;
}
.cat-product-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
}
.cat-product-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--accent-subtle);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 250ms,
    color 250ms;
}
.cat-product-card:hover .cat-product-icon {
  background: var(--accent);
  color: #fff;
}
.cat-product-chip {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(147, 199, 43, 0.12);
  color: var(--green-600);
}
.cat-product-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--text-heading);
  margin: var(--sp-2) 0 0;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.cat-product-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.cat-product-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin: var(--sp-2) 0;
  padding: var(--sp-4) 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.cat-product-specs div {
  min-width: 0;
}
.cat-product-specs dt {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  font-weight: 500;
  margin-bottom: 2px;
}
.cat-product-specs dd {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-heading);
  margin: 0;
  line-height: 1.3;
}
.cat-product-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--accent);
  margin-top: auto;
  transition: gap 200ms var(--ease);
}
.cat-product-card:hover .cat-product-link {
  gap: var(--sp-3);
}
.cat-product-card--help {
  background: var(--slate-900);
  color: var(--text-on-dark);
  border-color: var(--slate-800);
  justify-content: center;
  text-align: left;
}
.cat-product-card--help:hover {
  border-color: var(--slate-700);
}
.cat-product-card--help .cat-product-title {
  color: var(--text-on-dark);
}
.cat-product-card--help .cat-product-desc {
  color: var(--slate-400);
}
.cat-product-help-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(91, 156, 245, 0.15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-2);
}
.cat-compare {
  padding: var(--sp-16) 0 var(--sp-24);
  background: var(--bg-page);
}
.cat-compare-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.cat-compare-scroll {
  overflow-x: auto;
}
.cat-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
  min-width: 800px;
}
.cat-compare-table th,
.cat-compare-table td {
  padding: var(--sp-5) var(--sp-6);
  text-align: left;
}
.cat-compare-table td:last-child {
  text-align: right;
  white-space: nowrap;
}
.cat-compare-table thead th {
  background: var(--bg-page);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  font-weight: 600;
  border-bottom: 1px solid var(--border-light);
}
.cat-compare-table tbody tr {
  border-bottom: 1px solid var(--border-light);
  transition: background 150ms;
}
.cat-compare-table tbody tr:last-child {
  border-bottom: none;
}
.cat-compare-table tbody tr:hover {
  background: var(--bg-page);
}
.cat-compare-table th[scope='row'] {
  font-weight: 600;
  color: var(--text-heading);
}
.cat-compare-table th[scope='row'] a {
  color: var(--text-heading);
  transition: color 150ms;
}
.cat-compare-table th[scope='row'] a:hover {
  color: var(--accent);
}
.cat-compare-table td {
  color: var(--text-body);
}
.cat-compare-apply {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
  transition: color 150ms;
}
.cat-compare-apply:hover {
  color: var(--accent-hover);
}
.cat-compare--mobile {
  display: none;
}
@media (max-width: 768px) {
  .cat-compare--desktop {
    display: none;
  }
  .cat-compare--mobile {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
  }
  .cat-compare-mcard {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--sp-6);
  }
  .cat-compare-mcard-title {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--text-heading);
    text-decoration: none;
    display: block;
    margin-bottom: var(--sp-1);
  }
  .cat-compare-mcard-title:hover {
    color: var(--accent);
  }
  .cat-compare-mcard-use {
    font-size: var(--text-sm);
    color: var(--text-faint);
    margin: 0 0 var(--sp-4);
  }
  .cat-compare-mcard-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-3);
    padding: var(--sp-4) 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: var(--sp-4);
  }
  .cat-compare-mcard-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-faint);
    font-weight: 600;
    margin-bottom: var(--sp-1);
  }
  .cat-compare-mcard-val {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-heading);
  }
}
.cat-why {
  padding: var(--sp-24) 0;
  background: var(--bg-page);
}
.cat-why-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-16);
  align-items: start;
}
@media (max-width: 960px) {
  .cat-why-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }
}
.cat-why-intro {
  position: sticky;
  top: 100px;
}
@media (max-width: 960px) {
  .cat-why-intro {
    position: static;
  }
}
.cat-why-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-8);
}
@media (max-width: 640px) {
  .cat-why-features {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }
}
.cat-why-feature {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.cat-why-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-subtle);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-2);
}
.cat-why-feature h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--text-heading);
  margin: 0;
  letter-spacing: -0.01em;
}
.cat-why-feature p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.term-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .term-types-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    gap: var(--sp-4);
  }
}
.term-type-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition:
    transform 250ms var(--ease),
    box-shadow 250ms var(--ease);
}
.term-type-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.term-type-card--featured {
  border-color: var(--accent);
  box-shadow:
    0 0 0 1px var(--accent),
    var(--shadow-card);
}
.term-type-chip {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--accent-subtle);
  color: var(--accent);
  width: fit-content;
}
.term-type-card--featured .term-type-chip {
  background: var(--accent);
  color: #fff;
}
.term-type-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--text-heading);
  margin: 0;
  letter-spacing: -0.01em;
}
.term-type-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.term-type-spec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--border-light);
}
.term-type-spec:first-of-type {
  border-top: 1px solid var(--border-light);
}
.term-type-spec-label {
  font-size: var(--text-xs);
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.term-type-spec-value {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-heading);
}
.term-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .term-features-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
    max-width: 540px;
  }
}
.term-feature {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.term-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-subtle);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-1);
}
.term-feature h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--text-heading);
  margin: 0;
  letter-spacing: -0.01em;
}
.term-feature p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.ind-hero {
  padding: var(--sp-8) 0 var(--sp-16);
  background: var(--white);
  overflow: hidden;
}
.ind-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sp-12);
  align-items: center;
  padding-top: var(--sp-8);
}
@media (max-width: 960px) {
  .ind-hero__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }
}
.ind-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-heading);
  margin: 0 0 var(--sp-5);
}
.ind-hero__title em {
  font-style: italic;
  color: var(--green-500);
}
.ind-hero__sub {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 var(--sp-8);
  max-width: 540px;
}
.ind-hero__actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}
.ind-hero .hero__trust-row {
  justify-content: flex-start;
}
@media (max-width: 960px) {
  .ind-hero .hero__trust-row {
    justify-content: flex-start;
  }
}
.ind-hero__visual {
  position: relative;
  max-width: 500px;
}
@media (max-width: 960px) {
  .ind-hero__visual {
    max-width: 100%;
  }
}
.ind-hero__img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.ind-hero__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 1/1;
}
@media (max-width: 960px) {
  .ind-hero__img {
    aspect-ratio: 4/3;
  }
}
.ind-hero__float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-6);
  box-shadow: 0 12px 40px rgba(15, 20, 25, 0.14);
  z-index: 3;
  animation: float 3s ease-in-out infinite;
  min-width: 180px;
}
.ind-hero__float-row {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-2);
}
.ind-hero__float-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  flex-shrink: 0;
}
.ind-hero__float-status {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--green-600);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ind-hero__float-amount {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--text-heading);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-1);
}
.ind-hero__float-detail {
  font-size: 11px;
  color: var(--text-faint);
}
@media (max-width: 640px) {
  .ind-hero__float {
    left: 0;
    bottom: -16px;
  }
}
.ind-challenge {
  padding: var(--sp-24) 0;
  background: var(--bg-page);
}
.ind-challenge__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}
@media (max-width: 960px) {
  .ind-challenge__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }
}
.ind-challenge__intro .section-desc {
  max-width: 480px;
}
.ind-challenge__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
@media (max-width: 640px) {
  .ind-challenge__cards {
    grid-template-columns: 1fr;
  }
}
.ind-challenge__card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.ind-challenge__card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-subtle);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-1);
}
.ind-challenge__card h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text-heading);
  margin: 0;
}
.ind-challenge__card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.ind-products {
  padding: var(--sp-24) 0;
  background: var(--white);
}
.ind-products .cat-product-card {
  background: var(--bg-page);
}
.ind-products .cat-product-card--help {
  background: var(--slate-900);
  color: var(--text-on-dark);
  border-color: var(--slate-800);
}
.ind-products__card-uses {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.ind-products__card-uses span {
  font-size: var(--text-xs);
  color: var(--text-muted);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 2px 10px;
}
.ind-scenarios {
  padding: var(--sp-24) 0;
  background: var(--white);
}
.ind-scenarios__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  margin-top: var(--sp-12);
}
@media (max-width: 768px) {
  .ind-scenarios__grid {
    grid-template-columns: 1fr;
  }
}
.ind-scenario {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-6);
  align-items: start;
}
.ind-scenario__num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-top: 2px;
}
.ind-scenario__body h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--text-heading);
  margin: 0 0 var(--sp-3);
}
.ind-scenario__body p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 var(--sp-4);
}
.ind-scenario__tag {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-subtle);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-full);
  display: inline-block;
}
.page-industry .qual-section {
  background: var(--bg-cool);
}
.page-industry .qual-section .qual-card {
  background: var(--white);
}
.page-industry .how-section {
  background: var(--bg-page);
}
.page-industry .faq-section {
  background: var(--white);
}
.page-industry .final-cta {
  background: var(--bg-cool);
}
.ind-calc-wide .calc-outer {
  max-width: 960px;
}
.ind-calc-card--wide {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: var(--sp-10);
  align-items: start;
}
@media (max-width: 768px) {
  .ind-calc-card--wide {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }
}
.ind-calc-inputs {
  display: flex;
  flex-direction: column;
}
.ind-calc-result-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-cool);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
}
.ind-calc-result-col .funding-result-amount {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}
.ind-hub {
  padding: var(--sp-24) 0;
  background: var(--bg-page);
}
.ind-hub__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-12);
}
@media (max-width: 960px) {
  .ind-hub__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .ind-hub__grid {
    grid-template-columns: 1fr;
  }
}
.ind-hub__card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition:
    transform 250ms var(--ease),
    box-shadow 250ms var(--ease),
    border-color 250ms var(--ease);
}
.ind-hub__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--slate-300);
}
.ind-hub__img {
  height: 180px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 640px) {
  .ind-hub__img {
    height: 200px;
  }
}
.ind-hub__body {
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ind-hub__body h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--text-heading);
  margin: 0 0 var(--sp-2);
  letter-spacing: -0.01em;
}
.ind-hub__body p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.ind-hub__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--accent);
  margin-top: var(--sp-4);
  transition: gap 200ms var(--ease);
}
.ind-hub__card:hover .ind-hub__link {
  gap: var(--sp-3);
}
.ind-hub-other {
  padding: 0 0 var(--sp-24);
  background: var(--bg-page);
}
.ind-hub-other__card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--sp-12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-10);
}
@media (max-width: 768px) {
  .ind-hub-other__card {
    flex-direction: column;
    text-align: center;
    padding: var(--sp-8);
  }
}
.ind-hub-other__copy h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--text-heading);
  margin: 0 0 var(--sp-3);
}
.ind-hub-other__copy p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  max-width: 560px;
}
.ind-hub-other__actions {
  display: flex;
  gap: var(--sp-4);
  flex-shrink: 0;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .ind-hub-other__actions {
    justify-content: center;
  }
}
.contact-hero {
  padding: var(--sp-8) 0 var(--sp-12);
  background: var(--white);
}
.contact-hero__inner {
  max-width: 640px;
  padding-top: var(--sp-6);
}
.contact-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--text-heading);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 var(--sp-4);
}
.contact-hero__sub {
  font-size: var(--text-lg);
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.contact-main {
  padding: 0 0 var(--sp-24);
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--sp-16);
  align-items: start;
}
@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-12);
  }
}
.contact-form__heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--text-heading);
  margin: 0 0 var(--sp-2);
}
.contact-form__desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin: 0 0 var(--sp-8);
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  margin-bottom: var(--sp-5);
}
@media (max-width: 640px) {
  .contact-form__row {
    grid-template-columns: 1fr;
  }
}
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.contact-form__field:not(:last-child) {
  margin-bottom: 0;
}
.contact-form .contact-form__field:only-child {
  margin-bottom: var(--sp-5);
}
.contact-form__field label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-heading);
}
.contact-form__optional {
  font-weight: 400;
  color: var(--text-faint);
}
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-heading);
  background: var(--bg-page);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  padding: var(--sp-3) var(--sp-4);
  transition:
    border-color 150ms var(--ease),
    box-shadow 150ms var(--ease);
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-subtle);
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: var(--text-faint);
}
.contact-form__field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2394a3b8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--sp-4) center;
  padding-right: var(--sp-10);
  cursor: pointer;
}
.contact-form__field textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form__submit {
  margin-top: var(--sp-4);
  width: 100%;
  max-width: 240px;
}
.contact-info {
  position: sticky;
  top: var(--sp-10);
}
.contact-info__card {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  margin-bottom: var(--sp-6);
}
.contact-info__section {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}
.contact-info__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-subtle);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info__section h3 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-heading);
  margin: 0 0 2px;
}
.contact-info__section a,
.contact-info__section p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin: 0;
  text-decoration: none;
  transition: color 150ms;
}
.contact-info__section a:hover {
  color: var(--accent);
}
.contact-info__links {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.contact-info__links h3 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-heading);
  margin: 0 0 var(--sp-2);
}
.contact-info__link {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-decoration: none;
  padding: var(--sp-2) 0;
  transition: color 150ms;
}
.contact-info__link svg {
  color: var(--accent);
  flex-shrink: 0;
}
.contact-info__link:hover {
  color: var(--accent);
}
.partner-why {
  padding: var(--sp-24) 0;
  background: var(--bg-page);
}
.partner-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-12);
}
@media (max-width: 960px) {
  .partner-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .partner-why__grid {
    grid-template-columns: 1fr;
  }
}
.partner-why__card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition:
    transform 250ms var(--ease),
    box-shadow 250ms var(--ease);
}
.partner-why__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.partner-why__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--accent-subtle);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-2);
}
.partner-why__card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--text-heading);
  margin: 0;
}
.partner-why__card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.partner-types {
  padding: var(--sp-24) 0;
  background: var(--white);
}
.partner-types__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}
@media (max-width: 768px) {
  .partner-types__grid {
    grid-template-columns: 1fr;
  }
}
.partner-types__card {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--sp-10);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.partner-types__badge {
  display: inline-flex;
  align-self: flex-start;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-600);
  background: rgba(147, 199, 43, 0.12);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-pill);
}
.partner-types__card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--text-heading);
  margin: 0;
  line-height: 1.25;
}
.partner-types__card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.partner-types__list {
  list-style: none;
  padding: 0;
  margin: var(--sp-4) 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  flex: 1;
}
.partner-types__list li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--text-body);
}
.partner-types__list li svg {
  color: var(--green-600);
  flex-shrink: 0;
}
.partner-types__lender {
  margin-top: var(--sp-6);
  background: var(--slate-900);
  border-radius: var(--radius-xl);
  padding: var(--sp-8) var(--sp-10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}
@media (max-width: 768px) {
  .partner-types__lender {
    flex-direction: column;
    text-align: center;
    padding: var(--sp-8);
  }
}
.partner-types__lender h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--text-on-dark);
  margin: 0 0 var(--sp-2);
}
.partner-types__lender p {
  font-size: var(--text-sm);
  color: var(--slate-400);
  margin: 0;
  max-width: 560px;
  line-height: 1.6;
}
.partner-types__lender .btn-outline {
  border-color: var(--slate-600);
  color: var(--text-on-dark);
  flex-shrink: 0;
}
.partner-types__lender .btn-outline:hover {
  border-color: var(--accent);
  background: rgba(175, 231, 63, 0.08);
}
.legal-page {
  padding: var(--sp-12) 0 var(--sp-32);
  background: var(--white);
}
.legal-page__inner {
  max-width: 800px;
  margin: 0 auto;
}
.legal-page__inner h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--text-heading);
  margin: 0 0 var(--sp-2);
  letter-spacing: -0.01em;
}
.legal-page__date {
  font-size: var(--text-sm);
  color: var(--text-faint);
  margin: 0 0 var(--sp-12);
}
.legal-page__inner h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--text-heading);
  margin: var(--sp-16) 0 var(--sp-5);
}
.legal-page__inner h3 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-heading);
  margin: var(--sp-8) 0 var(--sp-3);
}
.legal-page__inner p,
.legal-page__inner li {
  font-size: var(--text-sm);
  color: var(--text-body);
  line-height: 1.75;
}
.legal-page__inner p {
  margin: 0 0 var(--sp-5);
}
.legal-page__inner strong {
  font-weight: 500;
}
.legal-page__inner ul,
.legal-page__inner ol {
  padding-left: var(--sp-6);
  margin: 0 0 var(--sp-5);
}
.legal-page__inner li {
  margin-bottom: var(--sp-2);
}
.legal-page__inner a {
  color: var(--accent);
  text-decoration: underline;
}
.legal-page__inner a:hover {
  color: var(--accent-hover);
}
.legal-page__inner table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--sp-6) 0;
  font-size: var(--text-sm);
  line-height: 1.65;
}
.legal-page__inner table th,
.legal-page__inner table td {
  border: 1px solid var(--border-light);
  padding: var(--sp-4) var(--sp-5);
  text-align: left;
  vertical-align: top;
}
.legal-page__inner table th {
  font-weight: 600;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-heading);
  background: var(--bg-page);
}
.legal-page__inner table td:first-child {
  width: 220px;
  font-weight: 500;
  color: var(--text-heading);
}
@media (max-width: 640px) {
  .legal-page__inner table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .legal-page__inner table td:first-child {
    width: 140px;
    min-width: 140px;
  }
}
.optout-checkboxes {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-2);
}
.optout-checkbox {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--text-body);
  cursor: pointer;
  line-height: 1.5;
}
.optout-checkbox input[type='checkbox'] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  accent-color: var(--accent);
  flex-shrink: 0;
  cursor: pointer;
  margin: 0;
}
.optout-checkbox span {
  flex: 1;
}
.agreements-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}
.agreements-list__item {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  padding: var(--sp-6);
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  text-decoration: none;
  color: inherit;
  transition:
    transform 200ms var(--ease),
    box-shadow 200ms var(--ease),
    border-color 200ms var(--ease);
}
.legal-page__inner a.agreements-list__item {
  text-decoration: none;
}
.agreements-list__item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: var(--slate-300);
}
.agreements-list__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--accent-subtle);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.agreements-list__body {
  flex: 1;
  min-width: 0;
}
.agreements-list__body h2 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--text-heading);
  margin: 0 0 var(--sp-1);
  letter-spacing: -0.01em;
}
.agreements-list__body p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}
.agreements-list__arrow {
  color: var(--text-faint);
  flex-shrink: 0;
  transition:
    color 200ms var(--ease),
    transform 200ms var(--ease);
}
.agreements-list__item:hover .agreements-list__arrow {
  color: var(--accent);
  transform: translateX(3px);
}
@media (max-width: 640px) {
  .agreements-list__item {
    flex-wrap: wrap;
    gap: var(--sp-4);
  }
  .agreements-list__arrow {
    display: none;
  }
}
.calc-card *,
.loc-calc-card * {
  box-sizing: border-box;
  max-width: 100%;
}
.calc-section .container,
.loc-calc-section .container {
  overflow: hidden;
}
