/* =========================================================================
   KAVRA — design system
   Graphite + emerald, minimal, mobile-first. System font stack only —
   no webfont downloads, keeps first paint fast on slow connections.
   ========================================================================= */

:root {
  --ink: #111111;
  --ink-soft: #4b4b4b;
  --paper: #F7F7F5;
  --surface: #ffffff;
  --border: #e6e5e1;
  --accent: #1E8E5A;
  --accent-dark: #166a44;
  --accent-soft: #e5f3ec;
  --danger: #c0392b;
  --danger-soft: #fbe9e7;
  --warn: #a9720c;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;

  --shadow-sm: 0 1px 2px rgba(17,17,17,0.06);
  --shadow-md: 0 4px 16px rgba(17,17,17,0.08);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  --header-h: 60px;
  --bottom-nav-h: 60px;
}

@keyframes kavra-fade-up {
  from { transform: translateY(6px); }
  to { transform: translateY(0); }
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom, 0px));
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

h1, h2, h3 { margin: 0 0 var(--space-2); line-height: 1.2; }
p { margin: 0 0 var(--space-3); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}
@media (min-width: 1200px) { .container { max-width: 1240px; } }

/* ---------------------------------------------------------------------- */
/* Header                                                                  */
/* ---------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
}

.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
  flex-shrink: 0;
}

.back-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s var(--ease);
}
.back-btn:hover { background: rgba(17,17,17,0.06); }
.back-btn:active { transform: scale(0.94); }

.logo svg { display: block; }

.header-nav {
  display: none;
  gap: var(--space-5);
  font-weight: 600;
  font-size: 14px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.balance-pill {
  font-size: 13px;
  font-weight: 700;
  background: var(--accent-soft);
  color: var(--accent-dark);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

@media (min-width: 860px) {
  .header-nav { display: flex; }
  body { padding-bottom: 0; }
  .bottom-nav { display: none; }
}

/* ---------------------------------------------------------------------- */
/* Buttons                                                                 */
/* ---------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s var(--ease), background 0.2s var(--ease), opacity 0.2s var(--ease), box-shadow 0.2s var(--ease);
  line-height: 1;
}
.btn:active { transform: scale(0.96); }
.btn:focus-visible { outline: 2px solid var(--accent-dark); outline-offset: 2px; }

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { opacity: 0.88; }

.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--ink); }

.btn-ghost { background: transparent; color: var(--ink-soft); }
.btn-ghost:hover { color: var(--ink); }

.btn-danger { background: var(--danger-soft); color: var(--danger); }

.btn-block { width: 100%; }
.btn-sm { padding: 8px 12px; font-size: 13px; }

/* ---------------------------------------------------------------------- */
/* Hero / search                                                          */
/* ---------------------------------------------------------------------- */

.hero {
  background: var(--ink);
  color: #fff;
  padding: var(--space-6) 0 var(--space-6);
}

.hero h1 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero p.sub {
  color: #cfcfcc;
  font-size: 15px;
  margin-bottom: var(--space-5);
}

@media (min-width: 640px) {
  .hero h1 { font-size: 40px; }
}

.search-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  display: grid;
  gap: var(--space-2);
  box-shadow: var(--shadow-md);
}

.search-card input[type="text"] {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 15px;
  color: var(--ink);
  width: 100%;
}

.search-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}

select {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14px;
  background: var(--surface);
  color: var(--ink);
  width: 100%;
}

@media (min-width: 640px) {
  .search-card { grid-template-columns: 1fr auto auto auto; align-items: center; }
  .search-row { display: contents; }
}

/* ---------------------------------------------------------------------- */
/* Categories                                                              */
/* ---------------------------------------------------------------------- */

.section { padding: var(--space-6) 0; }
.section-title { font-size: 20px; font-weight: 800; margin-bottom: var(--space-4); }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
}

@media (min-width: 640px) { .cat-grid { grid-template-columns: repeat(5, 1fr); } }

