:root {
  --ink: #18201c;
  --muted: #68736d;
  --line: #dce2de;
  --paper: #f6f7f4;
  --accent: #cf4d2e;
  --accent-dark: #a83820;
  --green: #294f3d;
  --clips: #5f856f;
  --clips-dark: #426451;
  --hdf: #315a72;
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.catalogs-topbar {
  height: 72px;
  padding: 0 max(24px, calc((100vw - 1120px) / 2));
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.catalogs-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font: 700 24px Georgia, serif;
  text-decoration: none;
}

.catalogs-brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 19px;
}

.catalogs-brand-mark-hdf { background: var(--hdf); }
.topbar-label { margin-left: auto; color: var(--muted); font-size: 14px; }
.catalogs-account { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.catalogs-login-link {
  padding: 9px 15px;
  border: 1px solid #cfd8d2;
  border-radius: 999px;
  color: var(--clips-dark);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.catalogs-login-link:hover { border-color: var(--clips); background: #eef5f0; }
.catalogs-login-link:focus-visible { outline: 3px solid #5f856f30; outline-offset: 2px; }
.catalogs-login-link.is-authenticated { border-color: #bfd2c5; background: #e5f0e9; }
.catalogs-login-link[aria-disabled="true"] { opacity: .65; pointer-events: none; }
.catalogs-users-link {
  color: #5f476f;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.catalogs-users-link:hover { text-decoration: underline; }

.catalogs-main {
  min-height: calc(100vh - 72px);
  padding: clamp(58px, 9vw, 110px) 24px 80px;
  background:
    radial-gradient(circle at 15% 20%, #f4dfd4 0, transparent 27%),
    radial-gradient(circle at 85% 75%, #dce8e4 0, transparent 30%),
    linear-gradient(145deg, #f7f2ec, #eef2ec);
}

.catalogs-intro { max-width: 1120px; margin: 0 auto 42px; }
.catalogs-eyebrow { margin: 0 0 12px; color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .16em; }
.catalogs-intro h1, .hdf-panel h1 { margin: 0; font: 700 clamp(42px, 7vw, 72px)/1 Georgia, serif; letter-spacing: -.04em; }
.catalogs-intro p { max-width: 650px; margin: 18px 0 0; color: var(--muted); font-size: 18px; line-height: 1.6; }

.catalog-grid { max-width: 1120px; margin: auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.catalog-card {
  position: relative;
  min-height: 360px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 18px 45px #263b3010;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.catalog-card::after { content: ""; position: absolute; right: -50px; bottom: -65px; width: 210px; height: 210px; border-radius: 50%; background: #cf4d2e12; }
.catalog-card-clips::after { background: #5f856f18; }
.catalog-card-hdf::after { background: #315a7214; }
.catalog-card-stats::after { background: #6d4d8614; }
.catalog-card-bluebox::after { background: #315b6817; }
.catalog-card:hover, .catalog-card:focus-visible { transform: translateY(-5px); border-color: #bdc7c1; box-shadow: 0 24px 58px #263b3022; }
.catalog-card:focus-visible { outline: 3px solid #cf4d2e40; outline-offset: 3px; }
.catalog-icon { width: 66px; height: 66px; display: grid; place-items: center; border-radius: 18px; background: #f8e7df; color: var(--accent); }
.catalog-card-clips .catalog-icon { background: #e4eee7; color: var(--clips); }
.catalog-card-hdf .catalog-icon { background: #e4eef2; color: var(--hdf); }
.catalog-icon-stats { background: #eee8f2; color: #6d4d86; font: 700 34px Georgia,serif; }
.catalog-icon-bluebox { background: #e1ecea; color: #315b68; font: 700 30px Georgia,serif; }
.catalog-icon svg, .hdf-icon svg { width: 40px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.catalog-status { position: absolute; top: 32px; right: 32px; padding: 6px 9px; border-radius: 999px; background: #eef1ef; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.catalog-status-live { background: #e5f0e9; color: var(--green); }
.catalog-card strong { margin-top: 28px; font: 700 38px Georgia, serif; }
.catalog-subtitle { margin-top: 3px; color: var(--green); font-size: 15px; font-weight: 750; }
.catalog-card-clips .catalog-subtitle { color: var(--clips-dark); }
.catalog-card-hdf .catalog-subtitle { color: var(--hdf); }
.catalog-card-stats .catalog-subtitle,.catalog-card-stats .catalog-action { color: #6d4d86; }
.catalog-card-bluebox .catalog-subtitle,.catalog-card-bluebox .catalog-action { color: #315b68; }
.catalog-description { max-width: 380px; margin-top: 14px; color: var(--muted); line-height: 1.55; }
.catalog-action { z-index: 1; margin-top: auto; padding-top: 25px; color: var(--accent-dark); font-weight: 800; }
.catalog-card-clips .catalog-action { color: var(--clips-dark); }
.catalog-card-hdf .catalog-action { color: var(--hdf); }

.hdf-main { min-height: calc(100vh - 72px); display: grid; place-items: center; padding: 52px 24px; background: radial-gradient(circle at 80% 20%, #dbe9ee, transparent 34%), linear-gradient(145deg, #f5f2ed, #edf2f0); }
.hdf-panel { width: min(760px, 100%); padding: clamp(34px, 6vw, 70px); border: 1px solid var(--line); border-radius: 24px; background: #fffc; box-shadow: 0 25px 70px #263b3014; }
.hdf-icon { width: 72px; height: 72px; margin-bottom: 28px; display: grid; place-items: center; border-radius: 20px; background: #e4eef2; color: var(--hdf); }
.hdf-panel h1 { font-size: clamp(38px, 6vw, 62px); }
.hdf-panel > p:not(.catalogs-eyebrow) { max-width: 590px; margin: 20px 0 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
.hdf-types { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.hdf-types span { padding: 7px 11px; border-radius: 7px; background: #e8efed; color: var(--green); font-size: 13px; font-weight: 750; }
.back-link { display: inline-flex; gap: 8px; margin-top: 38px; color: var(--hdf); font-weight: 800; text-decoration: none; }
.back-link:hover { text-decoration: underline; }

@media (max-width: 720px) {
  .catalog-grid { grid-template-columns: 1fr; }
  .catalog-card { min-height: 330px; padding: 26px; }
  .catalog-status { top: 26px; right: 26px; }
  .topbar-label { display: none; }
}

@media (max-width: 420px) {
  .catalogs-brand { font-size: 20px; }
  .catalogs-users-link { display: none; }
  .catalogs-intro h1 { font-size: 42px; }
  .catalog-status { position: static; margin-top: 18px; }
  .catalog-card strong { margin-top: 20px; }
}
