.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: start;
  position: relative;
}

.hero-card,
.hero-side,
.feature-card,
.category-band,
.note-panel,
.newsletter {
  background: var(--surface);
  border: 1px solid rgba(220, 207, 190, 0.85);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 28px;
  background:
    radial-gradient(circle at top left, rgba(232, 93, 4, 0.14), transparent 34%),
    radial-gradient(circle at 88% 22%, rgba(74, 78, 105, 0.09), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,252,246,0.94));
  position: relative;
  overflow: hidden;
  align-self: start;
  height: fit-content;
}

.hero-card::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -42px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 180, 93, 0.18), transparent 68%);
}

.hero-card h1 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 2.6vw, 3rem);
  line-height: 1.08;
  color: var(--primary);
}

.home-section .section-heading h2 {
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  line-height: 1.08;
}

.hero-copy {
  max-width: 62ch;
  position: relative;
  z-index: 1;
}

.hero-copy p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.hero-actions,
.newsletter form {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-side {
  padding: 22px;
  display: grid;
  gap: 14px;
  background: linear-gradient(160deg, rgba(26, 26, 46, 0.98), rgba(74, 78, 105, 0.96));
  color: rgba(255,255,255,0.86);
  position: relative;
  overflow: hidden;
}

.hero-side::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(240, 180, 93, 0.2), transparent 28%),
    linear-gradient(180deg, transparent, rgba(255,255,255,0.03));
  pointer-events: none;
}

.hero-side > * {
  position: relative;
  z-index: 1;
}

.hero-side__visual {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(20, 24, 40, 0.46);
  display: grid;
  place-items: center;
}

.hero-side__visual img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.hero-side h2,
.hero-side h3 {
  color: #fff;
  margin: 0 0 8px;
}

.hero-side p {
  margin: 0;
  line-height: 1.8;
}

.kicker-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.kicker-strip article {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px;
  backdrop-filter: blur(6px);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.kicker-strip article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.kicker-strip strong {
  display: block;
  font-size: 1.6rem;
  color: var(--primary);
}

.home-section {
  margin-top: 30px;
}

.hero + .home-section {
  margin-top: 18px;
}

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

.feature-card {
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(232, 93, 4, 0.24);
}

.feature-card__media {
  aspect-ratio: 16 / 10;
  display: block;
  background: linear-gradient(135deg, var(--accent-soft), transparent);
  overflow: hidden;
}

.feature-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.feature-card:hover .feature-card__media img {
  transform: scale(1.05);
}

.feature-card__body {
  padding: 18px;
}

.feature-card__body h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  line-height: 1.15;
}

.feature-card__body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.feature-card__meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  color: var(--secondary);
}

.mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.note-panel {
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.note-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), rgba(240, 180, 93, 0.2), transparent);
}

.note-panel ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.9;
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.category-band {
  padding: 20px;
  display: grid;
  gap: 14px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.category-band:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(232, 93, 4, 0.22);
}

.mini-list {
  margin: 0;
  padding-left: 18px;
  color: var(--secondary);
  line-height: 1.9;
}

.newsletter {
  margin-top: 30px;
  padding: 22px;
  display: grid;
  gap: 14px;
  align-items: center;
  grid-template-columns: 1.1fr 0.9fr;
  background:
    radial-gradient(circle at top right, rgba(232, 93, 4, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(249,245,238,0.96));
}

.newsletter input {
  flex: 1;
  min-width: 220px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 14px 18px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.status-note {
  min-height: 24px;
  color: var(--accent);
}

@media (max-width: 980px) {
  .hero,
  .mosaic,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .feature-grid,
  .band-grid,
  .kicker-strip {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .hero-side,
  .note-panel,
  .newsletter {
    padding: 22px;
  }

  .hero-card h1 {
    font-size: clamp(1.35rem, 6.2vw, 2rem);
  }

  .home-section .section-heading h2 {
    font-size: clamp(1.45rem, 6vw, 2.1rem);
  }

  .hero-side__visual img {
    max-height: 320px;
  }
}
