:root {
  --ink: #17302b;
  --muted: #657772;
  --forest: #12362f;
  --forest-2: #1d4d43;
  --green: #2d7b68;
  --mint: #cfe9df;
  --mint-light: #edf7f3;
  --cream: #f8f7f2;
  --peach: #f3d4c1;
  --lilac: #ddd3ef;
  --orange: #c96f3d;
  --red: #b94b4b;
  --blue: #4e718f;
  --line: #dfe6e3;
  --white: #fff;
  --shadow: 0 18px 50px rgba(20, 54, 47, .1);
  --shadow-soft: 0 8px 24px rgba(20, 54, 47, .08);
  --radius: 18px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; }
body.modal-open { overflow: hidden; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }
.sr-only { position: absolute!important; width: 1px!important; height: 1px!important; padding: 0!important; margin: -1px!important; overflow: hidden!important; clip: rect(0,0,0,0)!important; white-space: nowrap!important; border: 0!important; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 9999; padding: 12px 18px; background: var(--forest); color: #fff; border-radius: 0 0 10px 10px; transition: top .2s; }
.skip-link:focus { top: 0; }
:focus-visible { outline: 3px solid rgba(45, 123, 104, .42); outline-offset: 3px; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 104px 0; }

/* Shared */
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; border: 0; background: none; padding: 0; color: var(--forest); font: 800 25px/1 Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; letter-spacing: -.9px; cursor: pointer; }
.brand-mark { position: relative; width: 30px; height: 28px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: end; gap: 2px; padding-bottom: 2px; }
.brand-mark::after { content: ""; position: absolute; inset: auto 1px 0; height: 2px; background: currentColor; opacity: .15; border-radius: 999px; }
.brand-mark span { display: block; position: relative; background: linear-gradient(180deg, currentColor 0%, currentColor 100%); border-radius: 3px 3px 1px 1px; box-shadow: inset 0 -1px 0 rgba(255,255,255,.18); }
.brand-mark span::after { content: ""; position: absolute; inset: 18% 18% auto; height: 9px; background: repeating-linear-gradient(to bottom, rgba(255,255,255,.36) 0 1px, transparent 1px 4px); border-radius: 2px; opacity: .7; }
.brand-mark span:nth-child(1) { height: 52%; }
.brand-mark span:nth-child(2) { height: 76%; }
.brand-mark span:nth-child(3) { height: 100%; }
.button { display: inline-flex; justify-content: center; align-items: center; gap: 9px; min-height: 44px; padding: 0 20px; border: 1px solid transparent; border-radius: 10px; text-decoration: none; font-weight: 700; line-height: 1; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--forest); box-shadow: 0 9px 22px rgba(18, 54, 47, .16); }
.button-primary:hover { background: #1b4a40; box-shadow: 0 12px 28px rgba(18, 54, 47, .22); }
.button-sm { min-height: 40px; padding: 0 17px; font-size: 14px; }
.button-lg { min-height: 54px; padding: 0 24px; border-radius: 12px; }
.button-ghost { background: rgba(255,255,255,.78); border-color: #ced8d4; }
.button-ghost:hover { background: #fff; border-color: #a9bbb5; }
.button-white { background: #fff; color: var(--forest); box-shadow: var(--shadow-soft); }
.button-outline { background: #fff; border-color: var(--line); color: var(--forest); }
.button-app-primary { background: var(--forest); color: #fff; }
.button.full { width: 100%; }
.text-button, .link-button { border: 0; padding: 0; background: none; color: var(--forest); font-weight: 700; cursor: pointer; }
.link-button { display: inline-flex; gap: 8px; align-items: center; }
.link-button span { transition: transform .2s; }
.link-button:hover span { transform: translateX(4px); }
.link-button.light { color: #fff; }
.link-button.small { font-size: 14px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--green); text-transform: uppercase; letter-spacing: 1.25px; font-size: 12px; font-weight: 800; }
.eyebrow.light { color: #c7e4da; }
.eyebrow-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 5px rgba(45,123,104,.12); }
.tag { display: inline-block; padding: 5px 9px; color: var(--green); background: var(--mint-light); border-radius: 6px; text-transform: uppercase; font-size: 10px; font-weight: 800; letter-spacing: .8px; }
.section-heading { max-width: 650px; margin-bottom: 45px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2 { margin: 14px 0 16px; font: 700 clamp(32px, 4vw, 48px)/1.13 Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; letter-spacing: -2px; }
.section-heading h2 span { color: var(--green); }
.section-heading p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.65; }

/* Header + hero */
.site-header { position: absolute; inset: 0 0 auto; z-index: 20; padding: 22px 0; }
.site-header.scrolled { position: fixed; padding: 13px 0; background: rgba(248,247,242,.88); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(211,220,216,.8); animation: slideDown .25s ease; }
@keyframes slideDown { from { transform: translateY(-100%); } }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.site-nav { display: flex; align-items: center; gap: 29px; }
.site-nav a:not(.button), .site-nav .text-button { font-size: 14px; font-weight: 600; text-decoration: none; }
.site-nav a:not(.button):hover, .site-nav .text-button:hover { color: var(--green); }
.menu-toggle { display: none; width: 42px; height: 42px; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 10px; }
.menu-toggle span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 4px 0; background: var(--forest); }
.hero { min-height: 780px; display: flex; align-items: center; padding-top: 145px; overflow: hidden; background: radial-gradient(circle at 87% 25%, rgba(207,233,223,.75), transparent 26%), linear-gradient(135deg, #fbfaf6 0%, #f6f7f2 45%, #edf5f1 100%); }
.hero-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: center; }
.hero-copy h1 { margin: 22px 0 22px; font: 800 clamp(47px, 5.5vw, 72px)/1.02 Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; letter-spacing: -3.8px; }
.hero-copy h1 span { color: var(--green); }
.hero-lead { max-width: 550px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.67; }
.hero-actions { display: flex; gap: 12px; margin: 33px 0 31px; }
.whatsapp-icon { width: 20px; height: 20px; display: grid; place-items: center; color: #fff; background: #25d366; border-radius: 50%; font-size: 10px; }
.trust-note { display: flex; align-items: center; gap: 15px; color: var(--muted); font-size: 12px; line-height: 1.35; }
.trust-note strong { color: var(--ink); font-size: 13px; }
.avatar-stack { display: flex; padding-left: 8px; }
.avatar-stack i { width: 31px; height: 31px; display: grid; place-items: center; margin-left: -8px; color: #fff; background: var(--green); border: 2px solid #fff; border-radius: 50%; font-size: 9px; font-style: normal; font-weight: 700; }
.avatar-stack i:nth-child(2) { background: #d28b66; }.avatar-stack i:nth-child(3) { background: #826da2; }
.hero-visual { position: relative; min-width: 0; padding: 34px 0 45px; }
.visual-glow { position: absolute; inset: 2% -20% -5% 3%; background: radial-gradient(circle, rgba(117,174,155,.26), transparent 64%); filter: blur(5px); }
.preview-window { position: relative; z-index: 2; overflow: hidden; background: #fff; border: 1px solid rgba(190,207,201,.9); border-radius: 18px; box-shadow: 0 35px 80px rgba(25,68,57,.19); transform: perspective(1200px) rotateY(-2deg) rotateX(1deg); }
.preview-bar { height: 37px; display: flex; align-items: center; justify-content: space-between; padding: 0 13px; color: #7d8e89; background: #f8faf9; border-bottom: 1px solid #e7edeb; font-size: 8px; }
.preview-dots { display: flex; gap: 4px; }.preview-dots span { width: 6px; height: 6px; background: #d7dfdc; border-radius: 50%; }.preview-dots span:first-child { background: #ef9e91; }
.preview-live { display: flex; align-items: center; gap: 4px; }.preview-live i { width: 5px; height: 5px; background: #4cad80; border-radius: 50%; }
.preview-content { display: grid; grid-template-columns: 45px 1fr; min-height: 350px; }
.preview-sidebar { display: flex; flex-direction: column; align-items: center; gap: 18px; padding-top: 15px; background: var(--forest); }
.mini-brand { display: grid; place-items: center; width: 22px; height: 22px; margin-bottom: 13px; color: var(--forest); background: #fff; border-radius: 6px; font-weight: 800; }
.preview-sidebar > span:not(.mini-brand) { width: 14px; height: 14px; border: 1px solid rgba(255,255,255,.3); border-radius: 4px; }.preview-sidebar > span.active { background: #fff; border-color: #fff; }
.preview-main { min-width: 0; padding: 21px; background: #f8faf9; }
.preview-heading { display: flex; justify-content: space-between; align-items: center; margin-bottom: 17px; }.preview-heading div { display: flex; flex-direction: column; }.preview-heading small { color: #899893; font-size: 8px; }.preview-heading strong { font: 700 15px "Manrope"; }.preview-pill { padding: 7px 9px; background: #fff; border: 1px solid #e0e7e4; border-radius: 6px; color: #566a64; font-size: 7px; }
.preview-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }.preview-stats article { padding: 12px; background: #fff; border: 1px solid #e9edec; border-radius: 9px; box-shadow: 0 3px 10px rgba(30,65,56,.03); }.preview-stats span { display: block; color: #81908c; font-size: 7px; }.preview-stats strong { display: block; margin: 8px 0 4px; font: 700 13px "Manrope"; }.preview-stats small { font-size: 6px; color: #8e9d99; }.preview-stats .up { color: #398367; }
.preview-lower { display: grid; grid-template-columns: 1.65fr 1fr; gap: 10px; margin-top: 10px; }.preview-lower article { padding: 13px; background: #fff; border: 1px solid #e9edec; border-radius: 9px; }.card-title { display: flex; justify-content: space-between; align-items: center; font-size: 8px; }.card-title span { color: #95a09d; font-size: 6px; }.card-title b { display: grid; place-items: center; width: 16px; height: 16px; color: #a45045; background: #f9e7e3; border-radius: 5px; font-size: 7px; }
.mini-chart { height: 108px; display: flex; align-items: flex-end; justify-content: space-around; border-bottom: 1px solid #e7ecea; background: repeating-linear-gradient(to bottom, transparent, transparent 26px, #eff2f1 27px); }.mini-chart span { position: relative; width: 9px; height: var(--h); background: var(--green); border-radius: 2px 2px 0 0; }.mini-chart span:after { content: ""; position: absolute; left: 11px; bottom: 0; width: 9px; height: var(--h2); background: #d8b3a0; border-radius: 2px 2px 0 0; }.chart-labels { display: flex; justify-content: space-around; padding-top: 6px; color: #95a09d; font-size: 6px; }
.preview-task-card p { display: flex; align-items: center; gap: 6px; margin: 13px 0; }.preview-task-card p span { display: flex; flex-direction: column; }.preview-task-card strong { font-size: 7px; }.preview-task-card small { color: #99a5a1; font-size: 6px; }.task-dot { width: 15px; height: 15px; flex: none; background: #f7e4cb; border-radius: 5px; }.task-dot.urgent { background: #f5d8d2; }.task-dot.ok { background: #d7ede5; }
.floating-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 9px; min-width: 170px; padding: 11px 13px; background: rgba(255,255,255,.95); border: 1px solid #e0e8e4; border-radius: 10px; box-shadow: 0 14px 34px rgba(27,69,58,.17); animation: float 4s ease-in-out infinite; }.floating-card strong,.floating-card small { display: block; }.floating-card strong { font-size: 9px; }.floating-card small { color: #7e8e89; font-size: 7px; margin-top: 2px; }.floating-top { top: 13px; right: -22px; }.floating-bottom { bottom: 10px; left: -25px; animation-delay: -2s; }.float-icon { width: 29px; height: 29px; display: grid; place-items: center; color: var(--green); background: #dff2e9; border-radius: 8px; font-weight: 800; }.float-icon.sparkle { color: #70558e; background: #ece3f8; }
@keyframes float { 50% { transform: translateY(-7px); } }
.confidence-strip { padding: 20px 0; color: #d7e8e2; background: var(--forest); }.confidence-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; font-size: 12px; }.confidence-grid span { display: flex; align-items: center; justify-content: center; gap: 9px; }.confidence-grid i { width: 18px; height: 18px; display: grid; place-items: center; color: var(--forest); background: #aed2c5; border-radius: 50%; font-size: 10px; font-style: normal; font-weight: 800; }

/* Landing content */
.intro-section { background: #fff; }
.feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.feature-card { min-height: 390px; display: flex; flex-direction: column; padding: 28px; background: var(--cream); border: 1px solid #ecece6; border-radius: var(--radius); overflow: hidden; }
.feature-card.featured { grid-column: span 2; background: linear-gradient(145deg,#f2f8f5,#e8f3ee); border-color: #d8eae3; }
.feature-icon { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 22px; color: var(--forest); background: var(--mint); border-radius: 12px; font: 800 18px "Manrope"; }
.feature-icon.peach { background: var(--peach); }.feature-icon.lilac { background: var(--lilac); }
.feature-icon.teal { background: #d8efe8; }
.feature-card h3 { margin: 13px 0 10px; font: 700 22px/1.22 "Manrope"; letter-spacing: -.7px; }.feature-card > p { margin: 0; color: var(--muted); line-height: 1.6; font-size: 14px; }
.expense-mock { margin: auto -9px -9px; padding: 18px; background: #fff; border-radius: 12px; box-shadow: var(--shadow-soft); transform: rotate(-1deg); }.expense-mock > div { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }.expense-mock span { color: var(--muted); font-size: 10px; }.expense-mock strong { font-size: 14px; }.expense-mock p { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 7px; margin: 10px 0; padding-top: 8px; }.expense-mock p i { position: absolute; top: 0; left: 0; width: var(--w); height: 3px; background: var(--green); border-radius: 3px; }.expense-mock p b { font-size: 10px; }
.people-list { margin: auto -9px -9px; padding: 10px 15px; background: #fff; border-radius: 12px; box-shadow: var(--shadow-soft); }.people-list p { display: flex; align-items: center; gap: 9px; margin: 0; padding: 10px 0; border-bottom: 1px solid #edf0ef; }.people-list p:last-child { border: 0; }.people-list i { width: 30px; height: 30px; display: grid; place-items: center; flex: none; color: #fff; background: #6d9c8e; border-radius: 50%; font-size: 8px; font-style: normal; }.people-list p > span { flex: 1; }.people-list strong,.people-list small { display: block; }.people-list strong { font-size: 10px; }.people-list small { margin-top: 2px; color: var(--muted); font-size: 8px; }.people-list b { width: 19px; height: 19px; display: grid; place-items: center; color: var(--green); background: #dff1e9; border-radius: 50%; font-size: 9px; }.people-list b.pending { color: #b25b3c; background: #f8e5d9; }
.mini-list { margin: auto -9px -9px; padding: 10px 15px; background: #fff; border-radius: 12px; box-shadow: var(--shadow-soft); }.mini-list p { display: grid; grid-template-columns: 22px 1fr; gap: 8px; align-items: center; margin: 0; padding: 10px 0; border-bottom: 1px solid #edf0ef; }.mini-list p:last-child { border: 0; }.mini-list span { display: grid; place-items: center; width: 22px; height: 22px; color: var(--forest); background: #dff1e9; border-radius: 7px; font-size: 11px; font-weight: 800; }.mini-list strong,.mini-list small { display: block; }.mini-list strong { font-size: 10px; }.mini-list small { color: var(--muted); font-size: 8px; }
.ai-bubble { display: flex; gap: 10px; margin: auto -8px -8px; padding: 16px; background: #fff; border-radius: 12px; box-shadow: var(--shadow-soft); }.ai-bubble > span { width: 30px; height: 30px; display: grid; place-items: center; flex: none; color: #6a5188; background: #ebe3f5; border-radius: 8px; }.ai-bubble p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; }.ai-bubble strong { color: var(--ink); }
.modules-section { background: #f8faf8; }
.modules-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.module-card { display: flex; flex-direction: column; min-height: 300px; padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.module-icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 18px; color: var(--forest); background: var(--mint-light); border-radius: 14px; font-size: 20px; font-weight: 800; }
.module-card h3 { margin: 12px 0 10px; font: 700 22px/1.2 "Manrope"; letter-spacing: -.7px; }
.module-card p { margin: 0; color: var(--muted); line-height: 1.6; font-size: 14px; }
.pricing-section { background: #fff; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.pricing-card { display: flex; flex-direction: column; min-height: 420px; padding: 28px; background: var(--cream); border: 1px solid #ecece6; border-radius: 22px; box-shadow: var(--shadow-soft); }
.pricing-card.featured { background: linear-gradient(145deg,#eff8f3,#e4f2ec); border-color: #cfe1d8; transform: translateY(-6px); }
.pricing-card h3 { margin: 14px 0 8px; font: 700 26px/1.15 "Manrope"; letter-spacing: -.9px; }
.price { display: flex; align-items: baseline; gap: 10px; margin: 12px 0 16px; }
.price strong { font: 700 clamp(36px, 4vw, 46px)/1 "Manrope"; letter-spacing: -1.6px; }
.price span { color: var(--muted); font-size: 14px; }
.price-note { margin: 0 0 20px; color: var(--muted); line-height: 1.6; font-size: 14px; }
.pricing-card ul { margin: 0 0 24px; padding: 0; list-style: none; display: grid; gap: 11px; }
.pricing-card li { position: relative; padding-left: 24px; color: var(--ink); font-size: 14px; line-height: 1.5; }
.pricing-card li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 800; }
.pricing-card .button { margin-top: auto; }
.audience-section { background: #f6f4ee; }.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }.audience-card { min-height: 400px; display: grid; grid-template-columns: 1fr 1.05fr; align-items: center; gap: 26px; padding: 30px; background: #fff; border-radius: 22px; box-shadow: 0 10px 35px rgba(34,65,57,.06); }.audience-card.dark { color: #fff; background: var(--forest); }.audience-card h3 { margin: 13px 0; font: 700 25px/1.25 "Manrope"; letter-spacing: -.8px; }.audience-card p { color: var(--muted); font-size: 14px; line-height: 1.65; }.audience-card.dark p { color: #bcd0ca; }.audience-card.dark .tag { color: #cbe5dc; background: rgba(255,255,255,.1); }
.audience-art { position: relative; min-height: 270px; overflow: hidden; background: #edf4f0; border-radius: 16px; }.audience-card.dark .audience-art { background: #224a41; }.person-head { position: absolute; z-index: 2; width: 67px; height: 77px; left: calc(50% - 33px); top: 52px; background: #d7956f; border-radius: 46% 46% 48% 48%; }.person-head:before { content:""; position:absolute; inset:-7px -3px 42% -4px; background:#4a2e28; border-radius: 50% 52% 30% 28%; }.person-body { position: absolute; width: 145px; height: 140px; left: calc(50% - 72px); top: 123px; background: #d9ddd7; border-radius: 58px 58px 0 0; }.audience-art.solo:after { content:""; position:absolute; width:80px; height:48px; left:calc(50% - 40px); top:151px; background:#273a36; border:7px solid #afbdb7; border-radius:6px; transform:perspective(100px) rotateX(-8deg); }.bubble { position:absolute; z-index:4; display:grid; place-items:center; width:38px; height:38px; background:#fff; color:var(--green); border-radius:10px; box-shadow:var(--shadow-soft); font-style:normal; font-weight:800; }.bubble.one { left:18px; top:30px; }.bubble.two { right:18px; bottom:35px; color:#a66340; }.team .building-shape { position:absolute; width:120px; height:170px; right:17px; bottom:0; background:repeating-linear-gradient(to bottom,#aec9bf 0,#aec9bf 15px,#224a41 16px,#224a41 24px); clip-path:polygon(18% 0,100% 0,100% 100%,0 100%,0 18%); }.team .p1 { left:60px; }.team .person-head.p1 { top:64px; width:56px; height:66px; }.team .person-body.p1 { top:118px; left:25px; width:125px; background:#8ba99e; }.team .p2 { left:125px; }.team .person-head.p2 { top:91px; width:48px; height:56px; background:#7e543f; }.team .person-body.p2 { top:138px; left:100px; width:110px; height:125px; background:#d1a883; }.team .bubble.one { color:var(--forest); }.team .bubble.two { color:#725293; }
.steps-section { background: #fff; }.steps-grid { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 0; padding: 0; counter-reset: steps; }.steps-grid li { position: relative; padding: 25px 35px; text-align: center; }.steps-grid li:not(:last-child):after { content:""; position:absolute; top:78px; right:-25%; width:50%; border-top:1px dashed #b9c9c4; }.steps-grid li > span { position:absolute; top:4px; left:calc(50% + 38px); color:#a4b2ae; font-size:10px; font-weight:800; }.step-icon { width:72px; height:72px; display:grid; place-items:center; margin:0 auto 22px; color:var(--green); background:var(--mint-light); border:1px solid #dbece6; border-radius:20px; font-size:25px; }.steps-grid h3 { margin:0 0 8px; font:700 19px "Manrope"; }.steps-grid p { max-width:280px; margin:0 auto; color:var(--muted); font-size:13px; line-height:1.6; }
.final-cta-section { padding-top: 55px; background:#fff; }.final-cta { min-height:290px; display:flex; align-items:center; justify-content:space-between; gap:40px; padding:55px 65px; color:#fff; background:radial-gradient(circle at 78% -40%,#387267,transparent 50%),var(--forest); border-radius:25px; overflow:hidden; }.final-cta > div:first-child { max-width:640px; }.final-cta h2 { margin:15px 0 12px; font:700 clamp(32px,4vw,47px)/1.1 "Manrope"; letter-spacing:-2px; }.final-cta p { margin:0; color:#bed0ca; }.final-actions { min-width:250px; display:flex; flex-direction:column; align-items:center; gap:16px; }.cta-whatsapp { color:#d8e7e2; font-size:12px; }
.site-footer { padding:65px 0 24px; background:#f4f3ed; }.footer-grid { display:grid; grid-template-columns:2.1fr repeat(3,1fr); gap:50px; }.footer-grid > div { display:flex; flex-direction:column; align-items:flex-start; gap:11px; }.brand-footer { margin-bottom:8px; }.footer-grid p,.footer-grid a,.footer-grid button { color:var(--muted); font-size:13px; line-height:1.6; }.footer-grid a { text-decoration:none; }.footer-grid button { padding:0; border:0; background:none; cursor:pointer; }.footer-grid strong { margin-bottom:5px; font-size:13px; }.footer-bottom { display:flex; justify-content:space-between; margin-top:50px; padding-top:20px; border-top:1px solid #dbdfdc; color:#8a9894; font-size:11px; }

/* Dialogs */
dialog { padding:0; border:0; }.modal { width:min(960px,calc(100% - 30px)); max-height:calc(100dvh - 30px); overflow:auto; background:#fff; border-radius:22px; box-shadow:0 30px 100px rgba(8,35,29,.3); }.modal::backdrop { background:rgba(9,31,26,.66); backdrop-filter:blur(5px); }.modal-layout { display:grid; grid-template-columns:.88fr 1.12fr; min-height:650px; }.modal-aside { display:flex; flex-direction:column; justify-content:space-between; padding:38px; color:#fff; background:radial-gradient(circle at 20% 5%,#326a5d,transparent 34%),var(--forest); }.modal-brand { color:#fff; }.modal-aside h2 { margin:17px 0 14px; font:700 35px/1.15 "Manrope"; letter-spacing:-1.4px; }.modal-aside p { color:#c1d3cd; line-height:1.6; }.modal-aside ul { list-style:none; margin:30px 0 0; padding:0; }.modal-aside li { display:flex; align-items:center; gap:10px; margin:14px 0; font-size:13px; }.modal-aside li i { width:23px; height:23px; display:grid; place-items:center; color:var(--forest); background:#b9dcd0; border-radius:50%; font-size:10px; font-style:normal; font-weight:800; }.modal-aside > small { color:#9fbbb2; font-size:10px; }.modal-form-wrap { position:relative; padding:42px 46px 36px; }.modal-close { position:absolute; top:18px; right:20px; width:36px; height:36px; border:1px solid var(--line); background:#fff; border-radius:10px; color:#6a7b76; font-size:22px; cursor:pointer; }.form-heading > span { color:var(--green); font-size:10px; font-weight:800; letter-spacing:1px; }.form-heading h2 { margin:9px 0 6px; font:700 29px "Manrope"; letter-spacing:-1px; }.form-heading p { margin:0 0 22px; color:var(--muted); font-size:13px; }.modal form { display:flex; flex-direction:column; gap:14px; }.modal fieldset { margin:0; padding:0; border:0; }.modal legend,.modal form > label,.form-row label { display:block; color:#3b514b; font-size:12px; font-weight:700; }.account-types { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:8px; }.account-types label { cursor:pointer; }.account-types input { position:absolute; opacity:0; }.account-types label > span { display:flex; align-items:center; gap:10px; padding:12px; border:1px solid var(--line); border-radius:10px; transition:.2s; }.account-types input:checked + span { border-color:var(--green); background:var(--mint-light); box-shadow:0 0 0 2px rgba(45,123,104,.09); }.account-types i { width:32px; height:32px; display:grid; place-items:center; flex:none; background:#edf2f0; border-radius:8px; font-style:normal; }.account-types strong,.account-types small { display:block; }.account-types strong { font-size:12px; }.account-types small { margin-top:2px; color:var(--muted); font-size:9px; font-weight:400; }.form-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }.modal input[type=text],.modal input[type=email],.modal input[type=password] { width:100%; height:43px; margin-top:6px; padding:0 12px; border:1px solid #d5dfdc; border-radius:9px; color:var(--ink); background:#fff; outline:0; }.modal input:focus { border-color:var(--green); box-shadow:0 0 0 3px rgba(45,123,104,.1); }.modal input.invalid { border-color:var(--red); }.field-error { display:block; min-height:0; color:var(--red); font-size:10px; font-weight:500; }.field-error:not(:empty) { padding-top:4px; }.field-help { display:block; padding-top:4px; color:#8b9995; font-size:9px; font-weight:400; }.optional { float:right; color:#9aa6a2; font-size:9px; font-weight:400; }.password-field { position:relative; }.password-field input { padding-right:43px!important; }.password-field button { position:absolute; right:5px; top:11px; width:33px; height:33px; border:0; background:none; color:#7c8c87; cursor:pointer; }.check-label { display:flex!important; align-items:flex-start; gap:9px; font-weight:500!important; line-height:1.45; }.check-label input { margin-top:3px; accent-color:var(--green); }.form-status { min-height:0; margin:0; color:var(--red); font-size:11px; }.demo-access { align-self:center; padding:0; border:0; background:none; color:var(--green); font-size:11px; font-weight:700; cursor:pointer; }.action-dialog { width:min(440px,calc(100% - 30px)); padding:38px; text-align:center; }.action-dialog .modal-close { top:12px; right:12px; }.action-dialog-icon { width:58px; height:58px; display:grid; place-items:center; margin:0 auto 18px; color:var(--green); background:var(--mint-light); border-radius:18px; font-size:23px; font-weight:800; }.action-dialog h2 { margin:0 0 8px; font:700 24px "Manrope"; }.action-dialog > p { margin:0 0 22px; color:var(--muted); line-height:1.6; font-size:14px; }.action-dialog #action-extra { margin-bottom:20px; }.fake-upload { padding:14px; background:#f5f8f7; border:1px dashed #b9cbc5; border-radius:10px; text-align:left; }.fake-upload label { font-size:12px; font-weight:700; }.fake-upload input { width:100%; margin-top:8px; }

/* Product shell */
.product-app { min-height:100vh; background:#f5f7f6; }
.app-sidebar { position:fixed; inset:0 auto 0 0; z-index:50; width:250px; display:flex; flex-direction:column; padding:23px 16px 14px; color:#d8e4e0; background:var(--forest); }
.app-brand-wrap { display:flex; align-items:center; justify-content:space-between; padding:0 8px 22px; }.app-brand { color:#fff; font-size:22px; }.app-brand .brand-mark { width:24px;height:24px; }.demo-chip { padding:4px 6px; color:#b9d8ce; background:rgba(255,255,255,.1); border-radius:5px; font-size:8px; font-weight:800; letter-spacing:.7px; }
.community-switcher { display:flex; align-items:center; gap:9px; padding:10px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.08); border-radius:10px; }.community-avatar { width:35px;height:35px;display:grid;place-items:center;flex:none;color:var(--forest);background:#cce4dc;border-radius:8px;font-size:10px;font-weight:800; }.community-switcher > span:nth-child(2) { flex:1;min-width:0; }.community-switcher small,.community-switcher strong { display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis; }.community-switcher small { color:#9fb8b0;font-size:8px; }.community-switcher strong { margin-top:3px;color:#fff;font-size:11px; }.community-switcher button { border:0;background:none;color:#b9cbc5;cursor:pointer; }
.app-nav { flex:1; margin-top:18px; overflow-y:auto; }.app-nav p { margin:20px 10px 8px; color:#749087; font-size:8px; font-weight:800; letter-spacing:1.2px; }.app-nav button { position:relative; width:100%; display:flex; align-items:center; gap:11px; min-height:42px; padding:0 11px; border:0; background:transparent; border-radius:8px; color:#abc0ba; text-align:left; font-size:12px; font-weight:600; cursor:pointer; }.app-nav button:hover { color:#fff;background:rgba(255,255,255,.06); }.app-nav button.active { color:#fff;background:rgba(255,255,255,.11); }.app-nav button.active:before { content:""; position:absolute; left:0; width:3px; height:20px; background:#8fc5b4; border-radius:0 4px 4px 0; }.app-nav button > span { width:20px;text-align:center;font-size:16px; }.app-nav button b { margin-left:auto;padding:3px 5px;color:#cbb5e1;background:rgba(197,170,224,.13);border-radius:4px;font-size:7px; }.ai-nav { margin-top:2px!important; }
.sidebar-help { display:flex;align-items:center;gap:9px;margin-top:12px;padding:10px;background:rgba(255,255,255,.06);border-radius:8px; }.sidebar-help > span { width:27px;height:27px;display:grid;place-items:center;flex:none;border:1px solid #779087;border-radius:7px;font-size:11px; }.sidebar-help strong,.sidebar-help a { display:block; }.sidebar-help strong { color:#d8e5e1;font-size:9px; }.sidebar-help a { margin-top:2px;color:#8fafa5;font-size:8px; }
.user-card { width:100%; display:flex;align-items:center;gap:9px;margin-top:10px;padding:11px 8px 2px;border:0;border-top:1px solid rgba(255,255,255,.1);background:none;color:#fff;text-align:left;cursor:pointer; }.user-avatar { width:34px;height:34px;display:grid;place-items:center;flex:none;color:var(--forest);background:#ead6c9;border-radius:50%;font-size:9px;font-weight:800; }.user-card > span:nth-child(2) { flex:1;min-width:0; }.user-card strong,.user-card small { display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis; }.user-card strong { font-size:10px; }.user-card small { margin-top:2px;color:#8da69e;font-size:8px; }.user-card b { color:#839b93; }.user-menu { position:absolute; left:16px; right:16px; bottom:63px; padding:6px; background:#fff; border-radius:9px; box-shadow:0 15px 30px rgba(0,0,0,.2); }.user-menu button { width:100%;padding:10px;border:0;background:none;border-radius:6px;color:var(--ink);text-align:left;font-size:11px;cursor:pointer; }.user-menu button:hover { background:#f1f5f3; }.user-menu button:last-child { color:var(--red); }
.app-main { min-height:100vh; margin-left:250px; }.app-topbar { position:sticky;top:0;z-index:35;height:66px;display:flex;align-items:center;justify-content:space-between;padding:0 32px;background:rgba(255,255,255,.94);backdrop-filter:blur(12px);border-bottom:1px solid var(--line); }.app-topbar > div:first-child { display:flex;align-items:center;gap:12px;color:#778883;font-size:12px; }.mobile-app-menu { display:none;border:0;background:none;font-size:20px; }.topbar-actions { display:flex;align-items:center;gap:9px; }.icon-button { width:36px;height:36px;display:grid;place-items:center;border:1px solid var(--line);background:#fff;border-radius:9px;color:#5d706a;cursor:pointer; }.notification-button { position:relative; }.notification-button i { position:absolute;top:7px;right:8px;width:6px;height:6px;background:#d76552;border:1px solid #fff;border-radius:50%; }.topbar-profile { display:flex;align-items:center;gap:7px;margin-left:5px;padding:0;border:0;background:none;font-size:11px;font-weight:700;cursor:pointer; }.topbar-profile .user-avatar { width:31px;height:31px; }
.app-content { width:min(1340px,100%); margin:0 auto; padding:31px 32px 55px; }.app-view { display:none; }.app-view.active { display:block; animation:fadeIn .22s ease; }@keyframes fadeIn { from { opacity:0;transform:translateY(4px); } }
.view-heading { display:flex;align-items:flex-end;justify-content:space-between;gap:25px;margin-bottom:23px; }.view-kicker { margin:0 0 5px!important;color:#8a9995!important;text-transform:uppercase;font-size:9px!important;font-weight:800;letter-spacing:1px; }.view-heading h1,.assistant-intro h1 { margin:0;font:700 29px/1.2 "Manrope";letter-spacing:-1px; }.view-heading > div > p:last-child { margin:7px 0 0;color:var(--muted);font-size:13px; }.heading-actions { display:flex;gap:8px; }.app-content .button { min-height:39px;padding:0 14px;font-size:11px; }
.notice-banner { display:flex;align-items:center;gap:10px;margin-bottom:18px;padding:10px 13px;background:#eaf4f0;border:1px solid #d4e7df;border-radius:9px;color:#49625b;font-size:10px; }.notice-banner > span { width:20px;height:20px;display:grid;place-items:center;flex:none;color:#fff;background:var(--green);border-radius:50%;font-family:serif;font-weight:bold; }.notice-banner p { flex:1;margin:0; }.dismiss-notice { border:0;background:none;color:#71847e;font-size:18px;cursor:pointer; }
.metric-grid { display:grid;grid-template-columns:repeat(4,1fr);gap:13px;margin-bottom:14px; }.metric-card,.expense-summary-grid article,.debt-stats article { padding:17px;background:#fff;border:1px solid #e1e7e5;border-radius:12px;box-shadow:0 3px 12px rgba(31,69,59,.025); }.metric-card > div { display:flex;align-items:center;gap:8px; }.metric-card small { color:#71827d;font-size:9px;font-weight:600; }.metric-icon { width:26px;height:26px;display:grid;place-items:center;border-radius:7px;font-size:11px;font-weight:800; }.metric-icon.green { color:#2f735e;background:#def0e9; }.metric-icon.orange { color:#a55b35;background:#f7e8dd; }.metric-icon.blue { color:#436d89;background:#e3edf3; }.metric-icon.lilac-bg { color:#71558d;background:#ece5f4; }.metric-card > strong { display:block;margin:13px 0 6px;font:700 21px "Manrope";letter-spacing:-.6px; }.metric-card > p { margin:0;color:#899792;font-size:8px; }.metric-card > p b { color:#5d716b; }.metric-card .positive { color:#328064; }
.dashboard-grid { display:grid;grid-template-columns:1.65fr 1fr;gap:14px;margin-bottom:14px; }.app-card { background:#fff;border:1px solid #e0e7e4;border-radius:12px;box-shadow:0 3px 13px rgba(32,65,57,.025); }.chart-card,.pending-card { min-height:315px;padding:18px; }.app-card-heading { display:flex;align-items:center;justify-content:space-between;gap:15px;margin-bottom:15px; }.app-card-heading h2 { margin:0;font:700 14px "Manrope"; }.app-card-heading p { margin:4px 0 0;color:#8a9894;font-size:8px; }.legend { display:flex;gap:11px;color:#7a8985;font-size:8px; }.legend span { display:flex;align-items:center;gap:4px; }.legend i { width:7px;height:7px;border-radius:2px; }.legend .income { background:var(--green); }.legend .spending { background:#deb8a3; }
.big-chart { height:230px;display:grid;grid-template-columns:30px 1fr;gap:10px; }.y-axis { display:flex;flex-direction:column;justify-content:space-between;padding-bottom:24px;color:#98a39f;font-size:7px; }.chart-bars { display:flex;align-items:flex-end;justify-content:space-around;padding:0 5px 22px;border-bottom:1px solid #edf0ef;background:repeating-linear-gradient(to bottom,transparent,transparent 46px,#edf1ef 47px); }.chart-bars > div { position:relative;width:9%;height:100%;display:flex;align-items:flex-end;gap:3px; }.chart-bars span,.chart-bars i { width:45%;height:var(--value);background:var(--green);border-radius:3px 3px 0 0; }.chart-bars i { background:#deb8a3; }.chart-bars small { position:absolute;bottom:-17px;left:50%;transform:translateX(-50%);color:#899590;font-size:7px; }
.pending-card .count-badge { width:22px;height:22px;display:grid;place-items:center;color:#a24d43;background:#f5e2df;border-radius:6px;font-size:9px;font-weight:800; }.pending-card > button:not(.see-all) { width:100%;display:flex;align-items:center;gap:9px;padding:11px 0;border:0;border-bottom:1px solid #edf0ef;background:none;text-align:left;cursor:pointer; }.pending-card > button > span:nth-child(2) { flex:1; }.pending-card button strong,.pending-card button small { display:block; }.pending-card button strong { font-size:9px; }.pending-card button small { margin-top:3px;color:#8c9995;font-size:7px; }.pending-card button b { color:#9aa5a2; }.pending-icon { width:28px;height:28px;display:grid;place-items:center;flex:none;border-radius:8px;font-size:10px;font-weight:800; }.pending-icon.critical { color:#ad4c42;background:#f7e2df; }.pending-icon.warning { color:#ad6a3e;background:#faebdc; }.pending-icon.ready { color:#34775f;background:#e0f0e9; }.see-all { margin-top:14px;padding:0;border:0;background:none;color:var(--green);font-size:8px;font-weight:700;cursor:pointer; }
.recent-card { padding:18px; }.table-wrap { width:100%;overflow-x:auto; }.app-card table { width:100%;border-collapse:collapse;white-space:nowrap; }.app-card th { padding:9px 10px;color:#8c9995;border-bottom:1px solid #e8edeb;text-align:left;text-transform:uppercase;font-size:7px;letter-spacing:.5px; }.app-card td { padding:11px 10px;border-bottom:1px solid #eef1f0;color:#536660;font-size:9px; }.app-card tbody tr:last-child td { border-bottom:0; }.app-card td strong { color:var(--ink); }.align-right { text-align:right!important; }.person-cell,.detail-cell { display:flex;align-items:center;gap:9px; }.person-cell > i,.detail-icon { width:28px;height:28px;display:grid;place-items:center;flex:none;border-radius:8px;font-style:normal;font-weight:800;font-size:8px; }.person-cell > i { color:#fff;background:#7b9e93;border-radius:50%; }.person-cell span,.detail-cell span { display:flex;flex-direction:column;gap:2px; }.person-cell small,.detail-cell small { color:#91a09b;font-size:7px; }.detail-icon.in { color:#33765f;background:#e1f0eb; }.detail-icon.out { color:#a55d3e;background:#f7e8e0; }.status { display:inline-flex;align-items:center;gap:4px;padding:4px 7px;border-radius:20px;font-size:7px;font-weight:700; }.status:before { content:"";width:4px;height:4px;border-radius:50%;background:currentColor; }.status.paid { color:#30795f;background:#e5f3ed; }.status.pending { color:#a86440;background:#f8eadf; }.status.debt { color:#ad4d46;background:#f7e3e1; }.status.vacant { color:#71827d;background:#edf0ef; }
.portfolio-summary { display:flex;gap:25px;margin-bottom:16px;padding:12px 16px;background:#e9f2ef;border:1px solid #d8e6e1;border-radius:10px;color:#60726d;font-size:10px; }.portfolio-summary strong { color:var(--forest);font-size:13px; }.building-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:13px;margin-bottom:14px; }.building-card { padding:17px;background:#fff;border:1px solid var(--line);border-radius:12px;cursor:pointer;transition:.2s; }.building-card:hover,.building-card.selected { border-color:#7eaa9d;box-shadow:0 8px 20px rgba(24,72,59,.08); }.building-top { display:flex;justify-content:space-between;align-items:flex-start; }.building-icon { width:38px;height:38px;display:grid;place-items:center;color:var(--forest);background:var(--mint-light);border-radius:10px;font-size:18px; }.building-card button { border:0;background:none;color:#879690;cursor:pointer; }.building-card h3 { margin:13px 0 4px;font:700 13px "Manrope"; }.building-card > p { margin:0;color:#8a9995;font-size:8px; }.occupancy { display:flex;align-items:center;gap:8px;margin-top:17px; }.occupancy-track { flex:1;height:5px;background:#ecf0ee;border-radius:5px;overflow:hidden; }.occupancy-track i { display:block;height:100%;background:var(--green);border-radius:5px; }.occupancy small { color:#657873;font-size:8px;font-weight:700; }.building-meta { display:flex;justify-content:space-between;margin-top:10px;color:#83928e;font-size:8px; }.units-card { padding:18px; }.filter-row { display:flex;gap:7px; }.search-field { min-width:210px;height:34px;display:flex;align-items:center;gap:5px;padding:0 9px;background:#fff;border:1px solid var(--line);border-radius:8px;color:#84938e; }.search-field input { min-width:0;flex:1;border:0;outline:0;color:var(--ink);font-size:9px; }.app-card select { height:34px;padding:0 28px 0 10px;border:1px solid var(--line);border-radius:8px;background:#fff;color:#586b65;font-size:9px; }.empty-state { padding:55px 20px;text-align:center; }.empty-state.compact { padding:28px 15px; }.empty-state > span { width:46px;height:46px;display:grid;place-items:center;margin:0 auto 12px;color:#658079;background:#edf4f1;border-radius:13px;font-size:18px; }.empty-state h3 { margin:0 0 6px;font:700 14px "Manrope"; }.empty-state p { margin:0 0 15px;color:var(--muted);font-size:10px; }
.expense-summary-grid,.debt-stats { display:grid;grid-template-columns:repeat(4,1fr);gap:13px;margin-bottom:14px; }.expense-summary-grid span,.debt-stats span { display:block;color:#71827d;font-size:9px;font-weight:600; }.expense-summary-grid strong,.debt-stats strong { display:block;margin:11px 0 5px;font:700 19px "Manrope"; }.expense-summary-grid small,.debt-stats small { color:#8d9995;font-size:8px; }.status-draft { width:max-content;padding:5px 8px;color:#a2633d!important;background:#f7e8dc;border-radius:6px;font-size:11px!important; }.expenses-layout { grid-template-columns:1.6fr .8fr; }.expenses-layout > .app-card { padding:18px; }.expense-items { display:flex;flex-direction:column; }.expense-item { display:grid;grid-template-columns:32px 1fr auto auto;align-items:center;gap:10px;padding:11px 0;border-bottom:1px solid #edf0ef; }.expense-item > span:first-child { width:30px;height:30px;display:grid;place-items:center;background:#edf4f1;border-radius:8px;font-size:11px; }.expense-item strong,.expense-item small { display:block; }.expense-item strong { font-size:9px; }.expense-item small { margin-top:3px;color:#899792;font-size:7px; }.expense-item > b { font-size:9px; }.expense-item button { border:0;background:none;color:#8a9894;cursor:pointer; }.expense-total { display:flex;justify-content:space-between;align-items:center;margin-top:15px;padding-top:14px;border-top:1px solid #dce4e1;font-size:11px; }.expense-total strong { font:700 15px "Manrope"; }.checklist-card > .app-card-heading > b { color:var(--green);font-size:11px; }.progress-track { height:6px;margin-bottom:17px;background:#e8eeec;border-radius:5px;overflow:hidden; }.progress-track i { display:block;height:100%;background:var(--green); }.checklist-card label { display:flex;align-items:center;gap:8px;padding:10px 0;border-bottom:1px solid #edf0ef;color:#5c7069;font-size:9px; }.checklist-card input { accent-color:var(--green); }.checklist-card .button { margin-top:19px; }
.debt-stats .critical-stat { border-color:#edcfca;background:#fffafa; }.critical-stat strong { color:#a74843; }.debt-action { padding:6px 8px;border:1px solid var(--line);background:#fff;border-radius:7px;color:var(--green);font-size:8px;font-weight:700;cursor:pointer; }
.finance-balance { display:flex;justify-content:space-between;gap:30px;margin-bottom:14px;padding:24px;color:#fff;background:radial-gradient(circle at 78% 0,#397266,transparent 44%),var(--forest);border-radius:14px; }.finance-balance > div:first-child span,.finance-balance > div:first-child strong,.finance-balance > div:first-child small { display:block; }.finance-balance > div:first-child span { color:#a9c2ba;font-size:9px; }.finance-balance > div:first-child strong { margin:7px 0 4px;font:700 25px "Manrope"; }.finance-balance > div:first-child small { color:#87a59c;font-size:8px; }.finance-balance > div:last-child { display:flex;gap:35px;align-items:center; }.finance-balance > div:last-child span { color:#a9c2ba;font-size:8px; }.finance-balance > div:last-child strong { display:block;margin-top:7px;color:#fff;font-size:12px; }.finance-layout { grid-template-columns:1.3fr .9fr; }.finance-layout > .app-card { padding:18px; }.finance-item { display:grid;grid-template-columns:34px 1fr auto;align-items:center;gap:10px;padding:11px 0;border-bottom:1px solid #edf0ef; }.finance-item > span:first-child { width:32px;height:32px;display:grid;place-items:center;border-radius:8px;font-size:11px; }.finance-item > span.in { color:#367761;background:#e3f1ec; }.finance-item > span.out { color:#a65d3e;background:#f7e7de; }.finance-item strong,.finance-item small { display:block; }.finance-item strong { font-size:9px; }.finance-item small { margin-top:3px;color:#8c9995;font-size:7px; }.finance-item > b { font-size:9px; }.finance-item > b.in { color:#367761; }.doc-item { display:grid;grid-template-columns:34px 1fr auto;align-items:center;gap:9px;padding:10px 0;border-bottom:1px solid #edf0ef; }.doc-icon { width:32px;height:32px;display:grid;place-items:center;color:#a55843;background:#f8e9e1;border-radius:8px;font-size:9px;font-weight:800; }.doc-item strong,.doc-item small { display:block; }.doc-item strong { font-size:9px; }.doc-item small { margin-top:3px;color:#8d9996;font-size:7px; }.doc-item button { border:0;background:none;color:#6d817a;cursor:pointer; }
.assistant-view { height:calc(100vh - 152px);min-height:570px; }.assistant-layout { height:100%;display:grid;grid-template-columns:.9fr 1.1fr;gap:22px; }.assistant-intro { align-self:center;padding:10px 30px 10px 5px; }.assistant-logo { width:54px;height:54px;display:grid;place-items:center;margin-bottom:18px;color:#684d86;background:linear-gradient(145deg,#f0eafa,#d9cdeb);border-radius:17px;font-size:24px;box-shadow:0 10px 25px rgba(90,65,122,.13); }.assistant-logo.small { width:32px;height:32px;margin:0;border-radius:9px;font-size:14px; }.assistant-logo.tiny { width:25px;height:25px;margin:0;flex:none;border-radius:7px;font-size:10px;box-shadow:none; }.assistant-intro h1 { margin:7px 0 13px;font-size:35px; }.assistant-intro > p:not(.view-kicker) { max-width:510px;margin:0;color:var(--muted);font-size:13px;line-height:1.65; }.suggestion-grid { display:grid;grid-template-columns:1fr 1fr;gap:9px;margin-top:27px; }.suggestion-grid button { display:grid;grid-template-columns:32px 1fr;gap:0 9px;padding:13px;border:1px solid var(--line);background:#fff;border-radius:10px;text-align:left;cursor:pointer;transition:.2s; }.suggestion-grid button:hover { border-color:#9ebbb2;transform:translateY(-2px);box-shadow:var(--shadow-soft); }.suggestion-grid button > span { grid-row:1/3;width:30px;height:30px;display:grid;place-items:center;color:var(--green);background:var(--mint-light);border-radius:8px; }.suggestion-grid strong { font-size:9px; }.suggestion-grid small { margin-top:3px;color:#8b9995;font-size:7px; }
.chat-panel { min-height:0;display:flex;flex-direction:column;background:#fff;border:1px solid var(--line);border-radius:14px;box-shadow:0 10px 30px rgba(30,67,57,.06);overflow:hidden; }.chat-header { height:58px;display:flex;align-items:center;justify-content:space-between;padding:0 17px;border-bottom:1px solid var(--line); }.chat-header > div { display:flex;align-items:center;gap:9px; }.chat-header strong,.chat-header small { display:block; }.chat-header strong { font-size:10px; }.chat-header small { margin-top:3px;color:#899793;font-size:7px; }.chat-header small i { display:inline-block;width:5px;height:5px;margin-right:3px;background:#4a9a78;border-radius:50%; }.chat-header > button { border:0;background:none;color:#758780;font-size:16px;cursor:pointer; }.chat-messages { flex:1;min-height:0;overflow-y:auto;padding:20px; }.message { display:flex;gap:9px;margin:0 0 15px; }.message > div { max-width:82%;padding:10px 12px;border-radius:4px 12px 12px 12px;background:#f0f5f3;color:#42574f;font-size:10px;line-height:1.55; }.message p { margin:0; }.message small { display:block;margin-top:6px;color:#8a9995;font-size:7px; }.user-message { justify-content:flex-end; }.user-message > div { color:#fff;background:var(--forest);border-radius:12px 4px 12px 12px; }.typing span { display:inline-block;width:5px;height:5px;margin:0 2px;background:#82938d;border-radius:50%;animation:typing 1s infinite; }.typing span:nth-child(2){animation-delay:.15s}.typing span:nth-child(3){animation-delay:.3s}@keyframes typing{50%{transform:translateY(-4px);opacity:.5}}
.chat-form { display:grid!important;grid-template-columns:1fr 36px;gap:7px!important;padding:13px;border-top:1px solid var(--line); }.chat-form textarea { max-height:90px;resize:none;padding:10px 11px;border:1px solid var(--line);border-radius:9px;outline:0;font-size:10px; }.chat-form textarea:focus { border-color:var(--green); }.chat-form button { width:36px;height:36px;align-self:end;border:0;color:#fff;background:var(--forest);border-radius:9px;cursor:pointer; }.chat-form > small { grid-column:1/3;color:#99a4a1;text-align:center;font-size:7px; }

/* Search + toast */
.search-overlay { position:fixed;inset:0;z-index:100;display:grid;place-items:start center;padding-top:13vh; }.search-backdrop { position:absolute;inset:0;border:0;background:rgba(11,34,28,.57);backdrop-filter:blur(4px); }.global-search { position:relative;width:min(560px,calc(100% - 30px));padding:10px;background:#fff;border-radius:14px;box-shadow:0 25px 70px rgba(0,0,0,.25); }.global-search label { height:47px;display:flex;align-items:center;gap:9px;padding:0 10px;border-bottom:1px solid var(--line); }.global-search input { flex:1;border:0;outline:0;font-size:14px; }.global-search kbd { padding:4px 6px;background:#f0f3f2;border:1px solid #e0e5e3;border-radius:5px;color:#73847f;font-size:8px; }.global-search > div { padding-top:7px; }.global-search > div button { width:100%;display:flex;align-items:center;gap:11px;padding:10px;border:0;background:#fff;border-radius:8px;text-align:left;cursor:pointer; }.global-search > div button:hover { background:#f1f6f4; }.global-search > div button > span { width:31px;height:31px;display:grid;place-items:center;background:#e8f3ef;border-radius:8px; }.global-search strong,.global-search small { display:block; }.global-search strong { font-size:10px; }.global-search small { margin-top:3px;color:#899793;font-size:8px; }.toast-region { position:fixed;right:20px;bottom:20px;z-index:200;display:flex;flex-direction:column;gap:8px; }.toast { min-width:280px;display:flex;align-items:center;gap:10px;padding:13px 15px;color:#fff;background:var(--forest);border:1px solid rgba(255,255,255,.15);border-radius:10px;box-shadow:0 14px 35px rgba(14,43,36,.25);font-size:11px;animation:toastIn .25s ease; }.toast > span { width:22px;height:22px;display:grid;place-items:center;color:var(--forest);background:#bfe1d5;border-radius:50%;font-weight:800; }.toast.error { background:#713b38; }.toast.error > span { background:#f0c4be;color:#713b38; }@keyframes toastIn{from{opacity:0;transform:translateY(10px)}}
.reveal { opacity:1;transform:none; }.reveal.visible { opacity:1;transform:none; }.delay-1,.delay-2 { transition-delay:0s; }

/* Responsive */
@media (max-width:1100px) {
  .hero-grid { grid-template-columns:1fr 1.05fr;gap:25px; }.hero-copy h1 { font-size:52px; }.floating-top{right:-5px}.floating-bottom{left:-5px}
  .feature-grid { grid-template-columns:1fr 1fr; }.feature-card.featured { grid-column:1/3;min-height:340px; }.feature-card.featured .expense-mock { width:70%;align-self:center; }
  .modules-grid,.pricing-grid { grid-template-columns:1fr 1fr; }
  .pricing-card.featured { grid-column:1/3; transform:none; }
  .audience-card { grid-template-columns:1fr;padding:25px; }.audience-art { min-height:220px; }.audience-card h3 { font-size:22px; }
  .metric-grid,.expense-summary-grid,.debt-stats { grid-template-columns:repeat(2,1fr); }
  .assistant-layout { grid-template-columns:.75fr 1.25fr; }.suggestion-grid { grid-template-columns:1fr; }
}
@media (max-width:860px) {
  .section { padding:78px 0; }.site-header { padding:15px 0; }.menu-toggle { display:block; }.site-nav { position:absolute;top:66px;left:20px;right:20px;display:none;flex-direction:column;align-items:stretch;gap:0;padding:12px;background:#fff;border:1px solid var(--line);border-radius:14px;box-shadow:var(--shadow); }.site-nav.open { display:flex; }.site-nav a:not(.button),.site-nav .text-button { padding:13px;text-align:left; }.site-nav .button { margin-top:7px; }.hero { min-height:auto;padding-top:125px; }.hero-grid { grid-template-columns:1fr; }.hero-copy { text-align:center; }.hero-copy .eyebrow { justify-content:center; }.hero-lead { margin-inline:auto; }.hero-actions,.trust-note { justify-content:center; }.hero-visual { max-width:670px;margin:auto; }.confidence-grid { grid-template-columns:1fr 1fr; }.confidence-grid span { justify-content:flex-start; }.feature-grid { grid-template-columns:1fr; }.feature-card.featured { grid-column:auto; }.feature-card.featured .expense-mock { width:auto; }.modules-grid,.pricing-grid { grid-template-columns:1fr; }.pricing-card.featured { grid-column:auto; transform:none; }.audience-grid { grid-template-columns:1fr 1fr; }.audience-card { grid-template-columns:1fr; }.final-cta { padding:45px; }.footer-grid { grid-template-columns:1.6fr 1fr 1fr; }.footer-grid > div:last-child { grid-column:2; }
  .modal-layout { grid-template-columns:1fr; }.modal-aside { min-height:220px; }.modal-aside > div { margin-top:35px; }.modal-aside h2 { font-size:28px; }.modal-aside ul,.modal-aside > small { display:none; }
  .app-sidebar { inset:0 auto 0 -260px;transition:left .25s;box-shadow:12px 0 30px rgba(0,0,0,.18); }.product-app.nav-open .app-sidebar { left:0; }.app-main { margin-left:0; }.mobile-app-menu { display:block; }.app-topbar { padding:0 20px; }.app-content { padding:25px 20px 45px; }.assistant-layout { grid-template-columns:1fr; }.assistant-intro { display:none; }.assistant-view { height:calc(100vh - 136px); }.chat-panel { max-width:700px;width:100%;margin:auto; }
}
@media (max-width:680px) {
  .container { width:min(100% - 28px,1160px); }.section { padding:65px 0; }.hero { padding-top:105px; }.hero-copy h1 { font-size:41px;letter-spacing:-2.5px; }.hero-lead { font-size:16px; }.hero-actions { flex-direction:column; }.hero-actions .button { width:100%; }.trust-note { text-align:left; }.hero-visual { margin-top:5px;padding:20px 0 45px; }.preview-window { transform:none; }.preview-content { grid-template-columns:32px 1fr;min-height:285px; }.preview-main { padding:12px; }.preview-sidebar { gap:12px; }.preview-stats { gap:5px; }.preview-stats article { padding:8px 6px; }.preview-stats strong { font-size:9px; }.preview-lower { grid-template-columns:1fr; }.preview-task-card { display:none; }.mini-chart { height:75px; }.floating-card { min-width:145px;padding:8px; }.floating-top { top:4px;right:-4px; }.floating-bottom { left:-3px;bottom:6px; }.confidence-grid { grid-template-columns:1fr;gap:12px; }.section-heading h2 { font-size:34px;letter-spacing:-1.5px; }.feature-card { min-height:360px;padding:23px; }.modules-grid,.pricing-grid { grid-template-columns:1fr; }.pricing-card.featured { grid-column:auto; transform:none; }.audience-grid { grid-template-columns:1fr; }.audience-card { min-height:0; }.steps-grid { grid-template-columns:1fr;gap:25px; }.steps-grid li { padding:15px 20px; }.steps-grid li:not(:last-child):after { top:auto;bottom:-17px;right:50%;width:0;height:28px;border-top:0;border-left:1px dashed #b9c9c4; }.final-cta { flex-direction:column;align-items:flex-start;padding:36px 27px; }.final-actions { width:100%; }.final-actions .button { width:100%; }.footer-grid { grid-template-columns:1fr 1fr;gap:35px 20px; }.footer-grid > div:first-child { grid-column:1/3; }.footer-grid > div:last-child { grid-column:auto; }.footer-bottom { flex-direction:column;gap:8px; }
  .modal { width:100%;max-height:100dvh;border-radius:0; }.modal-layout { min-height:100dvh; }.modal-aside { display:none; }.modal-form-wrap { padding:45px 22px 30px; }.form-row { grid-template-columns:1fr; }.account-types { gap:7px; }.account-types label > span { padding:9px; }.action-dialog { width:calc(100% - 28px);border-radius:18px;padding:34px 22px; }
  .app-topbar { height:58px;padding:0 13px; }.app-topbar > div:first-child > span { display:none; }.topbar-profile > span:last-child { display:none; }.topbar-actions { gap:5px; }.app-content { padding:20px 13px 90px; }.view-heading { align-items:flex-start;flex-direction:column;gap:15px; }.view-heading h1 { font-size:25px; }.heading-actions { width:100%; }.heading-actions .button { flex:1; }.notice-banner { align-items:flex-start; }.metric-grid,.expense-summary-grid,.debt-stats { grid-template-columns:1fr 1fr;gap:8px; }.metric-card,.expense-summary-grid article,.debt-stats article { padding:13px; }.metric-card > strong { font-size:17px; }.dashboard-grid,.expenses-layout,.finance-layout { grid-template-columns:1fr; }.chart-card { min-height:290px; }.big-chart { height:210px; }.recent-card { padding:14px; }.portfolio-summary { overflow-x:auto;white-space:nowrap; }.building-grid { grid-template-columns:1fr; }.units-card { padding:13px; }.app-card-heading { align-items:flex-start; }.filter-row { width:100%;flex-direction:column; }.search-field { width:100%;min-width:0; }.app-card-heading:has(.filter-row),.app-card-heading:has(.search-field) { flex-direction:column; }.expense-summary-grid article strong,.debt-stats article strong { font-size:15px; }.finance-balance { flex-direction:column;padding:20px; }.finance-balance > div:last-child { gap:15px;justify-content:space-between; }.assistant-view { height:calc(100vh - 125px); }.chat-messages { padding:14px; }.message > div { max-width:88%; }.toast-region { left:13px;right:13px;bottom:15px; }.toast { min-width:0;width:100%; }.search-overlay { padding-top:8vh; }
}
@media (prefers-reduced-motion:reduce) { html{scroll-behavior:auto}.reveal{opacity:1;transform:none;transition:none}.floating-card{animation:none}.button,.suggestion-grid button{transition:none} }
