:root {
  --sky: #7ce4f4;
  --sky-deep: #4bc6ee;
  --sea: #26b9dd;
  --sea-deep: #149bc7;
  --foam: #ecffff;
  --sand: #ffe7b3;
  --pink: #ff7da8;
  --pink-soft: #ffc3d6;
  --ink: #15546a;
  --cream: #fff9ed;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 72% 12%, rgba(255,255,255,.52), transparent 25%),
    linear-gradient(180deg, #75dff1 0%, #a8ecf3 39%, #e8fbef 64%, #fff2d4 100%);
  color: var(--ink);
  font-family: "Comfortaa", system-ui, sans-serif;
}

button, a { font: inherit; }
a { color: inherit; text-decoration: none; }

main { overflow: clip; }


.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(44px, 6vw, 88px) clamp(24px, 7vw, 110px) clamp(120px, 12vw, 170px);
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 11% 20%, rgba(255, 246, 179, .82), transparent 18%),
    radial-gradient(circle at 38% 82%, rgba(227,255,238,.76), transparent 25%),
    linear-gradient(135deg, #83e7ef 0%, #60d8eb 42%, #43c9e4 68%, #2bb8d9 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(126,229,239,.96) 0%, rgba(110,220,235,.9) 27%, rgba(82,210,232,.42) 39%, transparent 54%),
    linear-gradient(180deg, transparent 0 68%, rgba(207,246,239,.16) 78%, rgba(226,249,237,.88) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -2px 0;
  height: 26vh;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(183,237,240,0) 0%, rgba(213,247,239,.62) 43%, #dff8eb 100%);
}

.sun-glow {
  position: absolute;
  z-index: 1;
  width: 38vw;
  aspect-ratio: 1;
  left: -13vw;
  top: -13vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,248,184,.98) 0 9%, rgba(255,248,184,.36) 31%, transparent 70%);
  filter: blur(8px);
}

.hero-copy {
  position: relative;
  z-index: 8;
  width: min(46vw, 650px);
  max-width: 650px;
  padding-top: 1vh;
}

.eyebrow, .mini-label {
  margin: 0 0 1rem;
  letter-spacing: .14em;
  text-transform: lowercase;
  font-size: clamp(.72rem, 1.1vw, .88rem);
  font-weight: 700;
  color: rgba(18,87,106,.76);
}

h1, h2, p { text-wrap: balance; }

h1 {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: "Cherry Bomb One", "Mochiy Pop One", sans-serif;
  line-height: .8;
  letter-spacing: -.035em;
  filter: drop-shadow(0 18px 35px rgba(16,101,132,.13));
}

.name-first {
  font-size: clamp(4.3rem, 8.4vw, 8.9rem);
  color: #fffdf6;
  text-shadow: 0 7px 0 rgba(34,148,175,.10);
  transform: rotate(-1.5deg);
}

.name-second {
  margin-top: .06em;
  margin-left: clamp(12px, 3vw, 56px);
  font-size: clamp(4.9rem, 9.5vw, 10.2rem);
  color: #fff0a7;
  text-shadow: 0 7px 0 rgba(234,133,110,.11);
  transform: rotate(.8deg);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: .95rem;
  margin-top: 1.8rem;
  max-width: 560px;
}

.ticker {
  margin: 0;
  flex: none;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: clamp(1.18rem, 1.9vw, 1.8rem);
  color: #ff5f91;
  transform: rotate(-2deg);
}

.shell-dot {
  color: rgba(255,247,176,.95);
  text-shadow: 0 2px 12px rgba(255,255,255,.55);
}

.intro {
  margin: 0;
  max-width: 29ch;
  font-size: clamp(.94rem, 1.35vw, 1.15rem);
  line-height: 1.65;
  font-weight: 700;
  color: #175b70;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem 1.55rem;
  margin-top: 2.1rem;
}

.links a {
  position: relative;
  padding: .2rem 0;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: .88rem;
  color: #125f76;
  transition: transform .2s ease, color .2s ease;
}

.links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.25rem;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff8eb2, #ffe989, #8bf0e8);
  transform: scaleX(.35);
  transform-origin: left;
  transition: transform .2s ease;
}

