:root {
  --bg: #07111f;
  --bg-2: #0b1728;
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --surface-blue: #eef7ff;
  --text: #101b2b;
  --muted: #6f7d90;
  --line: #dfe6ef;
  --blue: #0a84ff;
  --blue-2: #25a9ff;
  --cyan: #70e8ff;
  --violet: #806cff;
  --green: #10b981;
  --orange: #f59e0b;
  --red: #ef4444;
  --shadow: 0 24px 70px rgba(7, 17, 31, .12);
  --shadow-soft: 0 12px 36px rgba(7, 17, 31, .09);
  --radius: 24px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}
button, input, select, textarea { font: inherit; }
button { color: inherit; }
button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(10,132,255,.25); outline-offset: 2px; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.is-hidden { display: none !important; }
.full-width { width: 100%; }
.page { display: none; min-height: 70vh; }
.page.is-active { display: block; animation: pageIn .35s ease both; }
@keyframes pageIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.ambient { position: fixed; width: 620px; height: 620px; border-radius: 50%; filter: blur(130px); pointer-events: none; opacity: .15; z-index: -1; }
.ambient--one { background: #0a84ff; left: -300px; top: -250px; }
.ambient--two { background: #743dff; right: -330px; top: 420px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 80;
  height: 78px;
  transition: background .25s, box-shadow .25s, color .25s;
  color: #fff;
}
.site-header.scrolled, .site-header.on-light { background: rgba(255,255,255,.94); color: var(--text); box-shadow: 0 1px 0 rgba(16,27,43,.08); backdrop-filter: blur(18px); }
.header-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; border: 0; background: none; padding: 0; cursor: pointer; text-align: left; }
.brand-mark { width: 39px; height: 39px; border-radius: 13px; display: grid; place-items: center; background: linear-gradient(145deg, #18a5ff, #0968ed); color: #fff; font-weight: 900; font-size: 19px; box-shadow: 0 10px 25px rgba(10,132,255,.26); }
.brand-mark--big { width: 64px; height: 64px; border-radius: 21px; font-size: 29px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; color: inherit; }
.brand-copy b { font-size: 16px; letter-spacing: .04em; }
.brand-copy small { font-size: 9px; text-transform: uppercase; letter-spacing: .11em; opacity: .55; margin-top: 4px; }
.main-nav { display: flex; gap: 6px; align-items: center; }
.main-nav button { border: 0; background: transparent; padding: 11px 14px; cursor: pointer; color: inherit; opacity: .82; border-radius: 12px; }
.main-nav button:hover { opacity: 1; background: rgba(127,150,180,.1); }
.header-actions { display: flex; align-items: center; gap: 9px; }
.button { border: 0; border-radius: 14px; min-height: 46px; padding: 0 20px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; cursor: pointer; font-weight: 700; transition: transform .18s, box-shadow .18s, background .18s; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: #fff; background: linear-gradient(135deg, #0a84ff, #0874ed); box-shadow: 0 12px 28px rgba(10,132,255,.25); }
.button--primary:hover { box-shadow: 0 15px 34px rgba(10,132,255,.34); }
.button--ghost { background: rgba(255,255,255,.08); color: inherit; border: 1px solid rgba(255,255,255,.18); }
.scrolled .button--ghost, .on-light .button--ghost { background: #f4f7fb; border-color: #edf1f6; }
.button--glass { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(10px); }
.button--light { background: #fff; color: #0a6eea; box-shadow: 0 14px 36px rgba(0,0,0,.14); }
.button--ghost-dark { background: #fff; border: 1px solid var(--line); color: var(--text); }
.button--large { min-height: 56px; padding-inline: 25px; border-radius: 17px; }
.button--small { min-height: 40px; padding-inline: 16px; font-size: 13px; }
.icon-button { width: 44px; height: 44px; border: 0; border-radius: 12px; background: rgba(127,150,180,.12); cursor: pointer; }
.mobile-menu-button, .app-menu-button { display: none; }
.user-chip { align-items: center; gap: 10px; border: 1px solid rgba(127,150,180,.18); background: rgba(255,255,255,.08); color: inherit; padding: 6px 10px 6px 7px; border-radius: 15px; cursor: pointer; }
.scrolled .user-chip, .on-light .user-chip { background: #fff; }
.avatar { width: 36px; height: 36px; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(135deg, #dceeff, #cbe4ff); color: #0876ee; font-size: 12px; font-weight: 900; }
.avatar--large { width: 47px; height: 47px; border-radius: 15px; font-size: 14px; }
.user-chip__text { display: flex; flex-direction: column; text-align: left; min-width: 120px; }
.user-chip__text b { font-size: 12px; }
.user-chip__text small { font-size: 10px; opacity: .6; margin-top: 2px; }
.user-menu { position: fixed; right: max(24px, calc((100vw - var(--container))/2)); top: 70px; z-index: 100; width: 260px; padding: 10px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
.user-menu button { width: 100%; border: 0; background: transparent; padding: 12px; display: flex; align-items: center; gap: 10px; border-radius: 11px; cursor: pointer; text-align: left; }
.user-menu button:hover { background: #f4f7fb; }
.user-menu hr { border: 0; border-top: 1px solid var(--line); margin: 6px 0; }
.user-menu .danger { color: var(--red); }

.hero { min-height: 820px; padding-top: 156px; padding-bottom: 90px; display: grid; grid-template-columns: 1.02fr .98fr; gap: 70px; align-items: center; color: #fff; }
#page-home { background: var(--bg); }
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 9px; color: #159cff; font-size: 12px; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; }
.eyebrow { color: #83d7ff; }
.eyebrow span { width: 22px; height: 2px; background: currentColor; }
.hero h1 { margin: 23px 0 22px; font-size: clamp(48px, 5.6vw, 78px); line-height: .98; letter-spacing: -.055em; max-width: 720px; }
.hero h1 em { font-style: normal; color: #4dbaff; }
.hero-lead { color: #aab8cb; font-size: 19px; line-height: 1.65; max-width: 640px; }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; }
.hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 35px; }
.hero-trust > div:last-child { display: flex; flex-direction: column; }
.hero-trust b { font-size: 13px; }
.hero-trust small { color: #7f90a6; margin-top: 3px; }
.avatar-stack { display: flex; }
.avatar-stack span { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: #12243a; border: 2px solid #07111f; color: #cfe9ff; font-size: 9px; font-weight: 800; margin-left: -8px; }
.avatar-stack span:first-child { margin-left: 0; }
.avatar-stack span:last-child { background: #0a84ff; }
.hero-visual { min-height: 570px; position: relative; display: grid; place-items: center; }
.hero-visual::before { content: ""; position: absolute; width: 490px; height: 490px; border-radius: 50%; background: radial-gradient(circle, rgba(10,132,255,.25), rgba(10,132,255,0) 67%); }
.hero-orbit { position: absolute; border: 1px solid rgba(92,187,255,.16); border-radius: 50%; }
.orbit-one { width: 520px; height: 520px; }
.orbit-two { width: 400px; height: 400px; }
.glass-panel { background: linear-gradient(145deg, rgba(22,41,65,.91), rgba(9,22,38,.94)); border: 1px solid rgba(137,198,255,.17); box-shadow: 0 32px 100px rgba(0,0,0,.37); backdrop-filter: blur(22px); }
.dashboard-preview { width: min(520px, 100%); min-height: 425px; border-radius: 29px; padding: 28px; position: relative; z-index: 2; transform: perspective(1300px) rotateY(-5deg) rotateX(2deg); }
.preview-top { display: flex; justify-content: space-between; align-items: start; }
.preview-top div { display: flex; flex-direction: column; }
.preview-top small { color: #8194aa; font-size: 12px; }
.preview-top strong { font-size: 30px; margin-top: 6px; letter-spacing: -.03em; }
.positive { color: #38d6a2; background: rgba(16,185,129,.13); padding: 7px 10px; border-radius: 10px; font-size: 12px; }
.mini-chart { height: 185px; margin: 15px -5px 8px; position: relative; }
.mini-chart svg { width: 100%; height: 100%; overflow: visible; }
.chart-area { fill: url(#areaGradient); }
.chart-line { fill: none; stroke: #39b8ff; stroke-width: 4; stroke-linecap: round; filter: drop-shadow(0 0 8px rgba(57,184,255,.45)); }
.chart-dot { position: absolute; width: 11px; height: 11px; background: #fff; border: 3px solid #2fb4ff; border-radius: 50%; box-shadow: 0 0 0 5px rgba(47,180,255,.15); }
.dot-1 { left: 50%; top: 48%; }.dot-2 { right: 5%; top: 10%; }
.preview-projects { display: grid; gap: 9px; }
.preview-project { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 11px; padding: 12px; border-radius: 15px; background: rgba(255,255,255,.05); }
.project-icon { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; font-size: 11px; font-weight: 900; color: #06111d; }
.project-icon.cyan { background: #69e1ff; }.project-icon.violet { background: #b1a4ff; }
.preview-project div { display: flex; flex-direction: column; }
.preview-project b { font-size: 12px; }.preview-project small { font-size: 10px; color: #7f90a6; margin-top: 3px; }.preview-project strong { font-size: 12px; }
.floating-card { position: absolute; z-index: 3; border: 1px solid rgba(137,198,255,.2); background: rgba(17,34,55,.92); color: #fff; border-radius: 17px; box-shadow: 0 18px 45px rgba(0,0,0,.3); backdrop-filter: blur(15px); }
.floating-card--yield { left: -38px; bottom: 70px; padding: 16px 18px; display: grid; }
.floating-card--yield small { color: #8497ad; }.floating-card--yield b { font-size: 18px; margin: 5px 0; }.floating-card--yield span { color: #36d7a2; font-size: 11px; }
.floating-card--verified { right: -15px; top: 70px; padding: 13px 15px; display: flex; align-items: center; gap: 10px; }
.floating-card--verified > span { width: 31px; height: 31px; border-radius: 10px; background: rgba(16,185,129,.16); color: #41dfa9; display: grid; place-items: center; }
.floating-card--verified div { display: flex; flex-direction: column; }.floating-card--verified b { font-size: 12px; }.floating-card--verified small { color: #8193aa; font-size: 9px; margin-top: 2px; }
.metrics-strip { color: #fff; background: #0b1828; border-block: 1px solid rgba(255,255,255,.06); }
.metrics-grid { display: grid; grid-template-columns: repeat(4,1fr); padding-block: 28px; }
.metrics-grid div { display: flex; flex-direction: column; padding-left: 28px; border-left: 1px solid rgba(255,255,255,.08); }
.metrics-grid div:first-child { padding-left: 0; border-left: 0; }
.metrics-grid strong { font-size: 26px; }.metrics-grid span { color: #73859b; font-size: 12px; margin-top: 5px; }
.section { padding-block: 105px; }
.section--soft { background: #f5f8fc; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 43px; }
.section-head > div { max-width: 760px; }.section-head h2, .centered h2 { font-size: clamp(34px, 4vw, 53px); line-height: 1.05; letter-spacing: -.045em; margin: 11px 0 0; }
.section-head > p { max-width: 410px; color: var(--muted); line-height: 1.65; }
.section-head.centered { display: flex; flex-direction: column; align-items: center; text-align: center; }
.section-head.centered p { max-width: 650px; margin: 0; }
.feature-bento { display: grid; grid-template-columns: 1.3fr .7fr; gap: 18px; }
.feature-card { min-height: 270px; border-radius: 26px; background: #f5f8fc; border: 1px solid #edf1f6; padding: 29px; position: relative; overflow: hidden; }
.feature-card--large { min-height: 460px; grid-row: span 2; display: grid; grid-template-columns: .95fr 1.05fr; gap: 20px; }
.feature-card--dark { color: #fff; background: linear-gradient(145deg, #0b1828, #10243b); border-color: rgba(255,255,255,.06); }
.feature-card--wide { grid-column: 1 / -1; min-height: 220px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.feature-index { position: absolute; top: 25px; right: 25px; font-weight: 900; font-size: 12px; color: #9aa8b8; }
.feature-card h3 { font-size: 25px; line-height: 1.15; margin: 17px 0 11px; letter-spacing: -.03em; }
.feature-card p { color: var(--muted); line-height: 1.65; margin: 0; }
.feature-card--dark p { color: #8da0b7; }
.feature-icon { width: 53px; height: 53px; border-radius: 17px; display: grid; place-items: center; background: #e3f2ff; color: #0a84ff; font-size: 23px; }
.feature-copy { align-self: center; }.feature-copy h3 { font-size: 34px; max-width: 420px; }
.text-link, .link-button { border: 0; background: none; padding: 0; color: #45baff; cursor: pointer; font-weight: 800; }
.text-link { margin-top: 25px; }.text-link.dark { color: #0a84ff; }
.stacked-projects { position: relative; min-height: 340px; }
.stack-card { position: absolute; width: 250px; min-height: 180px; border-radius: 23px; padding: 21px; background: linear-gradient(145deg, rgba(255,255,255,.15), rgba(255,255,255,.05)); border: 1px solid rgba(255,255,255,.12); box-shadow: 0 20px 50px rgba(0,0,0,.22); display: flex; flex-direction: column; }
.stack-card:first-child { left: 10px; top: 50px; transform: rotate(-7deg); }.stack-card:last-child { right: 0; top: 105px; transform: rotate(6deg); }
.stack-card .tag { align-self: start; }.stack-card b { font-size: 19px; margin-top: 29px; }.stack-card div { display: flex; flex-direction: column; margin-top: auto; }.stack-card strong { font-size: 27px; }.stack-card small { color: #90a3bb; }
.analytics-bars { height: 150px; display: flex; align-items: end; gap: 11px; padding: 20px 24px 0; background: linear-gradient(180deg, rgba(10,132,255,.04), rgba(10,132,255,0)); border-bottom: 1px solid #dce4ee; }
.analytics-bars span { flex: 1; height: var(--h); border-radius: 9px 9px 3px 3px; background: linear-gradient(180deg,#19a7ff,#0a84ff); min-width: 14px; }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 19px; }
.project-card { background: #fff; border: 1px solid #e6ecf3; border-radius: 23px; overflow: hidden; box-shadow: 0 8px 30px rgba(7,17,31,.05); transition: transform .2s, box-shadow .2s; }
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.project-cover { height: 180px; padding: 20px; color: #fff; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; }
.project-cover::after { content:""; position:absolute; width:180px; height:180px; border-radius:50%; right:-65px; bottom:-80px; background:rgba(255,255,255,.12); }
.project-cover::before { content:""; position:absolute; width:90px; height:90px; border:1px solid rgba(255,255,255,.15); border-radius:50%; right:35px; top:25px; }
.cover-realty { background: linear-gradient(135deg,#1568ac,#0f9cc5); }.cover-tech { background: linear-gradient(135deg,#5f45dc,#913bd1); }.cover-industry { background: linear-gradient(135deg,#2a536b,#436f79); }.cover-energy { background: linear-gradient(135deg,#188d68,#0fb391); }.cover-food { background: linear-gradient(135deg,#c77828,#ef9b30); }
.project-cover-top { display: flex; justify-content: space-between; align-items: start; position:relative; z-index:2; }
.tag { display: inline-flex; align-items: center; min-height: 26px; padding: 0 10px; border-radius: 999px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.2); color: inherit; font-size: 10px; font-weight: 800; }
.tag--purple { background: rgba(128,108,255,.2); }
.favorite-button { width: 34px; height: 34px; border: 0; border-radius: 11px; background: rgba(255,255,255,.14); color: #fff; cursor: pointer; font-size: 17px; position:relative; z-index:2; }
.favorite-button.active { background: #fff; color: #ff5f72; }
.project-symbol { position: relative; z-index: 2; font-size: 45px; font-weight: 900; opacity: .9; }
.project-body { padding: 21px; }
.project-title-row { display:flex; align-items:start; justify-content:space-between; gap:12px; }
.project-title-row h3 { font-size: 19px; line-height: 1.2; margin: 0; letter-spacing: -.02em; }
.verified-badge { color: #0a84ff; font-size: 15px; }
.project-subtitle { color: var(--muted); font-size: 12px; margin: 8px 0 18px; }
.project-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; padding: 14px 0; border-block: 1px solid #edf1f5; }
.project-stats div { display:flex; flex-direction:column; }.project-stats strong { font-size:14px; }.project-stats small { color:var(--muted); font-size:9px; margin-top:3px; }
.progress-row { margin-top: 16px; }.progress-meta { display:flex; justify-content:space-between; font-size:10px; color:var(--muted); margin-bottom:7px; }.progress-meta b { color:var(--text); }
.progress { height: 6px; background:#eaf0f6; border-radius:999px; overflow:hidden; }.progress span { display:block; height:100%; width:var(--progress); background:linear-gradient(90deg,#0a84ff,#4ec5ff); border-radius:999px; }
.project-bottom { display:flex; gap:9px; margin-top:18px; }.project-bottom .button { flex:1; min-height:42px; padding-inline:12px; font-size:12px; }.project-bottom .mini-save { width:42px; border:1px solid var(--line); background:#fff; border-radius:13px; cursor:pointer; }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 15px; }
.step-card { border: 1px solid var(--line); border-radius: 23px; padding: 26px; min-height: 280px; position: relative; }
.step-card > span { position:absolute; right:20px; top:16px; font-size:42px; font-weight:900; color:#eef3f8; }.step-icon { width:54px; height:54px; display:grid; place-items:center; border-radius:17px; background:#edf7ff; color:#0a84ff; font-weight:900; font-size:22px; }.step-card h3 { margin:48px 0 10px; font-size:20px; }.step-card p { color:var(--muted); line-height:1.6; margin:0; }
.roles-section { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.role-panel { min-height:430px; border-radius:28px; padding:38px; overflow:hidden; position:relative; display:flex; flex-direction:column; justify-content:space-between; }
.role-panel h2 { font-size:38px; line-height:1.05; letter-spacing:-.04em; margin:14px 0; max-width:520px; }.role-panel p { line-height:1.65; max-width:540px; }
.role-panel--investor { background:linear-gradient(145deg,#086de7,#0a95ff); color:#fff; }.role-panel--investor .section-kicker { color:#a9e7ff; }.role-panel--investor p { color:#d6ecff; }
.role-list { display:grid; grid-template-columns:1fr 1fr; gap:11px; margin-top:30px; }.role-list span { padding:11px 13px; border-radius:12px; background:rgba(255,255,255,.12); font-size:12px; }
.role-panel--partners { background:#edf2f8; }.role-panel--partners p { color:var(--muted); }
.role-switch-demo { background:#fff; border-radius:20px; padding:10px; box-shadow:var(--shadow-soft); display:grid; grid-template-columns:1fr 1fr; gap:5px; }.role-switch-demo button { border:0; background:#f0f3f7; border-radius:11px; padding:11px; cursor:pointer; font-weight:700; }.role-switch-demo button.active { background:#0a84ff; color:#fff; }.role-switch-demo div { grid-column:1/-1; padding:24px; border-radius:14px; background:#f8fafc; display:grid; }.role-switch-demo b { font-size:30px; }.role-switch-demo small { color:var(--muted); margin-top:3px; }.role-switch-demo span { margin-top:18px; color:#0a84ff; font-size:12px; font-weight:700; }
.section--news-home { background:#0a1625; color:#fff; padding-block:100px; }.section--news-home .section-head h2 { color:#fff; }.news-feature-grid { display:grid; grid-template-columns:1.3fr .7fr .7fr; gap:17px; }
.news-card { border-radius:22px; overflow:hidden; background:#132237; min-height:330px; position:relative; cursor:pointer; transition:transform .2s; }.news-card:hover { transform:translateY(-5px); }.news-card--large { min-height:430px; }.news-card-bg { position:absolute; inset:0; background:var(--news-bg); }.news-card-bg::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,rgba(7,17,31,.05),rgba(7,17,31,.9)); }.news-card-content { position:absolute; inset:auto 22px 22px; z-index:2; }.news-card .tag { color:#fff; }.news-card h3 { font-size:21px; line-height:1.2; margin:13px 0 10px; }.news-card--large h3 { font-size:31px; }.news-meta { color:#93a3b7; font-size:11px; display:flex; gap:14px; }
.cta-section { margin-block: 90px; border-radius:31px; min-height:290px; color:#fff; background:linear-gradient(135deg,#07111f,#0b3962); padding:48px; display:flex; justify-content:space-between; align-items:center; gap:30px; position:relative; overflow:hidden; }.cta-glow { position:absolute; width:380px; height:380px; right:120px; background:#0a84ff; filter:blur(110px); opacity:.4; }.cta-section > * { position:relative; z-index:1; }.cta-section h2 { font-size:42px; letter-spacing:-.04em; max-width:700px; margin:12px 0; }.cta-section p { color:#a7b9cc; max-width:680px; }
.site-footer { background:#07111f; color:#fff; }.footer-top { display:grid; grid-template-columns:1.5fr repeat(3,1fr); gap:55px; padding-block:65px 50px; }.footer-brand p { color:#788aa1; max-width:320px; line-height:1.6; }.footer-top > div:not(.footer-brand) { display:flex; flex-direction:column; gap:13px; }.footer-top > div > b { margin-bottom:8px; }.footer-top button:not(.brand) { border:0; background:none; color:#8293a8; padding:0; text-align:left; cursor:pointer; }.footer-top button:hover { color:#fff; }.footer-bottom { border-top:1px solid rgba(255,255,255,.07); padding-block:21px; display:flex; justify-content:space-between; color:#65758a; font-size:11px; }

.inner-hero { padding-top:150px; padding-bottom:60px; display:grid; grid-template-columns:1fr auto; align-items:end; gap:50px; }.inner-hero h1 { font-size:clamp(45px,5vw,68px); line-height:1; letter-spacing:-.05em; margin:15px 0; max-width:860px; }.inner-hero p { color:var(--muted); font-size:18px; line-height:1.6; max-width:780px; }.inner-hero-stat { min-width:230px; padding:24px; border:1px solid var(--line); border-radius:21px; display:flex; flex-direction:column; }.inner-hero-stat span,.inner-hero-stat small { color:var(--muted); }.inner-hero-stat strong { font-size:26px; margin:5px 0; }.inner-hero--news { display:block; padding-bottom:35px; }
.marketplace-layout { display:grid; grid-template-columns:280px 1fr; gap:28px; padding-bottom:100px; }.filters-card { align-self:start; position:sticky; top:96px; padding:22px; border:1px solid var(--line); border-radius:22px; background:#fff; box-shadow:0 8px 30px rgba(7,17,31,.04); }.filter-heading { display:flex; justify-content:space-between; align-items:center; margin-bottom:22px; }.filter-heading b { font-size:19px; }.filter-heading button { border:0; background:none; color:#0a84ff; font-size:11px; cursor:pointer; }.filter-label { display:flex; flex-direction:column; gap:8px; font-size:11px; color:var(--muted); font-weight:700; }.filter-label input[type=search] { height:44px; border:1px solid var(--line); border-radius:12px; padding:0 13px; color:var(--text); }.filter-block { margin-top:23px; }.chip-list { display:flex; flex-wrap:wrap; gap:7px; margin-top:9px; }.chip-list button,.news-tabs button { border:1px solid var(--line); background:#fff; border-radius:999px; padding:8px 11px; font-size:10px; cursor:pointer; }.chip-list button.active,.news-tabs button.active { background:#0a84ff; border-color:#0a84ff; color:#fff; }.filter-block input[type=range] { width:100%; accent-color:#0a84ff; }.check-row { display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:9px; margin-top:10px; font-size:12px; }.check-row input { accent-color:#0a84ff; }.check-row small { color:var(--muted); }.filters-card .button { margin-top:24px; }.market-toolbar { display:flex; justify-content:space-between; align-items:center; margin-bottom:17px; }.market-toolbar > div:first-child { display:flex; flex-direction:column; }.market-toolbar small { color:var(--muted); font-size:11px; margin-top:3px; }.toolbar-actions { display:flex; gap:9px; }.toolbar-actions select { height:42px; border:1px solid var(--line); border-radius:12px; padding:0 12px; background:#fff; }.filter-mobile-button { display:none; }.project-grid--market { grid-template-columns:repeat(2,1fr); }.load-more { display:flex; margin:30px auto 0; }
.news-layout { padding-bottom:100px; }.news-tabs { display:flex; gap:8px; margin-bottom:25px; flex-wrap:wrap; }.news-hero-card { min-height:430px; border-radius:28px; overflow:hidden; position:relative; cursor:pointer; margin-bottom:22px; }.news-hero-card .news-card-content { max-width:680px; inset:auto 35px 35px; color:#fff; }.news-hero-card h2 { font-size:40px; line-height:1.08; letter-spacing:-.035em; margin:15px 0; }.news-hero-card p { color:#c2cedb; line-height:1.55; }.news-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }.news-grid .news-card { color:#fff; }

.app-shell { display:grid; grid-template-columns:260px 1fr; min-height:100vh; background:#f2f5f9; }.app-sidebar { position:sticky; top:0; height:100vh; padding:22px 17px; background:#0a1625; color:#fff; display:flex; flex-direction:column; z-index:50; }.sidebar-brand { display:flex; align-items:center; gap:11px; border:0; background:none; color:#fff; padding:0 8px 20px; cursor:pointer; }.sidebar-profile { display:flex; align-items:center; gap:10px; padding:16px 10px; border-block:1px solid rgba(255,255,255,.07); }.sidebar-profile div { display:flex; flex-direction:column; }.sidebar-profile b { font-size:12px; }.sidebar-profile small { color:#6f8298; font-size:10px; margin-top:4px; }.sidebar-nav { display:grid; gap:5px; margin-top:23px; }.sidebar-nav button { border:0; background:transparent; color:#8092a8; border-radius:12px; padding:12px 13px; display:flex; align-items:center; gap:12px; text-align:left; cursor:pointer; }.sidebar-nav button:hover,.sidebar-nav button.active { background:rgba(10,132,255,.14); color:#fff; }.sidebar-nav button.active span { color:#36b8ff; }.sidebar-help { margin-top:auto; padding:14px; border-radius:15px; background:rgba(255,255,255,.05); display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:10px; }.sidebar-help > span { width:32px; height:32px; border-radius:10px; display:grid; place-items:center; background:rgba(10,132,255,.18); color:#41bdff; }.sidebar-help div { display:flex; flex-direction:column; }.sidebar-help b { font-size:11px; }.sidebar-help small { color:#718399; font-size:9px; margin-top:2px; }.sidebar-help button { border:0; background:none; color:#fff; cursor:pointer; }.sidebar-exit { border:0; background:transparent; color:#65768b; padding:16px 8px 0; text-align:left; cursor:pointer; font-size:11px; }.app-main { min-width:0; }.app-topbar { height:78px; padding:0 30px; display:flex; align-items:center; justify-content:space-between; border-bottom:1px solid #dde5ee; background:rgba(255,255,255,.92); position:sticky; top:0; z-index:40; backdrop-filter:blur(16px); }.app-topbar > div:first-of-type { display:flex; flex-direction:column; }.app-topbar small { color:var(--muted); font-size:9px; }.app-topbar b { font-size:16px; margin-top:3px; }.app-top-actions { display:flex; align-items:center; gap:9px; }.top-notification { position:relative; width:40px; height:40px; border:1px solid var(--line); background:#fff; border-radius:12px; cursor:pointer; }.top-notification span { position:absolute; top:-4px; right:-4px; width:17px; height:17px; background:#f25e70; color:#fff; border-radius:50%; display:grid; place-items:center; font-size:8px; }.app-content { padding:28px 30px 60px; }.dashboard-welcome { display:flex; justify-content:space-between; align-items:end; margin-bottom:23px; }.dashboard-welcome h1 { font-size:30px; letter-spacing:-.035em; margin:0 0 7px; }.dashboard-welcome p { color:var(--muted); margin:0; }.date-chip { padding:10px 13px; border-radius:12px; background:#fff; border:1px solid var(--line); font-size:11px; color:var(--muted); }.stat-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:13px; }.stat-card { padding:19px; background:#fff; border:1px solid #e0e7ef; border-radius:18px; min-height:130px; }.stat-card-top { display:flex; justify-content:space-between; align-items:center; }.stat-card-top span:first-child { color:var(--muted); font-size:10px; }.stat-icon { width:32px; height:32px; border-radius:10px; background:#edf7ff; color:#0a84ff; display:grid; place-items:center; }.stat-card strong { display:block; font-size:23px; margin-top:17px; }.stat-card small { color:var(--muted); font-size:9px; }.stat-card small.positive { background:none; padding:0; }.dashboard-grid { display:grid; grid-template-columns:1.45fr .75fr; gap:14px; margin-top:14px; }.app-card { background:#fff; border:1px solid #e0e7ef; border-radius:19px; padding:20px; }.app-card-head { display:flex; align-items:center; justify-content:space-between; gap:15px; margin-bottom:18px; }.app-card-head h2 { font-size:16px; margin:0; }.app-card-head button { border:0; background:none; color:#0a84ff; font-size:10px; cursor:pointer; }.portfolio-chart { height:220px; position:relative; border-bottom:1px solid #e7edf4; background:repeating-linear-gradient(0deg,transparent 0,transparent 53px,#eef2f6 54px); }.portfolio-chart svg { width:100%; height:100%; }.allocation-list { display:grid; gap:13px; }.allocation-item { display:grid; grid-template-columns:auto 1fr auto; gap:9px; align-items:center; }.allocation-item > span { width:9px; height:9px; border-radius:3px; background:var(--item-color); }.allocation-item div { display:flex; flex-direction:column; }.allocation-item b { font-size:11px; }.allocation-item small { font-size:9px; color:var(--muted); }.allocation-item strong { font-size:11px; }.payment-list,.activity-list { display:grid; }.payment-item,.activity-item { display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:11px; padding:13px 0; border-top:1px solid #eef2f6; }.payment-item:first-child,.activity-item:first-child { border-top:0; }.payment-date { width:43px; height:43px; border-radius:12px; background:#edf7ff; display:grid; place-items:center; color:#0a84ff; font-weight:900; font-size:11px; }.payment-item div,.activity-item div { display:flex; flex-direction:column; }.payment-item b,.activity-item b { font-size:11px; }.payment-item small,.activity-item small { color:var(--muted); font-size:9px; margin-top:3px; }.payment-item strong { font-size:11px; }.activity-icon { width:36px; height:36px; border-radius:11px; background:#f0f3f7; display:grid; place-items:center; }.quick-actions { display:grid; grid-template-columns:repeat(3,1fr); gap:11px; }.quick-action { border:1px solid var(--line); background:#fff; border-radius:15px; padding:16px; cursor:pointer; text-align:left; }.quick-action:hover { border-color:#99cfff; }.quick-action span { width:34px; height:34px; border-radius:10px; display:grid; place-items:center; background:#edf7ff; color:#0a84ff; }.quick-action b { display:block; margin-top:14px; font-size:11px; }.quick-action small { display:block; color:var(--muted); font-size:9px; margin-top:3px; }
.data-table { width:100%; border-collapse:collapse; }.data-table th { text-align:left; color:var(--muted); font-size:9px; font-weight:700; padding:11px 12px; background:#f7f9fb; }.data-table td { padding:14px 12px; border-top:1px solid #edf1f5; font-size:11px; }.data-table .project-cell { display:flex; align-items:center; gap:9px; }.table-icon { width:34px; height:34px; border-radius:10px; display:grid; place-items:center; color:#fff; font-weight:800; }.status-pill { display:inline-flex; padding:6px 9px; border-radius:999px; font-size:9px; font-weight:800; }.status-pill.green { color:#087d5b; background:#e8f8f2; }.status-pill.orange { color:#a66207; background:#fff4df; }.status-pill.blue { color:#096ad0; background:#eaf4ff; }
.notebook-layout { display:grid; grid-template-columns:300px 1fr; gap:14px; }.notebook-sidebar,.notebook-editor { background:#fff; border:1px solid #e0e7ef; border-radius:19px; }.notebook-sidebar { padding:15px; }.notebook-search { width:100%; height:40px; border:1px solid var(--line); border-radius:11px; padding:0 11px; }.note-list { display:grid; gap:7px; margin-top:13px; }.note-item { border:1px solid transparent; background:#f7f9fb; border-radius:12px; padding:12px; cursor:pointer; text-align:left; }.note-item.active { background:#edf7ff; border-color:#c9e8ff; }.note-item b { display:block; font-size:11px; }.note-item small { display:block; color:var(--muted); font-size:9px; margin-top:5px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }.notebook-editor { padding:22px; }.editor-toolbar { display:flex; justify-content:space-between; align-items:center; margin-bottom:16px; }.editor-toolbar div { display:flex; gap:6px; }.editor-toolbar button { border:1px solid var(--line); background:#fff; border-radius:9px; width:34px; height:34px; cursor:pointer; }.note-title { width:100%; border:0; font-size:24px; font-weight:800; padding:0; }.note-meta { display:flex; gap:12px; color:var(--muted); font-size:9px; margin:10px 0 18px; }.note-body { width:100%; min-height:340px; resize:vertical; border:0; border-top:1px solid var(--line); padding:18px 0; line-height:1.7; color:#334257; }.scenario-card { margin-top:14px; display:grid; grid-template-columns:1fr 1fr; gap:14px; }.scenario-inputs { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }.scenario-inputs label { font-size:9px; color:var(--muted); }.scenario-inputs input { width:100%; height:39px; border:1px solid var(--line); border-radius:10px; padding:0 10px; margin-top:6px; }.scenario-result { background:linear-gradient(145deg,#0b1828,#12375b); color:#fff; border-radius:16px; padding:20px; display:grid; }.scenario-result small { color:#8da4bb; }.scenario-result strong { font-size:28px; margin:6px 0; }.scenario-result span { color:#4cdca8; font-size:10px; }
.analytics-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }.analytics-grid .app-card.span-2 { grid-column:span 2; }.donut-wrap { display:flex; align-items:center; gap:25px; }.donut { width:150px; height:150px; border-radius:50%; background:conic-gradient(#0a84ff 0 38%,#765fff 38% 63%,#11b98a 63% 81%,#f3a11b 81% 100%); position:relative; }.donut::after { content:""; position:absolute; inset:25px; border-radius:50%; background:#fff; }.risk-gauge { height:13px; border-radius:999px; background:linear-gradient(90deg,#19bc8a,#f3b227,#ee5b68); position:relative; margin:35px 0 12px; }.risk-gauge::after { content:""; position:absolute; left:54%; top:50%; width:19px; height:19px; border-radius:50%; background:#fff; border:4px solid #f0a62a; transform:translate(-50%,-50%); box-shadow:0 3px 10px rgba(0,0,0,.18); }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }.form-field { display:flex; flex-direction:column; gap:7px; }.form-field.full { grid-column:1/-1; }.form-field span { font-size:10px; color:var(--muted); }.form-field input,.form-field select,.form-field textarea { border:1px solid var(--line); border-radius:11px; padding:0 12px; background:#fff; }.form-field input,.form-field select { height:43px; }.form-field textarea { min-height:100px; padding-top:12px; resize:vertical; }
.profile-layout { display:grid; grid-template-columns:260px 1fr; gap:14px; }.profile-summary { text-align:center; }.profile-avatar { width:82px; height:82px; border-radius:25px; display:grid; place-items:center; margin:0 auto 14px; background:linear-gradient(145deg,#dceeff,#c2e2ff); color:#0a84ff; font-size:23px; font-weight:900; }.profile-summary p { color:var(--muted); font-size:10px; }.profile-badges { display:flex; flex-wrap:wrap; justify-content:center; gap:6px; }.profile-tabs { display:flex; gap:7px; border-bottom:1px solid var(--line); margin-bottom:20px; }.profile-tabs button { border:0; background:none; padding:0 3px 12px; cursor:pointer; color:var(--muted); }.profile-tabs button.active { color:#0a84ff; border-bottom:2px solid #0a84ff; }

.modal-backdrop { position:fixed; inset:0; z-index:200; background:rgba(3,10,18,.72); display:none; align-items:center; justify-content:center; padding:24px; backdrop-filter:blur(8px); }.modal-backdrop.is-open { display:flex; animation:fadeIn .2s ease; }.modal { width:min(940px,100%); max-height:calc(100vh - 48px); overflow:auto; background:#fff; border-radius:26px; position:relative; box-shadow:0 40px 120px rgba(0,0,0,.35); animation:modalIn .25s ease; }.modal-close { position:absolute; right:16px; top:16px; z-index:5; width:38px; height:38px; border:0; border-radius:12px; background:rgba(127,150,180,.12); cursor:pointer; font-size:20px; }.modal--login { display:grid; grid-template-columns:.85fr 1.15fr; max-width:850px; overflow:hidden; }.login-visual { padding:48px; background:linear-gradient(145deg,#07111f,#0d3558); color:#fff; }.login-visual h3 { font-size:30px; line-height:1.1; margin:35px 0 25px; }.login-visual ul { list-style:none; padding:0; margin:0; display:grid; gap:13px; color:#a9bbcf; }.login-visual li::before { content:"✓"; color:#40d8a5; margin-right:9px; }.login-form { padding:48px; }.login-form h2 { font-size:34px; letter-spacing:-.035em; margin:12px 0; }.login-form > p { color:var(--muted); line-height:1.5; }.login-form label:not(.remember) { display:flex; flex-direction:column; gap:7px; font-size:11px; color:var(--muted); margin-top:17px; }.login-form input { height:47px; border:1px solid var(--line); border-radius:12px; padding:0 13px; }.password-field { position:relative; }.password-field input { width:100%; padding-right:44px; }.password-field button { position:absolute; right:5px; top:5px; width:36px; height:36px; border:0; background:none; cursor:pointer; }.login-row { display:flex; justify-content:space-between; align-items:center; margin:15px 0; }.remember { font-size:10px; color:var(--muted); }.demo-hint { display:block; text-align:center; color:var(--muted); margin-top:11px; }.modal--project { max-width:980px; }.project-modal-cover { min-height:280px; padding:36px; color:#fff; display:flex; flex-direction:column; justify-content:flex-end; position:relative; }.project-modal-cover h2 { font-size:42px; margin:16px 0 6px; max-width:680px; }.project-modal-cover p { color:rgba(255,255,255,.75); margin:0; }.project-modal-body { padding:30px 36px 38px; display:grid; grid-template-columns:1fr 290px; gap:30px; }.project-detail-grid { display:grid; grid-template-columns:repeat(3,1fr); border:1px solid var(--line); border-radius:16px; overflow:hidden; }.project-detail-grid div { padding:15px; border-left:1px solid var(--line); }.project-detail-grid div:first-child { border-left:0; }.project-detail-grid small { display:block; color:var(--muted); font-size:9px; }.project-detail-grid b { display:block; margin-top:5px; }.project-description h3 { margin-top:28px; }.project-description p,.project-description li { color:var(--muted); line-height:1.7; }.invest-box { background:#f4f7fb; border-radius:18px; padding:20px; align-self:start; position:sticky; top:10px; }.invest-box h3 { margin:0 0 16px; }.invest-box label { display:flex; flex-direction:column; gap:7px; color:var(--muted); font-size:9px; margin-top:12px; }.invest-box input { height:43px; border:1px solid var(--line); border-radius:11px; padding:0 12px; }.invest-preview { padding:14px; background:#fff; border-radius:12px; margin:14px 0; display:flex; justify-content:space-between; }.invest-preview span { color:var(--muted); font-size:9px; }.invest-preview b { font-size:15px; }.modal--article { max-width:820px; padding:45px; }.modal--article h1 { font-size:40px; line-height:1.08; letter-spacing:-.04em; }.modal--article .article-meta { color:var(--muted); font-size:11px; }.modal--article .article-lead { font-size:19px; color:#3d4a5c; line-height:1.6; }.modal--article p,.modal--article li { line-height:1.75; color:#536176; }.article-cover { height:280px; border-radius:20px; margin:24px 0; background:var(--news-bg); }.toast { position:fixed; right:24px; bottom:24px; z-index:300; min-width:260px; background:#0a1726; color:#fff; border-radius:16px; padding:14px 16px; display:flex; align-items:center; gap:11px; box-shadow:var(--shadow); transform:translateY(120px); opacity:0; transition:.25s; }.toast.show { transform:none; opacity:1; }.toast > span { width:34px; height:34px; border-radius:11px; display:grid; place-items:center; background:rgba(16,185,129,.17); color:#45dda9; }.toast div { display:flex; flex-direction:column; }.toast b { font-size:11px; }.toast small { color:#8091a6; font-size:9px; margin-top:2px; }
@keyframes fadeIn { from{opacity:0}to{opacity:1} } @keyframes modalIn { from{opacity:0;transform:translateY(15px) scale(.98)}to{opacity:1;transform:none} }

.reveal { opacity:0; transform:translateY(20px); transition:opacity .65s ease, transform .65s ease; }.reveal.visible { opacity:1; transform:none; }.delay-1 { transition-delay:.08s; }.delay-2 { transition-delay:.16s; }.delay-3 { transition-delay:.24s; }

@media (max-width: 1050px) {
  .main-nav { display:none; position:fixed; left:16px; right:16px; top:70px; padding:12px; background:#fff; color:var(--text); border-radius:18px; box-shadow:var(--shadow); flex-direction:column; align-items:stretch; }
  .main-nav.open { display:flex; }.main-nav button { text-align:left; }
  .mobile-menu-button { display:block; }
  .hero { grid-template-columns:1fr; padding-top:135px; gap:25px; }.hero-copy { text-align:center; }.hero h1,.hero-lead { margin-inline:auto; }.hero-actions,.hero-trust { justify-content:center; }.hero-visual { min-height:520px; }
  .feature-bento { grid-template-columns:1fr 1fr; }.feature-card--large { grid-column:1/-1; grid-row:auto; }.feature-card--wide { grid-column:1/-1; }
  .project-grid { grid-template-columns:repeat(2,1fr); }.steps-grid { grid-template-columns:repeat(2,1fr); }.roles-section { grid-template-columns:1fr; }.news-feature-grid { grid-template-columns:1.2fr .8fr; }.news-feature-grid .news-card:last-child { display:none; }
  .marketplace-layout { grid-template-columns:1fr; }.filters-card { display:none; position:fixed; z-index:120; left:16px; right:16px; top:90px; max-height:calc(100vh - 110px); overflow:auto; }.filters-card.open { display:block; }.filter-mobile-button { display:block; border:1px solid var(--line); background:#fff; border-radius:12px; padding:0 13px; }.project-grid--market { grid-template-columns:repeat(2,1fr); }
  .stat-grid { grid-template-columns:repeat(2,1fr); }.dashboard-grid { grid-template-columns:1fr; }.analytics-grid { grid-template-columns:1fr 1fr; }.app-shell { grid-template-columns:220px 1fr; }.notebook-layout,.profile-layout { grid-template-columns:250px 1fr; }
}
@media (max-width: 760px) {
  .container { width:min(100% - 30px,var(--container)); }.site-header { height:68px; }.hide-mobile { display:none; }.header-actions .button--primary { padding:0 13px; font-size:11px; min-height:42px; }.brand-copy small { display:none; }
  .hero { min-height:auto; padding-top:120px; padding-bottom:55px; }.hero h1 { font-size:46px; }.hero-lead { font-size:16px; }.hero-actions { flex-direction:column; }.hero-trust { align-items:flex-start; text-align:left; }.hero-visual { min-height:420px; }.dashboard-preview { transform:none; padding:20px; }.floating-card--yield { left:2px; bottom:5px; }.floating-card--verified { right:1px; top:20px; }.orbit-one { width:390px;height:390px }.orbit-two { width:310px;height:310px }
  .metrics-grid { grid-template-columns:1fr 1fr; row-gap:25px; }.metrics-grid div:nth-child(3) { padding-left:0; border-left:0; }.metrics-grid strong { font-size:22px; }
  .section { padding-block:72px; }.section-head { align-items:start; flex-direction:column; margin-bottom:28px; }.section-head h2,.centered h2 { font-size:37px; }.feature-bento { grid-template-columns:1fr; }.feature-card--large { grid-template-columns:1fr; min-height:650px; }.feature-card--wide { grid-column:auto; grid-template-columns:1fr; }.stacked-projects { min-height:290px; }.project-grid,.project-grid--market { grid-template-columns:1fr; }.steps-grid { grid-template-columns:1fr; }.role-panel { padding:27px; }.role-panel h2 { font-size:33px; }.role-list { grid-template-columns:1fr; }.news-feature-grid { grid-template-columns:1fr; }.news-feature-grid .news-card:last-child { display:block; }.cta-section { margin-block:55px; padding:30px; flex-direction:column; align-items:flex-start; }.cta-section h2 { font-size:34px; }.footer-top { grid-template-columns:1fr 1fr; gap:35px; }.footer-brand { grid-column:1/-1; }.footer-bottom { flex-direction:column; gap:8px; }
  .inner-hero { padding-top:115px; padding-bottom:35px; grid-template-columns:1fr; }.inner-hero h1 { font-size:45px; }.inner-hero-stat { display:none; }.market-toolbar { align-items:flex-end; }.toolbar-actions select { max-width:160px; }.news-grid { grid-template-columns:1fr; }.news-hero-card { min-height:480px; }.news-hero-card h2 { font-size:32px; }
  .page--private.is-active { overflow:hidden; }.app-shell { grid-template-columns:1fr; }.app-sidebar { position:fixed; width:260px; transform:translateX(-105%); transition:transform .25s; box-shadow:20px 0 60px rgba(0,0,0,.25); }.app-sidebar.open { transform:none; }.app-menu-button { display:block; }.app-topbar { height:70px; padding:0 15px; }.app-topbar > div:first-of-type { margin-right:auto; margin-left:10px; }.app-top-actions .button { display:none; }.app-content { padding:20px 15px 50px; }.dashboard-welcome { align-items:start; }.date-chip { display:none; }.stat-grid { grid-template-columns:1fr 1fr; }.stat-card { min-height:115px; padding:15px; }.stat-card strong { font-size:19px; }.quick-actions { grid-template-columns:1fr; }.data-table { min-width:700px; }.table-wrap { overflow:auto; }.notebook-layout,.profile-layout { grid-template-columns:1fr; }.notebook-sidebar { max-height:260px; overflow:auto; }.scenario-card { grid-template-columns:1fr; }.scenario-inputs { grid-template-columns:1fr; }.analytics-grid { grid-template-columns:1fr; }.analytics-grid .app-card.span-2 { grid-column:auto; }.form-grid { grid-template-columns:1fr; }.form-field.full { grid-column:auto; }
  .modal-backdrop { padding:10px; }.modal { max-height:calc(100vh - 20px); border-radius:20px; }.modal--login { grid-template-columns:1fr; }.login-visual { display:none; }.login-form { padding:32px 22px; }.project-modal-cover { min-height:240px; padding:25px; }.project-modal-cover h2 { font-size:32px; }.project-modal-body { padding:22px; grid-template-columns:1fr; }.project-detail-grid { grid-template-columns:1fr; }.project-detail-grid div { border-left:0; border-top:1px solid var(--line); }.project-detail-grid div:first-child { border-top:0; }.invest-box { position:static; }.modal--article { padding:35px 22px; }.modal--article h1 { font-size:32px; }
}
@media (max-width: 460px) {
  .hero h1 { font-size:39px; }.hero-visual { min-height:390px; }.dashboard-preview { padding:17px; }.preview-top strong { font-size:23px; }.floating-card--yield { display:none; }.metrics-grid { grid-template-columns:1fr; }.metrics-grid div,.metrics-grid div:nth-child(3) { padding-left:0; border-left:0; }.project-cover { height:160px; }.footer-top { grid-template-columns:1fr; }.footer-brand { grid-column:auto; }.stat-grid { grid-template-columns:1fr; }.toolbar-actions select { display:none; }.role-switch-demo { grid-template-columns:1fr; }.role-switch-demo div { grid-column:auto; }.project-detail-grid { grid-template-columns:1fr; }
}

/* Full-bleed hero background while the rest of the landing remains light */
#page-home { background: #fff; }
#page-home .hero { position: relative; z-index: 0; }
#page-home .hero::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #07111f;
  z-index: -2;
}

/* Content remains fully available even when JavaScript animations are unavailable. */
.reveal,
.reveal.visible { opacity: 1; transform: none; }
html, body { max-width: 100%; overflow-x: hidden; }
.filter-heading > div { display: flex; align-items: center; gap: 8px; }
.filter-close { display: none; width: 32px; height: 32px; border: 0; border-radius: 9px; background: #edf2f7; color: var(--text); font-size: 18px; cursor: pointer; }
@media (max-width: 1050px) {
  .filter-close { display: inline-grid; place-items: center; }
}
