body.home .site-main {
    padding: 0 !important;
}

/* Smooth anchor scrolling (e.g., "Check Your Strength" button -> #tools).
   Keeps the transition subtle and modern without JavaScript. */
html {
    scroll-behavior: smooth;
}

.strength-hero {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-size: cover;
    background-position: center 70%;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 20px;
    text-align: left;
    color: #ffffff;
}

.strength-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.38);
}

.strength-hero-content {
    position: relative;
    max-width: 720px;
    margin: 0;
    padding-left: clamp(24px, 8vw, 120px);
}

.strength-hero h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    text-shadow: 0 2px 18px rgba(0,0,0,0.55);
}

.strength-hero p {
    color: rgba(255,255,255,0.92);
    font-size: 18px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .strength-hero {
        padding: 110px 20px;
    }

    .strength-hero h1 {
        font-size: 32px;
    }

    .strength-section {
        padding: 26px 18px;
    }
}

.strength-section {
    max-width: 1100px;
    margin: 100px auto;
    background: #f8fafc;
    border-radius: 16px;
    padding: 34px 28px;
}

.strength-section h2 {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin-bottom: 24px;
}

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

.strength-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
    transition: all 0.2s ease;
    padding: 32px;
    border-radius: 14px;
}

.strength-card h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.35;
}

.tool-card-desc {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(15, 23, 42, 0.7);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.strength-card:hover {
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    transform: translateY(-3px);
    border-color: rgba(30, 58, 138, 0.18);
}

@media (min-width: 1600px) {
    .strength-hero {
        min-height: 850px;
    }
}

.hero-cta {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 28px;
  background: #1e3a8a;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.hero-cta:hover {
  background: #1e40af;
  transform: translateY(-2px);
}

/* Hero example "Strength Score" card — reinforces the performance/standards story */
.strength-score-card {
  margin-top: 18px;
  padding: 16px 18px;
  max-width: 420px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(15, 23, 42, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.strength-score-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
  color: rgba(147, 197, 253, 0.95); /* muted blue accent */
  margin-bottom: 10px;
}

.strength-score-value {
  font-size: 42px;
  line-height: 1.05;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}

.strength-score-unit {
  font-size: 16px;
  font-weight: 700;
  opacity: 0.9;
  margin-left: 6px;
}

.strength-score-meta {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  margin-bottom: 10px;
}

.strength-score-dot {
  opacity: 0.75;
  margin: 0 6px;
}

.strength-score-lift {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
}


/* Rotating lift label (subtle fade) */
.strength-score-rotator {
  position: relative;
  height: 18px; /* keeps layout stable */
  overflow: hidden;
}

.strength-score-rotator .rot-item {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translateY(4px);
  animation: strength-rotator 12s infinite;
}

.strength-score-rotator .rot-item:nth-child(1) { animation-delay: 0s; }
.strength-score-rotator .rot-item:nth-child(2) { animation-delay: 3s; }
.strength-score-rotator .rot-item:nth-child(3) { animation-delay: 6s; }
.strength-score-rotator .rot-item:nth-child(4) { animation-delay: 9s; }

@keyframes strength-rotator {
  0%   { opacity: 0; transform: translateY(4px); }
  8%   { opacity: 1; transform: translateY(0); }
  25%  { opacity: 1; transform: translateY(0); }
  33%  { opacity: 0; transform: translateY(-4px); }
  100% { opacity: 0; transform: translateY(-4px); }
}

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .strength-score-rotator .rot-item {
    animation: none;
    opacity: 0;
    position: static;
    transform: none;
  }
  .strength-score-rotator .rot-item:first-child {
    opacity: 1;
  }
  .strength-score-rotator {
    height: auto;
  }
}

@media (max-width: 768px) {
  .strength-score-card {
    max-width: 100%;
  }
}
