:root {
  --ink: #101010;
  --muted: #6d6a6a;
  --paper: #ffffff;
  --soft: #f7f8fa;
  --pink: #f89cab;
  --pink-strong: #f46f89;
  --blue: #87ceeb;
  --blue-deep: #248ab2;
  --line: rgba(16, 16, 16, 0.1);
  --shadow: 0 24px 70px rgba(16, 16, 16, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(135, 206, 235, 0.2), rgba(248, 156, 171, 0.2)),
    var(--paper);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 16, 16, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 16, 16, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 70%);
}

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

.shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 24px 0 40px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--ink);
  font-weight: 800;
  font-size: 21px;
}

.brand img {
  width: 48px;
  height: 48px;
  display: block;
  object-fit: contain;
  border-radius: 50%;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #101010;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 5px rgba(248, 156, 171, 0.22);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: center;
  min-height: 540px;
  margin-top: 22px;
  padding: 62px;
  overflow: hidden;
  border-radius: 0 0 15px 15px;
  background: #101010;
  color: #fff;
  box-shadow: var(--shadow);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 34px 34px auto auto;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
}

.lead {
  max-width: 600px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.7;
}

.hero-art {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 360px;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: min(320px, 82vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(248, 156, 171, 0.92), rgba(135, 206, 235, 0.86)),
    #fff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: inherit;
}

.brand-mark img {
  position: relative;
  z-index: 1;
  width: 62%;
  height: 62%;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 18px;
}

.brand-line {
  position: absolute;
  bottom: 38px;
  width: min(360px, 82%);
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), #fff, var(--blue));
  opacity: 0.9;
}

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

.launch-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 132px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 42px rgba(16, 16, 16, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.launch-card:hover,
.launch-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(16, 16, 16, 0.24);
  box-shadow: 0 24px 54px rgba(16, 16, 16, 0.14);
  outline: none;
}

.icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.website .icon {
  background: var(--pink-strong);
}

.manager .icon {
  background: var(--blue-deep);
}

.panel .icon {
  background: var(--ink);
}

.card-text {
  min-width: 0;
}

.card-text strong,
.card-text small {
  display: block;
}

.card-text strong {
  font-size: 18px;
  font-weight: 800;
}

.card-text small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.arrow {
  min-width: 66px;
  padding: 10px 13px;
  border-radius: 6px;
  background: var(--soft);
  color: var(--ink);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 42px 28px 0;
  }

  .hero-art {
    min-height: 300px;
    margin-top: 20px;
  }

  .brand-mark {
    width: min(260px, 78vw);
  }

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

@media (max-width: 560px) {
  .shell {
    width: min(100% - 22px, 1180px);
    padding-top: 12px;
  }

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

  .hero {
    padding: 34px 22px 0;
  }

  h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 15px;
  }

  .launch-card {
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 122px;
    padding: 20px;
  }

  .icon {
    width: 48px;
    height: 48px;
  }

  .arrow {
    grid-column: 2;
    justify-self: start;
  }
}
