@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root {
  --ink: #0f172a;
  --deep-teal: #0d9488;
  --coral: #fb7185;
  --gold: #fbbf24;
  --mist: #e2e8f0;
  --white: #ffffff;
  --bg: #fafbfc;
  --gradient: var(--deep-teal);
  --shadow-soft: 0 4px 24px rgba(15, 23, 42, 0.08), 0 12px 48px rgba(15, 23, 42, 0.06);
  --shadow-strong: 0 8px 32px rgba(15, 23, 42, 0.12), 0 20px 60px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p {
  margin-bottom: 1.25rem;
}

strong {
  font-weight: 600;
}

a {
  color: inherit;
}

.wrapper {
  width: min(1400px, 94vw);
  margin-inline: auto;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 251, 252, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
}

nav .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--deep-teal);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 12px;
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: var(--deep-teal);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-outline {
  border: 1.5px solid rgba(15, 23, 42, 0.15);
  color: var(--ink);
  background: var(--white);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.btn-outline:hover {
  border-color: var(--deep-teal);
  background: rgba(13, 148, 136, 0.04);
}

.hero {
  padding: 5rem 0 4rem;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.12;
  margin-bottom: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.7;
}

.hero-card {
  background: var(--deep-teal);
  color: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-strong);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.badge {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.85rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

.section {
  padding: 4rem 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.section-header span {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: var(--deep-teal);
}

.section-header h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04), 0 12px 32px rgba(15, 23, 42, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(13, 148, 136, 0.15);
}

.issue-card {
  border-top: 4px solid var(--deep-teal);
}

.issue-card .meta {
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: 0.6rem;
}

.issue-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.metric-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.metric-card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.05);
  text-align: center;
  transition: all 0.25s ease;
}

.metric-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.metric-card h3 {
  font-size: 2.5rem;
  margin: 0;
  color: var(--deep-teal);
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
}

.testimonial {
  font-style: italic;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.7;
}

.timeline {
  border-left: 2px solid rgba(15, 23, 42, 0.1);
  padding-left: 1.5rem;
  margin-left: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.8rem;
  top: 0.3rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
  background: var(--deep-teal);
}

.team-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.team-card h3 {
  margin-top: 1rem;
  margin-bottom: 0.3rem;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.team-card span {
  color: #475569;
  font-size: 0.9rem;
}

.article-hero {
  background: var(--deep-teal);
  color: var(--white);
  padding: 4rem 0;
}

.article-body {
  background: var(--white);
  margin-top: -3rem;
  border-radius: 20px;
  padding: 3.5rem;
  box-shadow: var(--shadow-strong);
}

.article-body h2 {
  margin-top: 2.5rem;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.pull-quote {
  border-left: 4px solid var(--coral);
  padding-left: 1.5rem;
  font-size: 1.3rem;
  font-style: italic;
  color: #334155;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  line-height: 1.6;
  margin: 2rem 0;
}

.faq {
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  padding: 1rem 0;
}

.callout {
  background: rgba(13, 148, 136, 0.06);
  border-radius: 16px;
  padding: 2rem;
  border: 1.5px solid rgba(13, 148, 136, 0.2);
}

.footer {
  background: var(--ink);
  color: var(--mist);
  padding: 3rem 0;
}

.footer-top,
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.footer-nav a,
.footer-nav span {
  text-decoration: none;
  color: var(--mist);
  opacity: 0.8;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  color: var(--mist);
  opacity: 0.8;
}

.newsletter {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.newsletter input {
  border-radius: 10px;
  border: 1.5px solid rgba(15, 23, 42, 0.12);
  padding: 0.85rem 1.1rem;
  flex: 1;
  min-width: 220px;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}

.newsletter input:focus {
  outline: none;
  border-color: var(--deep-teal);
}

.newsletter button {
  border-radius: 10px;
  border: none;
  padding: 0.85rem 1.5rem;
  background: var(--coral);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.newsletter button:hover {
  background: #f43f5e;
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.table th,
.table td {
  padding: 0.9rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  text-align: left;
}

.table th {
  background: rgba(15, 23, 42, 0.05);
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chip {
  padding: 0.45rem 1rem;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.06);
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chip:hover {
  background: rgba(15, 23, 42, 0.1);
}

.chip.active {
  background: rgba(13, 148, 136, 0.12);
  color: var(--deep-teal);
  border: 1px solid rgba(13, 148, 136, 0.3);
}

.contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

@media (max-width: 720px) {
  nav .wrapper {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .article-body {
    padding: 2rem;
  }

  h1 {
    font-size: clamp(2rem, 8vw, 2.6rem) !important;
  }

  h2 {
    font-size: clamp(1.6rem, 6vw, 2rem) !important;
  }
}
