:root {
  color: #183632;
  background: #f4f7f5;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  --ink: #183632;
  --muted: #637570;
  --line: #d5dfda;
  --surface: #ffffff;
  --teal: #15524d;
  --coral: #ff6b63;
  --yellow: #ffc95c;
}

* { box-sizing: border-box; }
body { min-width: 0; min-height: 100vh; margin: 0; display: flex; flex-direction: column; }
a { color: inherit; }
[hidden] { display: none !important; }
.site-header, footer { width: min(1180px, calc(100% - 40px)); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.site-header { height: 72px; border-bottom: 1px solid var(--line); font-size: .8rem; font-weight: 700; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand img { width: 38px; height: 38px; border-radius: 8px; }
main { width: min(1180px, calc(100% - 40px)); flex: 1; margin: 0 auto; }
.app-view { min-height: calc(100vh - 146px); display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(300px, .75fr); align-items: center; gap: clamp(36px, 8vw, 110px); padding: 54px 0; }
.eyebrow { margin: 0 0 12px; color: var(--coral); font-size: .7rem; font-weight: 850; }
h1 { max-width: 760px; margin: 0; color: var(--teal); font-size: clamp(2.25rem, 7vw, 5.5rem); line-height: 1; overflow-wrap: anywhere; }
.description { max-width: 650px; margin: 24px 0 0; color: var(--muted); font-size: 1.04rem; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.actions a, .missing-view > a { min-height: 44px; padding: 11px 18px; display: inline-flex; align-items: center; border: 1px solid var(--teal); border-radius: 6px; font-size: .8rem; font-weight: 800; text-decoration: none; }
.actions .primary { color: #fff; background: var(--teal); }
.actions .secondary, .missing-view > a { color: var(--teal); background: transparent; }
dl { margin: 42px 0 0; display: flex; flex-wrap: wrap; gap: 28px; }
dl div { min-width: 130px; padding-left: 12px; border-left: 3px solid var(--yellow); }
dt { color: var(--muted); font-size: .68rem; }
dd { margin: 3px 0 0; font-size: .76rem; font-weight: 750; overflow-wrap: anywhere; }
.visual { aspect-ratio: 1; position: relative; display: grid; place-items: center; border: 1px solid var(--line); background: var(--surface); }
.visual img { width: 42%; height: 42%; position: relative; z-index: 2; border-radius: 18%; box-shadow: 0 20px 48px rgba(21,82,77,.2); }
.visual span { position: absolute; background: var(--teal); }
.visual span:nth-of-type(1) { width: 32%; height: 8px; top: 15%; left: 0; }
.visual span:nth-of-type(2) { width: 8px; height: 28%; right: 17%; bottom: 0; background: var(--coral); }
.visual span:nth-of-type(3) { width: 18%; height: 18%; right: 8%; top: 10%; background: var(--yellow); }
.directory-view, .missing-view { padding: 80px 0; }
.directory-view h1, .missing-view h1 { font-size: clamp(2rem, 7vw, 4.8rem); }
.app-list { margin-top: 44px; border-top: 1px solid var(--line); }
.app-list a { min-height: 90px; padding: 20px 4px; display: grid; grid-template-columns: minmax(180px, .55fr) minmax(0, 1fr); align-items: center; gap: 24px; border-bottom: 1px solid var(--line); text-decoration: none; }
.app-list a:hover strong { color: var(--coral); }
.app-list strong { color: var(--teal); font-size: 1.1rem; }
.app-list span { color: var(--muted); font-size: .82rem; }
.missing-view > a { margin-top: 28px; }
footer { min-height: 74px; border-top: 1px solid var(--line); color: var(--muted); font-size: .72rem; }

@media (max-width: 720px) {
  .site-header, main, footer { width: min(100% - 28px, 1180px); }
  .app-view { min-height: auto; grid-template-columns: 1fr; padding: 48px 0; }
  .visual { width: min(100%, 430px); order: -1; }
  .app-list a { grid-template-columns: 1fr; gap: 5px; }
}
