@import url("https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800;900&display=swap");:root{--bg:#f7f2e8;--bg-2:#ede4d1;--surface:#fffdf7;--surface-2:#f0e8d5;--ink:#1a1512;--ink-2:#4a4238;--ink-3:#8a7f70;--ink-4:#b8ad9c;--border:#d9cfb8;--border-strong:#a89880;--accent:#b04e21;--accent-2:#d17646;--accent-soft:#f4e3d4;--gold:#b8912b;--danger:#9a2b2b;--danger-soft:#f2dede;--success:#3d6b3d;--success-soft:#dfead1;--info:#2f5a75;--info-soft:#dbe6ef;--radius:4px;--radius-lg:8px;--shadow-sm:0 1px 0 rgba(26,21,18,.04),0 1px 2px rgba(26,21,18,.06);--shadow:0 1px 0 rgba(26,21,18,.05),0 4px 12px rgba(26,21,18,.08);--shadow-lg:0 2px 4px rgba(26,21,18,.06),0 12px 32px rgba(26,21,18,.12);--font:"Vazirmatn","Segoe UI",Tahoma,sans-serif}*{box-sizing:border-box;margin:0;padding:0}body,html{background:var(--bg);color:var(--ink);font-family:var(--font);font-size:15px;line-height:1.6;-webkit-font-smoothing:antialiased;min-height:100vh}body{direction:rtl;background-image:radial-gradient(circle at 25% 15%,rgba(184,145,43,.06) 0,transparent 45%),radial-gradient(circle at 90% 85%,rgba(176,78,33,.05) 0,transparent 40%);background-attachment:fixed}a{color:inherit;text-decoration:none}button{cursor:pointer;border:none;background:none}button,input,select,textarea{font-family:inherit;color:inherit}input,select,textarea{font-size:inherit}::selection{background:var(--accent);color:#fff}::-webkit-scrollbar{width:10px;height:10px}::-webkit-scrollbar-track{background:var(--bg-2)}::-webkit-scrollbar-thumb{background:var(--ink-4);border-radius:4px}::-webkit-scrollbar-thumb:hover{background:var(--ink-3)}.font-num{font-feature-settings:"tnum";font-variant-numeric:tabular-nums}.hairline{height:1px;background:linear-gradient(to left,transparent,var(--border-strong),transparent);margin:24px 0}.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:10px 18px;font-size:14px;font-weight:600;border-radius:var(--radius);transition:all .15s ease;white-space:nowrap;min-height:40px}.btn:disabled{opacity:.4;cursor:not-allowed}.btn-primary{background:var(--ink);color:var(--bg)}.btn-accent,.btn-primary:hover:not(:disabled){background:var(--accent)}.btn-accent{color:#fff}.btn-accent:hover:not(:disabled){background:#8f3d15}.btn-ghost{background:transparent;color:var(--ink);border:1px solid var(--border-strong)}.btn-ghost:hover:not(:disabled){background:var(--surface-2);border-color:var(--ink-3)}.btn-danger{background:transparent;color:var(--danger);border:1px solid var(--danger)}.btn-danger:hover:not(:disabled){background:var(--danger);color:#fff}.btn-block{width:100%}.btn-icon{padding:8px;min-height:unset;min-width:36px;border-radius:var(--radius)}.card{padding:24px;position:relative}.card,.card-flat{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-lg)}.card-flat{padding:20px}.field{display:flex;flex-direction:column;gap:6px;margin-bottom:16px}.field-label{font-size:13px;font-weight:600;color:var(--ink-2);letter-spacing:-.01em}.field-hint{font-size:12px;color:var(--ink-3)}.field-error{font-size:12px;color:var(--danger);font-weight:500}.input{width:100%;padding:11px 14px;border:1px solid var(--border);background:var(--surface);border-radius:var(--radius);font-size:14px;transition:all .15s ease;min-height:42px}.input:focus{outline:none;border-color:var(--accent);box-shadow:0 0 0 3px rgba(176,78,33,.12)}.input:disabled{background:var(--surface-2);cursor:not-allowed}.input-ltr{direction:ltr;text-align:center;letter-spacing:4px;font-weight:600}textarea.input{min-height:100px;padding:12px 14px;resize:vertical;line-height:1.6}select.input{cursor:pointer}.table-wrap{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden}.table{width:100%;border-collapse:collapse}.table th{text-align:right;padding:12px 18px;font-size:12px;font-weight:700;color:var(--ink-3);text-transform:uppercase;letter-spacing:.05em;background:var(--surface-2)}.table td,.table th{border-bottom:1px solid var(--border)}.table td{padding:16px 18px;font-size:14px;color:var(--ink);vertical-align:middle}.table tr:last-child td{border-bottom:none}.table tr:hover td{background:var(--bg)}.badge{display:inline-flex;align-items:center;gap:4px;padding:3px 10px;font-size:12px;font-weight:600;border-radius:999px;border:1px solid;white-space:nowrap}.badge-neutral{background:var(--surface-2);border-color:var(--border);color:var(--ink-2)}.badge-success{background:var(--success-soft);border-color:var(--success);color:var(--success)}.badge-danger{background:var(--danger-soft);border-color:var(--danger);color:var(--danger)}.badge-info{background:var(--info-soft);border-color:var(--info);color:var(--info)}.badge-warn{background:#f9ecd6;border-color:var(--gold);color:#7a5d10}.toast-root{position:fixed;top:20px;left:20px;z-index:9999;display:flex;flex-direction:column;gap:8px;pointer-events:none}.toast{background:var(--ink);color:var(--bg);padding:12px 18px;border-radius:var(--radius);box-shadow:var(--shadow-lg);min-width:280px;max-width:400px;font-size:14px;font-weight:500;pointer-events:auto;animation:toast-in .25s ease;border-right:3px solid var(--accent)}.toast-success{border-right-color:var(--success)}.toast-danger{border-right-color:var(--danger)}@keyframes toast-in{0%{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}.modal-backdrop{position:fixed;inset:0;background:rgba(26,21,18,.4);z-index:100;display:flex;align-items:center;justify-content:center;padding:20px;animation:fade-in .15s ease}.modal{background:var(--surface);border-radius:var(--radius-lg);border:1px solid var(--border);padding:28px;width:100%;max-width:520px;max-height:90vh;overflow-y:auto;box-shadow:var(--shadow-lg);animation:modal-in .2s ease}@keyframes fade-in{0%{opacity:0}to{opacity:1}}@keyframes modal-in{0%{opacity:0;transform:translateY(10px) scale(.98)}to{opacity:1;transform:translateY(0) scale(1)}}.app-shell{display:grid;grid-template-columns:260px 1fr;min-height:100vh}.app-main{padding:32px 40px 60px;max-width:1280px;-webkit-margin-start:auto;margin-inline-start:auto}.sidebar{background:var(--surface);-webkit-border-start:1px solid var(--border);border-inline-start:1px solid var(--border);padding:24px 0;display:flex;flex-direction:column;position:-webkit-sticky;position:sticky;top:0;height:100vh;overflow-y:auto}.sidebar-brand{padding:0 24px 24px;border-bottom:1px solid var(--border);margin-bottom:12px}.sidebar-brand h1{font-size:22px;font-weight:900;letter-spacing:-.02em;color:var(--ink)}.sidebar-brand .sub{font-size:11px;color:var(--ink-3);margin-top:2px;letter-spacing:.02em}.sidebar-section{padding:12px 24px 6px;font-size:11px;font-weight:700;letter-spacing:.08em;color:var(--ink-3);text-transform:uppercase}.nav-item{display:flex;align-items:center;gap:12px;padding:10px 24px;color:var(--ink-2);font-size:14px;font-weight:500;border-right:3px solid transparent;transition:all .15s ease}.nav-item:hover{background:var(--bg);color:var(--ink)}.nav-item.active{background:var(--accent-soft);color:var(--accent);border-right-color:var(--accent);font-weight:700}.nav-item svg{width:18px;height:18px;flex-shrink:0}.sidebar-footer{margin-top:auto;padding:16px 24px;border-top:1px solid var(--border);gap:12px}.avatar,.sidebar-footer{display:flex;align-items:center}.avatar{width:36px;height:36px;border-radius:999px;background:var(--accent);color:#fff;justify-content:center;font-weight:700;font-size:14px;flex-shrink:0}.avatar-lg{width:48px;height:48px;font-size:18px}.page-header{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin-bottom:28px;padding-bottom:20px;border-bottom:1px solid var(--border)}.page-title{font-size:28px;font-weight:800;letter-spacing:-.02em;color:var(--ink);line-height:1.2}.page-subtitle{font-size:14px;color:var(--ink-3);margin-top:4px}.page-eyebrow{font-size:11px;font-weight:700;letter-spacing:.12em;color:var(--accent);text-transform:uppercase;margin-bottom:6px}.stat{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-lg);padding:22px 24px;display:flex;flex-direction:column;gap:8px;position:relative;overflow:hidden}.stat:before{content:"";position:absolute;top:0;right:0;width:3px;height:100%;background:var(--accent)}.stat-label{font-size:12px;font-weight:600;color:var(--ink-3);letter-spacing:.02em;text-transform:uppercase}.stat-value{font-size:26px;font-weight:800;color:var(--ink);letter-spacing:-.02em;font-feature-settings:"tnum";font-variant-numeric:tabular-nums}.stat-unit{font-size:13px;font-weight:500;color:var(--ink-3);margin-right:4px}.stat-sub{font-size:12px;color:var(--ink-3);margin-top:2px}.stat-accent .stat-value{color:var(--accent)}.stat-danger:before{background:var(--danger)}.stat-danger .stat-value{color:var(--danger)}.stat-success:before{background:var(--success)}.stat-success .stat-value{color:var(--success)}.grid-4{grid-template-columns:repeat(4,1fr);grid-gap:16px}.grid-3,.grid-4{display:grid;gap:16px}.grid-3{grid-template-columns:repeat(3,1fr);grid-gap:16px}.grid-2{display:grid;grid-template-columns:repeat(2,1fr);grid-gap:16px;gap:16px}@media (max-width:900px){.grid-3,.grid-4{grid-template-columns:repeat(2,1fr)}.app-shell{grid-template-columns:1fr}.sidebar{position:static;height:auto;-webkit-border-start:none;border-inline-start:none;border-bottom:1px solid var(--border)}.app-main{padding:24px 20px}}@media (max-width:600px){.grid-2,.grid-3,.grid-4{grid-template-columns:1fr}.page-header{flex-direction:column;align-items:flex-start}}.empty{padding:60px 24px;text-align:center;color:var(--ink-3)}.empty-icon{width:56px;height:56px;background:var(--surface-2);border-radius:999px;display:inline-flex;align-items:center;justify-content:center;margin-bottom:16px;color:var(--ink-3)}.empty-title{color:var(--ink-2);font-weight:600;font-size:15px;margin-bottom:4px}.empty-sub{font-size:13px;color:var(--ink-3)}.login-shell{min-height:100vh;display:grid;grid-template-columns:1fr 1fr}.login-side{background:var(--ink);color:var(--bg);padding:60px 48px;display:flex;flex-direction:column;justify-content:space-between;position:relative;overflow:hidden}.login-side:before{top:-80px;left:-80px;width:400px;height:400px;background:radial-gradient(circle,rgba(208,118,70,.25) 0,transparent 70%)}.login-side:after,.login-side:before{content:"";position:absolute;filter:blur(40px)}.login-side:after{bottom:-100px;right:-100px;width:500px;height:500px;background:radial-gradient(circle,rgba(184,145,43,.18) 0,transparent 70%)}.login-mark{font-size:15px;font-weight:700;letter-spacing:-.01em;position:relative;z-index:1;display:flex;align-items:center;gap:10px}.login-mark .dot{width:10px;height:10px;background:var(--accent);border-radius:2px;transform:rotate(45deg)}.login-hero{position:relative;z-index:1}.login-hero h2{font-size:42px;font-weight:900;line-height:1.15;letter-spacing:-.03em;margin-bottom:20px}.login-hero p{font-size:15px;color:hsla(40,48%,94%,.7);line-height:1.7;max-width:400px}.login-hero .accent-line{width:40px;height:3px;background:var(--accent);margin-bottom:24px}.login-footer{font-size:12px;color:hsla(40,48%,94%,.4);position:relative;z-index:1}.login-form-wrap{padding:60px 48px;display:flex;align-items:center;justify-content:center}.login-form{width:100%;max-width:380px}.login-form h3{font-size:24px;font-weight:800;color:var(--ink);margin-bottom:8px;letter-spacing:-.02em}.login-form .sub{color:var(--ink-3);margin-bottom:32px;font-size:14px}@media (max-width:900px){.login-shell{grid-template-columns:1fr}.login-side{padding:32px 24px}.login-hero h2{font-size:28px}.login-form-wrap{padding:32px 24px}}.row,.row-between{display:flex;align-items:center;gap:12px}.row-between{justify-content:space-between}.stack{gap:12px}.stack,.stack-lg{display:flex;flex-direction:column}.stack-lg{gap:20px}.grow{flex:1 1}.mt-2{margin-top:8px}.mt-4{margin-top:16px}.mt-6{margin-top:24px}.mb-4{margin-bottom:16px}.mb-6{margin-bottom:24px}.text-muted{color:var(--ink-3)}.text-danger{color:var(--danger)}.text-success{color:var(--success)}.text-accent{color:var(--accent)}.text-sm{font-size:13px}.text-xs{font-size:12px}.text-lg{font-size:17px}.text-xl{font-size:20px}.font-bold{font-weight:700}.font-black{font-weight:900}.section-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:16px;gap:12px}.section-title{font-size:15px;font-weight:700;color:var(--ink);letter-spacing:-.01em}.section-desc{font-size:13px;color:var(--ink-3);margin-top:2px}.marketing-page{--navy:#092a4b;--blue:#0b75b6;--aqua:#40c8d0;--gold:#e6aa45;--paper:#f7fbfd;background:var(--paper);color:var(--navy);overflow:hidden}.container-wide{width:min(1180px,calc(100% - 48px));margin:auto}.marketing-nav{height:88px;display:flex;align-items:center;justify-content:space-between;position:relative;z-index:5}.marketing-brand{display:flex;gap:9px;align-items:center;font-size:20px;font-weight:900;color:var(--navy)}.brand-mark{width:30px;height:30px;display:grid;place-items:center;color:#fff;background:linear-gradient(135deg,var(--blue),var(--aqua));border-radius:10px;box-shadow:0 8px 18px #1aa8c844}.hero-actions,.marketing-links,.marketing-nav-actions{display:flex;align-items:center;gap:26px}.marketing-links a,.marketing-login{color:#47627b;font-size:14px;font-weight:600}.marketing-links a:hover,.marketing-login:hover{color:var(--blue)}.marketing-cta{display:inline-flex;align-items:center;gap:18px;border:0;padding:14px 20px;border-radius:14px;color:#fff;background:linear-gradient(135deg,#0872b5,#0a4e8b);box-shadow:0 13px 25px #0971b535;font-size:14px;font-weight:800;transition:transform .2s,box-shadow .2s}.marketing-cta:hover{transform:translateY(-2px);box-shadow:0 17px 32px #0971b54a}.marketing-cta.small{padding:10px 15px;border-radius:11px;font-size:13px}.hero-section{min-height:620px;display:grid;grid-template-columns:.88fr 1.12fr;align-items:center;grid-gap:26px;gap:26px;padding:45px 0 74px;direction:rtl}.hero-copy{position:relative;z-index:2}.hero-eyebrow,.section-kicker{color:#0786a0;font-size:12px;font-weight:800;letter-spacing:.06em}.hero-eyebrow{display:flex;align-items:center;gap:8px}.pulse-dot{width:8px;height:8px;border-radius:50%;background:#3ccdd1;box-shadow:0 0 0 6px #3ccdd125}.hero-copy h1{font-size:clamp(42px,5vw,70px);line-height:1.16;letter-spacing:-.06em;margin:18px 0;font-weight:900}.hero-copy h1 em,.statement-glass em{font-style:normal;color:#0d83b5}.hero-copy>p{color:#526d82;font-size:17px;line-height:2;max-width:490px}.hero-actions{margin-top:31px}.hero-secondary{font-size:14px;font-weight:800;color:#234d6c}.hero-secondary span,.text-link span{color:#0f9fb3;font-size:19px;margin-right:5px}.hero-proof{display:flex;align-items:center;gap:16px;margin-top:46px}.hero-proof div{display:grid;grid-gap:2px;gap:2px}.hero-proof strong{font-size:16px}.hero-proof span{color:#6b8293;font-size:11px}.hero-proof i{height:30px;width:1px;background:#cadde5}.hero-art{min-height:510px;position:relative;display:flex;align-items:center;justify-content:center}.hero-art:before{content:"";position:absolute;width:110%;aspect-ratio:1;background:radial-gradient(circle,#79dce651 0,transparent 67%)}.hero-art img{position:relative;width:100%;height:500px;object-fit:cover;object-position:center;border-radius:34px;box-shadow:0 30px 70px #1a67962b}.glass-stat{position:absolute;z-index:2;-webkit-backdrop-filter:blur(15px);backdrop-filter:blur(15px);background:#ffffffbd;border:1px solid #fff;box-shadow:0 15px 32px #173c5620;border-radius:18px}.stat-income{left:-20px;bottom:36px;padding:14px 20px;display:grid;grid-gap:3px;gap:3px}.stat-income small,.stat-income span{color:#648096;font-size:11px}.stat-income strong{font-size:27px;color:#0877ac}.stat-income small{color:#168a75}.stat-notify{right:-14px;top:55px;display:flex;gap:9px;align-items:center;padding:12px 15px}.stat-notify p{margin:0;font-size:12px;color:#537086;line-height:1.5}.stat-notify b{color:#173e5b}.mini-check{display:grid;place-items:center;width:27px;height:27px;background:#daf5ee;color:#0b9a73;border-radius:9px}.orbit{position:absolute;border:1px solid #3bcbd630;border-radius:50%}.o1{width:115%;height:115%}.o2{width:128%;height:128%;border-style:dashed}.trust-strip{border-block:1px solid #dbeaf0;background:#fff;padding:19px 0}.trust-strip>div{display:flex;justify-content:space-between;align-items:center;gap:20px}.trust-strip p{margin:0;color:#547084;font-size:13px}.trust-metrics{display:flex;gap:12px;color:#1f5473;font-size:12px;font-weight:700}.trust-metrics b{color:#62c7ce}.features-section{padding:115px 0}.section-intro{display:flex;justify-content:space-between;align-items:flex-end;gap:30px;margin:16px 0 38px}.flow-section h2,.section-intro h2{font-size:42px;letter-spacing:-.045em;line-height:1.28;margin:0}.flow-section p,.section-intro p{max-width:410px;color:#607a8d;line-height:2;margin:0}.feature-grid{display:grid;grid-template-columns:repeat(3,1fr);grid-gap:17px;gap:17px}.feature-card{background:#fff;border:1px solid #e1edf1;border-radius:20px;padding:27px;min-height:244px;transition:transform .25s,box-shadow .25s;position:relative;overflow:hidden}.feature-card:hover{transform:translateY(-6px);box-shadow:0 22px 40px #14466113}.feature-icon{width:45px;height:45px;display:grid;place-items:center;border-radius:14px;background:linear-gradient(135deg,#e4f7f6,#e8f1ff);color:#0878a9;font-size:22px}.feature-card h3{margin:23px 0 8px;font-size:17px}.feature-card p{color:#658094;margin:0;font-size:13px;line-height:1.9}.feature-arrow{position:absolute;left:25px;bottom:20px;font-size:21px;color:#1598b2}.flow-section{background:var(--navy);color:#fff;padding:105px 0}.flow-grid{display:grid;grid-template-columns:.9fr 1.1fr;grid-gap:120px;gap:120px;align-items:center}.flow-section .section-kicker{color:#74dce0}.flow-section h2{margin:15px 0}.flow-section p{color:#acc3d3}.text-link{display:inline-block;color:#7ce2df;font-weight:800;margin-top:28px}.steps{display:grid;grid-gap:12px;gap:12px}.step{display:flex;gap:19px;align-items:flex-start;padding:21px;background:#ffffff0b;border:1px solid #ffffff16;border-radius:16px}.step>span{color:#80dedc;font-size:22px;font-weight:900}.step h3{margin:0 0 4px;font-size:16px}.step p{margin:0;font-size:13px;line-height:1.7}.statement-section{padding:105px 0}.statement-glass{position:relative;overflow:hidden;background:linear-gradient(125deg,#dff8f5,#e5f1ff 57%,#f8edcf);min-height:390px;padding:68px;border-radius:30px}.statement-glass:after{content:"";position:absolute;left:-75px;top:-95px;width:280px;height:280px;border:42px solid #ffffff6e;border-radius:50%}.statement-glass>span{color:#0b91a4;font-size:13px;font-weight:800}.statement-glass h2{position:relative;z-index:1;font-size:40px;letter-spacing:-.05em;line-height:1.3;margin:13px 0}.statement-glass p{color:#577284;max-width:500px;line-height:2}.marketing-cta.light{background:#fff;color:#095683;box-shadow:none;margin-top:18px}.marketing-footer{border-top:1px solid #d8e7ed;padding:30px 0 45px;display:flex;align-items:center;justify-content:space-between;gap:22px}.marketing-footer p,.marketing-footer>a:last-child{color:#668093;font-size:12px}.marketing-footer>a:last-child{font-weight:800;color:#0a6e9f}@media(max-width:800px){.container-wide{width:min(100% - 32px,1180px)}.marketing-links{display:none}.marketing-nav{height:70px}.hero-section{grid-template-columns:1fr;padding-top:40px}.hero-copy h1{font-size:48px}.hero-art{min-height:360px;order:-1}.hero-art img{height:350px;border-radius:23px}.stat-income{left:-4px;bottom:15px}.stat-notify{right:-4px;top:20px}.marketing-footer,.section-intro,.trust-strip>div{align-items:flex-start;flex-direction:column}.trust-metrics{flex-wrap:wrap}.feature-grid,.flow-grid{grid-template-columns:1fr}.flow-grid{gap:45px}.features-section,.statement-section{padding:75px 0}.flow-section{padding:70px 0}.flow-section h2,.section-intro h2,.statement-glass h2{font-size:33px}.statement-glass{padding:36px 26px;min-height:0}.hero-proof{margin-top:30px;gap:10px}.marketing-nav-actions .marketing-login{display:none}}.app-shell{background:#eef6fa;grid-template-columns:278px 1fr}.sidebar{background:linear-gradient(180deg,#092c4d,#071d37);border:0;padding:22px 12px;box-shadow:12px 0 42px #08243b12}.sidebar-brand{padding:10px 13px 25px;border-bottom:1px solid #ffffff14;margin-bottom:10px}.sidebar-brand h1{color:#fff;font-size:21px}.sidebar-brand .sub{color:#9db6cc}.sidebar-section{padding:17px 13px 7px;color:#7f9db8;font-size:10px}.nav-item{border:0;border-radius:11px;margin:2px 0;padding:10px 13px;color:#a7c0d4}.nav-item:hover{background:#ffffff0e;color:#fff}.nav-item.active{background:linear-gradient(90deg,#18b5bf,#1683ba);color:#fff;box-shadow:0 10px 20px #00000021}.sidebar-footer{border-top:1px solid #ffffff14;padding:16px 13px 4px;color:#fff}.sidebar-footer>div>div:last-child{color:#9db6cc!important}.avatar{background:linear-gradient(135deg,#3bd3d4,#1475b5);box-shadow:0 7px 18px #00000028}.app-main{max-width:1390px;padding:38px 44px 70px;margin:0}.dashboard-page{--surface:#fff;--border:#dceaf0;--ink:#12324e;--ink-2:#58738a;--ink-3:#7791a5;--bg:#eef6fa;--accent:#0e86b7;--accent-soft:#e1f5fa;--success:#16a787;--danger:#ec656e;--gold:#e8ac48}.dashboard-page .page-header{border:0;padding:28px 30px;margin-bottom:22px;border-radius:22px;background:radial-gradient(circle at 92% 18%,#54d6d346,transparent 28%),linear-gradient(120deg,#0b426e,#0a2f53);box-shadow:0 18px 38px #0a355826}.dashboard-page .page-eyebrow{color:#73e6dc}.dashboard-page .page-title{color:#fff;font-size:30px}.dashboard-page .page-subtitle{color:#b8d3e2}.dashboard-page .stat{border:1px solid #e1edf2;border-radius:18px;padding:21px;box-shadow:0 10px 24px #0b38570d;overflow:hidden;transition:transform .2s,box-shadow .2s}.dashboard-page .stat:hover{transform:translateY(-4px);box-shadow:0 18px 32px #0b38571a}.dashboard-page .stat:before{width:5px;border-radius:8px;background:#30c4c2}.dashboard-page .stat:nth-child(2):before{background:#31a8d2}.dashboard-page .stat:nth-child(3):before{background:#e8ac48}.dashboard-page .stat:nth-child(4):before{background:#9386dd}.dashboard-page .stat-label{color:#7a94a7;font-size:11px}.dashboard-page .stat-value{color:#123b5b;font-size:25px}.dashboard-page .stat-sub{color:#8ba1b1}.dashboard-page .stat-danger:before{background:#ed6e75}.dashboard-page .stat-danger .stat-value{color:#d95560}.dashboard-page .stat-success:before{background:#20b991}.dashboard-page .stat-success .stat-value{color:#169676}.dashboard-page .card,.dashboard-page .table-wrap{border-color:#dceaf0;border-radius:19px;box-shadow:0 10px 28px #0c3e5b0b}.dashboard-page .card{padding:24px}.dashboard-page .section-title{color:#143c5b}.dashboard-page .section-desc,.dashboard-page .text-muted{color:#7891a4}.dashboard-page .btn-ghost{border-color:#cfe1e9;color:#245572;border-radius:10px}.dashboard-page .btn-ghost:hover{background:#e9f7f8;border-color:#62cbc8}.dashboard-page .btn-accent{background:linear-gradient(135deg,#15aeb5,#127cb3);border-radius:10px;box-shadow:0 8px 18px #138da52b}.dashboard-page .badge{border:0;font-weight:700}.dashboard-page .badge-success{background:#ddf8ef;color:#14936f}.dashboard-page .badge-danger{background:#fff0f1;color:#d45b64}.dashboard-page .badge-info{background:#e5f4fc;color:#207eab}.dashboard-page .table th{background:#f4f9fb;color:#7893a6}.dashboard-page .table td{border-color:#e8f0f4}.dashboard-page .table tr:hover td{background:#f6fbfd}.dashboard-insight,.resident-welcome{min-height:132px;border-radius:19px;padding:24px 29px;display:flex;align-items:center;justify-content:space-between;overflow:hidden;position:relative}.dashboard-insight{color:#fff;background:linear-gradient(110deg,#13939d,#1578ad);box-shadow:0 16px 28px #148aa22d}.dashboard-insight:after,.resident-welcome:after{content:"";position:absolute;width:220px;height:220px;border:1px solid #ffffff30;border-radius:50%;left:-70px;bottom:-145px}.dashboard-insight>div:first-child,.resident-welcome>div:first-child{display:grid;grid-gap:5px;gap:5px;position:relative;z-index:1}.insight-overline{font-size:11px;color:#c7fcf7}.dashboard-insight strong,.resident-welcome strong{font-size:18px}.dashboard-insight p,.resident-welcome p{margin:0;font-size:13px;color:#d5f6f6}.insight-ring{width:80px;height:80px;border-radius:50%;border:7px solid #ffffff2c;border-left-color:#d8ffff;display:grid!important;place-content:center;text-align:center;flex-shrink:0}.insight-ring b{font-size:17px}.insight-ring span{font-size:10px;color:#d8ffff}.resident-welcome{color:#143e5c;background:linear-gradient(110deg,#d8f8f5,#e7f0ff);border:1px solid #cae8ed}.resident-welcome p{color:#638096}.resident-welcome>div:first-child>span{color:#118e9e;font-size:11px;font-weight:800}.welcome-orb{width:72px;height:72px;display:grid;place-items:center;border-radius:24px;background:linear-gradient(135deg,#20c5c2,#2c8dc7);color:#fff;font-size:28px;box-shadow:0 12px 22px #1b9ab03d}.platform-strip{background:#fff;border:1px solid #dceaf0;border-radius:16px;padding:16px 20px;display:flex;align-items:center;gap:18px;box-shadow:0 8px 20px #0b385709}.platform-strip p{margin:0;color:#7891a4;flex:1 1;font-size:13px}.platform-strip>a{color:#0c87ad;font-size:13px;font-weight:800}.platform-live{background:#e4f9f0;color:#128f6f;border-radius:999px;padding:6px 10px;font-size:11px;font-weight:800}.platform-live i{display:inline-block;width:6px;height:6px;border-radius:50%;background:#16b889;margin-left:5px;box-shadow:0 0 0 4px #16b88922}@media(max-width:900px){.app-shell{grid-template-columns:1fr}.sidebar{padding:12px;position:static}.sidebar nav{display:flex;overflow:auto;gap:4px}.sidebar-section{display:none}.nav-item{white-space:nowrap}.sidebar-footer{display:none}.app-main{padding:22px 16px 45px}.dashboard-page .page-header{padding:22px}.dashboard-page .page-title{font-size:25px}.platform-strip{align-items:flex-start;flex-wrap:wrap}}.app-content{--bg:#f0f7fa;--bg-2:#e5f1f6;--surface:#fff;--surface-2:#f6fafc;--ink:#143852;--ink-2:#527087;--ink-3:#7894a7;--ink-4:#a9bfca;--border:#d9e8ee;--border-strong:#b7d1dc;--accent:#0b91b3;--accent-2:#19bdc1;--accent-soft:#e4f8f7;--success:#159a78;--success-soft:#dff7ef;--danger:#dd5c68;--danger-soft:#fff0f1;background:radial-gradient(circle at 78% 0,#d5f7f44d,transparent 25%),#f0f7fa;min-height:100vh}.app-content:not(.dashboard-page) .page-header{padding:0 0 23px;margin-bottom:27px;border-bottom:1px solid #d7e8ef}.app-content:not(.dashboard-page) .page-title{color:#123a57;font-size:29px}.app-content:not(.dashboard-page) .page-eyebrow{color:#078eaa}.app-content:not(.dashboard-page) .page-subtitle{color:#7895a8}.app-content .card,.app-content .card-flat{background:#fff;border-color:#d9e8ee;border-radius:18px;box-shadow:0 10px 26px rgba(13,55,78,.055)}.app-content .card-flat{background:#f7fbfd}.app-content .table-wrap{border:1px solid #d7e7ed;border-radius:18px;box-shadow:0 10px 25px rgba(13,55,78,.05);background:#fff}.app-content .table th{background:linear-gradient(90deg,#eef8fa,#f7fbfc);color:#648397;border-bottom:1px solid #d9e8ee;padding:15px 19px;font-size:11px}.app-content .table td{border-bottom-color:#e5eff3;padding:16px 19px;color:#244860}.app-content .table tr:hover td{background:#f5fbfd}.app-content .btn{border-radius:11px;font-weight:750}.app-content .btn-accent{background:linear-gradient(135deg,#14b2b8,#0e7fb5);box-shadow:0 8px 18px #138da52b}.app-content .btn-primary{background:#123c5a}.app-content .btn-ghost{color:#245a76;border-color:#c7dce5;background:#fff}.app-content .btn-ghost:hover:not(:disabled){color:#057e98;border-color:#75cbc9;background:#ebfbfa}.app-content .btn-danger{color:#d85462;border-color:#f0b6bd}.app-content .input{background:#fbfdfe;border-color:#d5e5eb;border-radius:11px;min-height:44px}.app-content .input:focus{border-color:#17aeb5;box-shadow:0 0 0 4px #22b7bd1c}.app-content .field-label{color:#416278}.app-content .field-hint{color:#7f9aaa}.app-content .modal{border:1px solid #d5e8ee;border-radius:20px;box-shadow:0 28px 75px #0a315346}.app-content .modal-backdrop{background:#09283a78}.app-content .badge{border:0;border-radius:999px;padding:5px 10px;font-size:11px}.app-content .badge-neutral{color:#557186;background:#edf4f7}.app-content .badge-success{color:#118466;background:#dff8ee}.app-content .badge-danger{color:#d7505e;background:#fff0f1}.app-content .badge-warn{color:#9a6811;background:#fff4da}.app-content .empty{color:#7691a2}.app-content .empty-icon{color:#118da7;background:#e8f8fa}.app-content .section-head{margin-bottom:20px}.app-content .section-title{color:#173f5c;font-size:16px}.app-content .section-desc{color:#7e98a9}.app-content .text-muted{color:#7793a5}.app-content .text-success{color:#149678}.app-content .text-danger{color:#d75260}.app-content .grid-2,.app-content .grid-3,.app-content .grid-4{gap:19px}.app-content .stack{gap:13px}.app-content .row-between[style*=background],.app-content .row[style*=background]{border:1px solid #e2eef2;background:#f8fcfd!important;border-radius:13px!important}.app-content [style*=borderRight]{border-right-color:#18b9b8!important}.app-content [style*="background: var(--accent-soft)"]{background:#e7f9f8!important;border-color:#a7e5df!important}.role-resident{background:radial-gradient(circle at 12% 0,#fff0d845,transparent 26%),#f0f7fa}.role-resident:not(.dashboard-page) .page-eyebrow{color:#d49632}.role-super_admin{background:radial-gradient(circle at 88% 0,#e9e2ff70,transparent 27%),#f0f7fa}.role-super_admin:not(.dashboard-page) .page-eyebrow{color:#6f61bd}.role-super_admin .btn-accent{background:linear-gradient(135deg,#7769ce,#3d86bd)}.role-super_admin .nav-item.active{background:linear-gradient(90deg,#7568c9,#3d8dc0)}.divider-y{width:1px;align-self:stretch;background:var(--border)}.marketing-brand img{width:39px;height:39px;object-fit:contain;filter:drop-shadow(0 6px 10px #0b74a330)}.hero-stage{min-height:690px;display:grid;grid-template-columns:.88fr 1.12fr;align-items:center;grid-gap:34px;gap:34px;padding:36px 0 35px;position:relative;direction:rtl}.hero-stage .hero-copy{animation:marketing-enter .65s cubic-bezier(.2,.8,.2,1) both}.hero-visual{min-height:520px;isolation:isolate;overflow:hidden;border-radius:34px;position:relative;box-shadow:0 32px 75px #0b466330;animation:marketing-reveal .9s cubic-bezier(.2,.8,.2,1) both;background:#d9edf1}.hero-visual>img{width:100%;height:520px;display:block;object-fit:cover;object-position:center;transform:scale(1.02);animation:hero-zoom 6.5s ease-out both}.hero-visual-shade{position:absolute;inset:0;z-index:1;background:linear-gradient(115deg,#062f56a1,#062f5625 48%,transparent 74%),linear-gradient(0deg,#062b4c61,transparent 38%)}.hero-stage .glass-stat{z-index:3}.stat-primary{left:20px;bottom:22px;padding:15px 18px;display:grid;min-width:175px;grid-gap:3px;gap:3px}.stat-primary small,.stat-primary span{color:#617e93;font-size:10px}.stat-primary strong{font-size:27px;line-height:1.1;color:#087eab}.stat-primary small{color:#0c8b72}.hero-lines{inset:auto -4% 9% auto;width:58%;height:38%;border-left:1px solid #ffffff47;border-top:1px solid #ffffff47;border-radius:80% 0 0 0}.hero-lines,.hero-orb{position:absolute;z-index:2}.hero-orb{border:1px solid #ffffff6e;border-radius:50%}.orb-one{width:115px;height:115px;top:20px;left:25px}.orb-two{width:52px;height:52px;bottom:125px;right:27px;border-color:#67e4dc;box-shadow:0 0 0 10px #67e4dc1c}.slider-controls{grid-column:1/-1;display:flex;align-items:stretch;gap:0;height:57px;border-top:1px solid #d7e9ee;direction:rtl}.slider-progress{width:34px;position:relative;overflow:hidden}.slider-progress:before{content:"";position:absolute;top:27px;right:0;height:2px;width:100%;background:#d7e7ec}.slider-progress span{position:absolute;z-index:1;top:27px;right:0;height:2px;background:#16b6bb;transition:width .55s ease}.slider-controls button{border:0;background:transparent;display:flex;align-items:center;gap:9px;padding:0 20px;color:#8aa0af;cursor:pointer;border-right:1px solid #dce9ee;font-family:inherit;text-align:right;transition:.2s}.slider-controls button.active,.slider-controls button:hover{color:#0b668e;background:#eaf8f8}.slider-controls button b{font-size:12px}.slider-controls button small{font-size:11px;font-weight:700}.value-ribbon{background:#092f51;color:#fff;padding:18px 0}.value-ribbon>div{display:flex;align-items:center;justify-content:space-between;gap:26px}.value-ribbon span{color:#91e1dd;font-size:12px;font-weight:800}.value-ribbon>div>div{display:flex;align-items:center;gap:16px}.value-ribbon b{font-size:12px;font-weight:700}.value-ribbon i{display:block;width:5px;height:5px;border-radius:50%;background:#e1b252}.platform-section{padding:132px 0 115px}.split-heading{display:flex;justify-content:space-between;align-items:flex-end;gap:45px;margin-bottom:54px}.experience-copy h2,.journey-top h2,.section-heading h2{font-size:clamp(35px,4.1vw,56px);line-height:1.22;letter-spacing:-.06em;margin:12px 0 0}.experience-copy h2 em,.journey-top h2 em,.section-heading h2 em{color:#0c91ae;font-style:normal}.split-heading>p{margin:0;max-width:425px;color:#688297;font-size:15px;line-height:2.05}.capability-stack{display:grid;grid-gap:20px;gap:20px}.capability-card{min-height:362px;padding:42px 48px;display:grid;grid-template-columns:1fr 1fr;align-items:center;grid-gap:55px;gap:55px;border:1px solid #d9eaf0;border-radius:26px;overflow:hidden;position:relative;background:#fff;box-shadow:0 16px 40px #0c3e5710}.capability-card:nth-child(2n) .capability-copy{order:2}.capability-card:after{content:"";position:absolute;width:290px;height:290px;border-radius:50%;opacity:.55;filter:blur(2px)}.capability-card.finance:after{left:-110px;bottom:-170px;background:#c8f6f1}.capability-card.connect:after{right:-100px;bottom:-160px;background:#d9e9ff}.capability-card.ops:after{left:-90px;top:-150px;background:#fff0cb}.capability-copy{position:relative;z-index:2}.capability-number{display:block;color:#15aeb5;font-size:12px;font-weight:900;letter-spacing:.12em;margin-bottom:12px}.capability-copy h3{margin:0 0 11px;font-size:27px;letter-spacing:-.045em}.capability-copy>p{max-width:390px;color:#667f92;margin:0;line-height:1.95;font-size:14px}.capability-copy ul{list-style:none;margin:18px 0 6px;padding:0;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));grid-gap:9px 15px;gap:9px 15px;color:#315970;font-size:12px;font-weight:700}.capability-copy li{display:flex;gap:7px;align-items:center}.capability-copy li span{color:#12a889;background:#dff8ef;display:grid;place-items:center;width:17px;height:17px;border-radius:50%;font-size:10px}.capability-copy .text-link{margin-top:9px;font-size:13px}.capability-visual{position:relative;z-index:1;min-height:260px}.mini-window{position:absolute;width:min(100%,390px);height:237px;padding:20px 22px;border-radius:20px;background:linear-gradient(140deg,#0c385c,#0d6e8c);color:#fff;box-shadow:0 25px 40px #0637533d;transform:rotate(-3deg)}.window-label{display:flex;justify-content:space-between;color:#d5edf2;font-size:11px}.chart-bars{height:126px;display:flex;gap:11px;align-items:flex-end;padding:18px 4px 8px;border-bottom:1px solid #ffffff28}.chart-bars i{flex:1 1;max-width:25px;border-radius:6px 6px 2px 2px;background:linear-gradient(180deg,#5ee0db,#178fbd)}.chart-bars i:nth-child(3n){background:linear-gradient(180deg,#ffe4a3,#e5ae45)}.chart-footer{display:flex;gap:11px;align-items:center;padding-top:14px;font-size:11px}.chart-footer b{font-size:22px}.chart-footer em{color:#73ebcf;font-style:normal}.mini-receipt{z-index:2;position:absolute;left:-5px;bottom:6px;display:grid;grid-gap:4px;gap:4px;padding:15px 17px;border:1px solid #fff;border-radius:14px;background:#ffffffdc;box-shadow:0 14px 26px #10384c22}.mini-receipt small,.mini-receipt span{font-size:10px;color:#6e899b}.mini-receipt b{color:#0c916f;font-size:13px}.connect-visual{display:grid;place-items:center}.signal-ring{width:175px;height:175px;border-radius:50%;display:grid;place-content:center;text-align:center;background:conic-gradient(#2bc8c9 0 353deg,#d9edf4 353deg);box-shadow:inset 0 0 0 17px #fff,0 16px 36px #1464871a}.signal-ring>span{color:#0b688f;font-size:37px;font-weight:900}.signal-ring>span span{font-size:16px}.signal-ring small{color:#7891a2;font-size:10px}.message-bubble{position:absolute;display:flex;align-items:center;gap:9px;padding:13px 15px;border:1px solid #dbeaf0;background:#fffffff0;box-shadow:0 13px 27px #0c43541c;border-radius:15px}.message-bubble.one{right:0;top:31px}.message-bubble.two{left:-3px;bottom:29px}.message-bubble i{width:26px;height:26px;display:grid;place-items:center;border-radius:9px;background:#dff8f4;color:#139b84;font-style:normal;font-size:12px}.message-bubble.two i{background:#edf1ff;color:#5266bd}.message-bubble p{display:grid;grid-gap:2px;gap:2px;margin:0}.message-bubble b{color:#22495e;font-size:11px}.message-bubble small{color:#7590a1;font-size:10px}.ops-visual{display:grid;place-items:center}.task-panel{position:relative;width:310px;padding:22px;background:#fff;border:1px solid #d8e8ed;border-radius:19px;box-shadow:0 18px 36px #103c5019}.task-panel>span{color:#0f92ac;font-size:11px;font-weight:800}.task-panel h4{margin:9px 0 18px;font-size:16px}.task-status{display:grid;grid-template-columns:auto 1fr;grid-column-gap:8px;column-gap:8px;align-items:center;padding-top:12px;border-top:1px solid #e7eff2}.task-status i{width:9px;height:9px;background:#e1b24f;border-radius:50%;box-shadow:0 0 0 5px #e1b24f25}.task-status b{color:#946b1a;font-size:11px}.task-status small{grid-column:2;color:#7b94a3;font-size:9px;margin-top:3px}.task-steps{display:flex;align-items:center;position:absolute;bottom:15px;left:-12px;padding:10px;background:#0b3c60;border-radius:14px;box-shadow:0 12px 24px #092f4b3d}.task-steps span{width:23px;height:23px;display:grid;place-items:center;border-radius:50%;color:#fff;font-size:10px;background:#ffffff25}.task-steps .done{background:#21bca8}.task-steps i{width:25px;height:1px;background:#ffffff4c}.experience-section{background:linear-gradient(125deg,#092e50,#0a5677);color:#fff;padding:115px 0;position:relative;overflow:hidden}.experience-section:before{content:"";position:absolute;width:620px;height:620px;left:-230px;top:-330px;border:1px solid #a0f9f133;border-radius:50%;box-shadow:0 0 0 55px #a0f9f108,0 0 0 115px #a0f9f105}.experience-grid{display:grid;grid-template-columns:.95fr 1.05fr;grid-gap:120px;gap:120px;align-items:center}.experience-visual{min-height:445px;position:relative;display:grid;place-items:center}.phone-frame{width:278px;padding:14px;border:7px solid #d1edf3;border-radius:35px;background:linear-gradient(160deg,#eefbfc,#cfeaf1);color:#123e58;box-shadow:0 26px 47px #001c3247;transform:rotate(5deg)}.phone-top{display:flex;justify-content:space-between;font-size:9px;padding:0 5px 12px}.phone-top i{width:43px;height:7px;border-radius:99px;background:#173d56}.phone-greeting{padding:16px 8px;font-size:16px;line-height:1.6}.phone-balance{padding:16px;display:grid;grid-gap:7px;gap:7px;border-radius:17px;color:#fff;background:linear-gradient(135deg,#119aaa,#11629a)}.phone-balance span{font-size:10px;color:#d4ffff}.phone-balance strong{font-size:17px}.phone-balance small{font-size:9px;font-weight:500}.phone-balance button{font:inherit;font-size:10px;font-weight:800;color:#075171;padding:9px;background:#fff;border:0;border-radius:9px}.phone-row{display:flex;gap:9px;margin-top:11px;padding:11px 6px;background:#ffffffa8;border-radius:10px}.phone-row>span{width:26px;height:26px;display:grid;place-items:center;border-radius:8px;background:#dff8f5;color:#119478;font-size:12px}.phone-row div{display:grid;grid-gap:2px;gap:2px}.phone-row b{font-size:10px}.phone-row small{font-size:8px;color:#6a879a}.floating-note{position:absolute;z-index:2;right:0;bottom:62px;padding:15px 20px;border-radius:16px;background:#ffffffde;color:#426176;font-size:11px;line-height:1.7;box-shadow:0 18px 32px #001d3344;transform:rotate(-5deg)}.floating-note b{color:#0d7398}.experience-copy{position:relative;z-index:1}.experience-copy .section-kicker{color:#79e5de}.experience-copy h2{margin:14px 0;color:#fff}.experience-copy h2 em{color:#7fe8de}.experience-copy>p{color:#b8d4df;line-height:2;max-width:465px}.experience-checks{margin-top:28px;display:grid;grid-gap:13px;gap:13px}.experience-checks>div{display:flex;align-items:center;gap:14px}.experience-checks>div>span{width:29px;height:29px;display:grid;place-items:center;color:#80e9df;border:1px solid #7ce6db58;border-radius:9px;font-size:12px;font-weight:900}.experience-checks p{margin:0;color:#b8d4df;font-size:13px}.experience-checks b{color:#fff;margin-left:7px}.journey-section{padding:125px 0 95px}.journey-top{display:flex;align-items:flex-end;justify-content:space-between;gap:40px}.journey-top>p{max-width:385px;margin:0 0 5px;color:#6c8799;line-height:2;font-size:14px}.journey-line{margin:70px 0 46px;display:grid;grid-template-columns:repeat(3,1fr);grid-gap:42px;gap:42px;position:relative}.journey-line:before{content:"";position:absolute;top:25px;right:14%;left:14%;height:1px;background:linear-gradient(90deg,#8ededa,#bfdce9,#8ededa)}.journey-line article{position:relative;z-index:1}.journey-line article>span{color:#0e92aa;font-size:12px;font-weight:900}.journey-dot{margin:10px 0 23px;width:18px;height:18px;border:5px solid #fff;border-radius:50%;background:#16b6b7;box-shadow:0 0 0 1px #77d6d3,0 0 0 8px #e9f9f8}.journey-line h3{margin:0 0 9px;color:#123d58;font-size:18px}.journey-line p{margin:0;max-width:280px;color:#70899a;font-size:13px;line-height:1.9}.journey-cta{display:flex;align-items:center;justify-content:space-between;gap:25px;border-radius:19px;padding:21px 26px;background:linear-gradient(100deg,#e3f8f7,#edf5ff);border:1px solid #d1e9ec;color:#1b4a64;font-size:14px;font-weight:800}.statement-glass>img{position:absolute;width:260px;height:260px;object-fit:contain;left:40px;bottom:-55px;opacity:.22;filter:drop-shadow(0 18px 20px #07436d3d)}.statement-glass>:not(img){position:relative;z-index:1}@keyframes marketing-enter{0%{opacity:0;transform:translateY(18px)}to{opacity:1;transform:translateY(0)}}@keyframes marketing-reveal{0%{opacity:0;transform:scale(.96)}to{opacity:1;transform:scale(1)}}@keyframes hero-zoom{0%{transform:scale(1.08)}to{transform:scale(1.02)}}@media(max-width:800px){.marketing-brand img{width:34px;height:34px}.hero-stage{grid-template-columns:1fr;min-height:0;padding:24px 0}.hero-visual{min-height:350px;order:-1;border-radius:23px}.hero-visual>img{height:350px}.hero-stage .stat-primary{left:12px;bottom:13px}.hero-stage .stat-notify{right:10px;top:16px}.slider-controls{grid-column:auto;height:52px}.slider-controls button{padding:0 10px}.slider-controls button small{display:none}.journey-cta,.journey-top,.value-ribbon>div{align-items:flex-start;flex-direction:column}.value-ribbon>div>div{gap:9px;flex-wrap:wrap}.journey-section,.platform-section{padding:75px 0}.split-heading{display:block;margin-bottom:35px}.split-heading>p{margin-top:20px}.capability-card{padding:28px 24px;grid-template-columns:1fr;gap:25px;min-height:0}.capability-card:nth-child(2n) .capability-copy{order:0}.capability-copy h3{font-size:23px}.capability-copy ul{grid-template-columns:1fr}.capability-visual{min-height:245px}.experience-section{padding:76px 0}.experience-grid{grid-template-columns:1fr;gap:42px}.experience-visual{min-height:390px;order:2}.floating-note{right:5px;bottom:20px}.journey-line{grid-template-columns:1fr;gap:29px;margin:45px 0}.journey-line:before{right:8px;left:auto;top:28px;width:1px;height:calc(100% - 55px)}.journey-line article{padding-right:39px}.journey-dot{position:absolute;right:0;top:18px;margin:0}.journey-cta{padding:21px}.statement-glass>img{width:170px;height:170px;left:-20px;bottom:-35px}.marketing-footer .marketing-brand img{width:34px;height:34px}}.marketing-footer{position:relative;overflow:hidden;margin-top:0;padding:0;border:0;background:linear-gradient(130deg,#061d37,#082f50 54%,#07516b);color:#fff}.footer-content{position:relative;z-index:1}.footer-glow{position:absolute;border-radius:50%;pointer-events:none}.footer-glow-one{width:570px;height:570px;top:-420px;left:-160px;background:radial-gradient(circle,#46dfd85c 0,#46dfd80b 52%,transparent 70%)}.footer-glow-two{width:500px;height:500px;bottom:-370px;right:-140px;border:1px solid #8eece640;box-shadow:0 0 0 52px #8eece609,0 0 0 115px #8eece605}.footer-topline{min-height:225px;display:flex;align-items:center;justify-content:space-between;gap:40px;border-bottom:1px solid #ffffff1c}.footer-overline{color:#75e5de;font-size:11px;letter-spacing:.07em;font-weight:900}.footer-topline h2{font-size:clamp(31px,3.5vw,46px);line-height:1.15;letter-spacing:-.06em;margin:12px 0 0}.footer-topline h2 em{color:#77e6df;font-style:normal}.footer-start{display:inline-flex;align-items:center;gap:18px;flex:none;padding:14px 18px;border:1px solid #7be4db70;border-radius:14px;background:#ffffff0f;color:#fff;font-size:13px;font-weight:900;transition:.2s}.footer-start:hover{background:#72dfd927;transform:translateY(-2px)}.footer-start span{color:#86eee7;font-size:18px}.footer-grid{display:grid;grid-template-columns:1.65fr .72fr .72fr 1.1fr;grid-gap:46px;gap:46px;padding:58px 0 48px}.footer-brand-column .marketing-brand{color:#fff;font-size:23px}.footer-brand-column .marketing-brand img{width:48px;height:48px}.footer-brand-column>p{max-width:340px;color:#aac2d1;font-size:13px;line-height:2;margin:17px 0 22px}.footer-status{display:flex;align-items:center;gap:7px;color:#8eacbd;font-size:10px}.footer-status i{width:7px;height:7px;border-radius:50%;background:#4bdec1;box-shadow:0 0 0 5px #4bdec122}.footer-status b{color:#62d9d0}.footer-links{display:grid;align-content:start;grid-gap:12px;gap:12px}.footer-contact h3,.footer-links h3{color:#fff;font-size:13px;margin:0 0 7px}.footer-links a{color:#aac2d1;font-size:12px;transition:color .2s,transform .2s}.footer-links a:hover{color:#79e9e1;transform:translateX(-3px)}.footer-contact{align-self:start;padding:20px;border:1px solid #ffffff1e;border-radius:17px;background:linear-gradient(140deg,#ffffff12,#ffffff06)}.footer-contact p{color:#b5cfdb;font-size:12px;line-height:1.9;margin:11px 0 18px}.footer-login{display:flex;justify-content:space-between;align-items:center;color:#7ee8df;font-size:12px;font-weight:900}.footer-login span{width:23px;height:23px;display:grid;place-items:center;color:#073350;background:#7ee8df;border-radius:7px;font-size:15px}.footer-bottom{min-height:70px;display:flex;align-items:center;justify-content:space-between;gap:20px;border-top:1px solid #ffffff18;color:#7d9aaf;font-size:10px}.footer-bottom>div{display:flex;gap:19px}.footer-bottom a{color:#9bb7c6}.footer-bottom a:hover{color:#7ee8df}@media(max-width:800px){.marketing-footer{margin-top:0}.footer-topline{min-height:0;align-items:flex-start;flex-direction:column;padding:45px 0 35px;gap:24px}.footer-grid{grid-template-columns:1fr 1fr;gap:38px 24px;padding:40px 0}.footer-brand-column{grid-column:1/-1}.footer-brand-column>p{max-width:none}.footer-contact{grid-column:1/-1}.footer-bottom{align-items:flex-start;flex-direction:column;padding:22px 0;gap:12px}.footer-bottom>div{gap:13px;flex-wrap:wrap}.footer-glow-one{left:-300px}.footer-topline h2{font-size:34px}}.login-shell{grid-template-columns:1.07fr .93fr;background:#f3f9fb;direction:rtl}.login-side{isolation:isolate;padding:44px 58px;background:linear-gradient(135deg,#062440,#07496a)}.login-side:before{z-index:-1;top:-100px;left:-100px;width:520px;height:520px;background:radial-gradient(circle,#38d8d25c 0,transparent 67%)}.login-side:after{z-index:-1;right:-150px;bottom:-160px;width:600px;height:600px;background:radial-gradient(circle,#37a7df38 0,transparent 66%)}.login-side-art{position:absolute;inset:0;z-index:-2;opacity:.18}.login-side-art:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,#062440f5,#063759d8)}.login-side-art img{width:100%;height:100%;object-fit:cover}.login-mark{font-size:19px;gap:9px}.login-mark img{width:38px;height:38px;object-fit:contain;filter:drop-shadow(0 7px 12px #050f1d70)}.login-eyebrow{display:flex;align-items:center;gap:8px;color:#80e9df;font-size:11px;font-weight:900;letter-spacing:.07em}.login-eyebrow i{width:8px;height:8px;background:#52dfd4;border-radius:50%;box-shadow:0 0 0 6px #52dfd421}.login-hero h2{margin:17px 0;font-size:clamp(34px,3.25vw,49px);letter-spacing:-.06em}.login-hero h2 em{color:#77e8df;font-style:normal}.login-hero p{color:#bad8e3;line-height:2;max-width:430px}.login-proof{display:flex;gap:16px;margin-top:27px;color:#d9f6f4;font-size:11px;font-weight:700}.login-proof span{display:flex;align-items:center;gap:6px}.login-proof b{width:17px;height:17px;display:grid;place-items:center;background:#48d8c8;color:#08354d;border-radius:50%;font-size:10px}.login-footer{color:#90b8c8}.login-form-wrap{background:radial-gradient(circle at 5% 0,#b8f4f028,transparent 31%),#f5fafc;padding:52px 58px}.login-form{position:relative;max-width:405px;padding:40px;border:1px solid #d8e9ee;border-radius:25px;background:#ffffffdf;box-shadow:0 24px 55px #0a43521a}.login-back{display:inline-block;margin-bottom:28px;color:#4b7389;font-size:11px;font-weight:800}.login-back:hover{color:#078da4}.login-form-badge{display:flex;align-items:center;gap:7px;color:#0b8da5;font-size:11px;font-weight:900;margin-bottom:14px}.login-form-badge img{width:25px;height:25px;object-fit:contain}.login-form h3{color:#103a58;font-size:27px;letter-spacing:-.05em;margin-bottom:10px}.login-form .sub{color:#6f8b9c;line-height:1.9;margin-bottom:27px}.login-form .input{border-color:#cfe2e9;background:#fbfdfe;min-height:48px}.login-form .input:focus{border-color:#18afb4;box-shadow:0 0 0 4px #18afb41c}.login-form .btn-primary{min-height:48px;background:linear-gradient(135deg,#15afb6,#0c679d);border-radius:12px;box-shadow:0 10px 19px #168ca630}.login-form .field-hint{color:#15937f;font-size:11px}.login-form .field-label{color:#315b72}.invite-page{min-height:100vh;display:grid;place-items:center;overflow:hidden;padding:38px 20px;position:relative;direction:rtl;background:radial-gradient(circle at 82% 8%,#b7f3ef77,transparent 26%),linear-gradient(135deg,#eff9fb,#e7f1fa)}.invite-orb{position:absolute;border-radius:50%;pointer-events:none}.invite-orb-one{width:590px;height:590px;top:-390px;right:-160px;border:1px solid #25bdb64d;box-shadow:0 0 0 55px #25bdb611,0 0 0 130px #25bdb609}.invite-orb-two{width:460px;height:460px;bottom:-290px;left:-100px;background:radial-gradient(circle,#6cc7e64a 0,transparent 69%)}.invite-card{width:min(100%,535px);position:relative;z-index:1;padding:37px;border:1px solid #d3e7ed;border-radius:27px;background:#ffffffea;box-shadow:0 27px 65px #0a3f571a}.invite-brand{display:flex;align-items:center;gap:8px;color:#103b59;font-size:18px;font-weight:900}.invite-brand img{width:38px;height:38px;object-fit:contain}.invite-kicker{display:flex;align-items:center;gap:8px;color:#0c91a4;margin-top:34px;font-size:11px;font-weight:900;letter-spacing:.08em}.invite-kicker i{width:8px;height:8px;border-radius:50%;background:#4cddd4;box-shadow:0 0 0 5px #4cddd424}.invite-card h1{margin:14px 0 11px;color:#123b57;font-size:30px;line-height:1.32;letter-spacing:-.055em}.invite-card h1 em{color:#0a90a8;font-style:normal}.invite-description{color:#6f8b9d;line-height:2;font-size:13px;margin:0 0 27px}.invite-details{padding:18px;margin-bottom:16px;border:1px solid #dcebf0;border-radius:15px;background:#f6fbfc}.invite-error{padding:17px;border:1px solid #f0bfc5;border-radius:14px;background:#fff2f3}.invite-card .btn-accent{background:linear-gradient(135deg,#16b2b6,#0d78ae);border-radius:11px;box-shadow:0 10px 19px #168fa82d}@media(max-width:900px){.login-shell{grid-template-columns:1fr}.login-side{min-height:340px;padding:31px 26px}.login-hero{margin-top:45px}.login-hero h2{font-size:31px}.login-form-wrap{padding:30px 18px}.login-form{padding:30px 24px}.login-footer{margin-top:40px}.invite-card{padding:29px 23px}}.aticharge-jalali-picker{width:100%}.aticharge-jalali-picker .rmdp-input{width:100%;height:44px;border:1px solid #d5e5eb;border-radius:11px;padding:0 13px;background:#fbfdfe;color:#20475f;font:inherit;font-size:13px;outline:0;transition:.2s}.aticharge-jalali-picker .rmdp-input:focus{border-color:#17aeb5;box-shadow:0 0 0 4px #22b7bd1c}.rmdp-wrapper{border:1px solid #cfe4e9!important;border-radius:16px!important;box-shadow:0 18px 40px #0a3b5224!important;overflow:hidden;font-family:inherit!important;direction:rtl}.rmdp-header{margin-top:9px!important}.rmdp-header-values{color:#133e59!important;font-weight:800!important}.rmdp-week-day{color:#0c9aa7!important;font-weight:800!important}.rmdp-day span{color:#365d73!important}.rmdp-day.rmdp-today span{background:#e0f7f5!important;color:#078a94!important}.rmdp-day.rmdp-selected span{background:linear-gradient(135deg,#18b7b8,#0f7fb2)!important;box-shadow:0 5px 10px #168fa730!important;color:#fff!important}.rmdp-arrow{border-color:#168ea4!important}.rmdp-time-picker{direction:rtl;border-top:1px solid #dcebed!important;background:#f7fbfc}.rmdp-time-picker input{color:#173e5a!important;border-color:#d2e3e9!important;border-radius:8px!important}