* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #0b0f3c;
  padding: 0;
  margin: 0;
}

.mockup-container {
  width: 100%;
}

.preview {
  background:
    radial-gradient(
      900px 500px at 20% -10%,
      rgba(30, 42, 255, 0.3),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 90% 10%,
      rgba(90, 59, 255, 0.3),
      transparent 60%
    ),
    #0b0f3c;
  color: white;
}

.footer-icons .icon-square {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(63, 76, 255, 0.06);
  color: var(--txt);
  font-size: 18px;
  margin-right: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-icons a:nth-child(1) {
  border-color: rgba(255, 0, 0, 0.3);
}

.footer-icons a:nth-child(1):hover {
  background: #ff0000;
  border-color: #ff0000;
  transform: translateY(-2px);
}

.footer-icons a:nth-child(2) {
  border-color: rgba(224, 57, 151, 0.3);
}

.footer-icons a:nth-child(2):hover {
  background: #e1306c;
  border-color: #e1306c;
  transform: translateY(-2px);
}
.image-frame {
  border-radius: 18px;
  border: 3px solid #5a3bff;
  background: linear-gradient(
    135deg,
    rgba(30, 42, 255, 0.2),
    rgba(90, 59, 255, 0.2)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  width: 220px;
  height: 220px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(30, 42, 255, 0.45);
}

.image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(30, 42, 255, 0.15),
    rgba(90, 59, 255, 0.15)
  );
  color: #aab1e6;
  font-size: 48px;
}

/* SECTIONS */
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 30px 30px;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: #aab1e6;
  font-weight: 800;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 20px;
}

h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

p {
  color: #aab1e6;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border-radius: 18px;
  border: 1px solid rgba(90, 59, 255, 0.35);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 100px rgba(30, 42, 255, 0.55);
}

.card .pad {
  padding: 40px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 32px;
}

.founder-card {
  position: relative;
  overflow: hidden;
}

.founder-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    500px 300px at 20% 0%,
    rgba(30, 42, 255, 0.25),
    transparent 60%
  );
  opacity: 0.8;
}

.founder-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.founder-title {
  color: #5a3bff;
  font-weight: 800;
  display: block;
  margin-bottom: 16px;
}

.center-card {
  text-align: center;
}

.img-gabo {
  width: 450%;
  height: 300px;
  object-position: center;
}

@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 26px;
  }
}
