*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  color: #f0eaea;
  background-color: #000;
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  padding: 120px 20px 80px;
  display: flex;
  flex-direction: column;
  gap: 120px;
  align-items: center;
}

.feature-block {
  width: min(960px, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  position: relative;
}

.feature-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 360px;
  min-width: 360px;
  height: 360px;
}

.circle {
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 35px 60px rgba(0, 0, 0, 0.55);
  background-size: cover;
  background-position: center;
}

.circle--primary {
  width: 240px;
  height: 240px;
  top: 0;
  left: 0;
}

.circle--secondary {
  opacity: 0.9;
}

.circle--secondary--1 {
  width: 170px;
  height: 170px;
  top: -120px;
  right: -120px;
}

.circle--secondary--2 {
  width: 150px;
  height: 150px;
  top: -160px;
  left: 190px;
}

.circle--secondary--3 {
  width: 130px;
  height: 130px;
  top: -220px;
  right: 40px;
}

.circle--secondary--4 {
  width: 150px;
  height: 150px;
  bottom: -60px;
  right: -100px;
}

.circle--secondary--5 {
  width: 120px;
  height: 120px;
  bottom: -80px;
  left: -60px;
}

.circle--secondary--6 {
  width: 160px;
  height: 160px;
  top: -220px;
  left: -120px;
}

.circle--tone-1 {
  background: linear-gradient(135deg, #3a8ade, #2d3cb8);
}

.circle--tone-2 {
  background: linear-gradient(135deg, #ef707b, #c44573);
}

.circle--tone-3 {
  background: linear-gradient(135deg, #f5bb5c, #f17c3e);
}

.circle--tone-4 {
  background: linear-gradient(135deg, #71d6b7, #3cb18c);
}

.circle--tone-5 {
  background: linear-gradient(135deg, #b27cf5, #7f4bcc);
}

.circle--tone-6 {
  background: linear-gradient(135deg, #f7f47d, #e8c547);
}

.circle--tone-7 {
  background: linear-gradient(135deg, #63c5ea, #2b9ad5);
}

.feature-copy {
  max-width: 360px;
}

.eyebrow {
  font-family: "Montserrat", "Open Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 1.125rem;
  margin: 0 0 12px;
}

.accent-bar {
  display: inline-block;
  width: 70px;
  height: 4px;
  background: #e86b7c;
  margin-bottom: 32px;
}

.feature-copy p {
  margin: 0;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.cta-block {
  width: min(700px, 100%);
}

.cta-card {
  background: rgba(26, 18, 17, 0.78);
  border-radius: 24px;
  padding: 50px 60px;
  text-align: center;
  box-shadow: 0 35px 65px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
}

.cta-card p {
  margin: 0 0 34px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.cta-button {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.35em;
  padding: 18px 48px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #f0637b, #d55a93);
  box-shadow: 0 20px 35px rgba(209, 78, 116, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 45px rgba(209, 78, 116, 0.4);
}

.page-footer {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}

.social-links {
  display: flex;
  gap: 26px;
  font-size: 1.25rem;
}

.social-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: #f0637b;
}

.legal {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
}

@media (max-width: 820px) {
  .page {
    gap: 80px;
    padding: 100px 24px 60px;
  }

  .feature-block {
    flex-direction: column;
    gap: 40px;
  }

  .feature-copy {
    max-width: 480px;
    text-align: center;
  }

  .accent-bar {
    margin-bottom: 24px;
  }

  .circle--secondary {
    top: -60px;
    right: -40px;
  }
}