:root {
  --text-hover: #3C2415;
  --text-taupe: #806748;
}

body {
  /*font-family: 'Inter', -apple-system, system-ui, sans-serif;*/
  color: var(--espresso);
  background: var(--pure-white);
  line-height: 1.6;
  font-weight: 400;  /* Deterministic rendering across all devices */
  letter-spacing: normal;
}

/* ===== HERO ===== */
.lc-hero {
  background: linear-gradient(135deg, #2a1810 0%, #3c2415 50%, #2a1810 100%);
  color: var(--pure-white);
  padding: 9rem 2rem 7rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lc-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
  radial-gradient(circle at 20% 50%, rgba(212,165,116,0.1) 0%, transparent 50%),
  radial-gradient(circle at 80% 50%, rgba(212,165,116,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.lc-hero .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--warm-beige) 0%, var(--warm-beige-dark) 100%);
  color: var(--pure-white);
  padding: .6rem 1.75rem;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  box-shadow: 0 8px 24px rgba(212,165,116,0.3);
  animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lc-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  line-height: 0.95;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  animation: fadeInUp 0.8s ease 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lc-subtitle {
  font-size: 1.25rem;
  color: var(--light-beige);
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
  animation: fadeInUp 0.8s ease 0.4s both;
}

/* ===== MAIN LAYOUT ===== */
.lc-layout {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

/* Pillars Section */
.pillar-section {
  margin-bottom: 6rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--gray-100);
  position: relative;
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--warm-beige), transparent);
}

.section-title {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--espresso);
  margin-bottom: .5rem;
  letter-spacing: -0.02em;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-taupe);
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
}

.scope-note {
  margin: 2rem auto 3rem;
  max-width: 820px;
  font-size: 1rem;
  color: var(--gray-600);
  text-align: center;
  font-style: italic;
}

.scope-note a {
  color: var(--warm-beige-dark);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.scope-note a:hover {
  border-bottom-color: var(--warm-beige);
}

/* Pillar Cards */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.pillar-card {
  background: var(--pure-white);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(212,165,116,0.08);
  box-shadow: 0 12px 40px rgba(60,36,21,0.04);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: 0 260px;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--warm-beige), var(--warm-beige-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.pillar-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 60px rgba(212,165,116,0.15);
  border-color: rgba(212,165,116,0.2);
}

.pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-card .card-header,
.pillar-card .card-body,
.pillar-card .card-icon,
.pillar-card .card-description,
.pillar-card .card-title {
  display: block;
}

.card-header {
  padding: 2.5rem 2.5rem 2rem;
  background: linear-gradient(135deg, var(--sand) 0%, var(--cream) 100%);
  position: relative;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--warm-beige), var(--warm-beige-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 20px rgba(212,165,116,0.2);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--pure-white);
  stroke-width: 2;
  fill: none;
}

.card-title {
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--espresso);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.card-body {
  padding: 2rem 2.5rem 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-description {
  color: var(--gray-600);
  font-size: .98rem;
  line-height: 1.7;
  flex: 1;
}

.card-link {
  margin-top: 1.5rem;
  color: var(--warm-beige-dark);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: gap 0.3s ease;
}

.card-link:hover {
  gap: .75rem;
}

.card-link::after {
  content: '→';
  font-size: 1.1rem;
}

/* Complexity Section */
.complexity-section {
  background: linear-gradient(135deg, #2a1810 0%, #3c2415 100%);
  color: var(--pure-white);
  padding: 5rem 3rem;
  border-radius: 24px;
  margin-bottom: 6rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(60,36,21,0.2);
}

.complexity-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -25%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(212,165,116,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.complexity-section .section-header {
  border-bottom: 2px solid rgba(212,165,116,0.2);
  position: relative;
  z-index: 1;
}

.complexity-section .section-title {
  color: var(--warm-beige);
}

.complexity-section .section-description {
  color: var(--light-beige);
}

.risk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.risk-item {
  display: block;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(212,165,116,0.15);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  content-visibility: auto;
  contain-intrinsic-size: 0 260px;
}

.risk-item:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  border-color: rgba(212,165,116,0.3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.risk-title {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: .75rem;
}

.risk-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.risk-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--danger-red);
  stroke-width: 2.5;
  fill: none;
  filter: drop-shadow(0 2px 4px rgba(220,38,38,0.3));
}

.risk-description {
  font-size: .95rem;
  opacity: .9;
  line-height: 1.6;
  color: var(--light-beige);
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 4.5rem 3rem;
  background: linear-gradient(135deg, var(--sand) 0%, var(--cream) 100%);
  border-radius: 24px;
  border: 1px solid rgba(212,165,116,0.1);
  box-shadow: 0 20px 50px rgba(60,36,21,0.05);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(212,165,116,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--espresso);
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 1.125rem;
  color: var(--text-taupe);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

/* Modernized CTA button styling */
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--espresso) 0%, #2a1810 100%);
  color: var(--pure-white);
  padding: 1.25rem 3rem;
  border-radius: 50px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .95rem;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 12px 30px rgba(60,36,21,0.2), inset 0 -2px 0 rgba(0,0,0,0.15);
  position: relative;
  z-index: 1;
  border: none;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(60,36,21,0.3), inset 0 -2px 0 rgba(0,0,0,0.2);
}

.cta-button:hover::before {
  opacity: 1;
}

@media (max-width: 640px) {
    .lc-hero {
        padding: 7rem 1.5rem 5rem;
    }

    .lc-title {
        font-size: 3rem;
    }

    .lc-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
      font-size: 2rem;
    }
    .card-header {
      padding: 2rem;
    }
    .card-body {
      padding: 1.75rem 2rem;
    }
    .cta-title {
      font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0;
    }
}

@media (max-width: 900px) {
    .pillar-grid {
        grid-template-columns: 1fr;
    }

    .complexity-section {
        padding: 3.5rem 2rem;
    }

    .risk-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 3.5rem 2rem;
    }
}