.thop-hero {
  margin-top: -88px;
  padding: 152px 0 104px;
  background:
    radial-gradient(circle at right top, rgba(66, 204, 255, 0.18), transparent 24%),
    radial-gradient(circle at left bottom, rgba(65, 193, 111, 0.14), transparent 28%),
    linear-gradient(135deg, #07111b 0%, #102238 46%, #0a1828 100%);
  color: #fff;
}

.thop-hero__grid,
.thop-overview,
.thop-core,
.thop-clients {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px;
  align-items: center;
}

.thop-hero__logo {
  width: min(520px, 100%);
  margin-bottom: 28px;
}

.thop-hero__copy h1 {
  margin: 0 0 20px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.4rem, 5.8vw, 4.35rem);
  line-height: 1.05;
}

.thop-hero__copy h1 span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.thop-hero__copy p,
.thop-overview__copy,
.thop-challenge-copy p {
  color: var(--text-on-dark);
  font-size: 1.05rem;
  line-height: 1.8;
}

.thop-hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}

.thop-hero__visual {
  position: relative;
}

.thop-hero__frame {
  position: relative;
  padding: 28px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(66, 204, 255, 0.16), transparent 30%),
    rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(10px);
}

.thop-hero__frame::after {
  content: "";
  position: absolute;
  inset: -18px auto auto -18px;
  width: 140px;
  height: 140px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(241, 88, 48, 0.42), rgba(66, 204, 255, 0.08));
  filter: blur(10px);
  z-index: -1;
}

.thop-hero__frame img {
  width: 100%;
  border-radius: 22px;
}

.thop-overview-card {
  padding: 34px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(66, 204, 255, 0.08), transparent 32%),
    linear-gradient(180deg, #f8fbfd, #eef4f7);
  box-shadow: var(--shadow);
}

.thop-overview__copy {
  color: var(--text-soft);
}

.thop-overview__copy strong {
  color: var(--text);
}

.thop-challenge-visual,
.thop-core-card,
.thop-client-card {
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.thop-challenge-visual {
  padding: 28px;
  background:
    radial-gradient(circle at top left, rgba(65, 193, 111, 0.08), transparent 28%),
    linear-gradient(180deg, #fbfcfd, #eef3f6);
}

.thop-challenge-visual img {
  width: 100%;
}

.thop-challenge-copy strong {
  color: var(--text);
}

.thop-core-card {
  padding: 32px;
  background:
    radial-gradient(circle at top right, rgba(66, 204, 255, 0.1), transparent 34%),
    linear-gradient(180deg, #ffffff, #f7fafc);
}

.thop-core-card .feature-list {
  margin-top: 20px;
}

.thop-core-art {
  display: grid;
  place-items: center;
}

.thop-core-art img {
  width: min(445px, 100%);
}

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

.thop-diff-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at top right, rgba(241, 88, 48, 0.1), transparent 34%),
    #fff;
  box-shadow: var(--shadow);
}

.thop-diff-card h3 {
  margin: 0 0 14px;
  font-family: "Poppins", sans-serif;
  line-height: 1.35;
}

.thop-diff-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.thop-command-card {
  margin-top: 24px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(66, 204, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #0c1625, #13243a);
  color: #fff;
  box-shadow: var(--shadow-strong);
}

.thop-command-card h3 {
  margin: 0 0 14px;
  font-family: "Poppins", sans-serif;
}

.thop-command-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
}

.thop-client-card {
  min-height: 180px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top right, rgba(66, 204, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #fff, #f5f8fb);
}

.thop-client-card img {
  max-width: 100%;
  max-height: 70px;
  width: auto;
}

@media (max-width: 1100px) {
  .thop-hero__grid,
  .thop-overview,
  .thop-core,
  .thop-clients,
  .thop-diff-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .thop-hero {
    margin-top: -78px;
    padding-top: 136px;
  }
}

@media (max-width: 680px) {
  .thop-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
