/* provider-access.css — provider-access.html only (dark blue hero + white
   "glass" cards, kept as-is per task #91 — no reskin needed for this page).
   Extracted from inline <style> for cleanliness; not shared with other pages. */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

.page { max-width: 1100px; margin: 0 auto; padding: 2.5rem 1.5rem 4rem; }

/* ── Hero ── */
.hero { padding: 24px 0 16px; }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.12) 0%, transparent 55%),
              radial-gradient(circle at 80% 70%, rgba(255,255,255,.10) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.hero > * { position: relative; z-index: 2; }

.hero h1 { margin: 0 0 .5rem; font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; letter-spacing: -0.02em; color: #ffffff; }
.hero-sub {
  margin: .4rem 0 0;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,.97);
  display: inline-block;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  padding: 4px 18px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-desc {
  margin: .75rem 0 0;
  font-size: 1rem;
  color: rgba(255,255,255,.82);
  max-width: 78ch;
  line-height: 1.65;
}
.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
  border-radius: 999px;
  padding: .85rem 1.8rem;
  font-size: 1rem;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn:hover { opacity: .9; transform: translateY(-2px); }
.btn.primary { background: #fff; color: #1e40af; }
.btn.secondary { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.28); }

/* ── Section spacing ── */
.section { margin-bottom: 1.4rem; }

/* ── Card (white, matching other static pages) ── */
.glass {
  background: #ffffff;
  border: none;
  box-shadow: 0 8px 32px rgba(0,0,0,.18), 0 2px 8px rgba(0,0,0,.10);
  border-radius: 20px;
  padding: 1.8rem;
  color: #1e293b;
}

/* ── Section header (on blue background) ── */
.sec-hdr { margin-bottom: 1.4rem; }
.sec-hdr h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  color: #fde047;
  letter-spacing: -.02em;
}
.sec-hdr p {
  margin-top: .4rem;
  color: rgba(255,255,255,.7);
  font-size: .95rem;
}

/* ── Card text ── */
.glass h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -.02em;
  margin-bottom: .8rem;
}
.glass h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: .6rem;
}
.glass p {
  color: #334155;
  line-height: 1.7;
  font-size: .95rem;
  margin-bottom: .7rem;
}
.glass p:last-child { margin-bottom: 0; }
.glass ul {
  padding-left: 0;
  list-style: none;
  margin: .5rem 0 0;
}
.glass ul li {
  padding: .45rem 0;
  border-top: 1px solid #e2e8f0;
  color: #334155;
  font-size: .875rem;
  display: flex;
  align-items: baseline;
  gap: .6rem;
  line-height: 1.6;
}
.glass ul li::before {
  content: '→';
  color: #94a3b8;
  flex-shrink: 0;
}

/* ── Two-column grid ── */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 700px) { .grid-2 { grid-template-columns: 1fr; } }

/* ── Comparison table ── */
.compare-wrap {
  overflow-x: auto;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.compare-table th {
  background: #1e40af;
  color: #fde047;
  font-weight: 800;
  padding: .9rem 1.1rem;
  text-align: left;
  font-size: .85rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.compare-table td {
  padding: .85rem 1.1rem;
  vertical-align: top;
  border-bottom: 1px solid #e2e8f0;
  color: #334155;
  line-height: 1.6;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover td { background: #f8fafc; }
.compare-table td:first-child {
  font-weight: 600;
  color: #1e293b;
  white-space: nowrap;
}
.badge {
  display: inline-block;
  padding: .2rem .65rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  margin-left: .3rem;
}
.badge-yes  { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.badge-no   { background: #f1f5f9; color: #64748b; border: 1px solid #e2e8f0; }
.badge-part { background: #fefce8; color: #854d0e; border: 1px solid #fde68a; }

/* ── CTA block ── */
.cta-block {
  padding: 2rem 0 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.12);
}
.cta-block h3 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: .8rem;
}
.cta-block p {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 2rem;
  position: relative;
  line-height: 1.65;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
}

/* ── Footer ── */
.page-footer {
  margin-top: 2rem;
  padding: 1.5rem 0 1rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.4);
  font-size: .8rem;
}
.page-footer a { color: rgba(255,255,255,.55); text-decoration: none; margin: 0 .6rem; }
.page-footer a:hover { color: rgba(255,255,255,.85); }
