:root {
  --ink:#10231d;
  --muted:#607068;
  --cream:#f5f2ea;
  --line:#d9ded9;
  --green:#174c3c;
  --green2:#0f3a2e;
  --lime:#dff36a;
  --white:#fff;
  --red:#9b2c2c;
  --amber:#805500;
  --radius:22px;
  --shadow:0 18px 55px rgba(16,35,29,.10)
}
* {
  box-sizing:border-box
}
html {
  scroll-behavior:smooth
}
body {
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,Segoe UI,sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.55
}
a {
  color:inherit;
  text-decoration:none
}
button,input,select,textarea {
  font:inherit
}
.container {
  width:min(1160px,calc(100% - 40px));
  margin:auto
}
.muted {
  color:var(--muted)
}
.site-header {
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(16,35,29,.08)
}
.nav-wrap {
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px
}
.brand {
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:850;
  letter-spacing:-.02em
}
.brand-mark {
  display:grid;
  place-items:center;
  width:38px;
  height:38px;
  border-radius:12px;
  background:var(--green);
  color:#fff
}
.site-nav {
  display:flex;
  align-items:center;
  gap:24px;
  font-weight:700;
  font-size:.95rem
}
.menu-toggle {
  display:none;
  border:1px solid var(--line);
  background:#fff;
  border-radius:12px;
  padding:9px 12px
}
.hero {
  padding:88px 0 72px;
  background:radial-gradient(circle at 88% 8%,#eaf2d7 0,transparent 28%),linear-gradient(180deg,#fbfcf9,#fff)
}
.hero-grid {
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:64px;
  align-items:center
}
.eyebrow {
  text-transform:uppercase;
  letter-spacing:.15em;
  font-size:.76rem;
  font-weight:900;
  color:#477365;
  margin:0 0 14px
}
.hero h1,.section-heading h2,.split-callout h2,.cta-inner h2,.page-hero h1 {
  font-size:clamp(2.5rem,5vw,5rem);
  line-height:1.02;
  letter-spacing:-.055em;
  margin:0
}
.hero-copy {
  font-size:1.16rem;
  color:var(--muted);
  max-width:62ch;
  margin:24px 0
}
.button-row {
  display:flex;
  gap:12px;
  flex-wrap:wrap
}
.centered {
  justify-content:center
}
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 20px;
  border-radius:14px;
  font-weight:850;
  border:1px solid transparent;
  transition:.2s transform,.2s background;
  cursor:pointer
}
.btn:hover {
  transform:translateY(-2px)
}
.btn:disabled {
  opacity:.55;
  cursor:not-allowed;
  transform:none
}
.btn-primary {
  background:var(--green);
  color:#fff
}
.btn-secondary {
  border-color:var(--line);
  background:#fff
}
.btn-light {
  background:var(--lime);
  color:var(--ink)
}
.btn-small {
  padding:10px 14px
}
.text-link {
  font-weight:850;
  color:var(--green)
}
.trust-list {
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  padding:0;
  margin:24px 0 0;
  list-style:none;
  color:var(--muted);
  font-size:.9rem
}
.trust-list li:before {
  content:"✓";
  color:var(--green);
  font-weight:900;
  margin-right:7px
}
.analysis-card,.info-card,.capacity-card,.form-card,.result-card,.download-card,.notice {
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:var(--shadow)
}
.analysis-card {
  padding:26px
}
.card-topline {
  display:flex;
  justify-content:space-between;
  gap:15px;
  font-weight:850
}
.status-pill {
  font-size:.78rem;
  background:var(--cream);
  padding:5px 9px;
  border-radius:999px
}
.analysis-metrics {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin:24px 0
}
.analysis-metrics div {
  padding:14px;
  border-radius:14px;
  background:#f7f9f6
}
.analysis-metrics strong,.analysis-metrics span {
  display:block
}
.analysis-metrics span {
  font-size:.78rem;
  color:var(--muted)
}
.route-lines {
  display:grid;
  gap:8px;
  margin:18px 0
}
.route-lines span {
  height:9px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--green),#86ad9f)
}
.finding {
  display:flex;
  gap:12px;
  padding:16px;
  border-radius:15px;
  background:var(--cream)
}
.finding p {
  margin:4px 0 0;
  color:var(--muted)
}
.finding-dot {
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--lime);
  margin-top:7px
}
.fineprint {
  font-size:.82rem;
  color:var(--muted)
}
.section {
  padding:84px 0
}
.section-muted {
  background:var(--cream)
}
.section-heading {
  max-width:840px;
  margin-bottom:34px
}
.section-heading h2,.split-callout h2,.cta-inner h2 {
  font-size:clamp(2rem,4vw,3.6rem)
}
.section-heading p:last-child,.split-callout>div>p:last-child {
  color:var(--muted);
  font-size:1.05rem
}
.narrow {
  max-width:720px
}
.cards-3 {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px
}
.info-card {
  padding:26px;
  box-shadow:none
}
.card-number {
  font-size:.78rem;
  font-weight:900;
  color:#789188
}
.info-card h3 {
  font-size:1.35rem;
  margin:30px 0 8px
}
.info-card p {
  color:var(--muted);
  margin:0
}
.process {
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px
}
.process li {
  display:flex;
  gap:18px;
  padding:24px;
  border:1px solid var(--line);
  border-radius:18px
}
.process li>span {
  display:grid;
  place-items:center;
  flex:0 0 38px;
  height:38px;
  border-radius:50%;
  background:var(--green);
  color:#fff;
  font-weight:900
}
.process h3 {
  margin:0 0 6px
}
.process p {
  margin:0;
  color:var(--muted)
}
.section-dark {
  background:var(--green2);
  color:#fff
}
.light .eyebrow {
  color:#a9cdbf
}
.light p:last-child {
  color:#c7d6d1
}
.industry-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px
}
.industry-grid div {
  padding:20px;
  border:1px solid rgba(255,255,255,.17);
  border-radius:16px;
  background:rgba(255,255,255,.05);
  font-weight:800
}
.split-callout {
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:42px;
  align-items:center
}
.capacity-card {
  padding:30px
}
.capacity-card strong,.capacity-card span {
  display:block
}
.capacity-card span {
  font-size:1.8rem;
  font-weight:900;
  margin:8px 0
}
.capacity-card p {
  color:var(--muted)
}
.two-column {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:36px;
  align-items:start
}
.notice {
  padding:26px;
  box-shadow:none;
  background:#fff
}
.notice p {
  color:var(--muted);
  margin-bottom:0
}
.cta-section {
  background:var(--green);
  color:#fff;
  padding:64px 0
}
.cta-inner {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px
}
.cta-inner p:last-child {
  color:#c8d8d2
}
.site-footer {
  padding:58px 0 26px;
  background:#0d211b;
  color:#fff
}
.footer-grid {
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:30px
}
.footer-grid div {
  display:flex;
  flex-direction:column;
  gap:9px
}
.footer-grid p,.footer-grid a {
  color:#b9c8c2
}
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:36px;
  padding-top:20px;
  color:#96aaa2;
  font-size:.9rem
}
.page-hero {
  padding:70px 0 36px;
  background:var(--cream)
}
.page-hero h1 {
  font-size:clamp(2.5rem,5vw,4.5rem)
}
.page-hero p {
  max-width:780px;
  color:var(--muted);
  font-size:1.08rem
}
.form-layout {
  display:grid;
  grid-template-columns:1fr .72fr;
  gap:32px;
  align-items:start
}
.form-card {
  padding:28px
}
.form-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px
}
.field {
  display:grid;
  gap:7px
}
.field.full {
  grid-column:1/-1
}
.field label {
  font-weight:800;
  font-size:.9rem
}
.field input,.field select,.field textarea,.admin-filters input,.admin-filters select {
  width:100%;
  border:1px solid var(--line);
  border-radius:12px;
  padding:12px 13px;
  background:#fff;
  color:var(--ink)
}
.field input:focus,.field select:focus,.field textarea:focus,.admin-filters input:focus,.admin-filters select:focus {
  outline:3px solid rgba(23,76,60,.14);
  border-color:var(--green)
}
.form-status {
  min-height:24px;
  font-weight:700;
  margin-top:10px
}
.form-status.error {
  color:var(--red)
}
.form-status.success {
  color:var(--green)
}
.form-status.working {
  color:var(--amber)
}
.check {
  display:flex!important;
  gap:10px;
  align-items:flex-start;
  color:var(--muted);
  font-size:.9rem
}
.check input {
  width:auto;
  margin-top:4px
}
.check a {
  text-decoration:underline
}
.honeypot {
  position:absolute!important;
  left:-10000px!important;
  width:1px!important;
  height:1px!important;
  overflow:hidden!important
}
.turnstile-box {
  min-height:68px;
  display:flex;
  align-items:center;
  color:var(--muted)
}
.configuration-error {
  border:1px solid #e3b3b3;
  background:#fff4f4;
  padding:16px;
  border-radius:12px;
  color:var(--red)
}
.side-note {
  padding:26px;
  border-radius:var(--radius);
  background:var(--green2);
  color:#fff
}
.side-note li {
  margin:10px 0;
  color:#c7d6d1
}
.side-note .fineprint,.side-note p {
  color:#c7d6d1
}
.side-rule {
  height:1px;
  background:rgba(255,255,255,.16);
  margin:24px 0
}
.calculator-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:26px
}
.result-card {
  padding:28px;
  background:var(--green2);
  color:#fff
}
.result-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px
}
.result-grid div {
  padding:16px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:14px
}
.result-grid span,.result-grid strong {
  display:block
}
.result-grid span {
  font-size:.82rem;
  color:#c3d4ce
}
.result-grid strong {
  font-size:1.4rem;
  margin-top:3px
}
.legal {
  max-width:820px
}
.legal h2 {
  margin-top:34px
}
.legal p,.legal li {
  color:var(--muted)
}
.confirmation-card {
  max-width:780px;
  text-align:center
}
.confirmation-eyebrow {
  margin-top:50px
}
.resource-grid {
  display:grid;
  grid-template-columns:1fr .55fr;
  gap:38px;
  align-items:start
}
.resource-main h2 {
  margin-top:38px
}
.resource-main h2:first-child {
  margin-top:0
}
.download-card {
  padding:28px;
  position:sticky;
  top:100px
}
.download-card ul {
  padding-left:20px;
  color:var(--muted)
}
.requirements-table {
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden
}
.requirement-row {
  display:grid;
  grid-template-columns:.6fr 1.4fr;
  gap:20px;
  padding:15px 18px;
  border-bottom:1px solid var(--line)
}
.requirement-row:last-child {
  border-bottom:0
}
.requirement-row.header {
  background:var(--cream)
}
.admin-body {
  background:#edf1ed
}
.admin-header {
  min-height:70px;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:#fff;
  border-bottom:1px solid var(--line)
}
.admin-shell {
  min-height:calc(100vh - 70px);
  display:grid;
  grid-template-columns:minmax(350px,.72fr) minmax(500px,1.28fr);
  gap:1px;
  background:var(--line)
}
.admin-list-panel,.admin-detail-panel {
  background:#fff;
  padding:24px;
  overflow:auto
}
.admin-list-panel {
  max-height:calc(100vh - 70px)
}
.admin-detail-panel {
  max-height:calc(100vh - 70px)
}
.admin-toolbar {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px
}
.admin-toolbar h1 {
  margin:0;
  font-size:2rem
}
.admin-filters {
  display:grid;
  grid-template-columns:1fr .65fr;
  gap:10px;
  margin:20px 0
}
.submission-list {
  display:grid;
  gap:8px
}
.submission-row {
  width:100%;
  display:flex;
  justify-content:space-between;
  gap:18px;
  text-align:left;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  padding:14px;
  cursor:pointer
}
.submission-row:hover,.submission-row.selected {
  border-color:var(--green);
  background:#f6faf7
}
.submission-primary,.submission-meta {
  display:flex;
  flex-direction:column;
  gap:3px
}
.submission-meta {
  text-align:right;
  align-items:flex-end
}
.submission-row small {
  color:var(--muted)
}
.priority {
  font-size:.72rem;
  padding:3px 7px;
  border-radius:999px;
  background:var(--cream)
}
.priority-high,.priority-urgent {
  background:#fff0dc;
  color:#714800
}
.priority-urgent {
  background:#ffe5e5;
  color:#8b1d1d
}
.empty-list,.empty-detail {
  padding:40px;
  border:1px dashed var(--line);
  border-radius:18px;
  color:var(--muted);
  text-align:center
}
.detail-heading {
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:start
}
.detail-heading h2 {
  font-size:2.2rem;
  margin:0
}
.detail-heading p:last-child {
  color:var(--muted)
}
.danger-button {
  border:1px solid #dfb3b3;
  background:#fff6f6;
  color:var(--red);
  border-radius:10px;
  padding:9px 12px;
  font-weight:800;
  cursor:pointer
}
.detail-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
  margin:25px 0
}
.detail-grid div {
  padding:13px;
  border:1px solid var(--line);
  border-radius:12px
}
.detail-grid span,.detail-grid strong {
  display:block
}
.detail-grid span {
  font-size:.75rem;
  color:var(--muted)
}
.detail-section {
  border-top:1px solid var(--line);
  padding-top:24px;
  margin-top:24px
}
.detail-section h3 {
  margin-top:0
}
.long-text {
  white-space:pre-wrap
}
.upload-list,.activity-list {
  display:grid;
  gap:9px
}
.upload-row,.activity-list>div {
  display:flex;
  justify-content:space-between;
  gap:15px;
  align-items:center;
  padding:12px;
  border:1px solid var(--line);
  border-radius:12px
}
.upload-row small,.activity-list span {
  display:block;
  color:var(--muted);
  font-size:.82rem
}
.admin-form {
  padding-bottom:30px
}
@media(max-width:1000px) {
  .admin-shell {
    grid-template-columns:1fr
  }
  .admin-list-panel,.admin-detail-panel {
    max-height:none
  }
  .admin-detail-panel {
    min-height:500px
  }
  .detail-grid {
    grid-template-columns:1fr 1fr
  }
}
@media(max-width:900px) {
  .site-nav {
    display:none;
    position:absolute;
    top:76px;
    left:20px;
    right:20px;
    padding:16px;
    border:1px solid var(--line);
    border-radius:16px;
    background:#fff;
    box-shadow:var(--shadow);
    flex-direction:column;
    align-items:stretch
  }
  .site-nav.open {
    display:flex
  }
  .menu-toggle {
    display:block
  }
  .hero-grid,.form-layout,.calculator-grid,.split-callout,.two-column,.resource-grid {
    grid-template-columns:1fr
  }
  .cards-3 {
    grid-template-columns:1fr
  }
  .process {
    grid-template-columns:1fr
  }
  .industry-grid {
    grid-template-columns:1fr 1fr
  }
  .footer-grid {
    grid-template-columns:1fr 1fr
  }
  .cta-inner {
    align-items:flex-start;
    flex-direction:column
  }
  .download-card {
    position:static
  }
}
@media(max-width:600px) {
  .container {
    width:min(100% - 28px,1160px)
  }
  .hero {
    padding:56px 0
  }
  .analysis-metrics,.form-grid,.result-grid,.admin-filters,.detail-grid {
    grid-template-columns:1fr
  }
  .industry-grid,.footer-grid {
    grid-template-columns:1fr
  }
  .section {
    padding:64px 0
  }
  .trust-list {
    display:grid;
    gap:8px
  }
  .requirement-row {
    grid-template-columns:1fr
  }
  .submission-row,.detail-heading,.upload-row {
    flex-direction:column
  }
  .submission-meta {
    text-align:left;
    align-items:flex-start
  }
  .admin-header {
    padding:12px 16px;
    gap:12px
  }
  .admin-header .status-pill {
    display:none
  }
  .admin-list-panel,.admin-detail-panel {
    padding:16px
  }
}

