/* Graphilence Team Hub 2.2
   Project-management inspired visual system. All colors remain controlled by
   Dashboard Settings through the existing CSS custom properties. */

:root{
  --gth-shell-gap:18px;
  --gth-card-radius:20px;
  --gth-soft-shadow:0 10px 30px rgba(var(--gth-shadow-rgb,15,23,42),.055);
}
body.gth-dashboard-page{background:var(--gth-bg)!important}
.gth-app{
  grid-template-columns:230px minmax(0,1fr);
  gap:0;
  background:var(--gth-bg);
}

/* Light project-management sidebar */
.gth-sidebar{
  width:230px;
  padding:18px 14px;
  background:var(--gth-surface);
  color:var(--gth-text);
  border-right:1px solid var(--gth-border);
  box-shadow:none;
}
.gth-brand{
  padding:2px 8px 20px;
  border-bottom:1px solid var(--gth-border);
  color:var(--gth-heading);
}
.gth-brand strong{color:var(--gth-heading);font-size:14px}
.gth-brand small{color:var(--gth-muted);opacity:1}
.gth-logo-mark{
  width:40px;height:40px;border-radius:13px;
  background:color-mix(in srgb,var(--gth-accent) 13%,var(--gth-surface));
  color:var(--gth-accent);
  border:1px solid color-mix(in srgb,var(--gth-accent) 35%,var(--gth-border));
  box-shadow:none;
}
.gth-nav{padding-top:24px;gap:3px}
.gth-nav:before{
  content:"MENU";
  display:block;
  padding:0 13px 10px;
  color:var(--gth-muted);
  font-size:12px;
  font-weight:700;
  letter-spacing:.13em;
}
.gth-nav-item{
  min-height:42px;
  padding:10px 12px;
  border-radius:11px;
  color:var(--gth-muted);
  font-size:13px;
  font-weight:600;
  transform:none!important;
}
.gth-nav-item:before{
  width:18px;height:18px;
  display:grid;place-items:center;
  margin-right:9px;
  border-radius:6px;
  background:transparent;
  box-shadow:none;
  color:currentColor;
  font-size:12px;
}
.gth-nav-item:nth-child(1):before{content:"▦"}
.gth-nav-item:nth-child(2):before{content:"✓"}
.gth-nav-item:nth-child(3):before{content:"□"}
.gth-nav-item:nth-child(4):before{content:"◷"}
.gth-nav-item:nth-child(5):before{content:"◇"}
.gth-nav-item:nth-child(6):before{content:"$"}
.gth-nav-item:nth-last-child(1):before{content:"♙"}
.gth-nav-item:hover{background:var(--gth-surface-3);color:var(--gth-heading)}
.gth-nav-item.is-active{
  color:var(--gth-heading);
  background:color-mix(in srgb,var(--gth-accent) 9%,var(--gth-surface));
  box-shadow:none;
}
.gth-nav-item.is-active:after{
  content:"";
  position:absolute;
  left:-14px;top:8px;bottom:8px;
  width:4px;border-radius:0 6px 6px 0;
  background:var(--gth-accent);
}
.gth-nav-item.is-active:before{color:var(--gth-accent);background:color-mix(in srgb,var(--gth-accent) 12%,transparent);box-shadow:none}
.gth-nav-item small{margin-left:auto;font-size:12px;text-transform:uppercase;letter-spacing:.08em;color:var(--gth-accent)}
.gth-sidebar-bottom{padding:17px 10px 2px;border-top:1px solid var(--gth-border)}
.gth-sidebar-bottom a{color:var(--gth-muted)}
.gth-sidebar-bottom a:hover{color:var(--gth-heading)}

