:root {
  --white: #ffffff;
  --off: #f6f6f3;
  --soft: #ededeb;
  --text: #080808;
  --muted: #5e5e5b;
  --line: #dededb;
  --black: #050505;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.10);
  --shadow-soft: 0 12px 34px rgba(0, 0, 0, 0.07);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 84% 5%, rgba(0, 0, 0, .065), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7f7f4 52%, #ffffff 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 0, 0, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, .035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .55), transparent 78%);
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.orbit-bg {
  position: fixed;
  right: -270px;
  top: -240px;
  width: 780px;
  height: 780px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .09);
  pointer-events: none;
  z-index: 0;
}

.orbit-bg::before,
.orbit-bg::after {
  content: "";
  position: absolute;
  inset: 120px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .10);
  transform: rotate(-18deg) scaleX(1.35);
}

.orbit-bg::after {
  inset: 250px;
  background: radial-gradient(circle, #050505 0 36%, transparent 37%);
  border: 0;
  transform: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .08), 0 24px 90px rgba(0, 0, 0, .16);
}

.topbar {
  position: relative;
  z-index: 2;
  background: var(--black);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.topbar-inner {
  width: min(520px, calc(100% - 28px));
  min-height: 40px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.page {
  width: min(520px, calc(100% - 28px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 26px 0 36px;
}

.hero-card {
  display: grid;
  gap: 14px;
}

.hero-copy {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 26px;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -190px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .09);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, .04);
}

.eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  background: #fff;
}

.brand-logos {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.logo-box {
  min-height: 116px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 14px;
  overflow: hidden;
  transition: .22s ease;
}

.logo-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.logo-box img {
  object-fit: contain;
  filter: contrast(1.08);
}

.gravity-logo img {
  max-height: 100px;
}

.espiral-logo {
  min-height: 150px;
}

.espiral-logo img {
  max-height: 134px;
}

.hero-copy h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(40px, 12vw, 68px);
  line-height: .92;
  letter-spacing: -.07em;
}

.hero-copy p {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}

.profile-panel {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  background: var(--black);
  color: #fff;
  box-shadow: var(--shadow);
  border: 1px solid #111;
  padding: 24px;
}

.profile-panel::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -110px;
  top: -130px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  transform: rotate(-22deg) scaleX(1.3);
}

.panel-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  color: rgba(255,255,255,.70);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.profile-panel h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 27px;
  line-height: 1;
  letter-spacing: -.04em;
}

.profile-panel p {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.68);
  line-height: 1.65;
  margin: 12px 0 0;
}

.links {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.link-card {
  position: relative;
  overflow: hidden;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: .22s ease;
}

.link-card::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 145px;
  height: 145px;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 50%;
  background: #fafafa;
}

.link-card:hover {
  transform: translateY(-3px);
  border-color: #cfcfca;
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
}

.link-card-dark {
  background: var(--black);
  color: #fff;
  border-color: #111;
}

.link-card-dark::before {
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}

.whatsapp {
  animation: whatsappPulse 1.9s ease-in-out infinite;
}

@keyframes whatsappPulse {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.015);
  }
}

.icon {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--black);
}

.link-card-dark .icon,
.icon-dark {
  background: #fff;
}

.icon img {
  width: 23px;
  height: 23px;
  object-fit: contain;
  filter: invert(1);
}

.link-card-dark .icon img,
.icon-dark img {
  filter: none;
}

.text {
  position: relative;
  z-index: 1;
  flex: 1;
}

.text strong {
  display: block;
  font-size: 16px;
  letter-spacing: -.01em;
  margin-bottom: 4px;
}

.text small {
  display: block;
  color: var(--muted);
  line-height: 1.4;
  font-size: 13px;
}

.link-card-dark .text small {
  color: rgba(255,255,255,.65);
}

.arrow {
  position: relative;
  z-index: 1;
  min-width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--black);
  font-weight: 900;
}

.link-card-dark .arrow {
  color: var(--black);
  background: #fff;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.mini-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  padding: 20px;
}

.mini-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.08);
  background: #fafafa;
}

.mini-card span {
  position: relative;
  z-index: 1;
  color: #9b9b98;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .15em;
}

.mini-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 8px;
  font-size: 18px;
  letter-spacing: -.02em;
}

.mini-card p {
  position: relative;
  z-index: 1;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

footer {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  padding: 25px 0 4px;
}

@media (min-width: 700px) {
  .page,
  .topbar-inner {
    width: min(640px, calc(100% - 36px));
  }

  .brand-logos {
    grid-template-columns: .88fr 1.12fr;
    align-items: stretch;
  }

  .mini-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mini-card {
    min-height: 172px;
  }
}

@media (max-width: 420px) {
  .topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .topbar-inner span:last-child {
    display: none;
  }

  .hero-copy,
  .profile-panel {
    border-radius: 30px;
    padding: 21px;
  }

  .logo-box {
    min-height: 104px;
  }

  .espiral-logo {
    min-height: 132px;
  }

  .espiral-logo img {
    max-height: 120px;
  }

  .link-card {
    border-radius: 22px;
  }
}
