:root {
  --ink: #29223d;
  --muted: #706982;
  --purple: #987fd6;
  --purple-dark: #8168c5;
  --purple-light: #eee9fb;
  --paper: #ffffff;
  --soft: #f8f6fb;
  --ring: rgba(152, 127, 214, 0.25);
  --shadow: 0 22px 70px rgba(77, 65, 112, 0.13);
  --button-shadow: 0 12px 26px rgba(129, 104, 197, 0.26);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(180, 166, 222, 0.25), transparent 32rem),
    radial-gradient(circle at 90% 96%, rgba(244, 218, 176, 0.28), transparent 27rem),
    linear-gradient(135deg, #f2eef9 0%, #fbfaff 45%, #fffaf3 100%);
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(1.25rem, 3vw, 3rem);
}

.hero-card {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: minmax(280px, 435px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 6.25rem);
}

.brand-art {
  background: var(--paper);
  border: 1px solid rgba(40, 34, 60, 0.08);
  box-shadow: 0 2px 10px rgba(37, 31, 54, 0.12);
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.brand-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-content {
  max-width: 560px;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 1.8rem;
  padding: 0.78rem 1.55rem;
  color: var(--purple);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(152, 127, 214, 0.14);
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(55, 47, 75, 0.13);
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-size: clamp(3.1rem, 7vw, 4.6rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.065em;
  text-shadow: 0 4px 7px rgba(42, 34, 60, 0.18);
}

h2 {
  margin-bottom: 2.1rem;
  color: var(--purple);
  font-size: clamp(2rem, 4.2vw, 2.55rem);
  line-height: 1.08;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.intro {
  max-width: 600px;
  margin-bottom: 2.35rem;
  color: var(--muted);
  font-size: clamp(1.0rem, 1.8vw, 1.3rem);
  line-height: 1.58;
  font-weight: 500;
}

.coming-soon {
  width: min(436px, 100%);
  margin-bottom: 3.75rem;
  padding: 1.35rem 1.6rem;
  text-align: center;
  color: var(--ink);
  background: rgba(250, 247, 254, 0.8);
  border: 1px solid rgba(152, 127, 214, 0.24);
  border-radius: 1.1rem;
  box-shadow: 0 2px 8px rgba(55, 47, 75, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  font-weight: 900;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
}

.button {
  min-height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: clamp(0.98rem, 1.4vw, 1.16rem);
  font-weight: 600;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button svg {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  fill: currentColor;
}

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

.button:focus-visible {
  outline: 4px solid var(--ring);
  outline-offset: 4px;
}

.button-primary {
  color: #ffffff;
  background: var(--purple);
  border: 1px solid var(--purple-dark);
  box-shadow: var(--button-shadow);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  border: 2px solid rgba(152, 127, 214, 0.18);
  box-shadow: 0 2px 10px rgba(55, 47, 75, 0.08);
}

@media (max-width: 900px) {
  .page-shell {
    align-items: start;
    padding-block: 1.5rem 2.5rem;
  }

  .hero-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .brand-art {
    width: min(420px, 92vw);
    margin-inline: auto;
  }

  .hero-content {
    max-width: 680px;
    margin-inline: auto;
  }

  .eyebrow,
  .coming-soon {
    margin-left: auto;
    margin-right: auto;
  }

  .actions {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .page-shell {
    padding: 1rem;
  }

  .hero-card {
    gap: 1.45rem;
  }

  .brand-art {
    width: min(100%, 360px);
  }

  .eyebrow {
    margin-bottom: 1.25rem;
    padding: 0.7rem 1rem;
    font-size: 0.86rem;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 3.45rem);
  }

  h2 {
    margin-bottom: 1.35rem;
  }

  .intro {
    margin-bottom: 1.45rem;
    font-size: 1.00rem;
  }

  .coming-soon {
    margin-bottom: 1.8rem;
    padding: 1.05rem 1rem;
  }

  .actions {
    width: 100%;
    gap: 0.9rem;
  }

  .button {
    width: 100%;
    min-height: 58px;
    padding: 0.95rem 1.1rem;
  }
}