/* Main shell */
.gth-main{grid-column:2;padding:0 24px 60px;min-width:0}
.gth-topbar{
  min-height:72px;
  margin:0 -24px;
  padding:0 24px;
  background:color-mix(in srgb,var(--gth-surface) 94%,transparent);
  border-bottom:1px solid var(--gth-border);
  box-shadow:none;
  display:grid;
  grid-template-columns:auto minmax(220px,520px) auto;
  gap:22px;
}
.gth-topbar h1{font-size:20px}
.gth-eyebrow{display:none}
.gth-topbar-search{
  width:100%;height:42px;
  display:flex;align-items:center;gap:10px;
  padding:0 13px;
  border:1px solid var(--gth-border);
  border-radius:12px;
  background:var(--gth-surface-2);
}
.gth-topbar-search span{font-size:20px;color:var(--gth-muted);line-height:1}
.gth-topbar-search input{
  min-width:0;width:100%;height:100%;padding:0!important;
  border:0!important;background:transparent!important;
  box-shadow:none!important;color:var(--gth-text)
}
.gth-user-chip{background:var(--gth-surface);border-color:var(--gth-border)}
.gth-view{max-width:1500px;padding-top:26px}

/* Dashboard hero */
.gth-dashboard-hero{
  display:flex;align-items:flex-end;justify-content:space-between;gap:22px;
  margin-bottom:20px;
}
.gth-dashboard-hero h2{margin:0 0 6px;font-size:29px;line-height:1.12;letter-spacing:-.035em;color:var(--gth-heading)}
.gth-dashboard-hero p{margin:0;color:var(--gth-muted);font-size:13px}
.gth-dashboard-actions{display:flex;align-items:center;gap:10px}
.gth-dashboard-actions .gth-button{min-width:124px}
.gth-dashboard-actions .gth-button span{font-size:18px;line-height:0}
.gth-date{box-shadow:none;background:var(--gth-surface);font-size:12px}

