

@font-face {
  font-family: 'YekanBakh';
  src: url('../fonts/YekanBakh-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'YekanBakh';
  src: url('../fonts/YekanBakh-SemiBold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'YekanBakh';
  src: url('../fonts/YekanBakh-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'YekanBakh';
  src: url('../fonts/YekanBakh-ExtraBold.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'YekanBakh';
  src: url('../fonts/YekanBakh-Black.woff2') format('woff2');
  font-weight: 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'PeydaWebFaNum';
  src: url('../fonts/PeydaWebFaNum-SemiBold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'PeydaWebFaNum';
  src: url('../fonts/PeydaWebFaNum-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

:root{
  --bg:#f4f5fa;
  --bg-2:#eceef5;
  --surface:#ffffff;
  --surface-2:#f9fafc;
  --surface-3:#f1f2f8;
  --border:#e6e8f0;
  --border-soft:#edeef5;

  --gold:#c9880f;
  --gold-light:#a3690a;
  --gold-pale:#fdf1d9;
  --gold-deep:#8a5c08;
  --gold-bg:rgba(201,136,15,.12);
  --gold-btn-from:#f0c860;
  --gold-btn-to:#c9a227;

  --silver:#6b7280;
  --silver-light:#4b5563;
  --silver-bg:rgba(107,114,128,.13);
  --silver-dark:#1c1e27;

  --text:#181a22;
  --text-muted:#585c6b;
  --text-faint:#8e92a3;

  --radius:16px;
  --radius-sm:10px;
  --radius-lg:24px;

  --shadow-sm:0 1px 2px rgba(30,34,60,.05);
  --shadow-md:0 18px 36px -22px rgba(30,34,60,.28);
  --shadow-lg:0 30px 80px rgba(30,34,60,.12);
  --shadow-gold:0 10px 26px rgba(138,92,8,.28);
}

*,*::before,*::after{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  margin:0;
  direction:rtl;
  width:100%;
  background:
    radial-gradient(ellipse 900px 500px at 15% -10%, rgba(201,136,15,.10), transparent 60%),
    radial-gradient(ellipse 700px 480px at 100% 10%, rgba(107,114,128,.10), transparent 60%),
    var(--bg);
  background-attachment:fixed;
  background-repeat:no-repeat;
  color:var(--text);
  font-family:'YekanBakh', Tahoma, sans-serif;
  font-weight:500;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}

main{ display:block; overflow-x:hidden; max-width:100%; }

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }

.num{ font-family:'PeydaWebFaNum','YekanBakh',sans-serif; }

h1,h2,h3,h4{ font-weight:800; margin:0; color:var(--text); }
p{ margin:0; text-align:justify; }

.container{
  width:100%;
  max-width:1320px;
  margin:0 auto;
  padding:0 40px;
}

::selection{ background:var(--gold-pale); color:var(--gold-deep); }

::-webkit-scrollbar{ width:8px; }
::-webkit-scrollbar-track{ background:transparent; }
::-webkit-scrollbar-thumb{ background:var(--gold-light); opacity:.4; border-radius:4px; }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 16px;
  border-radius:100px;
  background:var(--gold-pale);
  border:1px solid rgba(201,136,15,.28);
  color:var(--gold-light);
  font-size:13px;
  font-weight:700;
}
.eyebrow::before{
  content:'';
  width:6px; height:6px; border-radius:50%;
  background:var(--gold);
  box-shadow:0 0 0 4px rgba(201,136,15,.18);
}
.eyebrow.silver{ background:var(--silver-bg); border-color:rgba(107,114,128,.28); color:var(--silver-light); }
.eyebrow.silver::before{ background:var(--silver); box-shadow:0 0 0 4px rgba(107,114,128,.18); }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:14px 28px;
  border-radius:12px;
  font-size:15px;
  font-weight:700;
  border:1px solid transparent;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space:nowrap;
}
.btn:active{ transform:translateY(1px); }

.btn-gold{
  background:linear-gradient(145deg,var(--gold-btn-from),var(--gold-btn-to));
  color:#211705;
  box-shadow:var(--shadow-gold);
}
.btn-gold:hover{ box-shadow:0 14px 32px rgba(138,92,8,.36); transform:translateY(-1px); }

.btn-outline{
  background:var(--surface);
  color:var(--text);
  border-color:var(--border);
}
.btn-outline:hover{ border-color:var(--gold); color:var(--gold-deep); }

.btn-ghost-silver{
  background:var(--silver-bg);
  color:var(--silver-light);
  border-color:rgba(107,114,128,.25);
}
.btn-ghost-silver:hover{ background:rgba(107,114,128,.2); }

.btn-block{ width:100%; }
.btn-sm{ padding:10px 18px; font-size:13.5px; border-radius:10px; }

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  padding-top:14px;
  transform:translateZ(0);
  -webkit-transform:translateZ(0);
  will-change:transform;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:22px 24px;
  background:rgba(244,245,250,.85);
  backdrop-filter:blur(22px) saturate(1.6);
  -webkit-backdrop-filter:blur(22px) saturate(1.6);
  border:1px solid rgba(255,255,255,.55);
  border-radius:14px;
  box-shadow:var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,.5);
  isolation:isolate;
}
@supports not ((backdrop-filter:blur(1px)) or (-webkit-backdrop-filter:blur(1px))){
  .header-inner{ background:rgba(244,245,250,.97); }
}
.brand-cluster{
  display:flex;
  align-items:center;
  gap:28px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand-name{ display:block; font-size:19px; font-weight:800; line-height:1.15; }
.brand-tag{ display:block; font-size:11px; color:var(--text-faint); margin-top:2px; font-weight:600; }

.main-nav{ display:flex; align-items:center; gap:6px; }
.main-nav a{
  padding:10px 14px;
  border-radius:9px;
  font-size:14px;
  font-weight:600;
  color:var(--text-muted);
  transition:background .15s ease, color .15s ease;
}
.main-nav a:hover{ background:var(--surface-3); color:var(--text); }

.header-actions{ display:flex; align-items:center; gap:10px; }
.header-demo-mobile{ display:none; }

.nav-toggle{
  display:none;
  width:42px; height:42px;
  border-radius:10px;
  border:1px solid var(--border);
  background:var(--surface);
  align-items:center;
  justify-content:center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:'';
  display:block;
  width:18px; height:2px;
  background:var(--text);
  border-radius:2px;
  position:relative;
  transition:.2s;
}
.nav-toggle span::before{ position:absolute; top:-6px; }
.nav-toggle span::after{ position:absolute; top:6px; }

.ticker{
  border-bottom:1px solid var(--border-soft);
  background:var(--surface);
  overflow:hidden;
  white-space:nowrap;
}
.ticker-track{
  display:inline-flex;
  align-items:center;
  gap:36px;
  padding:8px 0;
  animation:ticker-scroll 26s linear infinite;
}
.ticker:hover .ticker-track{ animation-play-state:paused; }
.ticker-item{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12.5px;
  color:var(--text-muted);
  font-weight:600;
}
.ticker-item b{ color:var(--text); font-weight:700; }
.ticker-up{ color:#1a8a4c; font-weight:700; }
.ticker-down{ color:#c23a3a; font-weight:700; }
.ticker-dot{ width:5px; height:5px; border-radius:50%; background:var(--gold); flex-shrink:0; }

@keyframes ticker-scroll{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-50%); }
}

.hero{
  position:relative;
  overflow:hidden;
  padding:88px 0 60px;
  background:transparent;
}
.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr);
  grid-template-areas:
    "eyebrow visual"
    "title   visual"
    "copy    visual";
  column-gap:56px;
  row-gap:0;
  align-items:center;
}
.hero-eyebrow{ grid-area:eyebrow; margin-bottom:12px; justify-self:start; }
.hero-title{ grid-area:title; min-width:0; }
.hero-copy{ grid-area:copy; min-width:0; }
.hero-visual{ grid-area:visual; min-width:0; }
.hero h1{
  font-size:34px;
  line-height:1.3;
  letter-spacing:-.01em;
}
.hero h1 .accent{
  background:linear-gradient(90deg,var(--gold-deep),var(--gold-btn-from) 55%,var(--gold-light));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero p.lead{
  margin-top:20px;
  font-size:16.5px;
  color:var(--text-muted);
  max-width:520px;
}
.hero-cta-row{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:34px;
  flex-wrap:wrap;
}

.frame-browser{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--border-soft);
  box-shadow:var(--shadow-md);
  background:var(--surface);
}
.frame-browser.dark{ background:#14151c; border-color:#2c2f3b; }
.frame-bar{
  height:36px;
  background:var(--surface-3);
  border-bottom:1px solid var(--border-soft);
  display:flex;
  align-items:center;
  padding:0 14px;
  gap:8px;
}
.frame-browser.dark .frame-bar{ background:#1c1e27; border-color:#2c2f3b; }
.frame-dot{ width:10px; height:10px; border-radius:50%; flex-shrink:0; }
.frame-address{
  flex:1; height:18px; border-radius:5px;
  background:var(--surface);
  border:1px solid var(--border-soft);
  margin-right:10px;
}
.frame-browser.dark .frame-address{ background:#262835; border-color:#333644; }

.hero-visual{ position:relative; }
.hero-visual::after{
  content:'';
  position:absolute;
  inset:-30px -30px auto auto;
  width:230px; height:230px;
  background:radial-gradient(circle, rgba(201,136,15,.22), transparent 70%);
  z-index:1;
  filter:blur(6px);
}

.hero-showcase{ padding:14px 8px 0 8px; }
.showcase-frame{
  position:relative;
  z-index:3;
  width:100%;
  aspect-ratio:1048 / 608;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
}
.showcase-slide{
  position:absolute;
  inset:0;
  z-index:1;
  border-radius:0;
  box-shadow:none;
  opacity:0;
  transform:translateX(28px);
  transition:opacity .55s ease, transform .55s cubic-bezier(.4,0,.2,1);
  pointer-events:none;
}
.showcase-slide img{ width:100%; height:calc(100% - 36px); object-fit:contain; }
.showcase-slide.is-active{
  z-index:2;
  opacity:1;
  transform:translateX(0);
  pointer-events:auto;
}
.showcase-slide.is-leaving{ transform:translateX(-28px); }

.showcase-controls{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  margin-top:18px;
}
.showcase-dot{
  display:flex;
  align-items:center;
  gap:8px;
  background:var(--surface);
  border:1px solid var(--border-soft);
  border-radius:100px;
  padding:9px 18px;
  box-shadow:var(--shadow-sm);
  font-size:12.5px;
  font-weight:700;
  color:var(--text-faint);
  transition:color .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.showcase-dot:hover{ color:var(--text-muted); }
.showcase-dot.is-active{
  color:var(--text);
  border-color:var(--gold);
  box-shadow:var(--shadow-md);
  background:var(--gold-pale);
}
.showcase-dot-swatch{ width:10px; height:10px; border-radius:50%; flex-shrink:0; }
.showcase-dot-swatch.dark-dot{ background:#1c1e27; border:2px solid #3a3d4c; }
.showcase-dot-swatch.light-dot{ background:#fdf1d9; border:2px solid var(--gold); }
.hero-badge-float{
  position:absolute;
  bottom:-22px;
  left:-22px;
  z-index:3;
  background:var(--surface);
  border:1px solid var(--border-soft);
  border-radius:14px;
  padding:14px 18px;
  box-shadow:var(--shadow-md);
  display:flex;
  align-items:center;
  gap:12px;
}
.hero-badge-float .ic{
  width:38px; height:38px; border-radius:10px;
  background:var(--gold-bg);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.hero-badge-float b{ font-size:14px; display:block; }
.hero-badge-float span{ font-size:11.5px; color:var(--text-faint); }

.trust-strip{
  padding:26px 0;
  border-top:1px solid var(--border-soft);
  border-bottom:1px solid var(--border-soft);
  background:var(--surface);
}
.trust-inner{
  display:flex;
  align-items:center;
  gap:34px;
  flex-wrap:wrap;
  justify-content:space-between;
}
.trust-label{
  font-size:12.5px;
  color:var(--text-faint);
  font-weight:700;
  white-space:nowrap;
}
.trust-logos{
  display:flex;
  align-items:center;
  gap:34px;
  flex-wrap:wrap;
  opacity:.8;
}
.trust-logos img{ height:22px; width:auto; object-fit:contain; filter:grayscale(15%); }

.integrations-list{
  display:flex;
  flex-direction:column;
  gap:20px;
}
.integration-group{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px 30px;
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:28px;
  align-items:center;
}
.integration-head h3{ font-size:17px; }
.integration-head p{
  margin-top:8px;
  font-size:13.5px;
  color:var(--text-muted);
  line-height:1.85;
}
.integration-logos{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.integration-logo{
  display:flex;
  align-items:center;
  gap:10px;
  background:var(--surface-2);
  border:1px solid var(--border-soft);
  border-radius:var(--radius-sm);
  padding:8px 16px 8px 8px;
}
.integration-logo .logo-box{
  width:auto;
  height:34px;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
}
.integration-logo .logo-box.logo-initial{
  width:34px;
  height:34px;
  border-radius:8px;
  background:var(--gold-bg);
}
.integration-logo img{
  max-width:80px;
  max-height:34px;
  width:auto;
  height:auto;
  object-fit:contain;
}
.logo-initial{
  font-size:14.5px;
  font-weight:800;
  color:var(--gold);
}
.integration-logo span{
  font-size:12.8px;
  font-weight:700;
  color:var(--text);
  white-space:nowrap;
}

.section{ padding:96px 0; }
.section.tight{ padding:72px 0; }
.section-alt{ background:var(--surface); }
.section-head{
  max-width:640px;
  margin:0 auto 56px;
  text-align:center;
}
.feature-card, .risk-card, .step-card, .integration-head, .intro-copy{ min-width:0; }
.section-head h2{
  font-size:32px;
  margin-top:16px;
  line-height:1.35;
}
.section-head p{
  margin-top:14px;
  color:var(--text-muted);
  font-size:18.5px;
  line-height:1.7;
  text-align:center;
}
#integrations .section-head{ max-width:780px; }
.section-head.right{ text-align:right; margin-right:0; }
.demo-head h2{ font-size:22px; }

.intro-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:64px;
  align-items:center;
}
.intro-copy h2{ font-size:30px; line-height:1.4; margin-top:14px; }
.intro-copy p{ margin-top:18px; color:var(--text-muted); font-size:15.5px; }
.intro-points{ margin-top:26px; display:flex; flex-direction:column; gap:14px; }
.intro-point{ display:flex; align-items:flex-start; gap:12px; }
.intro-point .chk{
  width:22px; height:22px; border-radius:7px; flex-shrink:0; margin-top:2px;
  background:var(--gold-bg);
  display:flex; align-items:center; justify-content:center;
}
.intro-point .chk.silver{ background:var(--silver-bg); }
.intro-point p{ margin:0; font-size:14.5px; color:var(--text); font-weight:600; }
.intro-grid.reverse .intro-visual{ order:2; }
.intro-grid.reverse .intro-copy{ order:1; }

.risk-strip{
  margin-top:32px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.risk-strip.standalone{ margin-top:0; }
.risk-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px 26px;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.risk-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
  border-color:rgba(107,114,128,.35);
}
.risk-card .ic{
  width:46px; height:46px; border-radius:12px;
  background:var(--silver-bg);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
}
.risk-card .ic svg{ width:18px; height:18px; }
.risk-card h4{ font-size:16.5px; margin-bottom:0; }
.risk-card p{ margin-top:10px; font-size:13.8px; color:var(--text-muted); line-height:1.8; }

.loan-mock-body{ padding:22px; display:flex; flex-direction:column; gap:18px; }
.loan-mock-top{ display:flex; align-items:center; justify-content:space-between; }
.loan-mock-title{ font-size:15.5px; font-weight:800; }
.loan-mock-top .tag{
  display:inline-flex; align-items:center; gap:7px;
  font-size:12px; font-weight:700; padding:6px 12px; border-radius:100px;
}
.loan-mock-top .tag.gold{ background:var(--gold-bg); color:var(--gold-deep); }
.loan-mock-row{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.loan-mock-box{
  background:var(--surface-2);
  border:1px solid var(--border-soft);
  border-radius:var(--radius-sm);
  padding:14px 16px;
  display:flex; flex-direction:column; gap:6px;
}
.loan-mock-box.accent{ background:var(--gold-pale); border-color:rgba(201,136,15,.25); }
.loan-mock-box .k{ font-size:12px; color:var(--text-faint); }
.loan-mock-box .v{ font-size:14.5px; font-weight:800; }
.loan-mock-box .v.gold-text{ color:var(--gold-deep); }
.loan-mock-ltv{
  background:var(--surface-2);
  border:1px solid var(--border-soft);
  border-radius:var(--radius-sm);
  padding:16px;
}
.loan-mock-ltv-head{
  display:flex; align-items:center; justify-content:space-between;
  font-size:12.5px; font-weight:700; color:var(--text-muted);
  margin-bottom:10px;
}
.loan-mock-ltv-bar{
  height:8px; border-radius:100px; background:var(--border);
  overflow:hidden;
}
.loan-mock-ltv-bar span{
  display:block; height:100%; border-radius:100px;
  background:linear-gradient(90deg, var(--gold-btn-from), var(--gold-btn-to));
}
.loan-mock-ltv-zone{
  display:flex; justify-content:space-between;
  font-size:10.5px; color:var(--text-faint); margin-top:8px;
}
.loan-mock-btn{ pointer-events:none; }

.intro-visual{ position:relative; }
.intro-stack{ display:flex; gap:16px; }
.intro-stack .frame-browser{ flex:1; }

.features-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.feature-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px 26px;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
  border-color:rgba(201,136,15,.35);
}
.feature-card .ic{
  width:46px; height:46px;
  border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
  background:var(--gold-bg);
}
.feature-card.silver .ic{ background:var(--silver-bg); }
.feature-card h3{ font-size:16.5px; }
.feature-card p{
  margin-top:10px;
  font-size:13.8px;
  color:var(--text-muted);
  line-height:1.8;
}

.demo-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}
.demo-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  display:flex;
  flex-direction:column;
}
.demo-shot{
  padding:26px 26px 0;
  background:linear-gradient(160deg,var(--surface-3) 0%, var(--bg) 100%);
}
.demo-shot.dark-bed{ background:linear-gradient(160deg,#1c1e27 0%,#14151c 100%); }
.demo-body{ padding:26px; display:flex; flex-direction:column; gap:18px; flex:1; }
.demo-top{ display:flex; align-items:center; justify-content:space-between; gap:12px; }
.demo-top .tag{
  display:inline-flex; align-items:center; gap:7px;
  font-size:12px; font-weight:700; padding:6px 12px; border-radius:100px;
}
.demo-top .tag.gold{ background:var(--gold-bg); color:var(--gold-deep); }
.demo-top .tag.silver{ background:var(--silver-bg); color:var(--silver-light); }
.demo-title{ font-size:19px; font-weight:800; }
.demo-desc{ font-size:13.8px; color:var(--text-muted); }

.cred-box{
  background:var(--surface-2);
  border:1px dashed var(--border);
  border-radius:var(--radius-sm);
  padding:16px 18px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.cred-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.cred-row .k{ font-size:12.5px; color:var(--text-faint); font-weight:600; flex-shrink:0; }
.cred-row .v{
  font-size:13.5px;
  font-weight:700;
  color:var(--text);
  background:var(--surface);
  border:1px solid var(--border-soft);
  padding:5px 12px;
  border-radius:7px;
  letter-spacing:.02em;
}
.v-wrap{ display:flex; align-items:center; gap:8px; min-width:0; }
.v-wrap .v{ min-width:0; overflow:hidden; text-overflow:ellipsis; }
.copy-btn{
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
  width:28px;
  height:28px;
  padding:0;
  border:1px solid var(--border-soft);
  border-radius:7px;
  background:var(--surface);
  color:var(--text-faint);
  cursor:pointer;
  transition:background .15s ease, color .15s ease, border-color .15s ease, transform .1s ease;
}
.copy-btn:hover{ color:var(--text); border-color:var(--border); }
.copy-btn:active{ transform:scale(.92); }
.copy-btn .icon-check{ display:none; }
.copy-btn.copied{ color:#28C840; border-color:#28C840; }
.copy-btn.copied .icon-copy{ display:none; }
.copy-btn.copied .icon-check{ display:block; }
.demo-actions{ display:flex; gap:10px; margin-top:auto; }

.stats-band{
  background:linear-gradient(120deg,var(--silver-dark) 0%, #22242f 100%);
  border-radius:var(--radius-lg);
  padding:52px 48px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.stat-item{ text-align:center; }
.stat-item b{
  display:block;
  font-size:32px;
  font-weight:800;
  background:linear-gradient(90deg,var(--gold-btn-from),var(--gold-btn-to));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.stat-item span{ display:block; margin-top:8px; font-size:13px; color:#9498a8; font-weight:600; }

.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.step-card{
  position:relative;
  padding:28px 26px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.step-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
  border-color:rgba(201,136,15,.35);
}
.step-num{
  width:46px; height:46px;
  border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
  background:var(--gold-bg);
}
.step-num svg{ width:18px; height:18px; }
.step-card h4{ font-size:16.5px; }
.step-card p{ margin-top:10px; font-size:13.8px; color:var(--text-muted); line-height:1.8; }

.cta-banner{
  border-radius:var(--radius-lg);
  padding:56px 48px;
  background:
    radial-gradient(ellipse 500px 260px at 90% 0%, rgba(240,200,96,.16), transparent 65%),
    linear-gradient(120deg, var(--gold-deep), #6b4c0c 60%, var(--silver-dark));
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  flex-wrap:wrap;
  color:#fff;
}
.cta-banner .cta-copy{ min-width:0; flex:1 1 320px; overflow-wrap:break-word; }
.cta-banner h2{ color:#fff; font-size:27px; line-height:1.5; }
.cta-banner p{ color:rgba(255,255,255,.72); margin-top:12px; font-size:14.5px; }
.cta-banner .btn-outline{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.28);
  color:#fff;
}
.cta-banner .btn-outline:hover{ background:rgba(255,255,255,.16); border-color:rgba(255,255,255,.5); color:#fff;}

.faq-list{ display:flex; flex-direction:column; gap:12px; max-width:820px; margin:0 auto; }
.faq-item{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  overflow:hidden;
}
.faq-q{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:18px 22px; cursor:pointer; font-weight:700; font-size:15px;
}
.faq-q .plus{
  width:26px; height:26px; border-radius:8px; background:var(--gold-bg);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  transition:transform .25s ease;
}
.faq-item[open] .faq-q .plus{ transform:rotate(45deg); }
.faq-a{ padding:0 22px 20px; color:var(--text-muted); font-size:14px; line-height:1.85; }
.faq-q::-webkit-details-marker{ display:none; }

.site-footer{
  background:var(--silver-dark);
  color:#c7c9d3;
  padding-top:64px;
}
.footer-top{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  padding-bottom:48px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-brand .brand{ justify-content:center; }
.footer-brand .brand-name{ color:#fff; }
.footer-about{ margin:16px auto 0; font-size:13.5px; color:#9498a8; max-width:420px; line-height:1.9; text-align:center; }

.footer-bottom{
  display:flex; align-items:center; justify-content:center;
  padding:24px 0; gap:16px; flex-wrap:wrap;
  font-size:12.8px; color:#767a89;
}

@media (max-width: 1024px){
  .hero-grid{
    grid-template-columns:minmax(0,1fr);
    grid-template-areas:
      "title"
      "visual"
      "eyebrow"
      "copy";
    row-gap:20px;
  }
  .hero-eyebrow{ margin-bottom:0; justify-self:start; }
  .hero p.lead{ margin-top:0; }
  .hero-visual{ max-width:520px; margin:0 auto; }
  .intro-grid{ grid-template-columns:1fr; gap:36px; }
  .intro-visual{ order:-1; }
  .intro-grid.reverse .intro-visual{ order:-1; }
  .intro-grid.reverse .intro-copy{ order:2; }
  .features-grid{ grid-template-columns:repeat(2,1fr); }
  .demo-grid{ grid-template-columns:1fr; }
  .stats-band{ grid-template-columns:repeat(2,1fr); }
  .steps{ grid-template-columns:repeat(2,1fr); }
  .integration-group{ grid-template-columns:1fr; gap:20px; }
  .integration-logos{ justify-content:flex-start; }
  .risk-strip{ grid-template-columns:repeat(2,1fr); }
  .intro-stack{ max-width:480px; margin:0 auto; }
}

@media (max-width: 900px){
  .main-nav{ display:none; }
  .nav-toggle{ display:flex; }
  .header-actions .btn-outline{ display:none; }


  .site-header{ padding:14px 14px 0; }


  .header-inner{
    position:relative;
    display:grid;
    grid-template-columns:32px 1fr auto;
    align-items:center;
    gap:8px;
    padding:24px 18px;
  }

  .main-nav.nav-open{
    display:flex;
    flex-direction:column;
    position:absolute;
    top:calc(100% + 10px);
    left:0;
    right:0;
    gap:4px;
    padding:14px;
    background:rgba(249,250,252,.92);
    backdrop-filter:blur(32px) saturate(1.4);
    -webkit-backdrop-filter:blur(32px) saturate(1.4);
    border:1px solid rgba(255,255,255,.6);
    border-radius:16px;
    box-shadow:var(--shadow-md), inset 0 1px 0 rgba(255,255,255,.5);
    z-index:99;
  }
  .main-nav.nav-open a{
    padding:13px 16px;
    border-radius:10px;
    text-align:center;
    font-size:15px;
  }
  .main-nav.nav-open a:hover{ background:var(--surface-3); }
  .header-actions{ grid-column:1; grid-row:1; justify-self:start; }
  .brand-cluster{ grid-column:2; grid-row:1; justify-self:center; min-width:0; }
  .brand{ flex-direction:column; justify-content:center; gap:4px; text-align:center; }
  .header-demo-mobile{
    display:inline-flex;
    grid-column:3;
    grid-row:1;
    justify-self:end;
    align-self:center;
    width:auto;
    max-width:max-content;
    flex:0 0 auto;
    padding:7px 12px !important;
    font-size:11.5px !important;
    line-height:1.4;
    white-space:nowrap;
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:10px;
    box-shadow:var(--shadow-sm);
  }


  .nav-toggle{ width:32px; height:32px; border-radius:8px; }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{ width:13px; }
}

@media (max-width: 768px){
  .container{ padding:0 20px; }


  .hero{ padding:40px 0 36px; }
  .hero h1{ font-size:26px; line-height:1.38; }
  .hero-title-break{ display:none; }
  .hero p.lead{ font-size:15px; max-width:none; }
  .hero-cta-row{ margin-top:26px; justify-content:center; }
  .hero-visual{ max-width:none; width:100%; margin:0; }
  .hero-showcase{ padding:10px 0 0 0; }
  .showcase-dot{ font-size:11px; padding:7px 14px; }
  .section{ padding:52px 0; }
  .section-head{ margin-bottom:36px; }
  .section-head h2{ font-size:23px; }
  .section-head p{ font-size:16px; }
  .demo-head h2{ font-size:20px; }
  .intro-copy h2{ font-size:22px; }
  .intro-copy p{ font-size:14.5px; }
  .intro-point p{ font-size:14px; }
  .eyebrow{ font-size:12px; padding:6px 14px; }


  .intro-stack{ flex-direction:column; }
  .demo-shot{ padding:16px 16px 0; }
  .frame-bar{ height:32px; }
  .frame-dot{ width:8px; height:8px; }
  .loan-mock-body{ padding:18px; }


  .features-grid{ grid-template-columns:1fr; gap:12px; }
  .feature-card{ display:flex; flex-wrap:wrap; align-items:center; gap:10px; padding:18px 16px; }
  .feature-card .ic{ width:36px; height:36px; margin-bottom:0; order:1; flex-shrink:0; }
  .feature-card .ic svg{ width:18px; height:18px; }
  .feature-card h3{ font-size:15px; order:2; margin-bottom:0; }
  .feature-card p{ order:3; flex-basis:100%; width:100%; font-size:13px; margin-top:2px; }
  .stats-band{ grid-template-columns:repeat(2,1fr); padding:36px 24px; }
  .steps{ grid-template-columns:1fr; gap:12px; }
  .step-card{ display:flex; flex-wrap:wrap; align-items:center; gap:10px; padding:18px 16px; }
  .step-num{ width:36px; height:36px; margin-bottom:0; order:1; flex-shrink:0; }
  .step-num svg{ width:18px; height:18px; }
  .step-card h4{ font-size:15px; order:2; }
  .step-card p{ order:3; flex-basis:100%; width:100%; font-size:13px; margin-top:2px; }
  .risk-strip{ grid-template-columns:1fr; gap:12px; }
  .risk-card{ display:flex; flex-wrap:wrap; align-items:center; gap:10px; padding:18px 16px; }
  .risk-card .ic{ width:36px; height:36px; margin-bottom:0; order:1; flex-shrink:0; }
  .risk-card .ic svg{ width:18px; height:18px; }
  .risk-card h4{ font-size:15px; order:2; }
  .risk-card p{ order:3; flex-basis:100%; width:100%; font-size:13px; margin-top:2px; }
  .integration-group{ padding:20px 18px; }
  .integration-logo{ padding:6px 12px 6px 6px; gap:8px; }
  .integration-logo .logo-box{ height:26px; }
  .integration-logo .logo-box.logo-initial{ width:26px; height:26px; border-radius:7px; }
  .integration-logo img{ max-width:60px; max-height:26px; }
  .logo-initial{ font-size:12px; }
  .integration-logo span{ font-size:12px; }
  .loan-mock-row{ grid-template-columns:1fr; }
  .demo-grid{ gap:20px; }
  .demo-title{ font-size:17px; }

  .cta-banner{ flex-direction:column; align-items:stretch; text-align:center; padding:36px 24px; gap:18px; }
  .cta-banner .cta-copy{ width:100%; flex:1 1 auto; }
  .cta-banner h2{ font-size:21px; }
  .cta-banner p{ margin-left:auto; margin-right:auto; font-size:14px; text-align:center; }
  .footer-bottom{ flex-direction:column; text-align:center; }
}

@media (max-width: 480px){
  .container{ padding:0 16px; }
  .brand-name{ font-size:17px; }

  .hero h1{ font-size:22px; }
  .hero p.lead{ font-size:14px; }
  .btn{ padding:13px 20px; font-size:14px; }
  .header-demo-mobile{ padding:7px 12px; font-size:11.5px; }
  .showcase-controls{ gap:8px; }
  .showcase-dot{ font-size:10.5px; padding:7px 12px; gap:6px; }

  .section{ padding:44px 0; }
  .section-head h2{ font-size:20px; }
  .section-head p{ font-size:15.5px; }
  .intro-copy h2{ font-size:20px; }
  .intro-copy p{ font-size:13.3px; }
  .intro-points{ gap:10px; }
  .intro-point p{ font-size:12.8px; line-height:1.6; }
  .intro-point .chk{ width:20px; height:20px; }

  .eyebrow{ font-size:11.5px; padding:5px 12px; }
  .eyebrow::before{ width:5px; height:5px; }

  .demo-shot{ padding:12px 12px 0; }
  .frame-bar{ padding:0 10px; }
  .demo-body{ padding:20px; }
  .cred-row .k{ font-size:11.5px; }
  .cred-row .v{ font-size:12.5px; padding:4px 10px; }
  .copy-btn{ width:26px; height:26px; }

  .feature-card{ padding:20px 18px; }
  .feature-card .ic{ width:38px; height:38px; }
  .feature-card .ic svg{ width:19px; height:19px; }
  .feature-card h3{ font-size:15.5px; }
  .feature-card p{ font-size:13.3px; }

  .risk-strip{ grid-template-columns:1fr; gap:10px; }
  .risk-card{ padding:16px; }

  .step-card{ padding:16px; }

  .integration-group{ padding:18px 16px; }
  .integration-head h3{ font-size:15.5px; }
  .integration-head p{ font-size:13px; }
  .integration-logo{ padding:5px 10px 5px 5px; gap:7px; }
  .integration-logo .logo-box{ height:22px; }
  .integration-logo .logo-box.logo-initial{ width:22px; height:22px; border-radius:6px; }
  .integration-logo img{ max-width:52px; max-height:22px; }
  .logo-initial{ font-size:11px; }
  .integration-logo span{ font-size:11.5px; }

  .faq-q{ padding:15px 16px; font-size:14px; gap:10px; }
  .faq-a{ padding:0 16px 16px; font-size:13.3px; }

  .cta-banner h2{ font-size:19px; }
}
