:root {
  --primary: #10B981;
  --primary-dark: #059669;
  --secondary: #0F172A;
  --accent: #F59E0B;
  --surface: #ffffff;
  --background: #F3F4F6;
  --text-main: #1F2937;
  --text-muted: #6B7280;
  --max-width: 1200px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--background);
  color: var(--text-main);
  line-height: 1.6;
  margin: 0;
}

header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 0;
}

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

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--secondary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  color: var(--primary);
}

.hero {
  background: linear-gradient(135deg, var(--secondary) 0%, #111827 100%);
  color: white;
  padding: 6rem 0 8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
  background: linear-gradient(to right, #ffffff, #94a3b8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.25rem;
  color: #CBD5E1;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.card {
  background: var(--surface);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.card h3 {
  margin-top: 0;
  color: var(--secondary);
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: #ECFDF5;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  align-self: flex-start;
}

.content-section {
  background: var(--surface);
  padding: 0;
  margin-top: 0;
  position: relative;
  z-index: 10;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: #FAFAFA;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  background: #F0FDF4;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  color: var(--primary);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  text-align: center;
  margin: 4rem 0 2rem;
  color: var(--secondary);
}

.trust-strip {
  background: white;
  padding: 2rem 0;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 4rem;
}

.trust-logos {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: center;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.content-wrapper h2 {
  font-size: 1.75rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
}

.content-wrapper h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--secondary);
}

.content-wrapper p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.content-wrapper ul,
.content-wrapper ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.content-wrapper li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.content-wrapper blockquote {
  background: #F0FDF4;
  border-left: 4px solid var(--primary);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.content-wrapper blockquote p {
  margin: 0;
  font-weight: 500;
}

.content-wrapper strong {
  color: var(--secondary);
  font-weight: 600;
}

h2 {
  font-size: 2rem;
  color: var(--secondary);
  margin-top: 3rem;
  margin-bottom: 1rem;
}

ul {
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

.cta-button {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.cta-button:hover {
  background: var(--primary-dark);
}

footer {
  background: var(--secondary);
  color: #9CA3AF;
  padding: 3rem 0;
  margin-top: 4rem;
  text-align: center;
}

.breadcrumb {
  color: #94A3B8;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: block;
}

.breadcrumb a {
  color: #E2E8F0;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Article Editorial Styles - Premium Enhancements */
.tldr-box {
  background: #f0fdf4;
  border: 1px solid #dcfce7;
  border-left: 6px solid #10b981;
  padding: 2.5rem;
  border-radius: 1.5rem;
  margin: 3rem 0;
  box-shadow: 0 10px 30px -10px rgba(16, 185, 129, 0.1);
}

.tldr-box h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  margin-top: 0 !important;
  margin-bottom: 1.25rem !important;
  color: #065f46 !important;
  border: none !important;
  padding: 0 !important;
  letter-spacing: -0.01em;
}

.tldr-box ul {
  margin: 0 !important;
  padding-left: 1.5rem !important;
  list-style-type: none !important;
}

.tldr-box li {
  font-size: 1.125rem !important;
  color: #065f46 !important;
  margin-bottom: 1rem !important;
  position: relative;
  font-weight: 500;
}

.tldr-box li::before {
  content: "→";
  position: absolute;
  left: -1.75rem;
  color: #10b981;
  font-weight: 800;
}

.tldr-box li:last-child {
  margin-bottom: 0 !important;
}

.toc {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  padding: 2rem;
  border-radius: 1.5rem;
  margin: 3rem 0;
}

.toc h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  margin-top: 0 !important;
  margin-bottom: 1.5rem !important;
  border: none !important;
  padding: 0 !important;
  color: #1e293b;
}

.toc ol {
  margin: 0 !important;
  padding-left: 1.25rem !important;
}

.toc li {
  margin-bottom: 0.75rem !important;
  color: #475569;
}

.toc a {
  color: #475569;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s;
}

.toc a:hover {
  color: #047857;
  padding-left: 4px;
}

.definition-box {
  background: #fffbeb;
  border: 1px solid #fef3c7;
  padding: 2.5rem;
  border-radius: 1.5rem;
  margin: 3rem 0;
  box-shadow: 0 10px 30px -10px rgba(245, 158, 11, 0.1);
}

.definition-box dl dt {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: #92400e;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.definition-box dl dt::before {
  content: "✦";
  color: #f59e0b;
}

.definition-box dl dd {
  margin-left: 2rem;
  margin-bottom: 2rem;
  color: #b45309;
  font-size: 1.125rem;
  line-height: 1.8;
  font-weight: 500;
}

.definition-box dl dd:last-child {
  margin-bottom: 0;
}

.editorial-note {
  background: #fff1f2;
  border: 1px solid #ffe4e6;
  border-left: 6px solid #f43f5e;
  padding: 2.5rem;
  border-radius: 1.5rem;
  margin: 3rem 0;
}

.editorial-note h4 {
  font-family: 'Outfit', sans-serif;
  color: #9f1239;
  font-weight: 800;
  font-size: 1.125rem;
  margin-top: 0 !important;
  margin-bottom: 1rem !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.editorial-note p {
  color: #be123c !important;
  font-size: 1.125rem !important;
  font-weight: 500 !important;
  margin: 0 !important;
  line-height: 1.8 !important;
}

/* Premium Typography Overrides */
article {
  color: #334155;
}

article h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  margin-top: 5rem !important;
  margin-bottom: 2rem !important;
  color: #0f172a !important;
  letter-spacing: -0.02em !important;
  line-height: 1.2 !important;
  border: none !important;
  padding: 0 !important;
}

article h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.875rem !important;
  font-weight: 700 !important;
  margin-top: 3.5rem !important;
  margin-bottom: 1.5rem !important;
  color: #1e293b !important;
  letter-spacing: -0.01em !important;
}

article p {
  font-size: 1.25rem !important;
  line-height: 1.9 !important;
  margin-bottom: 2rem !important;
  letter-spacing: -0.01em !important;
}

article ul,
article ol {
  margin-bottom: 2.5rem !important;
}

article li {
  font-size: 1.25rem !important;
  margin-bottom: 1.25rem !important;
  line-height: 1.8 !important;
  padding-left: 0.5rem !important;
}

article strong {
  color: #0f172a !important;
  font-weight: 700 !important;
}

article blockquote {
  font-size: 1.5rem !important;
  line-height: 1.6 !important;
  font-weight: 600 !important;
  font-style: italic !important;
  color: #047857 !important;
  border-left-width: 8px !important;
  border-left-color: #10b981 !important;
  margin: 4rem 0 !important;
  padding: 1rem 0 1rem 3rem !important;
}