.links a:hover,
.links a:focus-visible { color: #ff5f96; transform: translateY(-2px); }
.links a:hover::after,
.links a:focus-visible::after { transform: scaleX(1); }

.character-wrap {
  position: absolute;
  z-index: 1;
  right: -1vw;
  top: -2vh;
  width: min(65vw, 980px);
  height: min(108vh, 1080px);
  pointer-events: none;
  overflow: hidden;
}

.character-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, #65d9eb 0%, rgba(101,217,235,.86) 4%, rgba(91,213,234,.35) 13%, transparent 26%),
    linear-gradient(180deg, transparent 0 72%, rgba(214,247,239,.12) 78%, rgba(222,249,238,.88) 100%);
}

.character {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 51% 43%;
  filter: saturate(1.04) contrast(1.01) brightness(1.02);
  opacity: .99;
}

.shore-haze {
  position: absolute;
  z-index: 4;
  right: 20vw;
  bottom: 17vh;
  width: 32vw;
  height: 16vh;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  filter: blur(28px);
  transform: rotate(-8deg);
}

.wave-line {
  position: absolute;
  z-index: 6;
  left: -8%;
  width: 116%;
  height: 80px;
  border-radius: 50%;
  border-top: 3px solid rgba(255,255,255,.48);
  transform: rotate(-1deg);
}
.wave-a { bottom: 13%; }
.wave-b { bottom: 8%; left: -16%; opacity: .58; transform: rotate(2deg); }

.petals span {
  position: absolute;
  z-index: 9;
  width: 15px;
  height: 9px;
  border-radius: 80% 20% 80% 20%;
  background: linear-gradient(135deg, #ff85af, #ffd8e2);
  box-shadow: 0 4px 12px rgba(255,99,150,.2);
  animation: drift 8s ease-in-out infinite alternate;
}
.p1 { left: 8%; top: 20%; }
.p2 { left: 36%; top: 14%; transform: rotate(45deg); animation-delay: -2s !important; }
.p3 { left: 29%; top: 72%; transform: rotate(-28deg); animation-delay: -4s !important; }
.p4 { right: 8%; top: 22%; transform: rotate(70deg); animation-delay: -1s !important; }
.p5 { right: 25%; top: 78%; transform: rotate(-10deg); animation-delay: -5s !important; }

.story {
  position: relative;
  min-height: 82vh;
  padding: clamp(100px, 13vw, 180px) clamp(24px, 9vw, 140px);
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 85% 24%, rgba(255,255,255,.9) 0 7%, transparent 19%),
    radial-gradient(circle at 4% 80%, rgba(255,222,170,.6), transparent 25%),
    linear-gradient(180deg, #dff8eb 0%, #effbe5 46%, #fff2d8 100%);
}

.story-copy { position: relative; z-index: 2; max-width: 880px; margin-inline: auto; text-align: center; }
.story h2, .contract h2 {
  margin: 0 auto 1.6rem;
  max-width: 15ch;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 1.12;
  letter-spacing: -.04em;
  color: #177391;
}

.story p:not(.mini-label) {
  max-width: 68ch;
  margin: 0 auto 1rem;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.9;
  font-weight: 600;
  color: #28687b;
}

.story-cloud {
  position: absolute;
  border-radius: 50%;
  filter: blur(.2px);
  background: rgba(255,255,255,.52);
}
.cloud-one { width: 220px; height: 84px; right: 7%; top: 24%; box-shadow: -72px 14px 0 rgba(255,255,255,.42), 70px 20px 0 rgba(255,255,255,.37); }
.cloud-two { width: 160px; height: 58px; left: 4%; bottom: 20%; box-shadow: 52px -13px 0 rgba(255,255,255,.45); }

.float-note {
  position: absolute;
  right: 13vw;
  bottom: 9vw;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: clamp(3rem, 6vw, 7rem);
  color: rgba(255,118,164,.55);
  transform: rotate(12deg);
  animation: bob 3.4s ease-in-out infinite;
}

.contract {
  position: relative;
  padding: clamp(90px, 12vw, 160px) 24px clamp(85px, 10vw, 130px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.78), transparent 28%),
    linear-gradient(180deg, #fff2d8 0%, #ffe8c8 45%, #ffdcca 100%);
}

.contract h2 { color: #d45f84; max-width: 12ch; }
.ca-copy {
  width: min(92vw, 860px);
  margin-top: 1rem;
  border: 0;
  padding: 1rem .4rem 1.15rem;
  background: transparent;
  color: #315d6b;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-bottom: 4px wavy #ff9fbd;
  box-shadow: inset 0 -2px 0 rgba(255,116,158,.25);
}
.ca-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: clamp(.8rem, 1.7vw, 1.08rem);
  font-weight: 700;
  letter-spacing: .03em;
}
.copy-word {
  flex: none;
  font-family: "Mochiy Pop One", sans-serif;
  color: #ff6f9f;
  font-size: .88rem;
}
.copy-status { min-height: 1.5em; margin: .8rem 0 0; font-weight: 700; color: #c34f7a; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 26px clamp(24px, 7vw, 100px) 34px;
  background: #ffdcca;
  color: rgba(117,72,78,.72);
  font-size: .78rem;
  font-weight: 700;
}

@keyframes drift {
  from { transform: translate3d(-6px,-4px,0) rotate(-12deg); }
  to { transform: translate3d(12px,16px,0) rotate(32deg); }
}
@keyframes bob {
  0%,100% { transform: translateY(0) rotate(12deg); }
  50% { transform: translateY(-12px) rotate(8deg); }
}

@media (max-width: 900px) {
  .hero {
    min-height: 980px;
    align-items: flex-start;
    padding-top: 54px;
  }
  .hero-copy { width: min(88vw, 540px); max-width: 540px; }
  .name-first { font-size: clamp(4rem, 16vw, 7rem); }
  .name-second { font-size: clamp(4.6rem, 18vw, 7.7rem); margin-left: 7vw; }
  .hero-meta { max-width: 440px; }
  .character-wrap {
    width: 112vw;
    height: 73vh;
    right: -27vw;
    top: 31vh;
  }
  .character { object-position: 53% 48%; }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(111,223,237,.92) 0%, rgba(96,216,234,.78) 25%, transparent 52%),
      linear-gradient(180deg, transparent 0 70%, rgba(223,248,236,.82) 100%);
  }
  .character-wrap::before {
    background:
      linear-gradient(90deg, rgba(95,215,233,.94) 0%, rgba(95,215,233,.58) 8%, transparent 23%),
      linear-gradient(180deg, transparent 0 72%, rgba(221,249,238,.9) 100%);
  }
  .hero::after { height: 31vh; }
  .wave-a { bottom: 7%; }
  .wave-b { bottom: 3%; }
}

