:root {
    --ink: #102b27;
    --muted: #657874;
    --line: #dce7e3;
    --paper: #ffffff;
    --soft: #f3f8f6;
    --green: #15977f;
    --green-dark: #0c6f61;
    --green-light: #d8f4eb;
    --navy: #092e2a;
    --gold: #f2b84b;
    --shadow: 0 20px 55px rgba(12, 53, 46, .10);
    --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, Aptos, "Segoe UI", sans-serif; line-height: 1.55; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.skip-link { position: fixed; z-index: 100; top: 8px; left: 8px; padding: 9px 14px; transform: translateY(-150%); border-radius: 8px; color: white; background: var(--navy); font-size: 12px; font-weight: 750; transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid rgba(33, 177, 147, .36); outline-offset: 3px; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.content-narrow { max-width: 930px; }
.center { text-align: center; }
.wide { width: 100%; justify-content: center; }

.site-header { position: sticky; z-index: 50; top: 0; height: 76px; border-bottom: 1px solid rgba(18, 66, 58, .08); background: rgba(255, 255, 255, .94); backdrop-filter: blur(18px); }
.nav-shell { height: 100%; display: flex; align-items: center; gap: 27px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 800; letter-spacing: -.6px; white-space: nowrap; }
.brand > span:last-child > span { color: var(--green); }
.brand-mark { width: 35px; height: 35px; display: grid; place-items: center; position: relative; overflow: hidden; border-radius: 10px 10px 14px 14px; color: white; background: linear-gradient(145deg, #23b99b, #087c6a); box-shadow: 0 8px 18px rgba(21,151,127,.25); }
.brand-mark:before { content: ""; position: absolute; width: 22px; height: 18px; top: -9px; transform: rotate(45deg); background: rgba(255,255,255,.2); }
.brand-mark span { font-size: 22px; transform: rotate(-15deg); }
.main-nav { display: flex; align-items: center; gap: 24px; margin-left: 12px; }
.main-nav a, .nav-login, .link-button { position: relative; color: #405b56; font-size: 14px; font-weight: 650; transition: color .2s; }
.main-nav a:hover, .nav-login:hover, .link-button:hover { color: var(--green); }
.main-nav a.active { color: var(--green-dark); }
.main-nav a.active:after { content: ""; position: absolute; right: 0; bottom: -26px; left: 0; height: 2px; border-radius: 2px; background: var(--green); }
.nav-search { margin-left: auto; display: flex; align-items: center; gap: 8px; width: 215px; padding: 8px 13px; border: 1px solid var(--line); border-radius: 99px; background: var(--soft); }
.nav-search input { min-width: 0; width: 100%; padding: 0; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: 13px; }
.nav-actions { position: relative; display: flex; align-items: center; gap: 15px; }
.nav-actions form { margin: 0; }
.link-button { padding: 0; border: 0; background: none; }
.user-chip { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; }
.user-menu { position: relative; }
.user-menu summary { list-style: none; cursor: pointer; user-select: none; }
.user-menu summary::-webkit-details-marker { display: none; }
.user-menu .chevron { color: #80908c; font-size: 11px; transition: transform .2s; }
.user-menu[open] .chevron { transform: rotate(180deg); }
.user-popover { position: absolute; z-index: 80; top: calc(100% + 16px); right: 0; width: 245px; overflow: hidden; padding: 8px; border: 1px solid var(--line); border-radius: 14px; background: white; box-shadow: 0 22px 55px rgba(9, 46, 42, .18); animation: pop-in .16s ease-out; }
@keyframes pop-in { from { opacity: 0; transform: translateY(-5px) scale(.98); } to { opacity: 1; transform: none; } }
.popover-head { display: flex; align-items: center; gap: 11px; margin: -8px -8px 7px; padding: 15px; border-bottom: 1px solid var(--line); background: var(--soft); }
.popover-head strong, .popover-head small { display: block; }.popover-head strong { font-size: 13px; }.popover-head small { color: var(--green-dark); font-size: 9px; font-weight: 700; }
.user-popover > a, .user-popover form button { width: 100%; display: flex; align-items: center; gap: 10px; padding: 9px 10px; border: 0; border-radius: 8px; color: #435a56; background: transparent; font-size: 11px; font-weight: 650; text-align: left; transition: color .2s, background .2s; }
.user-popover > a:hover, .user-popover form button:hover { color: var(--green-dark); background: #eef7f4; }
.user-popover > a > span, .user-popover form button > span { width: 20px; color: var(--green); text-align: center; }
.user-popover form { margin-top: 4px; padding-top: 4px; border-top: 1px solid var(--line); }
.nav-toggle, .nav-toggle-label { display: none; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 44px; padding: 10px 20px; border: 1px solid var(--green); border-radius: 10px; color: #fff; background: var(--green); box-shadow: 0 8px 22px rgba(21,151,127,.17); font-size: 14px; font-weight: 750; transition: transform .2s, background .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); background: var(--green-dark); box-shadow: 0 12px 26px rgba(21,151,127,.23); }
.button-sm { min-height: 36px; padding: 7px 14px; font-size: 13px; }
.button-lg { min-height: 52px; padding: 13px 25px; font-size: 15px; }
.button-ghost { color: white; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.06); box-shadow: none; }
.button-ghost:hover { background: rgba(255,255,255,.13); }
.button-ghost.dark { color: var(--ink); border-color: var(--line); background: white; }
.button-light { color: var(--navy); border-color: white; background: white; }
.button-light:hover { color: var(--navy); background: #eefaf6; }
.button-premium { border-color: #e0ad4e; color: #162f2b; background: linear-gradient(135deg, #f8d98c, #eab24d); box-shadow: 0 9px 25px rgba(224,173,78,.24); }
.text-link { color: var(--green-dark); font-size: 14px; font-weight: 800; }
.text-link span { display: inline-block; margin-left: 4px; transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }

.hero { position: relative; overflow: hidden; min-height: 615px; color: white; background: radial-gradient(circle at 67% 40%, #15574f 0, #0b3934 33%, #072b28 70%); }
.hero:before { content: ""; position: absolute; inset: 0; opacity: .17; background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 55px 55px; mask-image: linear-gradient(to right, transparent, #000); }
.hero-glow { position: absolute; right: 4%; top: 15%; width: 450px; height: 450px; border-radius: 50%; background: rgba(44, 201, 169, .10); filter: blur(20px); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; min-height: 615px; gap: 80px; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin-bottom: 18px; color: #9ed9cc; font-size: 11px; font-weight: 850; letter-spacing: 1.7px; text-transform: uppercase; }
.eyebrow span { width: 24px; height: 2px; background: #4bc3aa; }
.eyebrow.dark { color: var(--green-dark); }
.eyebrow.light { color: #f3cf7e; }
.hero h1 { max-width: 630px; margin: 0; font-family: Georgia, Cambria, serif; font-size: clamp(48px, 5.6vw, 74px); font-weight: 500; line-height: 1.03; letter-spacing: -3px; }
.hero h1 em, .premium-hero h1 em, .auth-aside h1 em { color: #5cdbc0; font-weight: inherit; }
.hero-copy > p { max-width: 560px; margin: 25px 0 30px; color: #bdd1cd; font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; }
.trust-line { display: flex; align-items: center; gap: 13px; margin-top: 30px; color: #9dbbb5; font-size: 12px; line-height: 1.3; }
.trust-line strong { color: #e2efec; }
.trust-avatars { display: flex; }
.trust-avatars i { width: 30px; height: 30px; display: grid; place-items: center; margin-left: -7px; border: 2px solid #0b3934; border-radius: 50%; color: white; background: #997051; font-size: 9px; font-style: normal; font-weight: 800; }
.trust-avatars i:first-child { margin-left: 0; background: #4f7e9a; }.trust-avatars i:last-child { background: #a45769; }

.hero-visual { position: relative; height: 455px; }
.house-orbit { position: absolute; border: 1px solid rgba(94,223,194,.16); border-radius: 50%; }
.orbit-one { inset: 33px 5px 5px 42px; }.orbit-two { inset: 89px 61px 65px 96px; }
.house-card { position: absolute; left: 50%; top: 50%; width: 220px; height: 190px; transform: translate(-50%, -43%); filter: drop-shadow(0 35px 30px rgba(0,0,0,.28)); }
.house-roof { position: absolute; z-index: 2; top: 5px; left: 12px; width: 160px; height: 160px; transform: rotate(45deg); border-radius: 14px 3px 8px; background: linear-gradient(145deg, #36b59c, #0e7c6c); }
.house-body { position: absolute; z-index: 3; left: 29px; bottom: 0; width: 164px; height: 126px; border-radius: 3px 3px 9px 9px; background: linear-gradient(145deg, #f5fbf9, #a8d3c9); }
.house-window { position: absolute; top: 31px; left: 26px; width: 45px; height: 43px; border: 7px solid #3c756d; background: #ffdf88; box-shadow: inset 0 0 18px #ffbb45, 0 0 30px rgba(255,199,84,.2); }
.house-window:before, .house-window:after { content: ""; position: absolute; background: #3c756d; }.house-window:before { width: 3px; height: 100%; left: 14px; }.house-window:after { height: 3px; width: 100%; top: 13px; }
.house-door { position: absolute; right: 23px; bottom: 0; width: 43px; height: 74px; border-radius: 4px 4px 0 0; background: #23594f; }
.heat-wave { position: absolute; z-index: 5; color: #6ee0c5; font-size: 48px; transform: rotate(-90deg); animation: float 3.5s ease-in-out infinite; }.wave-one { top: -23px; right: 4px; }.wave-two { top: 13px; right: -31px; animation-delay: .7s; }
@keyframes float { 0%,100% { transform: rotate(-90deg) translateX(0); opacity: .45; } 50% { transform: rotate(-90deg) translateX(8px); opacity: 1; } }
.float-card { position: absolute; z-index: 7; display: flex; align-items: center; gap: 12px; padding: 15px; border: 1px solid rgba(255,255,255,.18); border-radius: 14px; color: var(--ink); background: rgba(255,255,255,.93); box-shadow: 0 22px 50px rgba(0,0,0,.24); backdrop-filter: blur(8px); }
.float-card small { display: block; color: #6f817e; font-size: 10px; }.float-card strong { display: block; margin: 2px 0; font-size: 19px; }.float-card .positive { color: var(--green); font-size: 10px; font-weight: 750; }
.float-energy { left: -5px; bottom: 40px; }.float-rank { right: -8px; top: 50px; }
.float-icon { width: 37px; height: 37px; display: grid; place-items: center; border-radius: 10px; background: var(--green-light); }
.rank-ring { width: 48px; height: 48px; display: grid; place-items: center; border: 5px solid #3bc0a4; border-left-color: #dceee9; border-radius: 50%; color: var(--green-dark); font-size: 11px; font-weight: 850; }

.stats-strip { border-bottom: 1px solid var(--line); background: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 26px 0; }
.stats-grid div { display: flex; flex-direction: column; align-items: center; border-right: 1px solid var(--line); }.stats-grid div:last-child { border-right: 0; }
.stats-grid strong { color: var(--green-dark); font-family: Georgia, serif; font-size: 25px; }.stats-grid span { color: var(--muted); font-size: 11px; }

.section { padding: 84px 0; }.section-soft { background: var(--soft); }
.section-heading { margin-bottom: 35px; }.section-heading h2 { margin: 0 0 8px; font-family: Georgia, serif; font-size: 39px; font-weight: 500; letter-spacing: -1.5px; }.section-heading p { margin: 0; color: var(--muted); }
.section-heading.center .eyebrow { justify-content: center; }.split-heading { display: flex; justify-content: space-between; align-items: end; }.compact { margin-bottom: 22px; }
.category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.category-card { position: relative; display: flex; gap: 17px; min-height: 154px; padding: 25px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; transition: transform .22s, box-shadow .22s, border .22s; }
.category-card:before { content: ""; position: absolute; inset: auto 0 0; height: 3px; transform: scaleX(0); transform-origin: left; background: var(--accent); transition: transform .22s; }
.category-card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--accent) 40%, white); box-shadow: var(--shadow); }.category-card:hover:before { transform: scaleX(1); }
.category-icon { flex: 0 0 auto; width: 49px; height: 49px; display: grid; place-items: center; border-radius: 13px; background: color-mix(in srgb, var(--accent) 12%, white); font-size: 22px; }.category-icon.large { width: 65px; height: 65px; font-size: 29px; }
.category-content h3 { margin: 0 0 6px; font-size: 17px; }.category-content p { margin: 0 0 15px; color: var(--muted); font-size: 13px; }.category-meta { display: flex; gap: 18px; color: #82928f; font-size: 11px; font-weight: 650; }
.category-arrow { position: absolute; top: 20px; right: 20px; color: #9aacaa; }
.two-column { display: grid; grid-template-columns: minmax(0, 1.8fr) minmax(280px, .8fr); gap: 28px; }
.card, .panel { border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 12px 35px rgba(20,62,55,.055); }
.topic-list { overflow: hidden; }
.topic-row { display: grid; grid-template-columns: auto 1fr auto; gap: 15px; align-items: center; padding: 19px 22px; border-bottom: 1px solid #e8efed; transition: background .2s; }.topic-row:last-child { border-bottom: 0; }.topic-row:hover { background: #f8fbfa; }
.avatar { flex: 0 0 auto; width: 43px; height: 43px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--avatar, #2d8c7b); box-shadow: inset 0 0 0 2px rgba(255,255,255,.2); font-size: 11px; font-weight: 850; }.avatar-sm { width: 30px; height: 30px; font-size: 9px; }.avatar-lg { width: 58px; height: 58px; font-size: 14px; }
.badges { display: flex; align-items: center; gap: 6px; min-height: 18px; }.badge { display: inline-flex; align-items: center; padding: 3px 7px; border-radius: 5px; font-size: 9px; font-weight: 850; letter-spacing: .35px; text-transform: uppercase; }.badge-gold { color: #8d6516; background: #fff0ca; }.badge-green { color: #08745f; background: #d8f4eb; }.badge-premium { color: #865f19; background: #fff0bf; }.topic-category { color: var(--green-dark); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.topic-main { min-width: 0; }.topic-main h3 { margin: 3px 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 15px; }.topic-main p { margin: 3px 0 5px; overflow: hidden; color: var(--muted); font-size: 12px; white-space: nowrap; text-overflow: ellipsis; }.topic-main small { color: #8a9a97; font-size: 10px; }
.topic-count { min-width: 58px; text-align: center; }.topic-count strong, .topic-count span { display: block; }.topic-count strong { font-size: 16px; }.topic-count span { color: #889996; font-size: 9px; }
.premium-teaser { position: relative; overflow: hidden; padding: 29px; border-radius: var(--radius); color: white; background: radial-gradient(circle at 100% 0, #237064, #0d3732 65%); box-shadow: var(--shadow); }.premium-teaser:after { content: ""; position: absolute; right: -55px; bottom: -65px; width: 160px; height: 160px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }.premium-teaser h3 { margin: 7px 0 13px; font-family: Georgia, serif; font-size: 27px; line-height: 1.15; }.premium-teaser p { margin: 0 0 22px; color: #b9d3ce; font-size: 13px; }.premium-spark { position: absolute; top: 18px; right: 20px; color: #e9c266; font-size: 22px; }
.tip-card { display: flex; gap: 13px; margin-top: 16px; padding: 20px; border: 1px solid #e5e3ce; border-radius: 14px; background: #fffdf4; }.tip-card strong { font-size: 12px; }.tip-card p { margin: 4px 0 0; color: #767768; font-size: 11px; }
.empty-state { padding: 55px 25px; text-align: center; }.empty-state.wide { grid-column: 1/-1; }.empty-state h3 { margin: 0 0 5px; }.empty-state p { margin: 0; color: var(--muted); }

.page-hero { color: white; background: linear-gradient(135deg, #0a322e, #15554d); }.page-hero-small { padding: 50px 0; }.page-hero h1 { margin: 0; font-family: Georgia, serif; font-size: 43px; font-weight: 500; line-height: 1.12; }.page-hero p { margin: 8px 0 0; color: #b7d0cb; }
.breadcrumbs { display: flex; gap: 9px; margin-bottom: 23px; color: #9fc0ba; font-size: 12px; }.breadcrumbs a:hover { color: white; }
.category-title { display: flex; align-items: center; gap: 18px; }.topic-title-row { display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.topic-tools { flex: 0 0 auto; display: flex; gap: 7px; }.topic-tools form { margin: 0; }.topic-tool { min-height: 38px; padding: 7px 12px; font-size: 10px; }
.list-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.topic-filters { display: flex; align-items: end; gap: 8px; margin-top: 12px; }
.topic-filters label { display: flex; flex-direction: column; gap: 3px; color: #778985; font-size: 8px; font-weight: 750; text-transform: uppercase; }
.topic-filters select { min-height: 36px; padding: 7px 28px 7px 10px; border: 1px solid var(--line); border-radius: 8px; color: #3c5651; background: white; font-size: 10px; text-transform: none; }
.filter-button { min-height: 36px; padding: 6px 12px; border: 1px solid #bdd5cf; border-radius: 8px; color: var(--green-dark); background: #edf7f4; font-size: 10px; font-weight: 800; }
.pagination { display: flex; justify-content: center; align-items: center; gap: 15px; margin-top: 22px; color: #7e8e8a; font-size: 10px; }.pagination a { padding: 8px 12px; border: 1px solid var(--line); border-radius: 8px; color: var(--green-dark); background: white; font-weight: 750; }.pagination a:hover { border-color: #a9d1c7; background: #f1f9f6; }
.post-card { display: grid; grid-template-columns: 155px 1fr; margin-bottom: 14px; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: white; }.post-card aside { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 27px 18px; border-right: 1px solid var(--line); background: #f8fbfa; text-align: center; }.post-card aside strong { margin-top: 5px; font-size: 13px; }.post-card aside small { color: #84938f; font-size: 9px; }.post-body { position: relative; min-height: 165px; padding: 28px; }.post-date { margin-bottom: 20px; color: #8b9b97; font-size: 10px; }.post-content { color: #314945; font-size: 14px; }.post-content p:first-child { margin-top: 0; }.solution-post { border-color: #67c6b1; box-shadow: 0 12px 35px rgba(21,151,127,.09); }.solution-label { margin: -28px -28px 22px; padding: 8px 18px; color: #08745f; background: #ddf6ee; font-size: 11px; font-weight: 800; }.post-action { margin-top: 25px; }.text-button { padding: 3px 5px; border: 0; color: var(--green-dark); background: none; font-size: 10px; font-weight: 800; }.reply-card { margin-top: 28px; padding: 28px; }.reply-card h2 { margin-top: 0; font-family: Georgia, serif; font-weight: 500; }
.post-footer { display: flex; justify-content: space-between; align-items: center; gap: 15px; margin-top: 27px; padding-top: 13px; border-top: 1px solid #e7efec; }.post-footer form { margin: 0; }.post-footer > div { display: flex; align-items: center; gap: 5px; }.post-footer > div form { display: inline-flex; }
.helpful-button { display: inline-flex; align-items: center; gap: 5px; padding: 6px 9px; border: 1px solid var(--line); border-radius: 99px; color: #6a7c78; background: white; font-size: 9px; font-weight: 750; }.helpful-button:hover, .helpful-button.active { color: var(--green-dark); border-color: #a8d7cb; background: #ecf8f4; }.helpful-button span { min-width: 16px; padding: 1px 4px; border-radius: 99px; background: #e7f0ed; }

.form-section { min-height: 720px; padding: 80px 0; background: var(--soft); }.form-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; max-width: 1000px; }.form-intro { position: sticky; top: 130px; }.form-intro h1 { margin: 0 0 18px; font-family: Georgia, serif; font-size: 45px; font-weight: 500; line-height: 1.1; }.form-intro > p { color: var(--muted); }.form-note { display: flex; gap: 12px; margin-top: 35px; padding: 18px; border-radius: 13px; background: #e5f4ef; }.form-note p { margin: 0; color: #58716c; font-size: 11px; }.form-note strong { color: var(--ink); }
.form-card { padding: 34px; }.stack-form { display: flex; flex-direction: column; gap: 18px; }.stack-form > div { display: flex; flex-direction: column; gap: 6px; }.stack-form label { color: #2f4843; font-size: 12px; font-weight: 750; }.form-control { width: 100%; min-height: 47px; padding: 11px 13px; outline: none; border: 1px solid #cfddda; border-radius: 9px; color: var(--ink); background: white; transition: border .2s, box-shadow .2s; }.form-control:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(21,151,127,.11); }.stack-form textarea.form-control { resize: vertical; }.stack-form .helptext { color: #899793; font-size: 10px; }.stack-form ul.errorlist { order: 5; margin: 0; padding: 0; color: #b64848; list-style: none; font-size: 11px; }.form-error { padding: 11px; border-radius: 8px; color: #9c3333; background: #feeaea; font-size: 12px; }.form-actions { flex-direction: row !important; justify-content: flex-end; padding-top: 10px; }
.stack-form > div:has(.form-check-input) { display: grid; grid-template-columns: 18px 1fr; align-items: start; gap: 8px; }.stack-form > div:has(.form-check-input) label { grid-column: 2; }.stack-form > div:has(.form-check-input) .form-check-input { grid-column: 1; grid-row: 1; width: 16px; height: 16px; margin-top: 2px; }.signup-card .stack-form > div:has(.form-check-input) { grid-column: 1/-1; }

.dashboard-head { padding: 48px 0 55px; color: white; background: radial-gradient(circle at 80% 0, #1a665b, #092f2b 60%); }.dashboard-head .container { display: flex; justify-content: space-between; align-items: end; }.dashboard-head h1 { margin: 0; font-family: Georgia, serif; font-size: 43px; font-weight: 500; }.dashboard-head p { margin: 8px 0 0; color: #acc7c1; }.dashboard-actions { display: flex; gap: 9px; }.onboarding-card { display: grid; grid-template-columns: 280px 1fr; align-items: center; gap: 55px; padding: 50px; }.onboarding-card h2 { margin: 0 0 13px; font-family: Georgia, serif; font-size: 36px; font-weight: 500; }.onboarding-card p { color: var(--muted); }.onboarding-visual { position: relative; height: 230px; display: grid; place-items: center; overflow: hidden; border-radius: 20px; color: white; background: radial-gradient(circle, #2ea68d, #0d544a); }.onboarding-visual > span { font-size: 110px; }.onboarding-visual i { position: absolute; right: 45px; top: 35px; width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; background: white; font-style: normal; }
.dashboard-section { background: #f3f7f6; }.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: -112px; margin-bottom: 20px; }.metric-card { display: flex; align-items: center; gap: 15px; min-height: 125px; padding: 19px; border: 1px solid #dfe9e6; border-radius: 15px; background: white; box-shadow: 0 18px 45px rgba(10,47,43,.10); }.metric-card > div:last-child { min-width: 0; }.metric-icon { flex: 0 0 auto; width: 43px; height: 43px; display: grid; place-items: center; border-radius: 12px; font-weight: 850; }.metric-icon.mint { color: #08745f; background: #daf4ec; }.metric-icon.blue { color: #3e719c; background: #e1effa; }.metric-icon.amber { color: #a36e0a; background: #fff0c9; }.metric-icon.violet { color: #765aa1; background: #eee5fa; }.metric-card span { display: block; color: #788985; font-size: 10px; font-weight: 700; }.metric-card strong { display: block; margin: 2px 0; font-size: 21px; white-space: nowrap; }.metric-card strong small { color: #72827f; font-size: 11px; }.metric-card p { margin: 0; overflow: hidden; color: #9aa7a4; font-size: 9px; white-space: nowrap; text-overflow: ellipsis; }
.building-data-panel { margin-bottom: 20px; }.profile-data-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }.profile-data-grid > div { min-height: 58px; padding: 11px; border-radius: 9px; background: var(--soft); }.profile-data-grid small, .profile-data-grid strong { display: block; }.profile-data-grid small { color: #869793; font-size: 8px; }.profile-data-grid strong { margin-top: 4px; color: var(--ink); font-size: 11px; }
.insight-strip { display: grid; grid-template-columns: 1.3fr repeat(4, 1fr); align-items: center; gap: 0; margin-bottom: 20px; overflow: hidden; border: 1px solid #dce8e5; border-radius: 14px; background: white; box-shadow: 0 10px 28px rgba(12,53,46,.05); }
.insight-label, .insight-item { min-height: 78px; display: flex; justify-content: center; flex-direction: column; padding: 13px 18px; border-right: 1px solid #e4ecea; }.insight-item:last-child { border-right: 0; }.insight-label { flex-direction: row; align-items: center; justify-content: flex-start; gap: 10px; background: linear-gradient(135deg, #e9f7f2, #f6fbf9); }.insight-label > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 9px; color: #997123; background: #fff0c7; }.insight-label strong, .insight-label small, .insight-item span, .insight-item strong, .insight-item small { display: block; }.insight-label strong { font-size: 12px; }.insight-label small, .insight-item span, .insight-item small { color: #879692; font-size: 8px; }.insight-item strong { margin: 2px 0; font-size: 15px; }.insight-item strong.positive { color: var(--green-dark); }.insight-item strong.negative { color: #c45b50; }
.dashboard-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 20px; }.panel { padding: 25px; }.panel-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }.panel-head h2 { margin: 3px 0 0; font-family: Georgia, serif; font-size: 23px; font-weight: 500; }.panel-kicker { color: var(--green-dark); font-size: 9px; font-weight: 850; letter-spacing: 1.2px; text-transform: uppercase; }.chart-legend { display: flex; align-items: center; gap: 6px; color: #84938f; font-size: 9px; }.chart-legend i { width: 8px; height: 8px; border-radius: 2px; background: var(--green); }
.bar-chart { height: 250px; display: flex; align-items: stretch; gap: 8px; padding: 15px 5px 0; border-bottom: 1px solid var(--line); background: repeating-linear-gradient(to bottom, transparent 0, transparent 61px, #edf2f1 62px); }.bar-item { flex: 1; min-width: 25px; display: flex; flex-direction: column; align-items: center; }.bar-value { height: 20px; opacity: 0; color: var(--green-dark); font-size: 8px; font-weight: 800; transition: opacity .2s; }.bar-item:hover .bar-value { opacity: 1; }.bar-track { flex: 1; width: 65%; display: flex; align-items: flex-end; }.bar { width: 100%; min-height: 6px; border-radius: 5px 5px 0 0; background: linear-gradient(to top, #0e806d, #35b79c); box-shadow: inset 0 1px rgba(255,255,255,.3); }.bar-label { padding: 8px 0 9px; color: #758783; font-size: 8px; font-weight: 750; text-transform: uppercase; }
.premium-mini { padding: 4px 7px; border-radius: 5px; color: #8b651f; background: #fff0c5; font-size: 8px; font-weight: 850; }.comparison-score { display: grid; grid-template-columns: auto auto; justify-content: center; align-items: center; margin: 15px 0 25px; }.comparison-score span { grid-row: 1/3; margin-right: 8px; font-size: 30px; }.comparison-score strong { font-family: Georgia, serif; font-size: 43px; line-height: 1; }.comparison-score small { color: var(--muted); font-size: 10px; }.comparison-score.better { color: var(--green); }.comparison-score.better small, .comparison-score.worse small { color: var(--muted); }.comparison-score.worse { color: #cc695d; }.compare-bars > div { display: grid; grid-template-columns: 90px 1fr 75px; gap: 8px; align-items: center; margin: 12px 0; font-size: 9px; }.compare-bars i { height: 7px; overflow: hidden; border-radius: 99px; background: #e5ecea; }.compare-bars b { display: block; height: 100%; border-radius: inherit; background: var(--green); }.compare-bars em { color: #5d716c; font-style: normal; text-align: right; }.privacy-copy { margin: 22px 0 0; padding-top: 15px; border-top: 1px solid var(--line); color: #879692; font-size: 9px; text-align: center; }
.compare-panel { position: relative; min-height: 355px; overflow: hidden; }.locked-panel .panel-head { position: relative; z-index: 3; }.blurred-comparison { padding: 12px 15px; filter: blur(7px); opacity: .24; }.fake-score { margin-bottom: 30px; font-size: 50px; font-weight: 800; text-align: center; }.blurred-comparison i { display: block; width: 85%; height: 13px; margin: 14px auto; border-radius: 9px; background: var(--green); }.lock-overlay { position: absolute; z-index: 2; inset: 75px 15px 15px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px; border-radius: 13px; text-align: center; background: rgba(255,255,255,.84); backdrop-filter: blur(6px); }.lock-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: #8e671c; background: #fff0c4; font-size: 21px; }.lock-overlay h3 { margin: 10px 0 4px; font-size: 16px; }.lock-overlay p { max-width: 270px; margin: 0 0 14px; color: var(--muted); font-size: 10px; }
.panel-empty { min-height: 230px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }.panel-empty > span { color: #a9b9b5; font-size: 33px; }.panel-empty h3 { margin: 7px 0 3px; }.panel-empty p { margin: 0 0 8px; color: var(--muted); font-size: 11px; }.panel-empty.horizontal { min-height: 100px; flex-direction: row; gap: 15px; text-align: left; }
.readings-panel { margin-top: 20px; }.table-scroll { overflow-x: auto; }table { width: 100%; border-collapse: collapse; font-size: 12px; }th { padding: 10px 12px; color: #82928e; background: #f6f9f8; font-size: 9px; text-align: left; text-transform: uppercase; }td { padding: 14px 12px; border-bottom: 1px solid #e8efed; color: #4c625e; }tbody tr:last-child td { border-bottom: 0; }td strong, td small { display: block; }td small { max-width: 230px; overflow: hidden; color: #93a19e; font-size: 9px; white-space: nowrap; text-overflow: ellipsis; }.table-actions { display: flex; justify-content: flex-end; gap: 5px; }.table-actions a, .table-actions button { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 7px; color: #607570; background: white; }.table-actions form { margin: 0; }.table-actions button:hover { color: #b04444; border-color: #efcccc; }

.premium-hero { position: relative; overflow: hidden; padding: 100px 0 90px; color: white; background: radial-gradient(circle at 50% 40%, #1c6258, #092e2a 65%); }.premium-hero:before { content: ""; position: absolute; inset: 0; opacity: .14; background-image: radial-gradient(#fff 1px, transparent 1px); background-size: 35px 35px; }.premium-hero .container { position: relative; }.premium-stars { position: absolute; inset: 55px 0 auto; color: rgba(239,201,113,.35); font-size: 27px; text-align: center; letter-spacing: 140px; }.premium-hero .eyebrow { justify-content: center; }.premium-hero h1 { margin: 0; font-family: Georgia, serif; font-size: 62px; font-weight: 500; line-height: 1.02; }.premium-hero p { max-width: 610px; margin: 23px auto; color: #b9d0cb; }.price-line { display: flex; justify-content: center; align-items: center; margin: 24px 0; }.price-line strong { font-family: Georgia, serif; font-size: 60px; line-height: 1; }.price-line sup { font-size: 24px; }.price-line > span { margin-left: 9px; color: #dfeae7; font-size: 14px; line-height: 1.1; text-align: left; }.price-line small { color: #90aaa4; font-size: 9px; }.prototype-note { display: block; margin-top: 12px; color: #89aaa3; font-size: 9px; }.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }.feature-card { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); }.feature-card > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 13px; color: var(--green-dark); background: var(--green-light); font-size: 22px; }.feature-card h3 { margin: 18px 0 7px; }.feature-card p { margin: 0; color: var(--muted); font-size: 13px; }.prototype-banner { display: flex; justify-content: space-between; align-items: center; gap: 25px; margin-top: 35px; padding: 22px 26px; border-radius: 14px; background: #eef8f4; }.prototype-banner > div { display: flex; gap: 15px; }.prototype-banner p { margin: 3px 0 0; color: var(--muted); font-size: 11px; }

.auth-section { min-height: calc(100vh - 76px); display: grid; grid-template-columns: 42% 58%; }.auth-aside { display: flex; align-items: center; padding: 70px max(40px, 8vw); color: white; background: radial-gradient(circle at 20% 70%, #1b695e, #082e2a 65%); }.auth-aside h1 { margin: 0; font-family: Georgia, serif; font-size: 54px; font-weight: 500; line-height: 1.08; }.auth-aside p { max-width: 430px; color: #aec8c3; }.auth-main { display: flex; align-items: center; justify-content: center; padding: 60px 30px; background: #f5f8f7; }.auth-card { width: min(430px, 100%); }.auth-card > .brand { margin-bottom: 45px; }.auth-card h2 { margin: 0; font-family: Georgia, serif; font-size: 37px; font-weight: 500; }.auth-card > p { margin: 5px 0 25px; color: var(--muted); font-size: 12px; }.auth-card > p a { color: var(--green-dark); font-weight: 750; }.demo-credentials { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-top: 20px; padding: 14px; border: 1px dashed #b5cbc5; border-radius: 10px; color: #627873; background: #edf5f2; font-size: 10px; }.demo-credentials strong { width: 100%; color: var(--ink); }.demo-credentials code { color: var(--green-dark); }.check-list { margin: 30px 0 0; padding: 0; list-style: none; }.check-list li { margin: 10px 0; color: #c3d8d4; }.check-list li:before { content: "✓"; margin-right: 10px; color: #65d7be; }.signup-card { max-width: 480px; }.signup-card > .brand { margin-bottom: 25px; }.signup-card .stack-form { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }.signup-card .stack-form > div:nth-of-type(1), .signup-card .stack-form > div:nth-of-type(4), .signup-card .stack-form > div:nth-of-type(5), .signup-card .stack-form > button { grid-column: 1/-1; }.legal-copy { display: block; margin-top: 13px; color: #8d9b98; font-size: 9px; text-align: center; }
.large-search { display: flex; gap: 8px; margin-top: 25px; }.large-search .form-control { min-height: 52px; }
.result-count { margin: 0 0 12px; color: #82928e; font-size: 11px; }.saved-empty > span { display: block; color: #a6bab5; font-size: 40px; }.saved-empty .button { margin-top: 18px; }
.toast-stack { position: fixed; z-index: 70; top: 91px; left: 50%; transform: translateX(-50%); }.toast { width: fit-content; max-width: 500px; margin-left: auto; padding: 12px 18px; border: 1px solid #b9dfd5; border-radius: 10px; color: #0b6555; background: #e2f7f0; box-shadow: var(--shadow); font-size: 12px; }.toast-error { color: #943c3c; border-color: #edc3c3; background: #fff0f0; }
.toast { transition: opacity .25s, transform .25s; }.toast-hide { opacity: 0; transform: translateY(-8px); }

.notification-menu { position: relative; }.notification-menu summary { list-style: none; }.notification-menu summary::-webkit-details-marker { display: none; }.notification-bell { position: relative; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: #59706b; background: #f7faf9; cursor: pointer; font-weight: 850; }.notification-bell > span { position: absolute; top: -5px; right: -5px; min-width: 17px; height: 17px; display: grid; place-items: center; padding: 0 4px; border: 2px solid white; border-radius: 99px; color: white; background: #d45d53; font-size: 8px; }.notification-popover { position: absolute; z-index: 80; top: calc(100% + 16px); right: -30px; width: 330px; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: white; box-shadow: 0 22px 55px rgba(9,46,42,.18); }.notification-popover-head { display: flex; justify-content: space-between; align-items: center; padding: 13px 15px; border-bottom: 1px solid var(--line); background: var(--soft); }.notification-popover-head strong { font-size: 12px; }.notification-popover-head a { color: var(--green-dark); font-size: 9px; font-weight: 750; }.notification-popover > a { display: flex; align-items: flex-start; gap: 9px; padding: 12px 14px; border-bottom: 1px solid #edf2f0; font-size: 10px; }.notification-popover > a:hover { background: #f6faf8; }.notification-popover small { display: block; margin-top: 3px; color: #8a9996; font-size: 8px; }.notification-dot { flex: 0 0 auto; width: 7px; height: 7px; margin-top: 5px; border-radius: 50%; background: var(--green); }.notification-empty { padding: 28px; color: #82938f; font-size: 10px; text-align: center; }
.verification-banner { position: relative; z-index: 20; color: #765719; background: #fff4d7; }.verification-banner .container { min-height: 38px; display: flex; align-items: center; justify-content: center; gap: 15px; font-size: 10px; }.verification-banner form { margin: 0; }.verification-banner button { padding: 2px 0; border: 0; border-bottom: 1px solid currentColor; color: #745511; background: none; font-weight: 800; }
.cookie-notice { position: fixed; z-index: 90; right: 22px; bottom: 22px; width: min(430px, calc(100% - 28px)); display: flex; align-items: center; gap: 18px; padding: 17px 18px; border: 1px solid #ccddd8; border-radius: 14px; background: white; box-shadow: 0 22px 60px rgba(9,46,42,.2); }.cookie-notice strong { font-size: 11px; }.cookie-notice p { margin: 3px 0; color: var(--muted); font-size: 9px; }.cookie-notice a { color: var(--green-dark); font-size: 8px; font-weight: 750; }.cookie-notice form { margin: 0 0 0 auto; }
.forgot-link { float: right; color: var(--green-dark); font-size: 9px; }.legal-copy a { color: var(--green-dark); text-decoration: underline; }

.profile-hero { padding: 55px 0; color: white; background: radial-gradient(circle at 80% 0, #1a665b, #092f2b 60%); }.profile-hero .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; }.profile-identity { display: flex; align-items: center; gap: 20px; }.profile-avatar { width: 82px; height: 82px; font-size: 22px; }.profile-name { display: flex; align-items: center; gap: 10px; }.profile-name h1 { margin: 0; font-family: Georgia, serif; font-size: 42px; font-weight: 500; }.profile-identity p { margin: 4px 0; color: #b5d0ca; }.profile-identity small { color: #82aaa1; }.profile-layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: 20px; align-items: start; }.profile-layout > div { display: grid; gap: 20px; }.profile-about h2, .public-building h2, .profile-topics h2 { margin: 4px 0 12px; font-family: Georgia, serif; font-size: 25px; font-weight: 500; }.profile-about > p { color: var(--muted); font-size: 12px; }.profile-stats { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }.profile-stats div { text-align: center; }.profile-stats strong, .profile-stats span { display: block; }.profile-stats strong { font-size: 22px; }.profile-stats span { color: #83928f; font-size: 8px; text-transform: uppercase; }.public-building > div { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }.public-building > div > span { padding: 11px; border-radius: 9px; background: var(--soft); }.public-building small, .public-building strong { display: block; }.public-building small { color: #869793; font-size: 8px; }.public-building strong { font-size: 11px; }.profile-topics > a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); }.profile-topics > a:last-child { border: 0; }.profile-topics > a span, .profile-topics > a small { display: block; color: #899895; font-size: 8px; }.profile-topics > a strong { display: block; margin: 3px 0; font-size: 11px; }

.title-action { display: flex; justify-content: space-between; align-items: end; gap: 30px; }.notification-list { overflow: hidden; }.notification-row { position: relative; display: flex; align-items: center; gap: 13px; padding: 16px 20px; border-bottom: 1px solid var(--line); }.notification-row:last-child { border: 0; }.notification-row.unread { background: #f1faf7; }.notification-kind { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 10px; color: var(--green-dark); background: var(--green-light); }.notification-row strong, .notification-row small { display: block; }.notification-row strong { font-size: 11px; }.notification-row small { margin-top: 3px; color: #8a9996; font-size: 8px; }.notification-row > i { position: absolute; right: 18px; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }.empty-icon { display: block; color: var(--green); font-size: 34px; }

.settings-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 20px; align-items: start; }.form-card h2 { margin-top: 0; font-family: Georgia, serif; font-size: 28px; font-weight: 500; }.settings-side { display: grid; gap: 15px; }.settings-side h3 { margin: 4px 0 12px; }.settings-side a, .settings-side form { display: block; margin: 8px 0; color: var(--green-dark); font-size: 10px; font-weight: 750; }.plain-button { padding: 0; border: 0; background: none; }.danger-link { color: #b94e48 !important; }.eyebrow.danger { color: #a94444; }.eyebrow.danger span { background: #d56d66; }.danger-card { border-color: #efcfcc; }.button-danger { border-color: #bd4d46; background: #bd4d46; }.button-danger:hover { background: #9d3933; }.confirm-card { padding: 50px; text-align: center; }.confirm-card h1 { margin: 10px 0; font-family: Georgia, serif; font-size: 38px; font-weight: 500; }.confirm-card form { display: flex; justify-content: center; gap: 10px; margin-top: 24px; }.confirm-icon { width: 55px; height: 55px; display: grid; place-items: center; margin: auto; border-radius: 50%; color: #a4433d; background: #fee9e7; font-size: 25px; font-weight: 850; }.muted { color: var(--muted); }

.reported-content { margin-top: 25px; padding: 16px; border: 1px solid #ead3d0; border-radius: 12px; background: #fff8f7; }.reported-content small, .reported-content span { color: #8e7773; font-size: 8px; }.reported-content blockquote { margin: 8px 0; color: #503e3c; font-size: 12px; }.moderation-tabs { display: flex; gap: 7px; margin-bottom: 18px; }.moderation-tabs a { padding: 8px 13px; border: 1px solid var(--line); border-radius: 99px; color: #667b76; background: white; font-size: 10px; font-weight: 750; }.moderation-tabs a.active { color: white; border-color: var(--green); background: var(--green); }.moderation-list { display: grid; gap: 10px; }.report-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; padding: 19px; }.report-card h3 { margin: 2px 0; }.report-card p { margin: 4px 0; color: var(--muted); font-size: 11px; }.report-card small, .report-card div > span { color: #8c9b98; font-size: 8px; }.report-status { padding: 5px 8px; border-radius: 6px; font-size: 8px; font-weight: 850; text-transform: uppercase; }.status-open { color: #9b3d36; background: #fee4e1; }.status-reviewing { color: #876419; background: #fff0ca; }.status-resolved { color: #08745f; background: #d8f4eb; }.status-dismissed { color: #667672; background: #e9efed; }

.import-columns { margin: 28px 0 15px; padding: 17px; border-radius: 12px; background: #e9f4f0; }.import-columns strong, .import-columns code, .import-columns span { display: block; }.import-columns code { margin: 8px 0; overflow-wrap: anywhere; color: var(--green-dark); font-size: 10px; }.import-columns span, .privacy-mini { color: #71827e; font-size: 9px; }.privacy-mini { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); }.quality-warning { display: flex; align-items: center; gap: 12px; margin: -5px 0 20px; padding: 12px 16px; border: 1px solid #ecd7a5; border-radius: 11px; color: #74591d; background: #fff7e3; }.quality-warning > span { font-size: 20px; }.quality-warning strong { font-size: 10px; }.quality-warning p { margin: 1px 0; font-size: 8px; }.quality-row { background: #fffdf6; }.quality-label { color: #9a6b10 !important; }.topic-tag { color: #c5e7df; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.07); text-transform: none; }.danger-ghost { color: #ffd0cc; }.moderation-notice { margin: -28px -28px 20px; padding: 9px 15px; color: #8b5418; background: #fff0cf; font-size: 9px; }.blocked-content { padding: 25px; border-radius: 10px; color: #697b77; background: #f1f5f4; text-align: center; }.blocked-content p { margin: 4px 0; font-size: 9px; }.similar-topics { margin-top: 42px; }

.legal-document { max-width: 820px; }.legal-document h2 { margin: 34px 0 9px; font-family: Georgia, serif; font-size: 25px; font-weight: 500; }.legal-document p { color: #536a65; font-size: 13px; line-height: 1.8; }.legal-warning { padding: 18px 20px; border: 1px solid #ebd396; border-radius: 12px; background: #fff7e2; }.legal-warning p { margin: 4px 0 0; color: #765f28; font-size: 10px; }.auth-simple { min-height: 680px; display: grid; place-items: center; padding: 70px 20px; background: var(--soft); }.auth-simple .auth-card { width: min(480px,100%); padding: 35px; }.auth-simple .auth-card > p { color: var(--muted); }.auth-back { display: inline-block; margin-top: 20px; color: var(--green-dark); font-size: 10px; font-weight: 750; }.success-icon { width: 60px; height: 60px; display: grid; place-items: center; margin: 0 auto 15px; border-radius: 50%; color: var(--green-dark); background: var(--green-light); font-size: 25px; }.premium-active { display: inline-flex; padding: 12px 18px; border-radius: 9px; color: #dff6f0; background: rgba(255,255,255,.1); font-size: 11px; font-weight: 750; }

.site-footer { padding: 55px 0 18px; color: #98b1ac; background: #072925; }.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 50px; }.brand-footer { color: white; }.footer-grid p { font-size: 12px; }.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 9px; font-size: 11px; }.footer-grid strong { margin-bottom: 6px; color: white; font-size: 12px; }.footer-grid a:hover { color: white; }.footer-bottom { display: flex; justify-content: space-between; margin-top: 38px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.09); font-size: 9px; }

@media (max-width: 1050px) {
    .main-nav { display: none; }.nav-search { margin-left: auto; }.hero-grid { gap: 20px; }.hero h1 { font-size: 58px; }.metric-grid { grid-template-columns: repeat(2, 1fr); margin-top: -90px; }.dashboard-section { padding-top: 85px; }
    .insight-strip { grid-template-columns: repeat(2, 1fr); }.insight-label { grid-column: 1/-1; }.insight-label, .insight-item { border-bottom: 1px solid #e4ecea; }
}
@media (max-width: 780px) {
    .container { width: min(100% - 28px, 1180px); }.site-header { height: 68px; }.nav-shell { gap: 12px; }.nav-search { display: none; }.nav-toggle-label { order: 5; width: 31px; height: 31px; display: flex; flex-direction: column; justify-content: center; gap: 4px; }.nav-toggle-label span { width: 19px; height: 2px; background: var(--ink); }.nav-actions .user-chip > span:nth-child(2), .nav-actions .user-chip .chevron, .nav-login { display: none; }.nav-toggle:checked ~ .main-nav { position: absolute; top: 68px; left: 0; width: 100%; display: flex; flex-direction: column; align-items: stretch; gap: 0; margin: 0; padding: 10px 20px 18px; border-bottom: 1px solid var(--line); background: white; }.nav-toggle:checked ~ .main-nav a { padding: 11px; }.nav-toggle:checked ~ .main-nav a.active:after { display: none; }.user-popover { position: fixed; top: 62px; right: 14px; }
    .hero-grid { display: block; min-height: auto; padding: 78px 0 45px; }.hero-copy { position: relative; z-index: 5; }.hero h1 { font-size: 49px; letter-spacing: -2px; }.hero-copy > p { font-size: 16px; }.hero-visual { height: 355px; margin-top: 20px; transform: scale(.88); }.float-energy { left: 0; }.float-rank { right: 0; }.stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 20px; }.stats-grid div:nth-child(2) { border-right: 0; }.section { padding: 60px 0; }.split-heading { align-items: start; flex-direction: column; gap: 18px; }.section-heading h2 { font-size: 33px; }.category-grid, .two-column, .dashboard-grid, .form-layout, .feature-grid { grid-template-columns: 1fr; }.category-card { min-height: 135px; padding: 20px; }.topic-row { grid-template-columns: auto 1fr; }.topic-count { display: none; }.two-column { gap: 35px; }
    .page-hero-small { padding: 38px 0; }.page-hero h1 { font-size: 34px; }.topic-title-row { align-items: start; flex-direction: column; }.post-card { grid-template-columns: 1fr; }.post-card aside { flex-direction: row; justify-content: flex-start; padding: 15px; border-right: 0; border-bottom: 1px solid var(--line); }.post-card aside small { margin-left: auto; }.post-body { padding: 22px; }.solution-label { margin: -22px -22px 18px; }.list-toolbar { align-items: flex-start; gap: 18px; }.topic-filters { flex-wrap: wrap; }
    .form-section { padding: 50px 0; }.form-layout { gap: 30px; }.form-intro { position: static; }.form-intro h1 { font-size: 37px; }.form-card { padding: 23px; }
    .dashboard-head { padding: 40px 0 85px; }.dashboard-head .container { align-items: start; flex-direction: column; gap: 25px; }.dashboard-head h1 { font-size: 36px; }.metric-grid { grid-template-columns: 1fr 1fr; margin-top: -125px; }.profile-data-grid { grid-template-columns: repeat(2, 1fr); }.dashboard-section { padding-top: 85px; }.panel { padding: 20px; }.readings-panel { padding: 18px 10px; }.onboarding-card { grid-template-columns: 1fr; padding: 25px; }.onboarding-visual { height: 190px; }
    .premium-hero { padding: 80px 0 70px; }.premium-hero h1 { font-size: 48px; }.prototype-banner { align-items: flex-start; flex-direction: column; }
    .auth-section { grid-template-columns: 1fr; }.auth-aside { min-height: 400px; padding: 65px 30px; }.auth-aside h1 { font-size: 45px; }.auth-main { padding: 45px 20px; }.signup-card .stack-form { display: flex; }.footer-grid { grid-template-columns: 1fr 1fr; }.footer-grid > div:first-child { grid-column: 1/-1; }
    .notification-popover { position: fixed; top: 62px; right: 14px; width: min(330px, calc(100% - 28px)); }.verification-banner .container { justify-content: space-between; }.profile-hero .container, .title-action { align-items: flex-start; flex-direction: column; }.profile-layout, .settings-grid { grid-template-columns: 1fr; }.profile-name h1 { font-size: 34px; }.cookie-notice { right: 14px; bottom: 14px; }.moderation-review { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
    .hero h1 { font-size: 42px; }.hero-actions, .dashboard-actions { align-items: stretch; flex-direction: column; }.hero-actions .button { width: 100%; }.hero-visual { height: 300px; margin: 15px -25px 0; transform: scale(.75); }.float-energy { left: -30px; }.float-rank { right: -30px; }.stats-grid span { font-size: 9px; }.category-card { gap: 12px; }.category-icon { width: 42px; height: 42px; }.category-arrow { display: none; }.category-meta { flex-direction: column; gap: 2px; }.metric-grid { grid-template-columns: 1fr; margin-top: -110px; }.dashboard-section { padding-top: 75px; }.metric-card { min-height: 105px; }.bar-chart { gap: 3px; }.bar-track { width: 75%; }.panel-head { gap: 10px; }.chart-legend { display: none; }.footer-grid { grid-template-columns: 1fr; }.footer-grid > div:first-child { grid-column: auto; }.footer-bottom { align-items: flex-start; flex-direction: column; gap: 6px; }
    .insight-strip { grid-template-columns: 1fr 1fr; }.insight-item { padding: 11px 13px; }.topic-filters { align-items: stretch; flex-direction: column; }.topic-filters select, .filter-button { width: 100%; }.list-toolbar { flex-direction: column; }.list-toolbar > .button { width: 100%; }.post-footer { align-items: flex-start; flex-direction: column; }.post-footer > div { flex-wrap: wrap; }
    .notification-menu { display: none; }.verification-banner .container { padding: 8px 0; align-items: flex-start; flex-direction: column; gap: 3px; }.cookie-notice { align-items: stretch; flex-direction: column; }.cookie-notice form, .cookie-notice button { width: 100%; }.profile-identity { align-items: flex-start; flex-direction: column; }.profile-stats { grid-template-columns: repeat(3,1fr); }.profile-data-grid { grid-template-columns: 1fr; }.public-building > div { grid-template-columns: 1fr; }.confirm-card { padding: 30px 20px; }.confirm-card form { align-items: stretch; flex-direction: column; }.report-card { grid-template-columns: 1fr auto; }.report-card > .report-status { width: fit-content; }.report-card > div { grid-column: 1/-1; grid-row: 2; }
}

.comparator-section { background: #f5faf8; }
.comparator-layout { display: grid; grid-template-columns: minmax(285px, .72fr) minmax(0, 1.28fr); gap: 20px; align-items: start; }
.comparator-controls { position: sticky; top: 95px; }
.compare-icon { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 10px; color: var(--green-dark); background: var(--green-light); font-size: 20px; }
.compare-form { display: flex; flex-direction: column; gap: 18px; }
.compare-field { display: flex; flex-direction: column; gap: 7px; }
.compare-field > label { color: #2f4843; font-size: 12px; font-weight: 750; }
.field-help { margin: 0; color: #899793; font-size: 10px; line-height: 1.5; }
.criteria-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.criteria-option { display: flex; align-items: flex-start; gap: 8px; min-height: 38px; padding: 9px 10px; border: 1px solid #d9e6e2; border-radius: 9px; color: #536a65; background: #fbfdfc; font-size: 10px; line-height: 1.3; cursor: pointer; }
.criteria-option:has(input:checked) { border-color: #8dcec0; color: var(--green-dark); background: #eaf8f3; }
.criteria-option input { flex: 0 0 auto; width: 15px; height: 15px; margin: 1px 0 0; accent-color: var(--green); }
.criteria-toggle { align-items: center; border: 0; padding: 0; background: transparent; }
.criteria-toggle:has(input:checked) { border: 0; background: transparent; }
.compare-form ul.errorlist { margin: 0; padding: 0; color: #a94444; font-size: 10px; list-style: none; }
.comparator-results { display: grid; gap: 15px; }
.comparator-summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.comparator-summary h2 { margin: 3px 0 4px; font-family: Georgia, serif; font-size: 23px; font-weight: 500; }
.comparator-summary p, .compare-result-head p { margin: 0; color: var(--muted); font-size: 11px; }
.compare-result-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; padding: 8px 5px 0; }
.compare-result-head h2 { margin: 3px 0 4px; font-family: Georgia, serif; font-size: 27px; font-weight: 500; }
.similar-object { padding: 21px; }
.similar-object-head { display: grid; grid-template-columns: 78px 1fr auto; align-items: center; gap: 15px; }
.similar-score { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 68px; border-radius: 12px; color: var(--green-dark); background: var(--green-light); }
.similar-score strong { font-size: 24px; line-height: 1; }
.similar-score small, .similar-coverage small { margin-top: 4px; color: #78918a; font-size: 8px; text-align: center; }
.similar-object h3 { margin: 3px 0 4px; font-family: Georgia, serif; font-size: 20px; font-weight: 500; }
.similar-object p { margin: 0; color: var(--muted); font-size: 10px; }
.similar-coverage { display: flex; flex-direction: column; align-items: flex-end; }
.similar-coverage strong { color: #5d7770; font-size: 15px; }
.similar-progress { height: 7px; margin: 17px 0 14px; overflow: hidden; border-radius: 99px; background: #e3eeea; }
.similar-progress i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #57bea8, #15977f); }
.similar-details { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.similar-detail { padding: 10px 11px; border: 1px solid #e6eeeb; border-radius: 9px; background: #fbfdfc; }
.similar-detail.is-close { border-color: #c5e6dc; background: #f3fbf8; }
.similar-detail span, .similar-detail strong, .similar-detail small { display: block; }
.similar-detail span { color: #81928e; font-size: 8px; text-transform: uppercase; letter-spacing: .3px; }
.similar-detail strong { margin-top: 3px; color: #36534d; font-size: 11px; }
.similar-detail small { margin-top: 3px; color: #9aa9a5; font-size: 8px; }
.similar-energy { margin-top: 13px !important; padding-top: 11px; border-top: 1px solid #e8efed; }
.similar-energy strong { color: var(--green-dark); }
.comparator-empty { padding: 55px 30px; text-align: center; }
.comparator-empty > span { display: block; color: var(--green); font-size: 40px; }
.comparator-empty h3 { margin: 10px 0 5px; font-family: Georgia, serif; font-size: 23px; font-weight: 500; }
.comparator-empty p { max-width: 480px; margin: auto; color: var(--muted); font-size: 11px; line-height: 1.7; }
.comparator-start { min-height: 285px; display: flex; flex-direction: column; justify-content: center; }

@media (max-width: 780px) {
    .comparator-layout { grid-template-columns: 1fr; }
    .comparator-controls { position: static; }
    .similar-object-head { grid-template-columns: 70px 1fr; }
    .similar-coverage { grid-column: 1/-1; align-items: flex-start; }
}
@media (max-width: 500px) {
    .criteria-grid, .similar-details { grid-template-columns: 1fr; }
    .comparator-summary, .compare-result-head { align-items: flex-start; flex-direction: column; }
}
