:root {
  --bg: #05020a;
  --panel: rgba(7, 3, 12, 0.72);
  --line: rgba(164, 110, 255, 0.18);
  --text: #fbf8ff;
  --muted: #cbbfe0;
  --accent: #8f2cff;
  --accent-strong: #b45fff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(
      circle at 14% 12%,
      rgba(143, 44, 255, 0.22),
      transparent 22%
    ),
    radial-gradient(
      circle at 86% 16%,
      rgba(143, 44, 255, 0.12),
      transparent 24%
    ),
    linear-gradient(180deg, #09030f 0%, #030105 100%);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
}

.landing-shell {
  min-height: 100vh;
}

.hero-stage {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 100vh;
  padding: 32px 28px 28px;
  overflow: hidden;
  isolation: isolate;
}

.background-photo,
.background-vignette,
.background-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.background-photo {
  background-image:
    linear-gradient(
      90deg,
      rgba(2, 1, 4, 0.96) 0%,
      rgba(2, 1, 4, 0.88) 28%,
      rgba(2, 1, 4, 0.28) 56%,
      rgba(2, 1, 4, 0.16) 100%
    ),
    url('./landing%20saulo.png');
  background-repeat: no-repeat;
  background-position: 76% center;
  background-size: cover;
  transform: scale(1.02);
}

.background-vignette {
  background:
    linear-gradient(180deg, rgba(5, 2, 10, 0.18), rgba(5, 2, 10, 0.84)),
    radial-gradient(
      circle at 72% 35%,
      rgba(143, 44, 255, 0.16),
      transparent 26%
    );
}

.background-glow {
  z-index: 0;
  filter: blur(88px);
  opacity: 0.68;
}

.glow-top {
  inset: -10% auto auto -8%;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(123, 22, 255, 0.32);
}

.glow-bottom {
  inset: auto -5% -10% auto;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: rgba(95, 28, 200, 0.22);
}

.brand-mark,
.hero-copy,
.feature-row {
  position: relative;
  z-index: 2;
}

.brand-mark {
  width: clamp(80px, 11vw, 132px);
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.45));
}

.hero-copy {
  max-width: 29rem;
  padding-top: 24px;
}

.brand-eyebrow {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

h1 span {
  color: var(--accent-strong);
}

.brand-lead,
.feature-card p {
  color: var(--muted);
  line-height: 1.7;
}

.brand-lead {
  max-width: 25rem;
  margin-top: 26px;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 18px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.primary-link {
  border: 1px solid rgba(212, 176, 255, 0.24);
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-strong) 100%
  );
  box-shadow: 0 18px 34px rgba(123, 22, 255, 0.28);
  color: white;
}

.secondary-link {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.primary-link:hover,
.secondary-link:hover {
  transform: translateY(-1px);
}

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

.feature-card {
  min-height: 188px;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(18, 10, 28, 0.92), rgba(7, 3, 12, 0.92)),
    var(--panel);
  box-shadow: var(--shadow);
}

.feature-icon {
  color: var(--accent);
  font-size: 2rem;
  line-height: 1;
}

.feature-card h2 {
  margin: 18px 0 10px;
  font-size: 1.5rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.site-footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1.3fr auto;
  gap: 18px;
  align-items: start;
  margin-top: 34px;
  padding: 20px 22px;
  border: 1px solid rgba(212, 176, 255, 0.16);
  border-radius: 24px;
  background: rgba(7, 3, 12, 0.72);
  backdrop-filter: blur(12px);
}

.footer-kicker,
.footer-title {
  margin: 0 0 10px;
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-copy,
.footer-list,
.footer-credit {
  color: var(--muted);
  line-height: 1.6;
}

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

.footer-list {
  display: grid;
  gap: 6px;
}

.footer-list a,
.footer-credit a {
  color: var(--text);
  text-decoration: none;
}

.footer-credit {
  justify-self: end;
  text-align: right;
}

@media (max-width: 960px) {
  .hero-stage {
    padding: 24px 20px;
  }

  .background-photo {
    background-position: 72% center;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-credit {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 720px) {
  .hero-stage {
    padding: 18px 14px 20px;
  }

  .background-photo {
    background-position: 68% top;
  }

  .brand-mark {
    width: 76px;
  }

  .hero-copy {
    max-width: none;
    padding-top: 56px;
  }

  h1 {
    max-width: none;
    font-size: 2.8rem;
  }

  .brand-lead {
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .primary-link,
  .secondary-link {
    width: 100%;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}