@media (max-width: 560px) {
  .hero {
    min-height: 930px;
    padding-inline: 20px;
  }
  .eyebrow { max-width: 25ch; line-height: 1.65; }
  .name-first { font-size: clamp(3.65rem, 17vw, 5.7rem); }
  .name-second { font-size: clamp(4.2rem, 20vw, 6.3rem); margin-left: 5vw; }
  .hero-meta { gap: .7rem; align-items: flex-start; max-width: 92vw; }
  .ticker { font-size: 1rem; }
  .intro { font-size: .92rem; max-width: 24ch; }
  .links { gap: .9rem 1.2rem; margin-top: 1.7rem; }
  .links a { font-size: .8rem; }
  .character-wrap {
    width: 151vw;
    height: 67vh;
    right: -53vw;
    top: 35vh;
  }
  .character { object-position: 52% 48%; }
  .character-wrap::before {
    background:
      linear-gradient(90deg, rgba(96,216,234,.97) 0%, rgba(96,216,234,.63) 10%, transparent 25%),
      linear-gradient(180deg, transparent 0 68%, rgba(224,249,238,.94) 100%);
  }
  .story { min-height: auto; padding-block: 120px; }
  .story h2, .contract h2 { font-size: clamp(2.1rem, 10vw, 3.3rem); }
  .story p:not(.mini-label) { text-wrap: pretty; }
  .ca-copy { gap: .55rem; }
  .copy-word { font-size: .75rem; }
  footer { flex-direction: column; align-items: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
