:root {
  color-scheme: light;
  --ink: #2a2140;
  --ink-soft: #554764;
  --pearl: #fff9fb;
  --warm-white: #fff6f4;
  --rose: #e58fb4;
  --rose-deep: #b8618c;
  --lilac: #b8a7ff;
  --aqua: #79d9d3;
  --champagne: #e7c78e;
  --edge: clamp(18px, 5.35vw, 23px);
  --portrait-height: clamp(354px, 94vw, 370px);
}

* {
  box-sizing: border-box;
}

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

body {
  display: grid;
  place-items: start center;
  color: var(--ink);
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  -webkit-font-smoothing: antialiased;
}

main {
  width: min(100%, 430px);
  overflow: hidden;
  background: var(--pearl);
}

.hero {
  position: relative;
  isolation: isolate;
  height: 720px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.94), transparent 33%),
    linear-gradient(150deg, #fffaf8 0%, #f9f1f8 46%, #eee9fa 76%, #e7f5f3 100%);
}

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

.aura {
  position: absolute;
  z-index: -7;
  border-radius: 48% 52% 64% 36% / 58% 40% 60% 42%;
  filter: blur(34px);
  pointer-events: none;
}

.aura--rose {
  top: 72px;
  left: -98px;
  width: 265px;
  height: 310px;
  background: rgba(229, 143, 180, 0.24);
  transform: rotate(28deg);
}

.aura--lilac {
  top: 128px;
  right: -128px;
  width: 300px;
  height: 370px;
  background: rgba(184, 167, 255, 0.29);
  transform: rotate(-18deg);
}

.aura--aqua {
  right: 52px;
  bottom: -72px;
  width: 250px;
  height: 295px;
  background: rgba(121, 217, 211, 0.25);
  transform: rotate(18deg);
}

.pearl-halo {
  position: absolute;
  z-index: -1;
  right: -12px;
  bottom: 40px;
  width: 270px;
  height: 345px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 39%, rgba(255, 255, 255, 0.95) 0 18%, rgba(255, 235, 245, 0.64) 39%, rgba(203, 190, 255, 0.28) 64%, transparent 74%);
  filter: blur(11px);
}