.cat-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  font-size: 14px;
  transition: border-color 0.15s ease, transform 0.08s ease;
}
.cat-chip:hover { border-color: var(--accent); }
.cat-chip:active { transform: scale(0.98); }
.cat-chip .cat-icon { display: inline-flex; color: var(--accent-dark); }

/* ---------------------------------------------------------------------- */
/* Job cards                                                               */
/* ---------------------------------------------------------------------- */

.job-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
}

@media (min-width: 640px) { .job-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); } }
@media (min-width: 780px) { .job-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .job-grid { grid-template-columns: repeat(4, 1fr); } }

/* compact card text on the narrow 2-per-row mobile layout */
@media (max-width: 639px) {
  .job-card { padding: var(--space-3); gap: 2px; }
  .job-card .card-gallery { margin: calc(-1 * var(--space-3)) calc(-1 * var(--space-3)) var(--space-2); }
  .job-title { font-size: 14px; line-height: 1.3; }
  .job-meta { font-size: 12px; gap: var(--space-2); }
  .job-salary { font-size: 13.5px; }
  .job-tags .tag { font-size: 10.5px; padding: 2px 6px; }
  .job-time { font-size: 11px; }
}

.job-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.15s var(--ease);
  animation: kavra-fade-up 0.35s var(--ease) both;
}
.job-card:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); transform: translateY(-2px); }

.job-card.vip { border-color: var(--accent); background: var(--accent-soft); }

.job-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-2);
}

.job-title { font-size: 16px; font-weight: 700; margin: 0; }

.fav-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--ink-soft);
  line-height: 1;
  padding: 2px;
  flex-shrink: 0;
}
.fav-btn.active { color: var(--danger); }

.job-meta { font-size: 13.5px; color: var(--ink-soft); display: flex; gap: var(--space-3); flex-wrap: wrap; }
.meta-item { display: inline-flex; align-items: center; gap: 4px; }
.fav-btn { display: inline-flex; align-items: center; justify-content: center; }
.job-salary { font-size: 15px; font-weight: 700; color: var(--accent-dark); margin: var(--space-1) 0; }

.job-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: var(--space-1); }
.tag {
  font-size: 12px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--border);
  color: var(--ink-soft);
}
.tag.vip-tag { background: var(--accent); color: #fff; border-color: var(--accent); }

.job-time { font-size: 12px; color: #9a9a95; margin-top: var(--space-2); }

/* ---------------------------------------------------------------------- */
/* Forms                                                                   */
/* ---------------------------------------------------------------------- */

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  max-width: 520px;
  margin: var(--space-6) auto;
}

.field { margin-bottom: var(--space-4); }
.field label { display: block; font-weight: 700; font-size: 13.5px; margin-bottom: 6px; }
.field .hint { font-size: 12.5px; color: var(--ink-soft); margin-top: 4px; }

input[type="text"], input[type="password"], input[type="tel"], input[type="number"],
input[type="email"], textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--ink);
  background: var(--surface);
}
textarea { resize: vertical; min-height: 100px; }

input:focus-visible, textarea:focus-visible, select:focus-visible, button:focus-visible, a:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 2px;
}

.radio-row, .check-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 14px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }

.role-pick { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); margin-bottom: var(--space-4); }
.role-pick label {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}
.role-pick input { display: none; }
.role-pick input:checked + span { color: var(--accent-dark); }
.role-pick label:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); }

/* ---------------------------------------------------------------------- */
/* Alerts / toast / badges                                                */
/* ---------------------------------------------------------------------- */

