:root {
  --purple: #480078;
  --purple-mid: #7a1fb3;
  --purple-dark: #2a004f;
  --gold: #c08418;
  --gold-light: #e0b34a;
  --ink: #161616;
  --page: #eef0f4;
  --sans: "Inter", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  height: 100%;
  overflow: hidden;
}

body {
  height: 100vh;
  height: 100dvh;
  display: grid;
  grid-template-rows: 1fr auto;
  color: var(--ink);
  background: var(--page);
  font-family: var(--sans);
}

a {
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 20;
  padding: 0.5rem 0.75rem;
  background: var(--purple);
  color: #fff;
}

.skip-link:focus {
  top: 0.75rem;
}

.hero {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 1.25rem 1.25rem 0.75rem;
  overflow: hidden;
}

.glow {
  position: absolute;
  top: 26%;
  left: 50%;
  z-index: 0;
  width: min(28rem, 70vw);
  height: min(16rem, 28vh);
  translate: -50% 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 40%, var(--gold-light) 0%, var(--purple-mid) 38%, var(--purple) 64%, transparent 76%);
  filter: blur(56px);
  opacity: 0.38;
  animation: pulse 10s ease-in-out infinite;
}

.bowl {
  position: absolute;
  left: 50%;
  bottom: -48%;
  z-index: 1;
  width: min(110rem, 200vw);
  height: min(110rem, 200vw);
  translate: -50% 0;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(238, 240, 244, 0.06) 40%, transparent 68%);
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 2;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem 0.5rem 0.65rem;
  border-radius: 999px;
  color: var(--purple-dark);
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 10px 24px rgba(42, 0, 79, 0.08);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
}

.chip svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  fill: currentColor;
  color: var(--purple);
}

.chip-b svg,
.chip-c svg,
.chip-d svg {
  fill: none;
}

.copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand {
  width: 8.5rem;
  height: 8.5rem;
  margin: 0 0 1.25rem;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: #fff;
  box-shadow: 0 14px 32px rgba(72, 0, 120, 0.1);
  overflow: hidden;
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

h1 {
  margin: 0 0 1.25rem;
  color: var(--ink);
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.talk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.75rem;
  padding: 0 1.2rem;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.9375rem;
  font-weight: 600;
  background: #fff;
  border: 1px solid rgba(42, 0, 79, 0.08);
  box-shadow: 0 8px 20px rgba(42, 0, 79, 0.06);
}

.talk svg {
  width: 0.85rem;
  height: 0.85rem;
  color: var(--gold);
}

.talk:hover {
  color: var(--purple);
}

.talk:focus-visible,
.skip-link:focus-visible,
.foot a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.foot {
  position: relative;
  z-index: 4;
  padding: 0.75rem 1.25rem 1.1rem;
  color: #4a4a4a;
  font-size: 0.8125rem;
  text-align: center;
}

.foot p {
  margin: 0;
}

.foot a {
  color: var(--purple);
  font-weight: 600;
}

.foot a:hover {
  color: var(--purple-dark);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.36;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.44;
  }
}

@keyframes float-a {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes float-b {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 63.99rem) {
  .hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
  }

  .chips {
    order: 2;
  }
}

@media (min-width: 64rem) {
  .chips {
    position: absolute;
    inset: 0;
    display: block;
    pointer-events: none;
  }

  .chip {
    position: absolute;
    animation: float-a 8s ease-in-out infinite;
  }

  .chip-a {
    top: 16%;
    left: 6%;
  }

  .chip-b {
    top: 16%;
    right: 6%;
    animation-name: float-b;
  }

  .chip-c {
    bottom: 18%;
    left: 7%;
    animation-direction: reverse;
  }

  .chip-d {
    bottom: 18%;
    right: 7%;
    animation-name: float-b;
    animation-direction: reverse;
  }
}

@media (max-width: 40rem) {
  .brand {
    width: 7rem;
    height: 7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .glow,
  .chip {
    animation: none;
  }
}