.auth-card {
  max-width:640px;
  margin:0 auto;
  text-align:left
}
.auth-card .eyebrow,.auth-card h1,.auth-card>.hero-copy,.auth-card>.fineprint {
  text-align:center
}
.auth-form {
  width:min(100%,480px);
  margin:28px auto 20px;
  display:grid;
  gap:18px
}
.auth-form .btn {
  width:100%
}
.auth-form .turnstile-shell {
  min-height:70px;
  display:flex;
  align-items:center;
  justify-content:center
}
.auth-card .form-status {
  min-height:24px;
  margin:0;
  text-align:center
}

.app-body {
  min-width:320px;
  background:#f7f9f6
}
.app-shell {
  min-height:100vh;
  display:grid;
  grid-template-columns:280px minmax(0,1fr)
}
.app-sidebar {
  position:sticky;
  top:0;
  align-self:start;
  height:100vh;
  overflow-y:auto;
  display:flex;
  flex-direction:column;
  padding:28px 22px 22px;
  background:#0d211b;
  color:#fff;
  border-right:1px solid rgba(255,255,255,.08)
}
.app-sidebar-brand {
  width:max-content;
  margin-bottom:34px
}
.app-sidebar-brand .brand-mark {
  background:var(--lime);
  color:var(--ink)
}
.app-sidebar-context {
  display:grid;
  gap:3px;
  padding:0 12px 20px;
  border-bottom:1px solid rgba(255,255,255,.13)
}
.app-sidebar-context span,.app-user-copy small {
  color:#a9bbb4;
  font-size:.75rem
}
.app-sidebar-context strong {
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  font-size:.94rem
}
.app-sidebar-nav {
  display:grid;
  gap:6px;
  margin-top:20px
}
.app-sidebar-link {
  display:flex;
  align-items:center;
  gap:12px;
  min-height:48px;
  padding:10px 12px;
  border:1px solid transparent;
  border-radius:13px;
  color:#c8d6d1;
  font-weight:800
}
.app-sidebar-link:hover {
  background:rgba(255,255,255,.07);
  color:#fff
}
.app-sidebar-link:focus-visible,.app-sidebar-signout button:focus-visible,.app-sidebar-brand:focus-visible {
  outline:3px solid var(--lime);
  outline-offset:3px
}
.app-sidebar-link.active {
  color:#fff;
  background:rgba(223,243,106,.12);
  border-color:rgba(223,243,106,.24)
}
.app-sidebar-icon {
  display:grid;
  place-items:center;
  flex:0 0 30px;
  height:30px;
  border-radius:9px;
  background:rgba(255,255,255,.08);
  color:var(--lime);
  font-size:1rem;
  font-weight:900
}
.app-sidebar-user {
  display:flex;
  align-items:center;
  gap:11px;
  margin-top:auto;
  padding:18px 8px 14px;
  border-top:1px solid rgba(255,255,255,.13)
}
.app-user-avatar {
  display:grid;
  place-items:center;
  flex:0 0 38px;
  height:38px;
  border-radius:12px;
  background:#214d40;
  color:#fff;
  font-size:.78rem;
  font-weight:900
}
.app-user-copy {
  min-width:0;
  display:grid
}
.app-user-copy strong,.app-user-copy small {
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap
}
.app-user-copy strong {
  font-size:.9rem
}
.app-sidebar-signout button {
  width:100%;
  padding:10px 12px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:12px;
  background:transparent;
  color:#c8d6d1;
  text-align:left;
  font-weight:800;
  cursor:pointer
}
.app-sidebar-signout button:hover {
  background:rgba(255,255,255,.07);
  color:#fff
}
.app-version-label {
  margin:10px 0 0;
  color:#82958e;
  font-size:.68rem;
  font-weight:750;
  letter-spacing:.045em;
  line-height:1.2;
  text-align:center
}
.app-version-label-mobile {
  display:none
}
.app-main {
  min-width:0
}
.app-main .container {
  width:min(1040px,calc(100% - 64px))
}
.app-mobile-header {
  display:none
}
.app-page-hero {
  padding-top:64px;
  background:linear-gradient(145deg,#eef2e7,var(--cream))
}
.app-page-section {
  padding-top:48px
}
@media(max-width:900px) {
  .app-shell {
    display:block
  }
  .app-sidebar {
    display:none
  }
  .app-mobile-header {
    display:block
  }
  .app-main .container {
    width:min(1160px,calc(100% - 40px))
  }
}
@media(max-width:600px) {
  .app-main .container {
    width:min(100% - 28px,1160px)
  }
  .app-page-hero {
    padding-top:48px
  }
}

.app-bottom-nav {
  display:none
}
.app-mobile-workspace {
  max-width:46vw;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap
}
@media(max-width:900px) {
  .app-main {
    padding-bottom:calc(92px + env(safe-area-inset-bottom))
  }
  .app-bottom-nav {
    position:fixed;
    z-index:40;
    left:0;
    right:0;
    bottom:0;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
    padding:8px max(12px,env(safe-area-inset-left)) calc(8px + env(safe-area-inset-bottom)) max(12px,env(safe-area-inset-right));
    border-top:1px solid var(--line);
    background:rgba(255,255,255,.97);
    box-shadow:0 -12px 35px rgba(16,35,29,.09);
    backdrop-filter:blur(16px)
  }
  .app-bottom-nav form {
    min-width:0;
    margin:0
  }
  .app-bottom-link {
    width:100%;
    min-height:52px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:3px;
    padding:5px 10px;
    border:0;
    border-radius:12px;
    background:transparent;
    color:var(--muted);
    font-size:.72rem;
    font-weight:850;
    line-height:1.15;
    cursor:pointer
  }
  .app-bottom-link:hover {
    background:#f2f5ef;
    color:var(--green)
  }
  .app-bottom-link:focus-visible {
    outline:3px solid rgba(23,76,60,.24);
    outline-offset:1px
  }
  .app-bottom-link.active {
    background:#eaf0e8;
    color:var(--green)
  }
  .app-bottom-icon {
    display:grid;
    place-items:center;
    min-height:20px;
    font-size:1.05rem;
    font-weight:900
  }
  .app-version-label-mobile {
    display:block;
    grid-column:1/-1;
    margin:0;
    padding-bottom:1px;
    color:#819189;
    font-size:.64rem
  }
}

.app-section-summary {
  margin-bottom:24px
}
.app-section-summary>.eyebrow {
  margin-left:2px
}
.app-section-summary .cards-3 {
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr))
}
.app-empty-state {
  min-height:300px;
  display:grid;
  place-items:center;
  align-content:center;
  padding:46px 30px;
  border:1px dashed #bcc8c1;
  border-radius:var(--radius);
  background:#fff;
  text-align:center
}
.app-empty-state .eyebrow {
  margin:14px 0 8px
}
.app-empty-state h2 {
  max-width:620px;
  margin:0;
  font-size:clamp(1.65rem,3vw,2.35rem);
  letter-spacing:-.035em;
  line-height:1.08
}
.app-empty-state>p:last-of-type {
  max-width:620px;
  margin:14px 0 0;
  color:var(--muted)
}
.app-empty-state .button-row {
  justify-content:center;
  margin-top:24px
}
.app-empty-icon {
  display:grid;
  place-items:center;
  width:52px;
  height:52px;
  border-radius:16px;
  background:#eaf0e8;
  color:var(--green);
  font-size:1.25rem;
  font-weight:900
}
.app-account-card {
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:24px;
  padding:24px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff
}
.app-account-card .app-user-avatar {
  flex-basis:52px;
  height:52px;
  border-radius:16px;
  font-size:.9rem
}
.app-account-card .eyebrow {
  margin-bottom:4px
}
.app-account-card h2 {
  margin:0;
  letter-spacing:-.025em
}
.app-account-card p:last-child {
  margin:4px 0 0;
  color:var(--muted)
}
@media(max-width:900px) {
  .app-bottom-nav {
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:4px
  }
  .app-bottom-nav-single {
    grid-template-columns:1fr
  }
  .app-bottom-link {
    min-width:0;
    padding-left:4px;
    padding-right:4px
  }
  .app-bottom-link>span:last-child {
    max-width:100%;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap
  }
}
@media(max-width:600px) {
  .app-empty-state {
    min-height:260px;
    padding:38px 20px
  }
  .app-account-card {
    align-items:flex-start;
    padding:20px
  }
}
@media(max-width:390px) {
  .app-bottom-link {
    font-size:.66rem
  }
  .app-bottom-icon {
    font-size:.95rem
  }
}

