:root {
  --purple: #7c3aed;
  --purple-dark: #4c1d95;
  --pink: #ec4899;
  --green: #22c55e;
  --yellow: #fff3a3;

  --ink: #15111f;
  --text: #5f5870;
  --muted: #8a819d;
  --paper: #fffdf8;
  --white: #ffffff;

  --border: #15111f;
  --shadow: 10px 10px 0 #15111f;
  --shadow-small: 6px 6px 0 #15111f;

  --radius: 24px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  background:
    radial-gradient(circle at 12% 18%, rgba(124,58,237,.13), transparent 26%),
    radial-gradient(circle at 88% 14%, rgba(236,72,153,.13), transparent 28%),
    var(--paper);
  color: var(--text);
}

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

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

.container {
  width: min(var(--container), 92%);
  margin: auto;
}

/* Header */

.site-header {
  padding: 26px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.domain-name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: var(--ink);
  border: 2px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.hosted-top {
  font-size: 14px;
  color: var(--text);
}

.hosted-top strong {
  color: var(--purple-dark);
  font-weight: 800;
}

/* Hero */

.hero {
  padding: 70px 0 58px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr .82fr;
  align-items: center;
  gap: 64px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--ink);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-small);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 30px;
}

.status-pill span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--green);
  border: 2px solid var(--border);
}

.hero h1 {
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  max-width: 700px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: .94;
  letter-spacing: -.045em;
  font-weight: 700;
  margin-bottom: 26px;
}

.hero-copy > p {
  max-width: 600px;
  font-size: 21px;
  line-height: 1.6;
  margin-bottom: 34px;
}

.hero-copy strong {
  color: var(--ink);
}

/* Laboratorio Digital */

.ld-callout {
  max-width: 590px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.ld-callout .small-title {
  color: var(--purple-dark);
  font-weight: 800;
  margin-bottom: 8px;
}

.ld-callout h2 {
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  letter-spacing: -.035em;
  margin-bottom: 24px;
}

.ld-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  border-top: 2px solid var(--border);
  padding-top: 20px;
}

.ld-brand img {
  width: 160px;
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
}

.ld-brand span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
}

/* Status card */

.status-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 34px;
  position: relative;
}

.status-card::before {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  z-index: -1;
  border: 2px solid var(--border);
}

.card-label {
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 24px;
}

.status-list {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.status-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #faf7ff;
  border: 2px solid var(--border);
  border-radius: 18px;
  padding: 15px;
  color: var(--ink);
  font-weight: 700;
}

.status-list i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--purple);
  color: var(--white);
  border: 2px solid var(--border);
}

.hf-brand {
  border-top: 2px solid var(--border);
  padding-top: 24px;
  display: grid;
  gap: 12px;
}

.hf-brand span {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: .08em;
}

.hf-brand img {
  max-width: 220px;
  max-height: 70px;
  object-fit: contain;
}

/* Trust */

.trust {
  padding: 22px 0 74px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.trust article {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
  padding: 28px;
  transition: transform .18s ease, box-shadow .18s ease;
}

.trust article:hover {
  transform: translate(-2px, -2px);
  box-shadow: 9px 9px 0 #15111f;
}

.trust i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--purple);
  color: var(--white);
  border: 2px solid var(--border);
  border-radius: 18px;
  font-size: 22px;
  margin-bottom: 18px;
}

.trust h3 {
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  font-size: 24px;
  margin-bottom: 8px;
}

.trust p {
  line-height: 1.55;
}

/* Footer */

.site-footer {
  padding: 0 20px 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.site-footer a {
  color: var(--purple-dark);
  font-weight: 800;
}

.site-footer a:hover {
  color: var(--pink);
}

/* Responsive */

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .status-card {
    max-width: 640px;
  }
}

@media (max-width: 680px) {
  .hosted-top {
    display: none;
  }

  .hero {
    padding-top: 42px;
  }

  .ld-brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .status-card::before {
    inset: 10px -10px -10px 10px;
  }
}