:root {
  /* Auris brand palette — sourced verbatim from auris.io kadence-blocks palette
     and the inline button rule on /login/ (Poppins, #009c53, 100px radius). */
  --brand-green: #009c53;          /* Primary CTA */
  --brand-green-hover: #006435;    /* Hover — palette dark green, NOT a tint */
  --brand-blue-accent: #3ab1e9;    /* Auris palette6 — accent */
  --text: #022c4d;                 /* Auris palette1 — navy text + heading */
  --text-muted: #5a6573;
  --bg: #ffffff;
  --bg-alt: #eaeff1;               /* Auris palette7/8 — page bg */
  --border: #e1e5eb;
  --max-width: 1140px;
  --font-stack: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-stack);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.site-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.site-main {
  padding: 4rem 0;
  background: var(--bg-alt);
  min-height: calc(100vh - 240px);
}

.page-heading {
  font-size: 2.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  text-align: center;
}

.page-subheading {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin: 0 0 3rem;
  text-align: center;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.login-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.login-card:hover {
  box-shadow: 0 4px 16px rgba(0, 144, 72, 0.08);
  transform: translateY(-2px);
}

.card-icon {
  display: block;
  margin: 0 auto 1rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.card-desc {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
}

.card-cta {
  display: inline-block;
  background: var(--brand-green);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-stack);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  padding: 16px 27px;
  border-radius: 100px;             /* pill — matches Kadence inline rule */
  text-transform: none;
  transition: background 0.2s ease;
}

.card-cta:hover {
  background: var(--brand-green-hover);
}

.card-cta:focus {
  outline: 3px solid rgba(0, 144, 72, 0.4);
  outline-offset: 2px;
}

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
  background: var(--bg);
}

.footer-logo {
  display: block;
  margin: 0 auto 1rem;
  height: 60px;
  width: auto;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

@media (max-width: 640px) {
  .site-main { padding: 2.5rem 0; }
  .page-heading { font-size: 1.75rem; }
  .card-grid { grid-template-columns: 1fr; }
}
