@import "https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@400;500;600;700;800&display=swap";
:root{--bg:#faf8f5;--bg-card:#fff;--bg-bubble-ai:#f3ece5;--bg-bubble-user:#e26d38;--text:#1f1913;--text-muted:#72675c;--accent:#e26d38;--accent-hover:#c65a28;--olive:#4e654e;--olive-light:#4e654e14;--mustard:#dca134;--cream:#f5efeb;--font-display:"DM Serif Display",Georgia,serif;--font-body:"DM Sans",-apple-system,BlinkMacSystemFont,sans-serif;--radius-lg:24px;--radius-md:18px;--radius-sm:12px;--border:#1f19130f;--border-focus:#e26d384d;--shadow-sm:0 2px 8px #1f191308;--shadow-md:0 12px 30px #1f19130d;--shadow-lg:0 24px 60px #1f191314;--transition:all .25s cubic-bezier(.16,1,.3,1)}*{box-sizing:border-box;margin:0;padding:0}html{scroll-behavior:smooth}body{font-family:var(--font-body);background:var(--bg);color:var(--text);-webkit-font-smoothing:antialiased;line-height:1.5;overflow-x:hidden}@keyframes fadeInUp{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}@keyframes pulse{0%,to{opacity:1;transform:scale(1)}50%{opacity:.8;transform:scale(1.05)}}@keyframes messageTyping{0%{opacity:.2}20%{opacity:1}to{opacity:.2}}header{z-index:100;-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);border-bottom:1px solid var(--border);background:#faf8f5cc;position:sticky;top:0}.nav{justify-content:space-between;align-items:center;max-width:1100px;margin:0 auto;padding:1.25rem 2rem;display:flex}.nav-logo{font-family:var(--font-display);color:var(--text);align-items:center;gap:.15rem;font-size:1.5rem;font-weight:600;text-decoration:none;display:flex}.nav-logo:after{content:".";color:var(--accent)}.nav-links{align-items:center;gap:2rem;list-style:none;display:flex}.nav-links a{color:var(--text-muted);transition:var(--transition);font-size:.9rem;font-weight:500;text-decoration:none}.nav-links a:hover{color:var(--accent)}.nav-btn{background:var(--accent);border-radius:50px;padding:.5rem 1.25rem;font-weight:600;color:#fff!important}.nav-btn:hover{background:var(--accent-hover);transform:translateY(-1px)}.hero{grid-template-columns:1.2fr 1fr;align-items:center;gap:4rem;max-width:1100px;min-height:80vh;margin:0 auto;padding:4rem 2rem;display:grid}.hero-left{max-width:580px;animation:.8s cubic-bezier(.16,1,.3,1) fadeInUp}.hero-badge{color:var(--olive);background:var(--olive-light);letter-spacing:.05em;text-transform:uppercase;border-radius:50px;align-items:center;gap:.5rem;margin-bottom:1.5rem;padding:.4rem 1rem;font-size:.78rem;font-weight:700;display:inline-flex}.hero-badge:before{content:"";background:var(--olive);border-radius:50%;width:6px;height:6px;animation:1.5s infinite pulse;display:inline-block}.hero h1{font-family:var(--font-display);color:var(--text);letter-spacing:-.02em;margin-bottom:1.5rem;font-size:clamp(2.6rem,5vw,3.8rem);font-weight:400;line-height:1.1}.hero h1 em{color:var(--accent);font-style:italic;font-weight:400}.hero .subtitle{color:var(--text-muted);margin-bottom:2.5rem;font-size:1.15rem;line-height:1.6}.cta-group{flex-wrap:wrap;align-items:center;gap:1.25rem;display:flex}.cta-button{background:var(--accent);color:#fff;font-family:var(--font-body);transition:var(--transition);cursor:pointer;border:none;border-radius:50px;align-items:center;gap:.6rem;padding:1rem 2rem;font-size:1.05rem;font-weight:600;text-decoration:none;display:inline-flex;box-shadow:0 4px 14px #e26d3833}.cta-button:hover{background:var(--accent-hover);transform:translateY(-2px);box-shadow:0 6px 20px #e26d384d}.cta-secondary{color:var(--text);transition:var(--transition);align-items:center;gap:.25rem;font-size:.95rem;font-weight:600;text-decoration:none;display:inline-flex}.cta-secondary:hover{color:var(--accent);transform:translate(3px)}.cta-note{width:100%;color:var(--text-muted);margin-top:.75rem;font-size:.85rem}.hero-right{justify-content:center;align-items:center;animation:1s cubic-bezier(.16,1,.3,1) .1s both fadeInUp;display:flex}.chat-preview{background:var(--bg-card);border-radius:var(--radius-lg);box-shadow:var(--shadow-lg);border:1px solid var(--border);flex-direction:column;width:100%;max-width:380px;min-height:400px;padding:1.75rem;display:flex;position:relative;overflow:hidden}.chat-header{border-bottom:1px solid var(--border);align-items:center;gap:.75rem;margin-bottom:1.25rem;padding-bottom:1.25rem;display:flex}.chat-avatar{background:var(--mustard);width:42px;height:42px;box-shadow:var(--shadow-sm);border-radius:50%;justify-content:center;align-items:center;font-size:1.25rem;display:flex}.chat-name{color:var(--text);font-size:1rem;font-weight:700}.chat-status{color:var(--olive);align-items:center;gap:.25rem;font-size:.75rem;font-weight:600;display:flex}.chat-status:before{content:"";background:var(--olive);border-radius:50%;width:5px;height:5px;animation:1.2s infinite pulse;display:inline-block}.messages{flex-direction:column;flex:1;gap:.75rem;display:flex}.bubble{border-radius:var(--radius-md);max-width:85%;padding:.8rem 1.1rem;font-size:.9rem;line-height:1.5;animation:.3s cubic-bezier(.16,1,.3,1) both bubbleAppear}.bubble.ai{background:var(--bg-bubble-ai);color:var(--text);transform-origin:0 100%;border-bottom-left-radius:4px;align-self:flex-start}.bubble.user{background:var(--bg-bubble-user);color:#fff;transform-origin:100% 100%;border-bottom-right-radius:4px;align-self:flex-end}.typing-indicator{background:var(--bg-bubble-ai);border-radius:var(--radius-md);border-bottom-left-radius:4px;align-self:flex-start;gap:4px;width:fit-content;margin-top:4px;padding:10px 15px;display:flex}.typing-dot{background:var(--text-muted);border-radius:50%;width:6px;height:6px;animation:1.4s ease-in-out infinite messageTyping}.typing-dot:nth-child(2){animation-delay:.2s}.typing-dot:nth-child(3){animation-delay:.4s}@keyframes bubbleAppear{0%{opacity:0;transform:scale(.9)translateY(10px)}to{opacity:1;transform:scale(1)translateY(0)}}.testimonials-section{text-align:center;max-width:1100px;margin:0 auto;padding:6rem 2rem}.testimonials-section h2{font-family:var(--font-display);margin-bottom:1rem;font-size:clamp(2rem,4vw,2.8rem);font-weight:400}.testimonials-section p.section-desc{color:var(--text-muted);max-width:650px;margin:0 auto 4rem;font-size:1.05rem}.testimonials-grid{grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem;display:grid}.testimonial-card{background:var(--bg-card);border-radius:var(--radius-lg);border:1px solid var(--border);box-shadow:var(--shadow-sm);text-align:left;transition:var(--transition);flex-direction:column;justify-content:space-between;padding:2.5rem;display:flex}.testimonial-card:hover{box-shadow:var(--shadow-md);border-color:#e26d3826;transform:translateY(-4px)}.testimonial-stars{color:var(--mustard);letter-spacing:.1em;margin-bottom:1.25rem;font-size:1.15rem}.testimonial-quote{font-family:var(--font-body);color:var(--text);margin-bottom:2rem;font-size:.98rem;font-style:normal;line-height:1.6}.testimonial-author{align-items:center;gap:.85rem;display:flex}.testimonial-avatar{background:var(--cream);width:44px;height:44px;color:var(--accent);box-shadow:var(--shadow-sm);border-radius:50%;justify-content:center;align-items:center;font-size:.9rem;font-weight:700;display:flex}.testimonial-name{color:var(--text);font-size:.95rem;font-weight:700}.testimonial-meta{color:var(--text-muted);font-size:.8rem}.section-label{color:var(--olive);text-transform:uppercase;letter-spacing:.12em;margin-bottom:.75rem;font-size:.8rem;font-weight:700;display:block}.divider{border:none;border-top:1px solid var(--border);max-width:1100px;margin:0 auto}.how-section{text-align:center;max-width:1100px;margin:0 auto;padding:6rem 2rem}.how-section h2{font-family:var(--font-display);margin-bottom:4rem;font-size:clamp(2rem,4vw,2.8rem);font-weight:400}.steps{grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:2rem;display:grid}.step{background:var(--bg-card);border-radius:var(--radius-lg);box-shadow:var(--shadow-sm);border:1px solid var(--border);text-align:left;transition:var(--transition);flex-direction:column;padding:3rem 2rem;display:flex;position:relative}.step:hover{box-shadow:var(--shadow-md);border-color:#e26d3826;transform:translateY(-5px)}.step-number{background:var(--cream);width:44px;height:44px;color:var(--accent);font-family:var(--font-display);border-radius:50%;justify-content:center;align-items:center;margin-bottom:1.5rem;font-size:1.3rem;font-weight:700;display:inline-flex}.step h3{font-family:var(--font-display);color:var(--text);margin-bottom:.75rem;font-size:1.4rem;font-weight:400}.step p{color:var(--text-muted);font-size:.95rem;line-height:1.6}.niche-section{text-align:center;max-width:800px;margin:0 auto;padding:6rem 2rem}.niche-section h2{font-family:var(--font-display);margin-bottom:3rem;font-size:clamp(2rem,4vw,2.6rem);font-weight:400}.niche-grid{flex-wrap:wrap;justify-content:center;gap:.85rem;display:flex}.niche-pill{background:var(--bg-card);border:1px solid var(--border);color:var(--text);box-shadow:var(--shadow-sm);transition:var(--transition);cursor:pointer;border-radius:50px;padding:.75rem 1.5rem;font-size:.95rem;font-weight:500}.niche-pill:hover{border-color:var(--accent);box-shadow:var(--shadow-md);background:var(--cream);transform:scale(1.03)translateY(-2px)}.neighborhood-section{text-align:center;max-width:1100px;margin:0 auto;padding:6rem 2rem}.neighborhood-section h2{font-family:var(--font-display);margin-bottom:1rem;font-size:clamp(2rem,4vw,2.8rem);font-weight:400}.neighborhood-section p.section-desc{color:var(--text-muted);max-width:650px;margin:0 auto 4rem;font-size:1.05rem}.neighborhood-grid{grid-template-columns:repeat(auto-fit,minmax(320px,1fr));gap:1.75rem;display:grid}.neighborhood-card{background:var(--bg-card);border-radius:var(--radius-lg);border:1px solid var(--border);box-shadow:var(--shadow-sm);text-align:left;transition:var(--transition);flex-direction:column;justify-content:space-between;min-height:240px;padding:2.25rem;display:flex}.neighborhood-card:hover{box-shadow:var(--shadow-md);border-color:#4e654e33;transform:translateY(-4px)}.nb-header{margin-bottom:1.25rem}.nb-borough{color:var(--olive);text-transform:uppercase;letter-spacing:.05em;margin-bottom:.25rem;font-size:.75rem;font-weight:700;display:block}.nb-name{font-family:var(--font-display);color:var(--text);font-size:1.5rem;font-weight:400}.nb-desc{color:var(--text-muted);margin-bottom:1.5rem;font-size:.9rem;line-height:1.5}.nb-tags{flex-wrap:wrap;gap:.5rem;margin-bottom:1.5rem;display:flex}.nb-tag{background:var(--cream);color:var(--text);border-radius:4px;padding:.25rem .6rem;font-size:.75rem;font-weight:600}.nb-action{color:var(--accent);transition:var(--transition);cursor:pointer;background:0 0;border:none;align-items:center;gap:.25rem;font-size:.85rem;font-weight:600;text-decoration:none;display:inline-flex}.nb-action:hover{color:var(--accent-hover);transform:translate(4px)}.faq-section{text-align:center;max-width:750px;margin:0 auto;padding:6rem 2rem}.faq-section h2{font-family:var(--font-display);margin-bottom:3.5rem;font-size:clamp(2rem,4vw,2.6rem);font-weight:400}.faq-list{text-align:left;flex-direction:column;gap:.75rem;display:flex}.faq-item{background:var(--bg-card);border-radius:var(--radius-sm);border:1px solid var(--border);transition:var(--transition);overflow:hidden}.faq-item:hover{box-shadow:var(--shadow-sm)}.faq-item[open]{border-color:var(--accent);box-shadow:var(--shadow-sm)}.faq-item summary{cursor:pointer;color:var(--text);outline:none;justify-content:space-between;align-items:center;padding:1.25rem 1.5rem;font-size:1.05rem;font-weight:600;list-style:none;display:flex}.faq-item summary::-webkit-details-marker{display:none}.faq-item summary:after{content:"+";color:var(--text-muted);font-size:1.3rem;font-weight:400;transition:transform .2s}.faq-item[open] summary:after{content:"−";color:var(--accent)}.faq-item p{color:var(--text-muted);padding:0 1.5rem 1.25rem;font-size:.95rem;line-height:1.6}.footer{background:var(--cream);text-align:center;border-top:1px solid var(--border);padding:4rem 2rem}.footer p{color:var(--text-muted);font-size:.88rem}.footer p+p{margin-top:.5rem}.footer a{color:var(--text-muted);transition:var(--transition);text-decoration:none}.footer a:hover{color:var(--accent)}.footer-links{flex-wrap:wrap;justify-content:center;gap:.75rem;margin-top:1rem;font-size:.88rem;display:flex}.footer-links a{color:var(--text-muted);font-weight:500;text-decoration:none}.footer-links a:hover{color:var(--accent)}.footer-links span{color:var(--text-muted);opacity:.3}.legal-page{max-width:700px;margin:0 auto;padding:4rem 2rem 6rem;animation:.6s cubic-bezier(.16,1,.3,1) fadeInUp}.legal-page h1{font-family:var(--font-display);letter-spacing:-.01em;margin-bottom:.5rem;font-size:clamp(2rem,5vw,3rem);font-weight:400}.legal-updated{color:var(--text-muted);margin-bottom:3rem;font-size:.9rem;display:block}.legal-page section{margin-bottom:2.5rem}.legal-page h2{font-family:var(--font-display);color:var(--text);border-bottom:1px solid var(--border);margin-bottom:1rem;padding-bottom:.5rem;font-size:1.4rem;font-weight:400}.legal-page p{color:var(--text-muted);margin-bottom:1rem;font-size:.98rem;line-height:1.7}.legal-page ul{margin-bottom:1.5rem;padding:0;list-style:none}.legal-page ul li{color:var(--text-muted);padding:.35rem 0 .35rem 1.5rem;font-size:.98rem;line-height:1.7;position:relative}.legal-page ul li:before{content:"—";color:var(--accent);font-weight:700;position:absolute;left:0}.legal-page a{color:var(--accent);border-bottom:1px dashed var(--accent);transition:var(--transition);text-decoration:none}.legal-page a:hover{color:var(--accent-hover);border-bottom-style:solid}.compliance-page{max-width:1000px;margin:0 auto;padding:4rem 2rem 6rem;animation:.6s cubic-bezier(.16,1,.3,1) fadeInUp}.compliance-header{border-bottom:1px solid var(--border);margin-bottom:3.5rem;padding-bottom:2.5rem}.compliance-header h1{font-family:var(--font-display);letter-spacing:-.01em;margin-bottom:1rem;font-size:clamp(2rem,5vw,3rem);font-weight:400}.compliance-badge{color:var(--olive);background:var(--olive-light);letter-spacing:.05em;text-transform:uppercase;border-radius:50px;margin-bottom:1.25rem;padding:.4rem 1rem;font-size:.78rem;font-weight:700;display:inline-block}.compliance-grid{grid-template-columns:1fr 1fr;gap:3rem;margin-bottom:4rem;display:grid}.compliance-card{background:var(--bg-card);border-radius:var(--radius-lg);box-shadow:var(--shadow-sm);border:1px solid var(--border);transition:var(--transition);flex-direction:column;padding:2.5rem;display:flex}.compliance-card:hover{box-shadow:var(--shadow-md);border-color:#e26d381a}.compliance-card h3{font-family:var(--font-display);color:var(--text);margin-bottom:.75rem;font-size:1.4rem;font-weight:400}.compliance-card p{color:var(--text-muted);margin-bottom:2rem;font-size:.95rem;line-height:1.6}.mock-form{background:var(--cream);border-radius:var(--radius-md);border:1px dashed var(--text-muted);padding:1.75rem}.mock-form-group{margin-bottom:1.25rem}.mock-form-label{color:var(--text);text-transform:uppercase;letter-spacing:.03em;margin-bottom:.5rem;font-size:.8rem;font-weight:700;display:block}.mock-form-input{border:1px solid var(--border);width:100%;color:var(--text);background:#fff;border-radius:8px;padding:.75rem 1rem;font-size:.9rem}.mock-form-checkbox{cursor:not-allowed;align-items:flex-start;gap:.75rem;margin-top:1.25rem;display:flex}.mock-form-checkbox input{accent-color:var(--accent);margin-top:.2rem}.mock-form-checkbox-text{color:var(--text-muted);font-size:.8rem;line-height:1.5}.mock-form-checkbox-text a{color:var(--accent);font-weight:600;text-decoration:none}.mock-form-btn{background:var(--accent);color:#fff;cursor:not-allowed;opacity:.8;border:none;border-radius:8px;width:100%;margin-top:1.25rem;padding:.85rem;font-size:.9rem;font-weight:600}.compliance-table-wrapper{border:1px solid var(--border);border-radius:var(--radius-md);background:var(--bg-card);box-shadow:var(--shadow-sm);margin-bottom:4rem;overflow-x:auto}.compliance-table{border-collapse:collapse;text-align:left;width:100%;font-size:.9rem}.compliance-table th{background:var(--cream);color:var(--text);border-bottom:1px solid var(--border);padding:1.25rem;font-weight:700}.compliance-table td{border-bottom:1px solid var(--border);color:var(--text-muted);vertical-align:top;padding:1.25rem;line-height:1.6}.compliance-table tr:last-child td{border-bottom:none}.compliance-keyword{color:var(--accent);background:#e26d3814;border-radius:4px;padding:.2rem .5rem;font-family:monospace;font-weight:700}.compliance-table td strong{color:var(--text)}.compliance-details-grid{background:var(--cream);border-radius:var(--radius-md);grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1.5rem;margin-top:1.5rem;padding:2rem;display:grid}.compliance-detail-item{flex-direction:column;display:flex}.compliance-detail-label{color:var(--text-muted);text-transform:uppercase;letter-spacing:.06em;margin-bottom:.4rem;font-size:.72rem;font-weight:700}.compliance-detail-value{color:var(--text);font-size:.95rem;font-weight:600}.result-page{justify-content:center;align-items:center;min-height:calc(80vh - 120px);padding:4rem 2rem;display:flex}.result-card{text-align:center;background:var(--bg-card);border-radius:var(--radius-lg);border:1px solid var(--border);max-width:480px;box-shadow:var(--shadow-lg);padding:3rem 2.5rem;animation:.6s cubic-bezier(.16,1,.3,1) fadeInUp}.result-icon{width:80px;height:80px;box-shadow:var(--shadow-sm);border-radius:50%;justify-content:center;align-items:center;margin-bottom:2rem;font-size:2.5rem;font-weight:700;display:inline-flex}.result-icon--success{background:var(--olive-light);color:var(--olive)}.result-icon--cancel{color:var(--accent);background:#e26d381a}.result-card h1{font-family:var(--font-display);color:var(--text);margin-bottom:1rem;font-size:clamp(2rem,4vw,2.6rem);font-weight:400}.result-subtitle{color:var(--text-muted);margin-bottom:2.25rem;font-size:1.05rem;line-height:1.6}.result-card .cta-button{justify-content:center;width:100%;margin-bottom:1.25rem}.result-link{color:var(--text-muted);transition:var(--transition);font-size:.95rem;font-weight:600;text-decoration:none;display:block}.result-link:hover{color:var(--accent)}.dashboard-mock-section{text-align:center;max-width:1100px;margin:0 auto;padding:6rem 2rem}.dashboard-mock-section h2{font-family:var(--font-display);margin-bottom:1rem;font-size:clamp(2rem,4vw,2.8rem);font-weight:400}.dashboard-mock-section p.section-desc{color:var(--text-muted);max-width:650px;margin:0 auto 3rem;font-size:1.05rem}.dashboard-mock-container{background:var(--bg-card);border-radius:var(--radius-lg);box-shadow:var(--shadow-lg);border:1px solid var(--border);text-align:left;margin-top:2rem;padding:2.5rem;overflow:hidden}.db-mock-header{border-bottom:1px solid var(--border);flex-wrap:wrap;justify-content:space-between;align-items:center;gap:1rem;margin-bottom:2rem;padding-bottom:1.5rem;display:flex}.db-mock-title{font-family:var(--font-display);color:var(--text);font-size:1.6rem;font-weight:400}.db-mock-stats{grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:1.5rem;margin-bottom:2.5rem;display:grid}.db-mock-stat-card{background:var(--cream);border-radius:var(--radius-sm);border:1px solid var(--border);box-shadow:var(--shadow-sm);padding:1.5rem}.db-mock-stat-num{color:var(--accent);margin-bottom:.5rem;font-size:2.2rem;font-weight:800;line-height:1}.db-mock-stat-label{text-transform:uppercase;color:var(--text-muted);letter-spacing:.05em;font-size:.78rem;font-weight:700}.db-mock-table-wrapper{border:1px solid var(--border);border-radius:var(--radius-sm);background:var(--bg-card);overflow-x:auto}.db-mock-table{border-collapse:collapse;text-align:left;width:100%;font-size:.9rem}.db-mock-table th{background:var(--cream);color:var(--text);border-bottom:1px solid var(--border);text-transform:uppercase;letter-spacing:.05em;padding:1rem 1.25rem;font-size:.75rem;font-weight:700}.db-mock-table td{border-bottom:1px solid var(--border);color:var(--text);vertical-align:middle;padding:1.25rem}.db-mock-table tr:last-child td{border-bottom:none}.db-mock-badge{text-transform:uppercase;letter-spacing:.03em;border-radius:50px;align-items:center;gap:.35rem;padding:.3rem .75rem;font-size:.72rem;font-weight:700;display:inline-flex}.db-mock-badge--touring{background:var(--olive-light);color:var(--olive)}.db-mock-badge--reviewing{color:var(--text-muted);background:#1e1a150d}.db-mock-badge--action{color:var(--accent);background:#e26d381a}.db-mock-badge--action:before{content:"";background:var(--accent);border-radius:50%;width:6px;height:6px;animation:1.2s infinite pulse;display:inline-block}.db-mock-btn{color:var(--text-muted);border:1px solid var(--border);cursor:pointer;transition:var(--transition);background:0 0;border-radius:6px;padding:.5rem 1rem;font-size:.8rem;font-weight:600;display:inline-block}.db-mock-btn:hover{background:var(--cream);color:var(--text);border-color:var(--text-muted)}.portal-layout{background:var(--bg);grid-template-columns:260px 1fr;min-height:100vh;display:grid}.portal-sidebar{background:var(--cream);border-right:1px solid var(--border);flex-direction:column;justify-content:space-between;padding:2rem 1.5rem;display:flex}.portal-sidebar-top{flex-direction:column;gap:2.5rem;display:flex}.portal-logo{font-family:var(--font-display);color:var(--text);font-size:1.4rem;font-weight:700;text-decoration:none}.portal-logo:after{content:".";color:var(--accent)}.portal-nav-list{flex-direction:column;gap:.5rem;list-style:none;display:flex}.portal-nav-link{border-radius:var(--radius-sm);color:var(--text-muted);transition:var(--transition);align-items:center;gap:.75rem;padding:.75rem 1rem;font-size:.92rem;font-weight:600;text-decoration:none;display:flex}.portal-nav-link:hover,.portal-nav-link.active{background:var(--bg-card);color:var(--text);box-shadow:var(--shadow-sm)}.portal-nav-link.active{border-left:3px solid var(--accent)}.portal-main{max-height:100vh;padding:2.5rem;overflow-y:auto}.portal-header{justify-content:space-between;align-items:center;margin-bottom:2rem;display:flex}.portal-title{font-family:var(--font-display);color:var(--text);font-size:2rem;font-weight:400}.portal-user-meta{align-items:center;gap:.75rem;display:flex}.portal-content-grid{grid-template-columns:1.2fr 1fr;align-items:start;gap:2rem;display:grid}@media (max-width:1200px){.portal-content-grid{grid-template-columns:1fr}}.portal-card{background:var(--bg-card);border-radius:var(--radius-md);border:1px solid var(--border);box-shadow:var(--shadow-sm);margin-bottom:1.5rem;padding:2rem}.portal-card-header{border-bottom:1px solid var(--border);justify-content:space-between;align-items:center;margin-bottom:1.5rem;padding-bottom:1rem;display:flex}.portal-card-title{font-family:var(--font-display);font-size:1.25rem;font-weight:400}.timeline-container{border-left:2px solid var(--border);flex-direction:column;gap:1.5rem;margin-left:.5rem;padding-left:1.5rem;display:flex;position:relative}.timeline-item{position:relative}.timeline-dot{background:var(--border);border:2px solid var(--bg-card);border-radius:50%;width:10px;height:10px;position:absolute;top:12px;left:-29px}.timeline-item.message-client .timeline-dot{background:var(--accent)}.timeline-item.message-system .timeline-dot{background:var(--olive)}.timeline-item.trace .timeline-dot{background:var(--mustard)}.timeline-time{color:var(--text-muted);margin-bottom:.35rem;font-size:.72rem;font-weight:600}.timeline-bubble{border-radius:var(--radius-sm);box-shadow:var(--shadow-sm);padding:.9rem 1.1rem;font-size:.9rem;line-height:1.5}.timeline-bubble.client{background:var(--bg-bubble-ai);border:1px solid var(--border);border-bottom-left-radius:2px}.timeline-bubble.system{background:var(--bg-bubble-user);color:#fff;border-bottom-right-radius:2px}.timeline-trace-card{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius-sm);cursor:pointer;transition:var(--transition);justify-content:space-between;align-items:center;padding:1rem;display:flex}.timeline-trace-card:hover{border-color:var(--mustard);box-shadow:var(--shadow-md)}.timeline-trace-title{color:var(--text);align-items:center;gap:.5rem;font-size:.88rem;font-weight:700;display:flex}.timeline-trace-duration{color:var(--text-muted);font-size:.78rem;font-weight:600}.waterfall-container{background:var(--cream);border-radius:var(--radius-sm);border:1px solid var(--border);flex-direction:column;gap:.75rem;padding:1.5rem;display:flex}.waterfall-header-row{color:var(--text-muted);text-transform:uppercase;letter-spacing:.05em;border-bottom:1px solid var(--border);grid-template-columns:120px 1fr;padding-bottom:.5rem;font-size:.72rem;font-weight:700;display:grid}.waterfall-row{grid-template-columns:120px 1fr;align-items:center;font-size:.82rem;display:grid}.waterfall-label{color:var(--text);text-overflow:ellipsis;white-space:nowrap;font-weight:700;overflow:hidden}.waterfall-bar-track{background:#1f191308;border-radius:4px;width:100%;height:24px;position:relative}.waterfall-bar{background:var(--accent);color:#fff;border-radius:3px;align-items:center;min-width:20px;height:16px;padding-left:.35rem;font-size:.65rem;font-weight:700;display:flex;position:absolute;top:4px}.waterfall-bar.webhook_received{background:var(--text-muted)}.waterfall-bar.user_lookup{background:var(--mustard)}.waterfall-bar.agent_inference{background:var(--accent)}.waterfall-bar.tool_call,.waterfall-bar.sms_delivery{background:var(--olive)}.auth-container{background:var(--bg);justify-content:center;align-items:center;min-height:100vh;padding:2rem;display:flex}.auth-card{background:var(--bg-card);border-radius:var(--radius-lg);border:1px solid var(--border);width:100%;max-width:420px;box-shadow:var(--shadow-lg);text-align:center;padding:3rem 2.5rem}@media (max-width:992px){.hero{text-align:center;grid-template-columns:1fr;gap:3.5rem;padding-top:2rem}.hero-left{flex-direction:column;align-items:center;max-width:100%;display:flex}.cta-group{justify-content:center}.cta-note{text-align:center}.hero-right{max-width:100%}.chat-preview{max-width:420px}.compliance-grid{grid-template-columns:1fr;gap:2rem}}@media (max-width:576px){.nav{padding:1rem 1.25rem}.nav-links{gap:1rem}.nav-links li:not(:last-child){display:none}.hero{padding:2rem 1rem}}
