:root {
  color-scheme: dark;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #100c17;
  color: #fffafc;
}

* { box-sizing: border-box; }

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 8%, rgb(255 219 234 / 10%), transparent 34%),
    linear-gradient(145deg, #0b0910 0%, #17101f 52%, #0d0a12 100%);
}

.home {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: 28px;
}

.home::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.23'/%3E%3C/svg%3E");
  pointer-events: none;
}

.home__glow {
  position: absolute;
  z-index: -1;
  width: min(66vw, 720px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.32;
  pointer-events: none;
  animation: breathe 9s ease-in-out infinite alternate;
}

.home__glow--one {
  top: -34%;
  left: -18%;
  background: #a73e75;
}

.home__glow--two {
  right: -22%;
  bottom: -40%;
  background: #65479f;
  animation-delay: -4s;
}

.home__card {
  width: min(100%, 640px);
  padding: clamp(46px, 9vw, 78px) clamp(28px, 8vw, 72px);
  border: 1px solid rgb(255 255 255 / 11%);
  border-radius: 32px;
  background: linear-gradient(145deg, rgb(255 255 255 / 8%), rgb(255 255 255 / 2%));
  box-shadow: 0 32px 90px rgb(0 0 0 / 42%);
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.home__mark {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto 28px;
  place-items: center;
  border: 1px solid rgb(255 226 238 / 25%);
  border-radius: 50%;
  color: #f5c7db;
  background: rgb(255 255 255 / 4%);
  box-shadow: 0 0 30px rgb(221 114 162 / 15%);
  font-family: Georgia, serif;
  font-size: 25px;
}

.home__eyebrow {
  margin: 0 0 14px;
  color: rgb(255 236 244 / 60%);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(58px, 14vw, 92px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h1 em {
  color: #efb8cf;
  font-weight: 500;
}

.home__intro {
  max-width: 420px;
  margin: 28px auto 0;
  color: rgb(255 250 252 / 68%);
  font-size: clamp(15px, 3.8vw, 18px);
  line-height: 1.65;
}

.home__line {
  width: 54px;
  height: 1px;
  margin: 34px auto 22px;
  background: linear-gradient(90deg, transparent, #eab6cc, transparent);
}

.home__note {
  margin: 0;
  color: rgb(255 250 252 / 44%);
  font-size: 12px;
  letter-spacing: 0.08em;
}

@keyframes breathe {
  from { transform: translate3d(0, -2%, 0) scale(0.96); }
  to { transform: translate3d(3%, 3%, 0) scale(1.06); }
}

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

@media (max-width: 520px) {
  .home { padding: 18px; }
  .home__card { border-radius: 26px; }
}
