:root{--text-color:#0a0a0a;--text-light:#525252;--text-primary:#171717;--text-secondary:#525252;--text-lighter:#737373;--layout-max-width:1280px;--layout-padding-x:32px;--layout-padding-x-tablet:24px;--layout-padding-x-mobile:16px;--background-color:#fefefe;--background-color-dark:#f5f5f5;--container-bg:white;--section-bg:#f8f9fa;--item-bg:white;--search-bg:#f3f4f6;--background-grey:#fafafa;--background-grey-hover:#f5f5f5;--background-grey-dark:#f8f8f8;--background-grey-medium:#f1f1f2;--background-dark:#737373;--background-badge:#d4d4d4;--background-search:#f5f5f5;--background-search-dark:#e5e5e5;--text-white:#ffffff;--border-color:#e5e7eb;--border-light:#f3f4f6;--border-dark:#737373;--border-medium:#d4d4d4;--pill-border:#e0e0e0;--cta-color:#3b82f6;--cta-color-dark:#2563eb;--cta-color-light:rgba(240,249,255,0.3);--cta-color-light-blue:#f0f9ff;--cta-highlight:#dcfce7;--icon-color:#737373;--shadow-sm:0 1px 3px rgba(0,0,0,0.08);--shadow-md:0 4px 6px -1px rgba(0,0,0,0.1),0 2px 4px -1px rgba(0,0,0,0.06);--shadow-lg:0 10px 15px -3px rgba(0,0,0,0.1),0 4px 6px -2px rgba(0,0,0,0.05);--success-light:#75bc90;--moderate-light:#f8c349;--warning-color:#ed8936;--error-color:#e53e3e;--border-radius:0.125rem;--border-radius-lg:0.125rem;--border-radius-md:0.125rem;--border-radius-sm:0.125rem;--font-size-xs:0.75rem;--font-size-sm:0.875rem;--font-size-sm-md:0.95rem;--font-size-md:1rem;--font-size-md-lg:1.125rem;--font-size-lg:1.25rem;--font-size-xl:1.5rem;--font-size-xxl:2rem;--font-size-title:1rem;--spacing-xs:0.25rem;--spacing-sm:.50rem;--spacing-md:.75rem;--spacing-lg:1.5rem;--spacing-xl:2rem;--container-padding-x:var(--spacing-md);--container-padding-y:var(--spacing-md);--container-margin-bottom:var(--spacing-md);--container-gap:var(--spacing-md);--container-card-padding:var(--spacing-md);--container-card-gap:var(--spacing-sm);--nav-text:#333333;--font-family:var(--font-inter,ui-sans-serif),ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--as-font-sans:var(--font-inter,ui-sans-serif),ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;--emoji-size:1rem}*{box-sizing:border-box;margin:0;padding:0}body,html{font-family:var(--font-family);font-feature-settings:"ss01" 1,"cv01" 1;color:var(--text-color);background-color:var(--background-color);line-height:1.5;height:100%;max-width:100%;overflow-x:hidden;position:relative}.site-wrapper{min-height:100%;background-color:var(--background-grey)}.main-content{min-height:calc(100vh - 200px)}a{color:inherit;text-decoration:none}button{cursor:pointer;font-family:inherit}.container{width:100%;max-width:var(--layout-max-width);margin:0 auto;padding-left:var(--layout-padding-x);padding-right:var(--layout-padding-x);box-sizing:border-box}.section-container{padding:var(--container-padding-y) var(--container-padding-x);margin-bottom:var(--container-margin-bottom);background-color:var(--background-grey);border-radius:var(--border-radius-md)}.card-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:var(--container-gap)}.standard-card{background-color:var(--container-bg);border-radius:var(--border-radius-sm);padding:var(--container-card-padding)}.content-card-header{padding-bottom:var(--spacing-sm);border-bottom:1px solid var(--border-light);margin-bottom:var(--spacing-md);display:flex;justify-content:space-between;align-items:center}.content-card-body{display:flex;flex-direction:column;gap:var(--container-card-gap)}.content-card-footer{margin-top:var(--spacing-md);padding-top:var(--spacing-sm);border-top:1px solid var(--border-light)}.grid-2-col{grid-template-columns:repeat(2,1fr)}.grid-2-col,.grid-3-col{display:grid;gap:var(--spacing-md)}.grid-3-col{grid-template-columns:repeat(3,1fr)}@media (max-width:768px){.container{padding-left:var(--layout-padding-x-tablet);padding-right:var(--layout-padding-x-tablet)}.section-container{padding:var(--spacing-sm)}.grid-2-col,.grid-3-col{grid-template-columns:1fr}.grid-2-col.keep-cols{grid-template-columns:repeat(2,1fr);gap:var(--spacing-sm)}}@media (max-width:640px){.container{padding-left:var(--layout-padding-x-mobile);padding-right:var(--layout-padding-x-mobile)}}@media (max-width:480px){.grid-2-col.keep-cols{grid-template-columns:1fr}}.btn{display:inline-block;padding:.75rem 1.5rem;font-weight:600;font-size:.875rem;border-radius:var(--border-radius);border:none;transition:background-color .2s,transform .1s}.btn:hover{transform:translateY(-1px)}.btn:active{transform:translateY(0)}.btn-primary{background-color:#000;color:white}.btn-primary:hover{background-color:#333}.btn-primary:disabled{background-color:#9ca3af;cursor:not-allowed}.input{width:100%;padding:.75rem 1rem;border-radius:.5rem;border:none;font-size:1rem;background-color:var(--search-bg);transition:all .2s ease;line-height:1.5}.input:focus{outline:none;box-shadow:0 0 0 2px rgba(0,0,0,.1)}.loading-indicator{display:inline-block;width:1rem;height:1rem;border-radius:50%;border:2px solid rgba(0,0,0,.1);border-top-color:#000;animation:spin 1s ease-in-out infinite}@keyframes spin{to{transform:rotate(1turn)}}@font-face{font-family:Inter;font-style:normal;font-weight:100 900;font-display:swap;src:url(/_next/static/media/ba9851c3c22cd980-s.woff2) format("woff2");unicode-range:u+0460-052f,u+1c80-1c8a,u+20b4,u+2de0-2dff,u+a640-a69f,u+fe2e-fe2f}@font-face{font-family:Inter;font-style:normal;font-weight:100 900;font-display:swap;src:url(/_next/static/media/21350d82a1f187e9-s.woff2) format("woff2");unicode-range:u+0301,u+0400-045f,u+0490-0491,u+04b0-04b1,u+2116}@font-face{font-family:Inter;font-style:normal;font-weight:100 900;font-display:swap;src:url(/_next/static/media/c5fe6dc8356a8c31-s.woff2) format("woff2");unicode-range:u+1f??}@font-face{font-family:Inter;font-style:normal;font-weight:100 900;font-display:swap;src:url(/_next/static/media/19cfc7226ec3afaa-s.woff2) format("woff2");unicode-range:u+0370-0377,u+037a-037f,u+0384-038a,u+038c,u+038e-03a1,u+03a3-03ff}@font-face{font-family:Inter;font-style:normal;font-weight:100 900;font-display:swap;src:url(/_next/static/media/df0a9ae256c0569c-s.woff2) format("woff2");unicode-range:u+0102-0103,u+0110-0111,u+0128-0129,u+0168-0169,u+01a0-01a1,u+01af-01b0,u+0300-0301,u+0303-0304,u+0308-0309,u+0323,u+0329,u+1ea0-1ef9,u+20ab}@font-face{font-family:Inter;font-style:normal;font-weight:100 900;font-display:swap;src:url(/_next/static/media/8e9860b6e62d6359-s.woff2) format("woff2");unicode-range:u+0100-02ba,u+02bd-02c5,u+02c7-02cc,u+02ce-02d7,u+02dd-02ff,u+0304,u+0308,u+0329,u+1d00-1dbf,u+1e00-1e9f,u+1ef2-1eff,u+2020,u+20a0-20ab,u+20ad-20c0,u+2113,u+2c60-2c7f,u+a720-a7ff}@font-face{font-family:Inter;font-style:normal;font-weight:100 900;font-display:swap;src:url(/_next/static/media/e4af272ccee01ff0-s.p.woff2) format("woff2");unicode-range:u+00??,u+0131,u+0152-0153,u+02bb-02bc,u+02c6,u+02da,u+02dc,u+0304,u+0308,u+0329,u+2000-206f,u+20ac,u+2122,u+2191,u+2193,u+2212,u+2215,u+feff,u+fffd}@font-face{font-family:Inter Fallback;src:local("Arial");ascent-override:90.44%;descent-override:22.52%;line-gap-override:0.00%;size-adjust:107.12%}.__className_f367f3{font-family:Inter,Inter Fallback;font-style:normal}.__variable_f367f3{--font-inter:"Inter","Inter Fallback"}@font-face{font-family:Space Grotesk;font-style:normal;font-weight:300 700;font-display:swap;src:url(/_next/static/media/e1aab0933260df4d-s.woff2) format("woff2");unicode-range:u+0102-0103,u+0110-0111,u+0128-0129,u+0168-0169,u+01a0-01a1,u+01af-01b0,u+0300-0301,u+0303-0304,u+0308-0309,u+0323,u+0329,u+1ea0-1ef9,u+20ab}@font-face{font-family:Space Grotesk;font-style:normal;font-weight:300 700;font-display:swap;src:url(/_next/static/media/b7387a63dd068245-s.woff2) format("woff2");unicode-range:u+0100-02ba,u+02bd-02c5,u+02c7-02cc,u+02ce-02d7,u+02dd-02ff,u+0304,u+0308,u+0329,u+1d00-1dbf,u+1e00-1e9f,u+1ef2-1eff,u+2020,u+20a0-20ab,u+20ad-20c0,u+2113,u+2c60-2c7f,u+a720-a7ff}@font-face{font-family:Space Grotesk;font-style:normal;font-weight:300 700;font-display:swap;src:url(/_next/static/media/36966cca54120369-s.p.woff2) format("woff2");unicode-range:u+00??,u+0131,u+0152-0153,u+02bb-02bc,u+02c6,u+02da,u+02dc,u+0304,u+0308,u+0329,u+2000-206f,u+20ac,u+2122,u+2191,u+2193,u+2212,u+2215,u+feff,u+fffd}@font-face{font-family:Space Grotesk Fallback;src:local("Arial");ascent-override:89.71%;descent-override:26.62%;line-gap-override:0.00%;size-adjust:109.69%}.__className_dd5b2f{font-family:Space Grotesk,Space Grotesk Fallback;font-style:normal}.__variable_dd5b2f{--font-space-grotesk:"Space Grotesk","Space Grotesk Fallback"}@font-face{font-family:Space Mono;font-style:normal;font-weight:400;font-display:swap;src:url(/_next/static/media/ae822095a172cc5c-s.woff2) format("woff2");unicode-range:u+0102-0103,u+0110-0111,u+0128-0129,u+0168-0169,u+01a0-01a1,u+01af-01b0,u+0300-0301,u+0303-0304,u+0308-0309,u+0323,u+0329,u+1ea0-1ef9,u+20ab}@font-face{font-family:Space Mono;font-style:normal;font-weight:400;font-display:swap;src:url(/_next/static/media/3c70c5716f1730b3-s.woff2) format("woff2");unicode-range:u+0100-02ba,u+02bd-02c5,u+02c7-02cc,u+02ce-02d7,u+02dd-02ff,u+0304,u+0308,u+0329,u+1d00-1dbf,u+1e00-1e9f,u+1ef2-1eff,u+2020,u+20a0-20ab,u+20ad-20c0,u+2113,u+2c60-2c7f,u+a720-a7ff}@font-face{font-family:Space Mono;font-style:normal;font-weight:400;font-display:swap;src:url(/_next/static/media/fc727f226c737876-s.p.woff2) format("woff2");unicode-range:u+00??,u+0131,u+0152-0153,u+02bb-02bc,u+02c6,u+02da,u+02dc,u+0304,u+0308,u+0329,u+2000-206f,u+20ac,u+2122,u+2191,u+2193,u+2212,u+2215,u+feff,u+fffd}@font-face{font-family:Space Mono;font-style:normal;font-weight:700;font-display:swap;src:url(/_next/static/media/77fb5eec12c66d49-s.woff2) format("woff2");unicode-range:u+0102-0103,u+0110-0111,u+0128-0129,u+0168-0169,u+01a0-01a1,u+01af-01b0,u+0300-0301,u+0303-0304,u+0308-0309,u+0323,u+0329,u+1ea0-1ef9,u+20ab}@font-face{font-family:Space Mono;font-style:normal;font-weight:700;font-display:swap;src:url(/_next/static/media/281dae1e814de8c6-s.woff2) format("woff2");unicode-range:u+0100-02ba,u+02bd-02c5,u+02c7-02cc,u+02ce-02d7,u+02dd-02ff,u+0304,u+0308,u+0329,u+1d00-1dbf,u+1e00-1e9f,u+1ef2-1eff,u+2020,u+20a0-20ab,u+20ad-20c0,u+2113,u+2c60-2c7f,u+a720-a7ff}@font-face{font-family:Space Mono;font-style:normal;font-weight:700;font-display:swap;src:url(/_next/static/media/806de4d605d3ad01-s.p.woff2) format("woff2");unicode-range:u+00??,u+0131,u+0152-0153,u+02bb-02bc,u+02c6,u+02da,u+02dc,u+0304,u+0308,u+0329,u+2000-206f,u+20ac,u+2122,u+2191,u+2193,u+2212,u+2215,u+feff,u+fffd}@font-face{font-family:Space Mono Fallback;src:local("Arial");ascent-override:81.58%;descent-override:26.30%;line-gap-override:0.00%;size-adjust:137.28%}.__className_e8b655{font-family:Space Mono,Space Mono Fallback;font-style:normal}.__variable_e8b655{--font-space-mono:"Space Mono","Space Mono Fallback"}.footer{padding-top:2.5rem;padding-bottom:2.5rem;margin-top:3rem;border-top:1px solid var(--as-border-emphasis,var(--as-foreground,#000));background-color:var(--as-foreground,#000);color:var(--as-page,#fafafa);transition:padding .3s ease-in-out,margin .3s ease-in-out;position:relative;z-index:10}.property-page-footer{padding-bottom:6rem;margin-bottom:0}.footer-content{display:grid;grid-template-columns:minmax(0,1fr);align-items:start;gap:2rem;width:100%;max-width:var(--layout-max-width,1200px);margin:0 auto;padding-left:var(--layout-padding-x,50px);padding-right:var(--layout-padding-x,50px)}.footer-brand-column{max-width:560px}.footer-brand-link{display:inline-flex;align-items:center;gap:.75rem;color:var(--as-page,#fafafa);text-decoration:none}.footer-logo-frame{display:inline-grid;width:28px;height:28px;place-items:center;border-radius:var(--as-radius,4px)}.footer-logo{display:block;width:28px;height:28px;object-fit:contain}.footer-brand-name{font-family:var(--font-family);font-size:1.125rem;font-weight:800;line-height:1}.footer-description{max-width:500px;margin:1rem 0 0;color:color-mix(in srgb,var(--as-page,#fafafa) 76%,transparent);font-size:.92rem;line-height:1.6}.footer-domain{margin:1rem 0 0;color:color-mix(in srgb,var(--as-page,#fafafa) 58%,transparent);font-size:.86rem}.footer-link-group{display:grid;align-content:start;gap:.75rem;font-size:.9rem}.footer-link-heading{margin:0;color:color-mix(in srgb,var(--as-page,#fafafa) 55%,transparent);font-family:var(--as-font-mono);font-size:.72rem;font-weight:700;letter-spacing:.12em;line-height:1;text-transform:uppercase}.footer-contact-link,.footer-link{color:color-mix(in srgb,var(--as-page,#fafafa) 82%,transparent);text-decoration:none;transition:color .16s ease}.footer-contact-link{display:inline-flex;align-items:center;gap:.5rem;line-height:1.4}.footer-contact-link svg{flex-shrink:0}.footer-contact-link:hover,.footer-link:hover{color:var(--as-page,#fafafa)}@media (min-width:768px){.footer-content{grid-template-columns:minmax(280px,1fr) repeat(4,minmax(110px,max-content))}}@media (max-width:768px){.footer-content{padding-left:var(--layout-padding-x-tablet,30px);padding-right:var(--layout-padding-x-tablet,30px);width:100%}}@media (max-width:640px){.footer-content{padding-left:var(--layout-padding-x-mobile,16px);padding-right:var(--layout-padding-x-mobile,16px)}}.header{background-color:var(--as-page,var(--background-grey));position:sticky;top:0;z-index:30;border-bottom:1px solid var(--as-border-emphasis,var(--as-foreground,#000))}.header,.header .container{min-height:auto;height:auto;width:100%}.header .container{padding-top:.875rem;padding-bottom:.875rem;padding-left:var(--layout-padding-x,50px);padding-right:var(--layout-padding-x,50px);margin:0 auto;max-width:var(--layout-max-width,1200px)}.header-content{justify-content:space-between;position:relative;margin-bottom:0;padding-bottom:0;min-height:auto;height:auto;width:100%}.header-content,.logo{display:flex;align-items:center}.logo{font-family:var(--font-family);font-size:1.125rem;font-weight:800;color:var(--as-foreground,#000);letter-spacing:0;line-height:1;gap:.625rem}.header-logo{width:28px;height:28px;border-radius:var(--as-radius,4px);object-fit:contain}.logo-text{display:inline-block}.logo-container,.mobile-menu-container{display:flex;align-items:center}.mobile-menu-container{justify-content:flex-end}.mobile-menu-button{display:flex;align-items:center;justify-content:center;background:none;border:none;padding:0;margin:0;cursor:pointer;height:32px;width:32px}.menu-icon{width:22px;height:22px;color:var(--as-foreground,#000)}.auth-links,.nav{display:none}.nav-link{font-weight:500;font-size:var(--font-size-sm);color:var(--as-text-secondary,var(--nav-text));transition:color .2s;display:flex;align-items:center;height:100%;padding:.25rem 0;position:relative;gap:6px}.nav-link:hover{color:var(--as-blue,var(--cta-color))}.nav-icon{display:inline-flex;align-items:center;justify-content:center;color:inherit}.mobile-nav{display:none;position:absolute;top:100%;left:0;right:0;background-color:var(--as-panel,white);border-bottom:1px solid var(--as-line-subtle,var(--border-color));box-shadow:none;z-index:100;padding:1rem var(--layout-padding-x-mobile);flex-direction:column;transform:translateY(-10px);opacity:0;transition:transform .3s ease,opacity .3s ease}.mobile-nav.active{display:flex;transform:translateY(0);opacity:1}.mobile-nav-link{display:flex;align-items:center;gap:8px;padding:.75rem 0;color:var(--text-color);text-decoration:none;font-size:1rem;transition:color .2s}.mobile-nav-link:hover{color:var(--as-blue,var(--cta-color));text-decoration:none}.mobile-nav-icon{display:inline-flex;align-items:center;justify-content:center;color:inherit}.mobile-sign-in{margin-top:.5rem;font-weight:500}.auth-links .nav-link{background-color:var(--as-foreground,#000);color:white;padding:0 .875rem;border-radius:var(--as-radius,4px);display:flex;align-items:center;height:auto;min-height:34px;font-size:var(--font-size-sm)}.auth-links .nav-link:hover{background-color:var(--as-foreground,#333)}.auth-links .nav-link:hover:after{display:none}.header-cta-button,.mobile-header-cta-button{position:relative;display:inline-flex;flex-shrink:0;border:0;border-radius:var(--as-radius,4px);background:transparent;padding:0;color:var(--as-primary-foreground,#fff);text-decoration:none;outline:none}.header-cta-button{min-width:96px;min-height:36px}.header-cta-backplate{position:absolute;inset:0;z-index:0;border:1px solid var(--as-foreground,#000);border-radius:var(--as-radius,4px);transition:transform .16s ease,background-color .16s ease}.header-cta-backplate-blue{transform:translate(8px,8px);background:var(--as-blue,var(--cta-color))}.header-cta-backplate-yellow{transform:translate(4px,4px);background:var(--as-yellow,var(--moderate-light))}.header-cta-face{position:relative;z-index:1;display:inline-flex;min-height:36px;align-items:center;justify-content:center;gap:.4rem;border:1px solid var(--as-foreground,#000);border-radius:var(--as-radius,4px);background:var(--as-foreground,#000);padding:0 .875rem;color:var(--as-primary-foreground,#fff);font-family:var(--as-font-sans);font-size:var(--font-size-sm);font-weight:600;letter-spacing:.04em;line-height:1;transition:transform .16s ease;white-space:nowrap}.header-cta-face svg{flex-shrink:0}.header-cta-button:hover .header-cta-backplate-blue,.mobile-header-cta-button:hover .header-cta-backplate-blue{transform:translate(10px,10px)}.header-cta-button:hover .header-cta-backplate-yellow,.mobile-header-cta-button:hover .header-cta-backplate-yellow{transform:translate(6px,6px)}.header-cta-button:hover .header-cta-face,.mobile-header-cta-button:hover .header-cta-face{transform:translate(-2px,-2px)}.header-cta-button:active .header-cta-backplate-blue,.mobile-header-cta-button:active .header-cta-backplate-blue{transform:translate(6px,6px)}.header-cta-button:active .header-cta-backplate-yellow,.mobile-header-cta-button:active .header-cta-backplate-yellow{transform:translate(2px,2px)}.header-cta-button:active .header-cta-face,.mobile-header-cta-button:active .header-cta-face{transform:translate(0)}.header-cta-button:focus-visible,.mobile-header-cta-button:focus-visible{outline:2px solid var(--as-foreground,#000);outline-offset:4px}@media (max-width:768px){.header .container{min-height:64px;padding-left:var(--layout-padding-x-tablet,30px);padding-right:var(--layout-padding-x-tablet,30px);padding-top:0;padding-bottom:0}.header-content{min-height:64px}.auth-links,.nav{display:none}.mobile-menu-container{display:flex}.mobile-menu-button{width:40px;height:40px;border:1px solid var(--as-foreground,#000);border-radius:var(--as-radius,4px);background:var(--as-panel,#fff);transition:background-color .16s ease,box-shadow .16s ease}.mobile-menu-button:hover{background:var(--as-surface,#f8f8f8);box-shadow:2px 2px 0 var(--as-line-subtle,#e5e7eb)}.menu-icon{width:20px;height:20px}.logo-container{flex:unset}}@media (max-width:480px){.header .container{min-height:60px;padding-left:var(--layout-padding-x-mobile,16px);padding-right:var(--layout-padding-x-mobile,16px);padding-top:0;padding-bottom:0}.header-content{min-height:60px}.logo{font-size:1rem;gap:.5rem}.header-logo{width:26px;height:26px}}@media (min-width:769px){.mobile-menu-container{display:none}.header-content{display:grid;grid-template-columns:1fr auto 1fr;gap:1.5rem}.logo-container{justify-content:flex-start}.nav{display:flex;gap:1.25rem;justify-content:center;align-items:center}.auth-links{display:flex;gap:1rem;justify-content:flex-end}.mobile-nav{display:none}}.user-menu{display:flex;align-items:center;gap:12px}.user-email{font-size:14px;color:#555;max-width:150px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.sign-out-button{background:none;font-weight:400;border:none;cursor:pointer;font-size:16px;color:#666}.loading-auth{font-size:14px;color:#999}.mobile-user-email{display:block;padding:12px 0;font-size:15px;color:#333;font-weight:500;border-bottom:1px solid #eee;margin-bottom:8px;word-break:break-all}.mobile-sign-in,.mobile-sign-out{background:none;border:none;text-align:left;width:100%;cursor:pointer;font-size:15px;font-weight:400}.mobile-header-cta-button{width:100%;min-height:44px;margin-top:.75rem}.mobile-header-cta-button .header-cta-face{width:100%;min-height:40px}.mobile-user-section{margin-top:1rem;padding-top:1rem;border-top:1px solid #eee}.mobile-user-menu-item{display:flex;align-items:center;width:100%;padding:.75rem 0;margin-bottom:.25rem;text-align:left;background:none;border:none;font-size:15px;color:#333;cursor:pointer}.mobile-user-menu-item:hover{color:#000}.mobile-user-menu-icon{margin-right:12px;color:#555}.mobile-sign-out{color:#666}.auth-loading-indicator{display:flex;align-items:center;justify-content:center;width:30px;height:30px}.auth-loading-dot{width:6px;height:6px;background-color:#ccc;border-radius:50%;animation:pulse 1.5s ease-in-out infinite}.mobile-auth-loading{display:block;height:2px;width:100%;background-color:#f1f1f1}@keyframes pulse{0%{transform:scale(.8);opacity:.5}50%{transform:scale(1.2);opacity:1}to{transform:scale(.8);opacity:.5}}.user-dropdown-container{position:relative}.user-avatar{background:transparent;border:0;padding:0;margin:0;cursor:pointer;display:flex;align-items:center;justify-content:center}.user-account-button{min-height:36px;gap:.5rem;padding:.125rem .25rem .125rem .625rem;color:var(--as-text-secondary,#5f646d);font-family:var(--as-font-sans,var(--font-family));font-size:var(--font-size-sm,.875rem);font-weight:500;line-height:1;text-align:left;transition:background-color .16s ease,color .16s ease}.user-account-button.is-open,.user-account-button:hover{background:color-mix(in srgb,var(--as-line-subtle,#e5e7eb) 60%,transparent);color:var(--as-foreground,#18181b)}.user-account-button:focus-visible{outline:2px solid var(--as-blue,#3b82f6);outline-offset:2px}.user-account-name{display:block;max-width:min(22vw,240px);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.avatar-circle{width:32px;height:32px;border-radius:var(--as-radius,4px);border:1px solid var(--as-border-emphasis,var(--as-foreground,#18181b));background-color:var(--as-panel,#ffffff);display:flex;align-items:center;justify-content:center;font-weight:600;color:var(--as-text-secondary,#5f646d);font-size:16px;transition:background-color .16s ease,border-color .16s ease,color .16s ease;overflow:hidden}.user-icon{width:16px;height:16px;color:currentColor}.user-account-button.is-open .avatar-circle,.user-account-button:hover .avatar-circle{border-color:var(--as-foreground,#18181b);background-color:var(--as-panel,#ffffff);color:var(--as-foreground,#18181b)}.user-dropdown{position:absolute;top:calc(100% + 10px);right:0;width:260px;background-color:var(--as-panel,#ffffff);border:1px solid var(--as-border-emphasis,var(--as-foreground,#18181b));border-radius:var(--as-radius,4px);box-shadow:0 12px 28px rgba(11,11,8,.12);z-index:100;overflow:hidden;animation:dropdownFadeIn .16s ease-out}@keyframes dropdownFadeIn{0%{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}.dropdown-header{padding:.8rem .875rem;border-bottom:1px solid var(--as-line-subtle,#e4e4e7)}.dropdown-header-label{display:block;margin-bottom:.35rem;color:var(--as-text-secondary,#5f646d);font-size:.72rem;font-weight:500;line-height:1}.dropdown-email{font-size:.84rem;font-weight:600;color:var(--as-foreground,#18181b);display:block;word-break:break-all;line-height:1.25}.dropdown-menu{padding:.35rem}.dropdown-item{display:flex;align-items:center;gap:.625rem;width:100%;min-height:36px;padding:0 .6rem;text-align:left;background:none;border:none;border-radius:calc(var(--as-radius, 4px) - 1px);font-family:var(--as-font-sans,var(--font-family));font-size:.86rem;font-weight:500;color:var(--as-text-secondary,#5f646d);cursor:pointer;transition:background-color .16s ease,color .16s ease}.dropdown-item:hover{background-color:color-mix(in srgb,var(--as-line-subtle,#e5e7eb) 60%,transparent);color:var(--as-foreground,#18181b)}.dropdown-icon{width:16px;height:16px;margin-right:0;color:currentColor;flex-shrink:0}:root{--as-radius:0.125rem;--as-page:#fafafa;--as-standard-black:#0b0b08;--as-foreground:#0b0b08;--as-border-emphasis:#4f5056;--as-panel:#ffffff;--as-primary-foreground:#ffffff;--as-surface:#f8f8f9;--as-surface-strong:#f1f2f4;--as-line:#5a5b62;--as-line-subtle:#e7e8ec;--as-text-secondary:#525252;--as-blue:var(--cta-color,#3b82f6);--as-blue-dark:var(--cta-color-dark,#2563eb);--as-blue-soft:var(--cta-color-light-blue,#f0f9ff);--as-green:var(--success-light,#75bc90);--as-green-soft:var(--cta-highlight,#dcfce7);--as-orange:var(--warning-color,#ed8936);--as-yellow:var(--moderate-light,#f8c349);--as-red:var(--error-color,#e53e3e);--as-layout-max-width:var(--layout-max-width,1400px);--as-layout-padding-x:var(--layout-padding-x,50px);--as-layout-padding-x-tablet:var(--layout-padding-x-tablet,30px);--as-layout-padding-x-mobile:var(--layout-padding-x-mobile,16px);--as-font-sans:var(--font-inter,ui-sans-serif),ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;--as-font-heading:var(--as-font-sans);--as-font-mono:var(--font-space-mono,"SF Mono"),"SF Mono",Menlo,Consolas,monospace}.as-page-shell{width:100%;overflow-x:hidden}.as-page-shell-page{background:var(--as-page)}.as-page-shell-surface{background:var(--as-surface)}.as-page-container{width:100%;max-width:var(--as-layout-max-width);margin:0 auto;padding-left:var(--as-layout-padding-x);padding-right:var(--as-layout-padding-x);box-sizing:border-box}.as-page-container-narrow{max-width:960px}.as-section{position:relative;width:100%}.as-section-page{background:var(--as-page)}.as-section-surface{background:var(--as-surface)}.as-section-panel{background:var(--as-panel)}.as-section-page:before,.as-section-panel:before,.as-section-surface:before{content:"";position:absolute;inset:0 -9999px;z-index:-1;background:inherit}.as-section-spacing-sm{padding-top:1.5rem;padding-bottom:1.5rem}.as-section-spacing-md{padding-top:3.75rem;padding-bottom:3.75rem}.as-section-spacing-lg{padding-top:4.5rem;padding-bottom:4.5rem}.as-section-layout-split>.as-page-container{display:grid;grid-template-columns:minmax(240px,.42fr) minmax(0,1fr);gap:2rem}.as-section-header{display:flex;gap:1.25rem;align-items:flex-end;justify-content:space-between;margin-bottom:1.25rem}.as-section-header-copy{max-width:780px}.as-badge,.as-section-eyebrow{display:inline-flex;align-items:center;border:1px solid var(--as-foreground);border-radius:var(--as-radius);font-family:var(--as-font-sans);font-size:.72rem;font-weight:700;letter-spacing:0;line-height:1;text-transform:uppercase}.as-section-eyebrow{margin-bottom:.75rem;background:var(--as-surface);padding:.35rem .55rem;color:var(--as-text-secondary)}.as-section-title{max-width:780px;margin:0;color:var(--as-foreground);font-family:var(--as-font-heading);font-size:clamp(1.65rem,3vw,2.5rem);font-weight:700;letter-spacing:0;line-height:1.05;text-align:left}.as-section-description{max-width:680px;margin-top:.75rem;color:var(--as-text-secondary);font-size:.98rem;line-height:1.55}.as-section-actions{flex-shrink:0}.as-button{display:inline-flex;align-items:center;justify-content:center;gap:.45rem;border:1px solid var(--as-foreground);border-radius:var(--as-radius);font-weight:600;letter-spacing:0;line-height:1;text-decoration:none;transition:background-color .16s ease,border-color .16s ease,box-shadow .16s ease,color .16s ease}.as-button-sm{min-height:32px;padding:0 .65rem;font-size:.8rem}.as-button-md{min-height:38px;padding:0 .85rem;font-size:.86rem}.as-button-lg{min-height:46px;padding:0 1.1rem;font-size:.95rem}.as-button-primary{border-color:var(--as-blue);background:var(--as-blue);color:var(--as-primary-foreground)}.as-button-primary:hover{border-color:var(--as-blue-dark);background:var(--as-blue-dark)}.as-button-secondary{background:var(--as-surface);color:var(--as-foreground)}.as-button-secondary:hover{background:var(--as-foreground);color:var(--as-page)}.as-button-ghost{border-color:transparent;background:transparent;color:var(--as-foreground)}.as-button-ghost:hover{border-color:var(--as-line-subtle);background:var(--as-surface)}.as-button-danger{border-color:var(--as-red);background:var(--as-red);color:var(--as-primary-foreground)}.as-button-cta,.as-major-cta{border:1px solid var(--as-foreground);border-radius:var(--as-radius);background:var(--as-blue);color:var(--as-primary-foreground);font-weight:600;letter-spacing:0;box-shadow:none;transition:background-color .16s ease,border-color .16s ease,box-shadow .16s ease,color .16s ease}.as-button-cta:hover,.as-major-cta:hover{border-color:var(--as-foreground);background:var(--as-blue);color:var(--as-primary-foreground);box-shadow:2px 2px 0 0 var(--as-foreground)}.as-button-cta:active,.as-major-cta:active{box-shadow:none}.as-button-icon{display:inline-flex;flex-shrink:0}.as-button-icon svg{width:1em;height:1em}.as-badge{padding:.4rem .55rem}.as-badge-neutral{background:var(--as-panel);color:var(--as-foreground)}.as-badge-blue{background:var(--as-blue-soft);color:var(--as-blue-dark)}.as-badge-green{background:var(--as-green-soft);color:var(--as-green)}.as-badge-orange{background:color-mix(in srgb,var(--as-orange) 13%,var(--as-panel));color:var(--as-orange)}.as-badge-red{background:color-mix(in srgb,var(--as-red) 10%,var(--as-panel));color:var(--as-red)}.as-card{overflow:hidden;border:1px solid var(--as-foreground);border-radius:var(--as-radius)}.as-card-panel{background:var(--as-panel)}.as-card-surface{background:var(--as-surface)}.as-card-blue{background:var(--as-blue-soft)}.as-card-green{background:var(--as-green-soft)}.as-card-orange{background:color-mix(in srgb,var(--as-orange) 13%,var(--as-panel))}.as-card-padding-none{padding:0}.as-card-padding-sm{padding:.75rem}.as-card-padding-md{padding:1rem}.as-card-padding-lg{padding:1.25rem}.as-card-elevated{box-shadow:8px 8px 0 var(--as-line-subtle)}.as-record-grid{display:grid;grid-template-columns:repeat(var(--as-record-grid-columns),minmax(0,1fr));gap:1px;overflow:hidden;border:1px solid var(--as-foreground);border-radius:var(--as-radius);background:var(--as-line-subtle)}.as-record-grid>*{min-width:0;border:0;border-radius:0;background:var(--as-panel)}.as-data-table-shell{overflow-x:auto;border:1px solid var(--as-foreground);border-radius:var(--as-radius);background:var(--as-panel)}.as-data-table{width:100%;border-collapse:collapse;font-size:.875rem}.as-data-table td,.as-data-table th{border-bottom:1px solid var(--as-line-subtle);padding:.75rem .875rem;text-align:left;vertical-align:top}.as-data-table th{background:var(--as-surface);color:var(--as-text-secondary);font-size:.75rem;font-weight:700}.as-data-table tr:last-child td{border-bottom:0}.as-data-table-dense td,.as-data-table-dense th{padding:.5rem .625rem}.as-state,.as-subscription-gate{display:grid;gap:.5rem;border:1px solid var(--as-foreground);border-radius:var(--as-radius);background:var(--as-panel);padding:1rem}.as-state-title,.as-subscription-gate-title{color:var(--as-foreground);font-weight:700;line-height:1.25}.as-state-description,.as-subscription-gate-description{margin:0;color:var(--as-text-secondary);font-size:.9rem;line-height:1.55}.as-state-error{border-color:var(--as-red)}.as-subscription-gate{grid-template-columns:auto minmax(0,1fr) auto;align-items:center;background:var(--as-blue-soft)}.as-subscription-gate-icon{display:grid;width:34px;height:34px;place-items:center;border:1px solid var(--as-foreground);border-radius:var(--as-radius);background:var(--as-panel);color:var(--as-blue)}@media (max-width:900px){.as-section-layout-split>.as-page-container{grid-template-columns:1fr}.as-record-grid{grid-template-columns:repeat(var(--as-record-grid-tablet-columns),minmax(0,1fr))}}@media (max-width:768px){.as-page-container{padding-left:var(--as-layout-padding-x-tablet);padding-right:var(--as-layout-padding-x-tablet)}.as-section-header{display:block}.as-section-actions{margin-top:1rem}.as-subscription-gate{grid-template-columns:auto minmax(0,1fr)}}@media (max-width:560px){.as-section-spacing-md{padding-top:2.75rem;padding-bottom:2.75rem}.as-record-grid{grid-template-columns:1fr}.as-record-grid>*{border-left:0}}@media (max-width:480px){.as-page-container{padding-left:var(--as-layout-padding-x-mobile);padding-right:var(--as-layout-padding-x-mobile)}}