* {
  box-sizing: border-box;
}

:root {
  --bg: #0b0b0f;
  --surface: rgba(255,255,255,.08);
  --surface-strong: rgba(255,255,255,.12);
  --text: #f7f7fa;
  --muted: #a6a6b2;
  --line: rgba(255,255,255,.12);
  --accent-1: #8f6cff;
  --accent-2: #ff6fb5;
}

html {
  height: 100%;
  background: var(--bg);
}

body {
  margin: 0;
  height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 20%, rgba(143,108,255,.13), transparent 32%),
    radial-gradient(circle at 85% 70%, rgba(255,111,181,.10), transparent 30%),
    var(--bg);
  background-attachment: fixed;
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px clamp(24px, 5vw, 72px);
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.topbar,
footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .16em;
  font-size: 15px;
}

.contact-link {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  transition: color .2s ease;
}

.contact-link:hover {
  color: var(--text);
}

.hero {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 920px;
  padding: 80px 0;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  border-radius: 999px;
  padding: 9px 13px;
  color: #d6d6de;
  font-size: 13px;
  margin-bottom: 34px;
  backdrop-filter: blur(18px);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #76e6a5;
  box-shadow: 0 0 16px rgba(118,230,165,.65);
}

.eyebrow {
  margin: 0 0 18px;
  color: #c7c7d1;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 500;
}

h1 {
  margin: 0;
  font-size: clamp(56px, 8vw, 118px);
  line-height: 1.0;
  letter-spacing: -.065em;
  max-width: 1080px;
}

h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, #ffffff 0%, #b5a7ff 40%, #ff9ccb 85%);
  background-clip: text;
  -webkit-background-clip: text;
  padding-bottom: 12px;
}

.intro {
  max-width: 660px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.actions {
  margin-top: 42px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 15px;
  background: #fff;
  color: #111116;
  text-decoration: none;
  font-weight: 650;
  box-shadow: 0 16px 50px rgba(0,0,0,.28);
  transition: transform .2s ease, box-shadow .2s ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 56px rgba(0,0,0,.34);
}

.contact-copy {
  margin: 0;
  max-width: 390px;
  color: #8f8f9b;
  font-size: 14px;
  line-height: 1.6;
}

.contact-copy a {
  color: #d7d7df;
  text-underline-offset: 3px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: .8;
  pointer-events: none;
}

.orb-one {
  width: 420px;
  height: 420px;
  right: -180px;
  top: 14%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.18), rgba(143,108,255,.16) 30%, rgba(143,108,255,0) 70%);
}

.orb-two {
  width: 300px;
  height: 300px;
  left: -150px;
  bottom: 2%;
  background: radial-gradient(circle at 55% 50%, rgba(255,111,181,.16), rgba(255,111,181,0) 70%);
}

footer {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #6f6f7a;
  font-size: 12px;
}

@media (max-width: 700px) {
  .page-shell {
    padding: 22px 20px;
  }

  .hero {
    padding: 64px 0 72px;
  }

  h1 {
    font-size: clamp(52px, 17vw, 76px);
  }

  .intro {
    margin-top: 28px;
  }

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

  footer {
    gap: 16px;
  }
}