.veils {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.veil {
  fill: none;
  stroke-linecap: round;
}

.veil--one {
  stroke: url(#veilRose);
  stroke-width: 36;
  opacity: 0.55;
}

.veil--two {
  stroke: url(#veilAqua);
  stroke-width: 22;
  opacity: 0.48;
}

.orbit {
  fill: none;
  stroke: rgba(84, 71, 100, 0.17);
  stroke-width: 0.75;
}

.orbit--two {
  stroke: rgba(184, 97, 140, 0.18);
}

.glow-path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.55);
  stroke-width: 8;
}

.light-shards {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
}

.light-shards i {
  position: absolute;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 16px 5px rgba(184, 167, 255, 0.34);
  transform: rotate(45deg);
}

.light-shards i:nth-child(1) { top: 340px; right: 39px; }
.light-shards i:nth-child(2) { top: 418px; left: 147px; width: 3px; height: 3px; }
.light-shards i:nth-child(3) { top: 566px; left: 36px; width: 4px; height: 4px; box-shadow: 0 0 14px 5px rgba(121, 217, 211, 0.32); }

.brand {
  position: absolute;
  z-index: 9;
  top: max(18px, env(safe-area-inset-top));
  left: var(--edge);
  right: var(--edge);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand__primary {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand__name {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.brand__line {
  width: 31px;
  height: 1px;
  background: linear-gradient(90deg, var(--rose), var(--lilac), var(--aqua));
}

.brand__sub,
.brand__edition {
  color: rgba(42, 33, 64, 0.48);
  font-size: 7px;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.brand__edition {
  color: var(--rose-deep);
}

.hero__content {
  position: absolute;
  z-index: 6;
  top: 57px;
  left: var(--edge);
  right: var(--edge);
}

.target {
  width: fit-content;
  max-width: 100%;
  margin: 0 0 8px;
  padding: 6px 11px 5px 9px;
  border: 1px solid rgba(184, 97, 140, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 9px 26px rgba(139, 104, 149, 0.08);
  color: rgba(42, 33, 64, 0.86);
  font-size: clamp(9px, 2.62vw, 11px);
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: 0.015em;
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

.target span {
  margin-right: 5px;
  color: var(--rose-deep);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.claim-owner {
  margin: 0 0 2px 1px;
  color: rgba(42, 33, 64, 0.62);
  font-size: clamp(9px, 2.5vw, 10.5px);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.headline {
  margin: 0;
}

.headline__intro,
.headline__result,
.headline__achievement,
.headline__course {
  display: flex;
  align-items: baseline;
}

.headline__intro {
  color: var(--ink);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(15px, 4.15vw, 18px);
  font-weight: 700;
  line-height: 1.48;
  letter-spacing: 0.015em;
}

.headline__result {
  position: relative;
  width: fit-content;
  min-height: 68px;
  margin-top: -2px;
}

.headline__result::before {
  position: absolute;
  right: -21px;
  bottom: 3px;
  left: 34px;
  z-index: -1;
  height: 17px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(242, 212, 154, 0.47), rgba(229, 143, 180, 0.27), transparent);
  filter: blur(7px);
  content: "";
}

.headline__result small {
  margin-right: 7px;
  color: var(--ink);
  font-size: clamp(20px, 5.5vw, 24px);
  font-weight: 900;
}

.headline__result strong {
  color: var(--rose-deep);
  font-family: "Arial Black", "Hiragino Sans", sans-serif;
  font-size: clamp(64px, 18.2vw, 78px);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: -0.09em;
  text-shadow: 0 7px 24px rgba(168, 121, 172, 0.18);
}

.headline__result b {
  margin-left: 1px;
  color: #9e7fd6;
  font-size: clamp(29px, 8.1vw, 35px);
  font-weight: 950;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .headline__result strong,
  .headline__result b {
    color: transparent;
    background: linear-gradient(112deg, #b55f89 0%, #e495ba 34%, #a98ee8 68%, #68c9c4 100%);
    -webkit-background-clip: text;
    background-clip: text;
  }
}

.headline__achievement {
  margin-top: -5px;
  color: rgba(42, 33, 64, 0.84);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(15px, 4.1vw, 18px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.035em;
}

.headline__course {
  margin-top: 2px;
  color: var(--ink);
  font-size: clamp(38px, 10.7vw, 46px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.05em;
  text-shadow: 0 5px 18px rgba(119, 93, 132, 0.1);
}

.benefit {
  margin: 9px 0 0;
  color: rgba(42, 33, 64, 0.8);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(14px, 3.85vw, 16.5px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.005em;
}

.benefit em {
  color: var(--rose-deep);
  font-style: normal;
  font-weight: 800;
}

.launch-flow {
  position: absolute;
  z-index: 5;
  top: 342px;
  left: var(--edge);
  width: clamp(122px, 34vw, 146px);
}

.launch-flow__title {
  margin: 0 0 14px;
  color: rgba(42, 33, 64, 0.48);
  font-size: 6.5px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.launch-flow__title span {
  color: var(--rose-deep);
}

.launch-flow ol {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.launch-flow ol::before {
  position: absolute;
  top: 10px;
  bottom: 11px;
  left: 5px;
  width: 1px;
  background: linear-gradient(180deg, rgba(229, 143, 180, 0.6), rgba(184, 167, 255, 0.54), rgba(121, 217, 211, 0.58));
  content: "";
}

.launch-flow li {
  position: relative;
  display: grid;
  grid-template-columns: 14px 20px minmax(0, 1fr);
  align-items: center;
  min-height: 48px;
}

.launch-flow li i {
  position: relative;
  z-index: 1;
  width: 11px;
  height: 11px;
  border: 3px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 1px rgba(184, 97, 140, 0.2), 0 0 16px rgba(229, 143, 180, 0.34);
}

.launch-flow li:nth-child(2) i {
  background: var(--lilac);
  box-shadow: 0 0 0 1px rgba(158, 127, 214, 0.19), 0 0 16px rgba(184, 167, 255, 0.34);
}

.launch-flow li:nth-child(3) i {
  background: var(--aqua);
  box-shadow: 0 0 0 1px rgba(104, 201, 196, 0.19), 0 0 16px rgba(121, 217, 211, 0.34);
}

.launch-flow li small {
  color: rgba(42, 33, 64, 0.36);
  font-size: 7px;
  font-weight: 850;
}

.launch-flow li strong {
  color: var(--ink-soft);
  font-size: clamp(10px, 2.75vw, 12px);
  font-weight: 800;
  line-height: 1.35;
  white-space: nowrap;
}

.owner-portrait {
  position: absolute;
  z-index: 2;
  right: -18px;
  bottom: -22px;
  height: var(--portrait-height);
  margin: 0;
  background: transparent;
  border: 0;
  pointer-events: none;
}

.owner-portrait picture,
.owner-portrait img {
  display: block;
  width: auto;
  height: 100%;
}

.owner-portrait img {
  object-fit: contain;
  object-position: 50% 100%;
  filter: drop-shadow(-9px 18px 26px rgba(66, 50, 85, 0.22));
}

.owner-name {
  position: absolute;
  z-index: 7;
  right: 13px;
  bottom: 72px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 7px 10px 6px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background: rgba(255, 249, 251, 0.63);
  box-shadow: 0 9px 24px rgba(85, 71, 100, 0.11);
  backdrop-filter: blur(10px);
}

.owner-name small {
  color: var(--rose-deep);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.owner-name span {
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, var(--rose), var(--lilac));
}

.owner-name strong {
  color: var(--ink);
  font-size: clamp(12px, 3.35vw, 14px);
  font-weight: 850;
  letter-spacing: 0.035em;
}

.foreground-ribbon {
  position: absolute;
  z-index: 3;
  right: -36px;
  bottom: 83px;
  width: 280px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.39);
  border-radius: 50%;
  background: linear-gradient(90deg, transparent, rgba(229, 143, 180, 0.16), rgba(184, 167, 255, 0.14), transparent);
  filter: blur(1px);
  transform: rotate(-8deg);
  pointer-events: none;
}

.bottom-mist {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  height: 83px;
  background: linear-gradient(180deg, transparent 0%, rgba(240, 236, 247, 0.34) 34%, rgba(255, 249, 251, 0.87) 100%);
  pointer-events: none;
}

.hero__footer {
  position: absolute;
  z-index: 8;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 31px;
  padding: 6px var(--edge) 5px;
  border-top: 1px solid rgba(85, 71, 100, 0.09);
  background: rgba(255, 249, 251, 0.78);
  backdrop-filter: blur(10px);
}

.claim-note {
  max-width: 287px;
  margin: 0;
  color: rgba(42, 33, 64, 0.51);
  font-size: 7px;
  font-weight: 500;
  line-height: 1.35;
}

.scroll {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
  color: rgba(184, 97, 140, 0.72);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.scroll i {
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, var(--rose), var(--lilac), var(--aqua));
}

.bridge {
  position: relative;
  min-height: 230px;
  padding: 31px var(--edge) 50px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(229, 143, 180, 0.18), transparent 43%),
    linear-gradient(142deg, #2c213d 0%, #27334a 100%);
  color: var(--pearl);
}

.bridge::after {
  position: absolute;
  top: -74px;
  right: -34px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(184, 167, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.bridge__kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  color: rgba(255, 249, 251, 0.58);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.bridge__kicker span {
  width: 23px;
  height: 1px;
  background: linear-gradient(90deg, var(--rose), var(--lilac), var(--aqua));
}

.bridge h2 {
  margin: 0;
  color: var(--pearl);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(24px, 6.8vw, 29px);
  font-weight: 650;
  line-height: 1.5;
  letter-spacing: 0.015em;
}

@media (max-width: 370px) {
  .brand__sub {
    display: none;
  }

  .target {
    letter-spacing: -0.01em;
  }

  .launch-flow {
    width: 122px;
  }

  .owner-name {
    right: 9px;
  }

  .claim-note {
    max-width: 252px;
    font-size: 6.5px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .owner-portrait {
    animation: portrait-settle 0.9s cubic-bezier(0.2, 0.72, 0.25, 1) both;
  }

  .veil--one,
  .veil--two {
    animation: veil-breathe 7s ease-in-out infinite alternate;
  }

  @keyframes portrait-settle {
    from { opacity: 0; transform: translateY(13px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes veil-breathe {
    from { opacity: 0.39; }
    to { opacity: 0.63; }
  }
}
