:root {
  --bg: #07111f;
  --bg-alt: #130d22;
  --panel: rgba(11, 18, 33, 0.78);
  --panel-strong: rgba(17, 25, 45, 0.92);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 122, 190, 0.28);
  --text: #eef3ff;
  --muted: rgba(238, 243, 255, 0.72);
  --hot: #ff5aa8;
  --warm: #ff8d5c;
  --violet: #8769ff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 90, 168, 0.18), transparent 32%),
    radial-gradient(circle at 85% 15%, rgba(135, 105, 255, 0.16), transparent 24%),
    linear-gradient(135deg, var(--bg), var(--bg-alt) 52%, #220f1d 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.6;
}

body::before {
  top: -6rem;
  right: -8rem;
  background: rgba(255, 141, 92, 0.22);
}

body::after {
  bottom: -10rem;
  left: -8rem;
  background: rgba(135, 105, 255, 0.18);
}

a {
  color: inherit;
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.site-header,
.card,
.panel,
.spotlight {
  animation: rise 640ms ease both;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  color: #fff7fb;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--hot), var(--violet));
  box-shadow: 0 18px 38px rgba(255, 90, 168, 0.28);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy span:last-child {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 16, 31, 0.55);
  backdrop-filter: blur(18px);
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--muted);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(19, 28, 49, 0.9), var(--panel));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.hero {
  padding: 56px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -4rem;
  top: -4rem;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 90, 168, 0.2), transparent 68%);
}

.eyebrow,
.panel-label,
.updated-at,
.contact-label {
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow,
.panel-label,
.contact-label {
  color: #ffb3d5;
  font-size: 0.76rem;
}

h1,
h2 {
  margin: 0;
  line-height: 1.05;
}

.hero h1 {
  max-width: 12ch;
  margin-top: 10px;
  font-size: clamp(2.75rem, 7vw, 5.4rem);
}

.lead,
.document-body,
.panel p,
.spotlight p {
  color: var(--muted);
  line-height: 1.75;
}

.lead {
  max-width: 60ch;
  margin: 20px 0 0;
  font-size: 1.08rem;
}

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

.button,
.text-link {
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--hot), var(--warm));
  box-shadow: 0 20px 36px rgba(255, 90, 168, 0.24);
}

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

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

.panel {
  padding: 28px;
}

.panel h2 {
  margin-top: 12px;
  font-size: 1.55rem;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: #ffd0e6;
  font-weight: 700;
}

.spotlight,
.document-card {
  padding: 36px;
}

.spotlight {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  border-color: var(--line-strong);
  background: linear-gradient(135deg, rgba(255, 90, 168, 0.12), rgba(135, 105, 255, 0.08));
}

.updated-at {
  margin: 12px 0 26px;
  color: #ffd0e6;
  font-size: 0.82rem;
}

.document-body {
  max-width: 72ch;
  margin: 0;
  font-size: 1.08rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.contact-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  color: var(--text);
  text-decoration: none;
  background: var(--panel-strong);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-card strong {
  font-size: 1.2rem;
}

.contact-card span:last-child {
  color: var(--muted);
  line-height: 1.6;
}

.contact-card:hover,
.contact-card:focus-visible {
  border-color: var(--line-strong);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.26);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 24px, 1120px);
    padding-top: 16px;
  }

  .site-header {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav {
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 24px;
  }

  .hero,
  .spotlight,
  .document-card {
    padding: 28px;
  }

  .hero h1 {
    max-width: none;
  }
}