.flash { padding: 12px 16px; border-radius: var(--radius-sm); margin-bottom: var(--space-3); font-size: 14px; font-weight: 600; }
.flash-error { background: var(--danger-soft); color: var(--danger); }
.flash-success { background: var(--accent-soft); color: var(--accent-dark); }
.flash-info { background: #eef1f6; color: #374151; }

#toast-root {
  position: fixed;
  bottom: calc(var(--bottom-nav-h) + 16px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: calc(100% - 32px);
  max-width: 360px;
  pointer-events: none;
}

.toast {
  background: rgba(17,17,17,0.72);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  color: #fff;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.toast.show { opacity: 1; transform: translateY(0); }

.badge-verified { color: var(--accent-dark); font-weight: 700; font-size: 13px; display: inline-flex; align-items: center; gap: 4px; }
.badge-status { font-size: 12px; font-weight: 700; padding: 3px 8px; border-radius: 999px; }
.badge-active { background: var(--accent-soft); color: var(--accent-dark); }
.badge-paused, .badge-pending { background: #fff4e0; color: var(--warn); }
.badge-expired, .badge-rejected, .badge-deleted { background: var(--danger-soft); color: var(--danger); }
.badge-draft { background: #eee; color: var(--ink-soft); }

/* ---------------------------------------------------------------------- */
/* Bottom nav (mobile)                                                    */
/* ---------------------------------------------------------------------- */

.bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--bottom-nav-h);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  display: flex;
  z-index: 50;
}
.bottom-nav a {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.15s var(--ease);
  padding: 0 2px;
}
.bottom-nav a.active { color: var(--accent-dark); }
.bottom-nav svg { width: 22px; height: 22px; }

/* ---------------------------------------------------------------------- */
/* Misc components                                                        */
/* ---------------------------------------------------------------------- */

.empty-state { text-align: center; padding: var(--space-7) var(--space-4); color: var(--ink-soft); }
.empty-state h3 { color: var(--ink); }

.pill-nav { display: flex; gap: var(--space-2); overflow-x: auto; padding-bottom: 4px; margin-bottom: var(--space-3); }
.pill-nav a {
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 13.5px;
  font-weight: 600;
}
.pill-nav a.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.filters-bar { display: flex; gap: var(--space-2); flex-wrap: wrap; margin-bottom: var(--space-4); }

.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); margin-bottom: var(--space-5); }
@media (min-width: 700px) { .stat-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--space-4); }
.stat-card .num { font-size: 26px; font-weight: 800; }
.stat-card .label { font-size: 13px; color: var(--ink-soft); }

table.admin-table { width: 100%; border-collapse: collapse; font-size: 13.5px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
table.admin-table th, table.admin-table td { padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--border); }
table.admin-table th { background: var(--paper); font-weight: 700; }
.table-wrap { overflow-x: auto; }

.detail-photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-2); margin-bottom: var(--space-4); }
.detail-photo-grid img { border-radius: var(--radius-md); aspect-ratio: 1; object-fit: cover; width: 100%; }

.photo-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-2); }
.photo-preview-grid img { border-radius: var(--radius-md); aspect-ratio: 1; object-fit: cover; width: 100%; }

/* ---------------------------------------------------------------------- */
/* Photo gallery — swipeable feed of 1–5 job photos                       */
/* ---------------------------------------------------------------------- */