/* Dashboard KPI cards */
.gth-kpi-grid-dashboard{grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;margin-bottom:14px}
.gth-kpi-grid-dashboard .gth-kpi{
  position:relative;
  min-height:126px;
  width:100%;
  display:flex;flex-direction:column;align-items:flex-start;text-align:left;
  padding:17px 18px;
  border:1px solid var(--gth-border);
  border-radius:17px;
  background:var(--gth-surface);
  box-shadow:none;
  color:var(--gth-text);
  cursor:pointer;
}
.gth-kpi-grid-dashboard .gth-kpi:before,.gth-kpi-grid-dashboard .gth-kpi:after{display:none}
.gth-kpi-grid-dashboard .gth-kpi:hover{transform:translateY(-2px);border-color:color-mix(in srgb,var(--gth-accent) 30%,var(--gth-border));box-shadow:var(--gth-soft-shadow)}
.gth-kpi-grid-dashboard .gth-kpi-label{font-size:12px;font-weight:600;color:var(--gth-heading)}
.gth-kpi-grid-dashboard .gth-kpi strong{margin:11px 0 6px;font-size:34px;color:var(--gth-heading)}
.gth-kpi-grid-dashboard .gth-kpi small{font-size:12px;color:var(--gth-muted)}
.gth-kpi-grid-dashboard .gth-kpi>i{
  position:absolute;right:14px;top:14px;
  width:26px;height:26px;display:grid;place-items:center;
  border:1px solid var(--gth-border);border-radius:999px;
  color:var(--gth-heading);font-size:12px;font-style:normal;
}
.gth-kpi-grid-dashboard .gth-kpi-featured{
  background:linear-gradient(145deg,var(--gth-accent),color-mix(in srgb,var(--gth-accent) 77%,#000));
  border-color:transparent;
}
.gth-kpi-grid-dashboard .gth-kpi-featured .gth-kpi-label,
.gth-kpi-grid-dashboard .gth-kpi-featured strong{color:var(--gth-button-text)}
.gth-kpi-grid-dashboard .gth-kpi-featured small{color:color-mix(in srgb,var(--gth-button-text) 70%,transparent)}
.gth-kpi-grid-dashboard .gth-kpi-featured>i{color:var(--gth-button-text);border-color:color-mix(in srgb,var(--gth-button-text) 35%,transparent)}
.gth-kpi-grid-dashboard .gth-kpi-attention{background:color-mix(in srgb,var(--gth-danger) 5%,var(--gth-surface))}

/* Inspiration-based dashboard modules */
.gth-dashboard-layout{
  display:grid;
  grid-template-columns:minmax(0,1.35fr) minmax(300px,.8fr) minmax(280px,.7fr);
  gap:14px;
  align-items:stretch;
}
.gth-dashboard-layout>.gth-card{padding:20px;border-radius:17px;box-shadow:none;min-width:0}
.gth-dashboard-layout .gth-card-head{margin-bottom:15px}
.gth-dashboard-layout .gth-card-head h3{font-size:16px}
.gth-dashboard-layout .gth-card-head p{font-size:12px}
.gth-analytics-card{grid-column:span 2;min-height:300px}
.gth-priority-card{grid-column:3;grid-row:1}
.gth-team-collaboration-card{grid-column:1;grid-row:2;min-height:290px}
.gth-progress-card{grid-column:2;grid-row:2;min-height:290px}
.gth-dashboard-activity{grid-column:3;grid-row:2;min-height:290px}
.gth-design-summary-card{grid-column:1 / -1}

.gth-analytics-bars{
  height:200px;
  display:flex;align-items:flex-end;justify-content:space-around;gap:20px;
  padding:16px 10px 4px;
  border-top:1px solid var(--gth-border);
  background:repeating-linear-gradient(to bottom,transparent 0,transparent 49px,color-mix(in srgb,var(--gth-border) 65%,transparent) 50px);
}
.gth-analytics-column{height:100%;flex:1;max-width:78px;display:flex;flex-direction:column;justify-content:flex-end;align-items:center;gap:7px}
.gth-analytics-column span{font-size:12px;color:var(--gth-muted);white-space:nowrap}
.gth-analytics-value{font-size:12px;font-weight:700;color:var(--gth-heading)}
.gth-analytics-bar{width:100%;border-radius:18px 18px 7px 7px;background:var(--gth-surface-3);min-height:22px}
.gth-analytics-bar.is-primary{background:linear-gradient(180deg,var(--gth-accent),color-mix(in srgb,var(--gth-accent) 74%,#000))}
.gth-analytics-bar.is-success{background:color-mix(in srgb,var(--gth-success) 68%,#fff)}
.gth-analytics-bar.is-dark{background:var(--gth-heading)}
.gth-analytics-bar.is-warning{background:color-mix(in srgb,var(--gth-warning) 48%,#fff)}

.gth-compact-project-list,.gth-collaboration-list,.gth-revenue-list{display:grid;gap:2px}
.gth-compact-project{
  width:100%;display:grid;grid-template-columns:9px 1fr auto;align-items:center;gap:10px;
  padding:11px 4px;border:0;border-bottom:1px solid var(--gth-border);background:transparent;text-align:left;color:var(--gth-text)
}
.gth-compact-project:hover{background:var(--gth-surface-2)}
.gth-compact-project strong,.gth-collaboration-row strong{display:block;font-size:12px;color:var(--gth-heading)}
.gth-compact-project small,.gth-collaboration-row small{display:block;margin-top:3px;font-size:12px;color:var(--gth-muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.gth-compact-due{font-size:12px;color:var(--gth-muted)}
.gth-project-dot{width:8px;height:8px;border-radius:999px;background:var(--gth-muted)}
.gth-dot-in-progress{background:var(--gth-info)}.gth-dot-completed{background:var(--gth-success)}.gth-dot-revision,.gth-dot-blocked{background:var(--gth-danger)}.gth-dot-submitted{background:var(--gth-warning)}

.gth-collaboration-row{display:grid;grid-template-columns:34px minmax(0,1fr) auto;align-items:center;gap:10px;padding:9px 0;border-bottom:1px solid var(--gth-border)}
.gth-collaboration-row img{width:34px;height:34px;border-radius:999px;object-fit:cover}
.gth-collaboration-row .gth-status{font-size:12px;padding:5px 7px}

.gth-progress-card{display:flex;flex-direction:column}
.gth-progress-ring{
  --p:calc(var(--gth-progress-value) * 1%);
  width:185px;height:118px;margin:5px auto 12px;position:relative;overflow:hidden;
}
.gth-progress-ring:before{
  content:"";position:absolute;inset:0;border-radius:100px 100px 0 0;
  background:conic-gradient(from 270deg at 50% 100%,var(--gth-accent) 0 var(--p),var(--gth-surface-3) var(--p) 50%,transparent 50% 100%);
}
.gth-progress-ring:after{content:"";position:absolute;left:24px;right:24px;bottom:-1px;height:75px;border-radius:90px 90px 0 0;background:var(--gth-surface)}
.gth-progress-ring>div{position:absolute;z-index:2;left:0;right:0;bottom:3px;text-align:center}
.gth-progress-ring strong{display:block;font-size:35px;letter-spacing:-.06em;color:var(--gth-heading)}
.gth-progress-ring span{font-size:12px;color:var(--gth-muted)}
.gth-progress-legend{display:flex;justify-content:center;flex-wrap:wrap;gap:13px;margin-top:auto}
.gth-progress-legend span{display:flex;align-items:center;gap:5px;font-size:12px;color:var(--gth-muted)}
.gth-progress-legend i{width:7px;height:7px;border-radius:999px}.gth-progress-legend .is-complete{background:var(--gth-accent)}.gth-progress-legend .is-running{background:var(--gth-heading)}.gth-progress-legend .is-pending{background:var(--gth-border-strong)}
.gth-dashboard-activity .gth-activity{padding-bottom:13px}.gth-dashboard-activity .gth-activity p{font-size:12px}.gth-dashboard-activity .gth-activity small{font-size:12px}
.gth-design-summary-card .gth-mini-leaderboard{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px}.gth-design-summary-card .gth-leader-mini{border:1px solid var(--gth-border);border-radius:13px;padding:10px}

/* General cards and forms */
.gth-card,.gth-project-card,.gth-team-card,.gth-assignment-card{border-radius:var(--gth-card-radius);box-shadow:none}
.gth-card:hover{border-color:var(--gth-border)}
.gth-button{background:var(--gth-accent);border-color:var(--gth-accent);box-shadow:none;border-radius:11px}
.gth-button:hover{box-shadow:0 8px 18px color-mix(in srgb,var(--gth-accent) 24%,transparent)}
.gth-button-secondary{background:var(--gth-surface);border-color:var(--gth-border);color:var(--gth-text)!important}
.gth-form-grid input,.gth-form-grid select,.gth-form-grid textarea,.gth-card input,.gth-card select,.gth-card textarea{border-radius:10px}

/* Click-through filter feedback */
.gth-active-filter-note{
  display:flex;align-items:center;justify-content:space-between;gap:14px;
  margin:-8px 0 16px;padding:10px 13px;
  border:1px solid color-mix(in srgb,var(--gth-accent) 25%,var(--gth-border));
  border-radius:11px;background:color-mix(in srgb,var(--gth-accent) 6%,var(--gth-surface));
  color:var(--gth-text);font-size:12px
}
.gth-active-filter-note[hidden]{display:none}
.gth-active-filter-note button{border:0;background:transparent;color:var(--gth-accent);font-size:12px;font-weight:700}

/* Private founder finance */
.gth-private-finance-fields{
  display:grid;grid-template-columns:minmax(220px,1.5fr) minmax(160px,.7fr) minmax(160px,.7fr);gap:14px;align-items:end;
  padding:16px;border:1px solid color-mix(in srgb,var(--gth-accent) 28%,var(--gth-border));border-radius:14px;
  background:color-mix(in srgb,var(--gth-accent) 5%,var(--gth-surface));
}
.gth-private-finance-fields>div strong{display:block;margin:4px 0;font-size:13px;color:var(--gth-heading)}
.gth-private-finance-fields>div p{margin:0;font-size:12px;color:var(--gth-muted)}
.gth-private-label{display:inline-flex;padding:4px 7px;border-radius:999px;background:var(--gth-heading);color:#fff;font-size:12px;text-transform:uppercase;letter-spacing:.08em}
.gth-private-project-value{display:flex;align-items:center;justify-content:space-between;padding:11px 13px;margin:14px 0 0;border-radius:11px;background:color-mix(in srgb,var(--gth-accent) 6%,var(--gth-surface));border:1px dashed color-mix(in srgb,var(--gth-accent) 30%,var(--gth-border))}
.gth-private-project-value span{font-size:12px;color:var(--gth-muted)}.gth-private-project-value strong{font-size:14px;color:var(--gth-heading)}

.gth-revenue-kpis{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;margin-bottom:16px}
.gth-revenue-kpi{padding:18px;border:1px solid var(--gth-border);border-radius:16px;background:var(--gth-surface)}
.gth-revenue-kpi:first-child{background:linear-gradient(145deg,var(--gth-accent),color-mix(in srgb,var(--gth-accent) 74%,#000));border-color:transparent}
.gth-revenue-kpi span{display:block;font-size:12px;color:var(--gth-muted)}
.gth-revenue-kpi strong{display:block;margin:12px 0 7px;font-size:25px;letter-spacing:-.04em;color:var(--gth-heading)}
.gth-revenue-kpi small{font-size:12px;color:var(--gth-muted)}
.gth-revenue-kpi:first-child span,.gth-revenue-kpi:first-child strong,.gth-revenue-kpi:first-child small{color:var(--gth-button-text)}
.gth-revenue-grid{grid-template-columns:minmax(0,1.3fr) minmax(300px,.7fr)}
.gth-revenue-chart{height:225px;display:flex;align-items:flex-end;justify-content:space-between;gap:8px;padding:20px 5px 0;border-top:1px solid var(--gth-border)}
.gth-revenue-month{height:100%;flex:1;display:flex;flex-direction:column;justify-content:flex-end;align-items:center;gap:7px;min-width:28px}
.gth-revenue-month>div{width:min(32px,82%);min-height:4px;border-radius:8px 8px 3px 3px;background:linear-gradient(180deg,var(--gth-accent),color-mix(in srgb,var(--gth-accent) 73%,#000))}
.gth-revenue-month strong{font-size:12px;color:var(--gth-muted);writing-mode:vertical-rl;transform:rotate(180deg);max-height:54px;overflow:hidden}
.gth-revenue-month span{font-size:12px;color:var(--gth-muted)}
.gth-revenue-list>div{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:12px 0;border-bottom:1px solid var(--gth-border)}
.gth-revenue-list strong{display:block;font-size:12px;color:var(--gth-heading)}.gth-revenue-list small{display:block;margin-top:4px;font-size:12px;color:var(--gth-muted)}.gth-revenue-list b{font-size:12px;color:var(--gth-heading);white-space:nowrap}

/* Project and team pages */
.gth-project-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.gth-project-card{padding:18px;border-radius:16px}
.gth-project-card:hover{transform:translateY(-2px)}
.gth-team-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.gth-team-card{padding:17px;border-radius:16px}

@media(max-width:1280px){
  .gth-dashboard-layout{grid-template-columns:minmax(0,1.2fr) minmax(280px,.8fr)}
  .gth-analytics-card{grid-column:1}.gth-priority-card{grid-column:2;grid-row:1}.gth-team-collaboration-card{grid-column:1;grid-row:2}.gth-progress-card{grid-column:2;grid-row:2}.gth-dashboard-activity{grid-column:1;grid-row:3}.gth-design-summary-card{grid-column:2;grid-row:3}
  .gth-design-summary-card .gth-mini-leaderboard{grid-template-columns:1fr}
  .gth-project-grid,.gth-team-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:1020px){
  .gth-kpi-grid-dashboard{grid-template-columns:repeat(2,minmax(0,1fr))}
  .gth-topbar{grid-template-columns:auto 1fr auto}.gth-topbar-search{max-width:360px}
  .gth-revenue-kpis{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:900px){
  .gth-app{grid-template-columns:1fr}.gth-sidebar{width:264px;background:var(--gth-surface)}.gth-main{grid-column:1;padding:0 16px 44px}.gth-topbar{margin:0 -16px;padding:0 16px;grid-template-columns:auto 1fr auto}.gth-topbar-search{display:none}
  .gth-dashboard-layout{grid-template-columns:1fr}.gth-dashboard-layout>*{grid-column:1!important;grid-row:auto!important}.gth-analytics-card{min-height:280px}
  .gth-revenue-grid{grid-template-columns:1fr}
}
@media(max-width:680px){
  .gth-dashboard-hero{align-items:flex-start;flex-direction:column}.gth-dashboard-actions{width:100%;justify-content:space-between}
  .gth-kpi-grid-dashboard,.gth-revenue-kpis{grid-template-columns:1fr 1fr}
  .gth-kpi-grid-dashboard .gth-kpi{min-height:115px;padding:15px}.gth-kpi-grid-dashboard .gth-kpi strong{font-size:28px}
  .gth-analytics-bars{gap:8px}.gth-analytics-column span{font-size:12px}.gth-project-grid,.gth-team-grid{grid-template-columns:1fr}
  .gth-private-finance-fields{grid-template-columns:1fr}.gth-revenue-chart{overflow-x:auto;justify-content:flex-start}.gth-revenue-month{min-width:36px}
}
@media(max-width:440px){
  .gth-kpi-grid-dashboard,.gth-revenue-kpis{grid-template-columns:1fr}
  .gth-dashboard-actions .gth-date{display:none}.gth-dashboard-actions .gth-button{width:100%}
}
.gth-annual-revenue-row{margin-top:16px}.gth-revenue-note{display:flex;flex-direction:column;align-items:flex-start;justify-content:center}.gth-revenue-note h3{margin:0 0 8px}.gth-revenue-note>p:not(.gth-section-kicker){margin:0 0 18px;color:var(--gth-muted);line-height:1.6;font-size:12px}


/* 2.2.1 visual conflict fixes.
   The palette theme uses !important rules so these final component rules must
   explicitly win for the featured KPI and selected navigation icon. */
.gth-kpi-grid-dashboard .gth-kpi.gth-kpi-featured{
  background:linear-gradient(145deg,var(--gth-accent),color-mix(in srgb,var(--gth-accent) 77%,#000))!important;
  border-color:transparent!important;
}
.gth-kpi-grid-dashboard .gth-kpi.gth-kpi-featured .gth-kpi-label,
.gth-kpi-grid-dashboard .gth-kpi.gth-kpi-featured strong{
  color:var(--gth-button-text)!important;
}
.gth-kpi-grid-dashboard .gth-kpi.gth-kpi-featured small{
  color:color-mix(in srgb,var(--gth-button-text) 74%,transparent)!important;
}
.gth-kpi-grid-dashboard .gth-kpi.gth-kpi-featured>i{
  color:var(--gth-button-text)!important;
  background:color-mix(in srgb,var(--gth-button-text) 10%,transparent)!important;
  border-color:color-mix(in srgb,var(--gth-button-text) 35%,transparent)!important;
}
.gth-kpi-grid-dashboard .gth-kpi.gth-kpi-featured:hover{
  border-color:transparent!important;
}
.gth-nav-item.is-active:before,
.gth-nav-item.is-active:hover:before{
  color:var(--gth-sidebar-text)!important;
  background:color-mix(in srgb,var(--gth-sidebar-text) 16%,transparent)!important;
  box-shadow:none!important;
}

/* 2.2.3: Refined overall project progress card */
.gth-progress-card{
  position:relative;
  overflow:hidden;
  min-height:360px;
  background:
    radial-gradient(circle at 50% 50%,color-mix(in srgb,var(--gth-accent) 7%,transparent) 0,transparent 47%),
    var(--gth-surface);
}
.gth-progress-card:before{
  content:"";
  position:absolute;
  width:180px;
  height:180px;
  right:-85px;
  top:-85px;
  border-radius:999px;
  background:color-mix(in srgb,var(--gth-accent) 6%,transparent);
  pointer-events:none;
}
.gth-progress-visual{
  display:grid;
  justify-items:center;
  gap:14px;
  padding:8px 0 18px;
}
.gth-progress-donut{
  --gth-progress-angle:calc(var(--gth-progress-value) * 3.6deg);
  width:190px;
  aspect-ratio:1;
  position:relative;
  display:grid;
  place-items:center;
  border-radius:50%;
  isolation:isolate;
  filter:drop-shadow(0 18px 26px color-mix(in srgb,var(--gth-heading) 12%,transparent));
}
.gth-progress-donut:before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:conic-gradient(from -90deg,var(--gth-accent) 0 var(--gth-progress-angle),var(--gth-surface-3) var(--gth-progress-angle) 360deg);
  box-shadow:inset 0 0 0 1px color-mix(in srgb,var(--gth-border) 75%,transparent);
}
.gth-progress-donut:after{
  content:"";
  position:absolute;
  inset:18px;
  border-radius:inherit;
  z-index:1;
  background:
    radial-gradient(circle at 35% 28%,color-mix(in srgb,#fff 70%,transparent),transparent 34%),
    var(--gth-surface);
  box-shadow:
    inset 0 0 0 1px var(--gth-border),
    0 8px 24px color-mix(in srgb,var(--gth-heading) 8%,transparent);
}
.gth-progress-center{
  position:relative;
  z-index:2;
  display:grid;
  justify-items:center;
  line-height:1;
}
.gth-progress-eyebrow{
  margin-bottom:8px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--gth-muted);
}
.gth-progress-center strong{
  display:flex;
  align-items:flex-start;
  color:var(--gth-heading);
  font-size:48px;
  font-weight:800;
  letter-spacing:-.07em;
}
.gth-progress-center strong em{
  margin:5px 0 0 3px;
  font-size:18px;
  font-style:normal;
  letter-spacing:-.03em;
  color:var(--gth-accent);
}
.gth-progress-center small{
  margin-top:8px;
  font-size:12px;
  font-weight:500;
  color:var(--gth-muted);
}
.gth-progress-summary{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:8px;
}
.gth-progress-summary p{
  margin:0;
  font-size:12px;
  color:var(--gth-muted);
}
.gth-progress-status{
  display:inline-flex;
  align-items:center;
  min-height:24px;
  padding:5px 10px;
  border:1px solid var(--gth-border);
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  color:var(--gth-text);
  background:var(--gth-surface-2);
}
.gth-progress-status:before{
  content:"";
  width:6px;
  height:6px;
  margin-right:6px;
  border-radius:999px;
  background:var(--gth-muted);
}
.gth-progress-status.is-complete{
  color:color-mix(in srgb,var(--gth-success) 82%,var(--gth-heading));
  border-color:color-mix(in srgb,var(--gth-success) 25%,var(--gth-border));
  background:color-mix(in srgb,var(--gth-success) 10%,var(--gth-surface));
}
.gth-progress-status.is-complete:before{background:var(--gth-success)}
.gth-progress-status.is-on-track:before{background:var(--gth-info)}
.gth-progress-status.is-in-progress:before{background:var(--gth-warning)}
.gth-progress-status.is-not-started:before{background:var(--gth-border-strong)}
.gth-progress-card .gth-progress-legend{
  width:100%;
  margin-top:auto;
  padding-top:15px;
  border-top:1px solid var(--gth-border);
  gap:18px;
}
.gth-progress-card .gth-progress-legend span{
  font-size:12px;
  font-weight:500;
}
.gth-progress-card .gth-progress-legend i{
  width:8px;
  height:8px;
  box-shadow:0 0 0 3px color-mix(in srgb,currentColor 8%,transparent);
}
@media (max-width:640px){
  .gth-progress-card{min-height:330px}
  .gth-progress-donut{width:168px}
  .gth-progress-donut:after{inset:16px}
  .gth-progress-center strong{font-size:42px}
}
