* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Helvetica Neue, Arial, sans-serif;
  background: linear-gradient(180deg, #f6f7f9, #ffffff);
  color: #111;
}

.topbar {
  display: flex;
  justify-content: space-between;
  padding: 14px 30px;
  font-size: 12px;
  letter-spacing: 0.5px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #ddd;
}

.wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 50px;
}

.intro h1 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 15px;
}

.subtitle {
  font-size: 16px;
  color: #555;
  max-width: 700px;
}

.image-card {
  margin: 50px 0;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

.image-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

.image-card span {
  position: absolute;
  bottom: 18px;
  left: 20px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
}

.secondary img {
  height: 360px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.content-grid p {
  line-height: 1.7;
  margin-bottom: 18px;
}

.quote {
  font-size: 18px;
  font-weight: 500;
  padding-left: 18px;
  border-left: 3px solid #111;
}

.editor-note {
  margin: 60px 0;
  padding: 26px 32px;
  background: #f1f3f6;
  border-radius: 16px;
}

.editor-note p {
  margin: 10px 0 0;
  color: #444;
}

.cta-block {
  display: flex;
  justify-content: center;
  margin: 60px 0;
}

.cta-block a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 40px;
  background: linear-gradient(135deg, #111, #2b2b2b);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  transition: all 0.25s ease;
  overflow: hidden;
  animation: softPulse 4s ease-in-out infinite;
}

.cta-block a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.35), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cta-block a:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

.cta-block a:hover::after {
  opacity: 1;
}

@keyframes softPulse {
  0% { box-shadow: 0 20px 40px rgba(0,0,0,0.25); }
  50% { box-shadow: 0 28px 60px rgba(0,0,0,0.35); }
  100% { box-shadow: 0 20px 40px rgba(0,0,0,0.25); }
}

.footer {
  text-align: center;
  font-size: 12px;
  color: #666;
  padding: 30px;
}

/* SCROLL ANIMATION */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
  .wrapper {
    padding: 40px 20px;
  }

  .intro h1 {
    font-size: 28px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .image-card img {
    height: 260px;
  }

  .secondary img {
    height: 220px;
  }

  .cta-block a {
    width: 100%;
    justify-content: center;
  }
}