.photo-gallery {
  position: relative;
  margin-bottom: var(--space-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.photo-gallery-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.photo-gallery-track::-webkit-scrollbar { display: none; }

.photo-gallery-img {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  scroll-snap-align: start;
  background: var(--paper);
}

.photo-gallery-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.photo-gallery-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  transition: background 0.15s ease, transform 0.15s ease;
}
.photo-gallery-dot.active { background: #fff; transform: scale(1.3); }

.photo-gallery-count {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(17,17,17,0.6);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
}

/* small circular photo on a job-card, per spec section 7 */
.job-card-photo {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.job-card-top-row { display: flex; gap: var(--space-2); align-items: flex-start; }

/* Avito-style swipeable photo strip at the top of a job card — you can
   flick through photos without leaving the list. */
.job-card { padding: var(--space-4); overflow: hidden; }
.card-gallery {
  position: relative;
  margin: calc(-1 * var(--space-4)) calc(-1 * var(--space-4)) var(--space-3);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
}
.card-gallery-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  scrollbar-width: none;
}
.card-gallery-track::-webkit-scrollbar { display: none; }
.card-gallery-img {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  scroll-snap-align: start;
  background: var(--paper);
}
.card-gallery-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  pointer-events: none;
}
.card-gallery-dot { width: 5px; height: 5px; border-radius: 999px; background: rgba(255,255,255,0.55); transition: transform 0.15s var(--ease), background 0.15s var(--ease); }
.card-gallery-dot.active { background: #fff; transform: scale(1.35); }
.card-fav-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(17,17,17,0.42);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.card-fav-btn.active { color: #ff5a5a; }

/* ---------------------------------------------------------------------- */
/* Glass (iOS 26 style) — used sparingly: header, bottom nav, toast, modal */
/* ---------------------------------------------------------------------- */

.glass {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.35);
}
.glass-dark {
  background: rgba(17,17,17,0.68);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.12);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  /* older Android/budget-phone browsers: fall back to solid, still legible */
  .glass { background: var(--surface); }
  .glass-dark { background: var(--ink); }
}

.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-5); }

.progress-steps { display: flex; gap: 6px; margin-bottom: var(--space-4); }
.progress-steps span { flex: 1; height: 4px; border-radius: 4px; background: var(--border); }
.progress-steps span.done { background: var(--accent); }

footer.site-footer { padding: var(--space-4) 0 calc(var(--bottom-nav-h) + var(--space-4)); color: #b3b3ae; font-size: 11.5px; text-align: center; }
footer.site-footer a { text-decoration: none; color: inherit; }
footer.site-footer a:hover { color: var(--ink-soft); }
@media (min-width: 860px) { footer.site-footer { padding: var(--space-4) 0 var(--space-6); } }

/* ---------------------------------------------------------------------- */
/* Chat / messages                                                        */
/* ---------------------------------------------------------------------- */

.msg-row { display: block; transition: background 0.15s var(--ease); }
.msg-row.unread { border-color: var(--accent); background: var(--accent-soft); }

.msg-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--danger);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  margin-top: 4px;
}

.nav-badge {
  position: absolute;
  top: 2px;
  right: calc(50% - 18px);
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--danger);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.msg-thread { display: flex; flex-direction: column; gap: 10px; }
.msg-bubble { max-width: 78%; animation: kavra-fade-up 0.2s var(--ease) both; }
.msg-bubble.mine { align-self: flex-end; }
.msg-bubble.theirs { align-self: flex-start; }
.msg-bubble-body {
  padding: 10px 14px;
  border-radius: var(--radius-lg);
  font-size: 14.5px;
  line-height: 1.4;
  word-break: break-word;
}
.msg-bubble.mine .msg-bubble-body { background: var(--accent); color: #fff; border-bottom-right-radius: 4px; }
.msg-bubble.theirs .msg-bubble-body { background: var(--surface); border: 1px solid var(--border); border-bottom-left-radius: 4px; }
.msg-bubble-time { font-size: 11px; color: var(--ink-soft); margin-top: 3px; padding: 0 4px; }
.msg-bubble.mine .msg-bubble-time { text-align: right; }

.msg-composer {
  position: fixed;
  bottom: var(--bottom-nav-h);
  left: 0; right: 0;
  z-index: 45;
  border-top: 1px solid rgba(255,255,255,0.4);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
@media (min-width: 860px) { .msg-composer { bottom: 0; } }

.plan-grid { display: grid; gap: var(--space-3); }
@media (min-width: 720px) { .plan-grid { grid-template-columns: repeat(3, 1fr); } }
.plan-card { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-5); background: var(--surface); }
.plan-card.featured { border-color: var(--accent); box-shadow: var(--shadow-md); }
.plan-price { font-size: 28px; font-weight: 800; margin: var(--space-2) 0; }
.plan-price small { font-size: 14px; font-weight: 600; color: var(--ink-soft); }
