/* THE NURSING CENTRAL — Homepage styles, scoped to .tnc-home */
.tnc-home {
  --h-cream: #FAF8F2; --h-cream-deep: #F2EFE6; --h-surface: #FFFFFF;
  --h-ink: #0F1A1A; --h-ink-soft: #4A5B5B; --h-ink-muted: #7B8A8A;
  --h-line: #E5E7E5; --h-line-soft: #EFEFEC;
  --h-teal: #0F6E56; --h-teal-deep: #084438; --h-teal-soft: #E1F5EE;
  --h-display: 'Fraunces', Georgia, serif;
  --h-sans: 'Inter', system-ui, sans-serif;
  --h-mono: 'JetBrains Mono', ui-monospace, monospace;
  font-family: var(--h-sans); color: var(--h-ink); line-height: 1.6;
}
.tnc-home a { color: var(--h-teal); text-decoration: none; }
.tnc-home a:hover { color: var(--h-teal-deep); }
.tnc-home h1, .tnc-home h2, .tnc-home h3, .tnc-home h4 { font-family: var(--h-display); margin: 0; color: var(--h-ink); letter-spacing: -0.02em; line-height: 1.15; font-weight: 500; }
.tnc-home p { margin: 0; }
.tnc-eyebrow { font-family: var(--h-mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--h-teal); font-weight: 500; margin-bottom: 0.875rem; }
.tnc-eyebrow-dark { color: var(--h-teal-deep); }
.tnc-eyebrow-light { color: #9FE1CB; }
.tnc-hero { position: relative; background: linear-gradient(135deg, #0F6E56 0%, #084438 100%); color: white; padding: clamp(4rem, 9vw, 7rem) clamp(1.25rem, 4vw, 3rem) clamp(4.5rem, 10vw, 8rem); overflow: hidden; }
.tnc-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(159,225,203,0.12) 0%, transparent 50%), radial-gradient(circle at 10% 90%, rgba(8,68,56,0.4) 0%, transparent 50%); pointer-events: none; }
.tnc-hero-inner { position: relative; max-width: 900px; margin: 0 auto; text-align: center; }
.tnc-hero .tnc-eyebrow { color: #9FE1CB; }
.tnc-hero h1 { color: white; font-size: clamp(2.5rem, 6.5vw, 4.5rem); margin-bottom: 1.25rem; font-weight: 400; }
.tnc-hero h1 em { font-style: italic; color: #9FE1CB; font-weight: 500; }
.tnc-hero-lead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: rgba(255,255,255,0.88); max-width: 640px; margin: 0 auto 2rem; line-height: 1.55; }
.tnc-hero-ctas { display: flex; gap: 0.875rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.tnc-btn-primary { display: inline-flex; align-items: center; gap: 0.4rem; background: white; color: var(--h-teal-deep) !important; padding: 0.95rem 1.75rem; border-radius: 999px; font-weight: 600; font-size: 1rem; transition: transform 0.15s, box-shadow 0.15s; }
.tnc-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); color: var(--h-teal-deep) !important; }
.tnc-btn-secondary { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(255,255,255,0.08); color: white !important; border: 1.5px solid rgba(255,255,255,0.3); padding: 0.875rem 1.75rem; border-radius: 999px; font-weight: 500; font-size: 1rem; transition: background 0.15s, border-color 0.15s; }
.tnc-btn-secondary:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.5); color: white !important; }
.tnc-trust { font-family: var(--h-mono); font-size: 0.78rem; color: rgba(255,255,255,0.65); letter-spacing: 0.04em; }
.tnc-trust-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #9FE1CB; margin-right: 0.5rem; vertical-align: middle; animation: tncPulse 2s ease-in-out infinite; }
@keyframes tncPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }
.tnc-section { padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3rem); max-width: 1140px; margin: 0 auto; width: 100%; box-sizing: border-box; }
.tnc-section-cream { background: var(--h-cream-deep); padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3rem); }
.tnc-section-cream > .tnc-section-header, .tnc-section-cream > .tnc-pillars { max-width: 1140px; margin-left: auto; margin-right: auto; box-sizing: border-box; }
.tnc-section-header { margin-bottom: 2.5rem; max-width: 720px; }
.tnc-section-header h2 { font-size: clamp(1.875rem, 4.5vw, 2.875rem); margin: 0; }
.tnc-section-lead { color: var(--h-ink-soft); font-size: 1.075rem; margin-top: 0.875rem; line-height: 1.55; }
.tnc-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 880px) { .tnc-cards-grid { grid-template-columns: 1fr; } }
.tnc-audience-card { display: block; background: var(--h-surface); border: 1px solid var(--h-line); border-radius: 14px; padding: 2rem 1.75rem; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; color: var(--h-ink) !important; position: relative; overflow: hidden; }
.tnc-audience-card:hover { transform: translateY(-4px); border-color: var(--h-teal); box-shadow: 0 12px 32px rgba(15,110,86,0.08); color: var(--h-ink) !important; }
.tnc-card-num { font-family: var(--h-mono); font-size: 0.78rem; color: var(--h-ink-muted); margin-bottom: 1rem; letter-spacing: 0.05em; }
.tnc-audience-card h3 { font-size: 1.375rem; margin-bottom: 0.625rem; }
.tnc-audience-card p { color: var(--h-ink-soft); font-size: 0.95rem; line-height: 1.55; margin-bottom: 1.25rem; }
.tnc-card-link { display: inline-block; color: var(--h-teal); font-weight: 600; font-size: 0.92rem; }
.tnc-card-featured { background: var(--h-teal); border-color: var(--h-teal); color: white !important; }
.tnc-card-featured:hover { color: white !important; border-color: var(--h-teal-deep); background: var(--h-teal-deep); }
.tnc-card-featured h3 { color: white; }
.tnc-card-featured p { color: rgba(255,255,255,0.85); }
.tnc-card-featured .tnc-card-num { color: rgba(255,255,255,0.55); }
.tnc-card-featured .tnc-card-link { color: white; }
.tnc-card-featured::after { content: '\2605'; position: absolute; top: 1rem; right: 1.25rem; color: rgba(255,255,255,0.45); font-size: 1rem; }
.tnc-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 800px) { .tnc-pillars { grid-template-columns: 1fr; } }
.tnc-pillar { background: var(--h-surface); border: 1px solid var(--h-line); border-radius: 14px; padding: 2rem; display: flex; flex-direction: column; }
.tnc-pillar-ahpra { border-top: 4px solid var(--h-teal); }
.tnc-pillar-anmac { border-top: 4px solid #534AB7; }
.tnc-pillar-label { font-family: var(--h-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--h-ink-muted); margin-bottom: 0.75rem; }
.tnc-pillar h3 { font-size: 1.625rem; margin-bottom: 0.875rem; }
.tnc-pillar > p { color: var(--h-ink-soft); margin-bottom: 1.25rem; line-height: 1.55; }
.tnc-pillar ul { list-style: none; padding: 0; margin: 0 0 1.5rem; border-top: 1px solid var(--h-line-soft); }
.tnc-pillar li { padding: 0.625rem 0; border-bottom: 1px solid var(--h-line-soft); font-size: 0.925rem; color: var(--h-ink); font-family: var(--h-mono); }
.tnc-pillar-cta { margin-top: auto; display: inline-flex; align-items: center; gap: 0.4rem; color: var(--h-teal); font-weight: 600; font-size: 0.95rem; }
.tnc-pillar-cta:hover { gap: 0.6rem; }
.tnc-calc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 880px) { .tnc-calc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .tnc-calc-grid { grid-template-columns: 1fr; } }
.tnc-calc-card { background: var(--h-surface); border: 1px solid var(--h-line); border-radius: 12px; padding: 1.5rem; transition: border-color 0.15s, transform 0.15s; color: var(--h-ink) !important; display: block; }
.tnc-calc-card:hover { border-color: var(--h-teal); transform: translateY(-2px); color: var(--h-ink) !important; }
.tnc-calc-icon { display: inline-block; font-size: 1.5rem; margin-bottom: 0.5rem; }
.tnc-calc-card h4 { font-family: var(--h-sans); font-weight: 600; font-size: 1rem; margin-bottom: 0.25rem; color: var(--h-ink); }
.tnc-calc-card p { font-size: 0.85rem; color: var(--h-ink-soft); line-height: 1.45; margin: 0; }
.tnc-calc-footer { text-align: center; margin-top: 2rem; }
.tnc-calc-footer a { font-weight: 600; font-size: 0.95rem; }
.tnc-section-dark { background: var(--h-ink); color: #C8D4D4; padding: clamp(4rem, 8vw, 6rem) clamp(1.25rem, 4vw, 3rem); }
.tnc-why { max-width: 760px; margin: 0 auto; }
.tnc-section-dark h2 { color: white; font-size: clamp(1.875rem, 4.5vw, 2.75rem); margin-bottom: 1.5rem; }
.tnc-section-dark p { color: #C8D4D4; font-size: 1.05rem; line-height: 1.65; margin-bottom: 1.125rem; }
.tnc-section-dark a { color: #9FE1CB; border-bottom: 1px solid rgba(159,225,203,0.4); }
.tnc-section-dark a:hover { color: white; border-bottom-color: white; }
.tnc-link-arrow { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.5rem; font-weight: 600; font-size: 0.95rem; border-bottom: none !important; }
.tnc-link-arrow:hover { gap: 0.6rem; }
.tnc-final-cta { text-align: center; padding: clamp(4rem, 8vw, 6rem) clamp(1.25rem, 4vw, 3rem); background: var(--h-cream-deep); position: relative; overflow: hidden; }
.tnc-final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(15,110,86,0.08) 0%, transparent 60%); }
.tnc-final-cta > * { position: relative; }
.tnc-final-cta h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.875rem; }
.tnc-final-cta p { color: var(--h-ink-soft); font-size: 1.075rem; margin-bottom: 1.75rem; }
.tnc-btn-large { background: var(--h-teal) !important; color: white !important; padding: 1.1rem 2.25rem; font-size: 1.05rem; }
.tnc-btn-large:hover { background: var(--h-teal-deep) !important; color: white !important; }
