:root {
  --navy: #1f2937;
  --navy-dark: #111827;
  --mint: #2fe3c4;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg: #f8fafc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

.public-nav {
  background: var(--navy-dark);
  color: white;
  padding: 18px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.public-nav .brand {
  color: white;
  text-decoration: none;
  font-size: 22px;
  font-weight: 800;
}

.public-nav .brand span {
  color: var(--mint);
}

.public-nav nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.public-nav nav a {
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 600;
}

.public-nav .nav-cta {
  background: var(--mint);
  color: var(--navy-dark);
  padding: 10px 18px;
  border-radius: 6px;
}

.public-page-hero {
  background: linear-gradient(135deg, #111827, #203142);
  color: white;
  padding: 80px 7% 70px;
  text-align: center;
}

.public-page-hero .icon {
  font-size: 46px;
  margin-bottom: 14px;
}

.public-page-hero h1 {
  font-size: clamp(38px, 6vw, 64px);
  margin: 0;
  letter-spacing: -0.04em;
}

.public-page-hero p {
  max-width: 720px;
  margin: 18px auto 0;
  color: #cbd5e1;
  font-size: 18px;
}

.public-content {
  max-width: 980px;
  margin: -36px auto 0;
  padding: 0 24px 70px;
}

.public-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 42px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.public-card h2 {
  margin-top: 34px;
  font-size: 26px;
}

.public-card h2:first-child {
  margin-top: 0;
}

.public-card p,
.public-card li {
  color: #374151;
  line-height: 1.75;
  font-size: 16px;
}

.public-cta {
  margin: 0 auto 70px;
  max-width: 980px;
  background: linear-gradient(135deg, #1f2937, #111827);
  color: white;
  border-radius: 22px;
  padding: 46px;
  text-align: center;
}

.public-cta h2 {
  font-size: 34px;
  margin: 0 0 12px;
}

.public-cta p {
  color: #cbd5e1;
  margin-bottom: 26px;
}

.public-cta a {
  display: inline-block;
  background: var(--mint);
  color: var(--navy-dark);
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}

.public-footer {
  background: var(--navy-dark);
  color: white;
  padding: 34px 7%;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.public-footer p {
  color: #9ca3af;
}

.public-footer a {
  color: #d1d5db;
  margin-left: 18px;
  text-decoration: none;
}

.public-updated {
  color: var(--muted);
  margin-bottom: 32px;
  font-weight: 600;
}

.public-note {
  margin-top: 36px;
  padding: 22px;
  border-radius: 14px;
  background: #ecfeff;
  border: 1px solid #a5f3fc;
}

.public-quote {
  margin: 28px 0;
  padding: 26px;
  border-left: 5px solid var(--mint);
  background: #f0fdfa;
  border-radius: 14px;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 700;
  color: var(--navy-dark);
}

.public-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:22px;
    margin:28px 0;
}

.public-grid .item{
    padding:24px;
    background:#f8fafc;
    border:1px solid var(--border);
    border-radius:14px;
}

.public-grid h4{
    margin-bottom:10px;
    color:var(--navy-dark);
}

.public-info-panel {
  padding: 24px 28px;
  border-radius: 16px;
  background: #f7fbfa;
  border: 1px solid rgba(65, 227, 197, 0.3);
}

.public-info-panel h3 {
  margin-top: 0;
}

.public-info-panel ul {
  margin-bottom: 0;
  padding-left: 22px;
}

.public-info-panel li {
  margin-bottom: 10px;
}

.public-button {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 999px;
  background: #41e3c5;
  color: #1a252f;
  font-weight: 700;
  text-decoration: none;
}

.public-button:hover {
  background: #35d4b5;
}

.public-button-secondary {
  background: transparent;
  border: 1px solid rgba(26, 37, 47, 0.25);
}

.public-button-secondary:hover {
  background: #f4f6f7;
}