.app-profile {
  position:relative
}
.app-profile-desktop {
  margin-top:auto;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.13)
}
.app-profile-trigger {
  width:100%;
  min-height:48px;
  display:flex;
  align-items:center;
  gap:11px;
  padding:8px;
  border:1px solid transparent;
  border-radius:13px;
  background:transparent;
  color:inherit;
  cursor:pointer;
  list-style:none
}
.app-profile-trigger::-webkit-details-marker {
  display:none
}
.app-profile-trigger:hover {
  background:rgba(255,255,255,.07)
}
.app-profile-trigger:focus-visible,.app-profile-menu a:focus-visible,.app-profile-menu button:focus-visible {
  outline:3px solid var(--lime);
  outline-offset:2px
}
.app-profile-chevron {
  margin-left:auto;
  color:#a9bbb4;
  font-size:.78rem;
  transition:transform .18s ease
}
.app-profile[open] .app-profile-chevron {
  transform:rotate(180deg)
}
.app-profile-menu {
  position:absolute;
  z-index:60;
  bottom:calc(100% + 10px);
  left:0;
  width:100%;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  color:var(--ink);
  box-shadow:var(--shadow)
}
.app-profile-heading {
  display:grid;
  gap:2px;
  padding:16px;
  border-bottom:1px solid var(--line)
}
.app-profile-heading strong,.app-profile-heading span {
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap
}
.app-profile-heading strong {
  font-size:.92rem
}
.app-profile-heading span {
  color:var(--muted);
  font-size:.78rem
}
.app-profile-links {
  display:grid;
  padding:7px;
  border-bottom:1px solid var(--line)
}
.app-profile-links a,.app-profile-menu form button {
  width:100%;
  min-height:44px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:9px 10px;
  border:0;
  border-radius:10px;
  background:transparent;
  color:var(--ink);
  text-align:left;
  font-weight:800;
  cursor:pointer
}
.app-profile-links a:hover,.app-profile-menu form button:hover {
  background:#f2f5ef;
  color:var(--green)
}
.app-profile-menu form {
  margin:0;
  padding:7px
}
.app-profile-mobile {
  display:none
}
@media(max-width:900px) {
  .app-profile-mobile {
    display:block
  }
  .app-profile-mobile .app-profile-trigger {
    width:48px;
    padding:5px
  }
  .app-profile-mobile .app-user-avatar {
    flex-basis:38px
  }
  .app-profile-mobile .app-profile-chevron {
    display:none
  }
  .app-profile-mobile .app-profile-menu {
    top:calc(100% + 10px);
    right:0;
    bottom:auto;
    left:auto;
    width:min(280px,calc(100vw - 28px))
  }
}
