:root{
  --gray: #1e1e1e;
  --orange: #df4e19;
}

.info-main {
  width: 100%;
}

.info-hero {
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 24px;
  background:
    radial-gradient(1000px 280px at 100% -50%, rgba(223, 78, 25, 0.1), transparent 45%),
    radial-gradient(500px 200px at 0% -60%, rgba(30, 30, 30, 0.07), transparent 40%),
    #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.info-hero-copy {
  text-align: center;
  margin-bottom: 18px;
}

.info-eyebrow {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--orange);
  margin-bottom: 10px;
}

.info-title {
  font-size: clamp(1.2rem, 3.4vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 10px;
}

.info-subtitle {
  max-width: 760px;
  margin: 0 auto;
  font-size: 0.84rem;
  line-height: 1.7;
  color: #666666;
}

.intro-video-wrap {
  margin-top: 8px;
}

.video-frame {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e7e7e7;
  background: #0f0f0f;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.intro-video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0f0f0f;
}

.video-caption {
  margin-top: 10px;
  text-align: center;
  font-size: 0.74rem;
  color: #666666;
  letter-spacing: 0.01em;
}

.info-pillars {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.pillar-card {
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  background: #ffffff;
  padding: 15px;
}

.pillar-card h2 {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pillar-card p {
  font-size: 0.76rem;
  color: #666666;
  line-height: 1.6;
}

.info-links-panel {
  margin-top: 18px;
  margin-bottom: 20px;
  border: 1px solid #ececec;
  border-radius: 16px;
  background: #ffffff;
  padding: 22px;
}

.info-links-head {
  text-align: center;
  margin-bottom: 14px;
}

.info-links-head h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  color: var(--gray);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.info-links-head p {
  color: #6a6a6a;
  font-size: 0.8rem;
}

.info-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.info-nav-card {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  background: #ffffff;
  text-decoration: none;
  padding: 16px;
  color: inherit;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.info-nav-card:hover {
  transform: translateY(-2px);
  border-color: #d9d9d9;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.09);
}

.info-nav-tag {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.info-nav-card h3 {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.info-nav-card p {
  color: #666666;
  font-size: 0.76rem;
  line-height: 1.58;
  margin-bottom: 12px;
}

.info-nav-cta {
  display: inline-flex;
  align-items: center;
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
}

.info-nav-cta::after {
  content: " ->";
}

@media (max-width: 980px) {
  .info-pillars,
  .info-links-grid {
    grid-template-columns: 1fr;
  }

  .info-hero,
  .info-links-panel {
    padding: 18px;
    border-radius: 12px;
  }

  .info-subtitle,
  .info-links-head p {
    font-size: 0.76rem;
  }
}