:root {
  --paper: #ffffff;
  --ink: #121826;
  --muted: #667085;
  --line: #edf0f5;
  --lime: #c8f35a;
  --yellow: #ffd34f;
  --orange: #ff734d;
  --pink: #ff70be;
  --blue: #586cff;
  --cyan: #47d9ff;
  --shadow: 0 20px 54px rgba(43, 58, 113, 0.08);
  --radius: 29px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  z-index: -1;
  top: -160px;
  left: 47%;
  width: 620px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(71, 217, 255, 0.11), rgba(255, 255, 255, 0));
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

.grain {
  position: fixed;
  z-index: 10;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image: radial-gradient(rgba(88, 108, 255, 0.2) 0.65px, transparent 0.65px);
  background-size: 5px 5px;
  mask-image: linear-gradient(to bottom, transparent, black 16%, black 86%, transparent);
}

.header {
  position: sticky;
  z-index: 5;
  top: 0;
  display: flex;
  align-items: center;
  max-width: 1240px;
  height: 78px;
  margin: 0 auto;
  padding: 0 36px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(14px);
}

.brand {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.07em;
}

.brand span {
  color: var(--blue);
}

.nav {
  display: flex;
  gap: 33px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.nav a {
  transition: color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav .active {
  color: var(--ink);
}

.nav .active::after {
  content: "";
  display: block;
  height: 3px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--blue);
}

.language {
  cursor: pointer;
  border: 1px solid #e4e9f3;
  border-radius: 999px;
  padding: 10px 16px;
  background: #fff;
  font-size: 14px;
  box-shadow: 0 5px 16px rgba(88, 108, 255, 0.05);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.language:hover {
  border-color: #c7d0ff;
  box-shadow: 0 8px 20px rgba(88, 108, 255, 0.12);
  transform: rotate(-3deg);
}

main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 36px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(500px, 1fr) 470px;
  align-items: center;
  gap: 68px;
  min-height: calc(100vh - 148px);
  padding: 62px 0 94px;
}

.home-hero {
  min-height: calc(100vh - 74px);
  padding-bottom: 70px;
}

.hero-copy {
  position: relative;
}

.hero-spark {
  position: absolute;
  pointer-events: none;
}

.spark-one {
  top: -38px;
  right: 72px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--pink);
  animation: float 4s ease-in-out infinite;
}

.spark-two {
  right: 8px;
  bottom: 100px;
  width: 45px;
  height: 13px;
  border-radius: 999px;
  background: var(--cyan);
  transform: rotate(-17deg);
}

.spark-three {
  top: 67px;
  right: 4px;
  color: var(--yellow);
  font-family: Caveat, "Comic Sans MS", cursive;
  font-size: 45px;
  font-weight: 700;
  transform: rotate(13deg);
}

.eyebrow {
  margin: 0 0 25px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

h1 {
  max-width: 700px;
  margin: 0 0 25px;
  font-size: clamp(59px, 5.7vw, 76px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.075em;
}

.highlight {
  position: relative;
  display: inline-block;
  color: var(--blue);
}

.highlight::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -7px;
  bottom: 7px;
  left: -7px;
  height: 14px;
  background: linear-gradient(90deg, var(--lime), var(--yellow));
  border-radius: 20px;
  transform: rotate(-2deg);
}

.intro {
  max-width: 485px;
  margin: 0 0 42px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 560px;
  margin: -20px 0 38px;
}

.hero-tags span {
  border: 1px solid rgba(28, 36, 64, 0.1);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(51, 65, 120, 0.05);
}

.resume-strip {
  display: grid;
  gap: 7px;
  max-width: 610px;
  margin: -17px 0 36px;
  border: 1px solid rgba(28, 36, 64, 0.08);
  border-radius: 22px;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 28px rgba(51, 65, 120, 0.05);
}

.resume-strip span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.resume-strip strong {
  font-size: 15px;
  letter-spacing: -0.02em;
}

.hero-actions {
  display: flex;
  gap: 35px;
}

.hero-actions .text-path {
  position: relative;
  display: inline-block;
  padding: 0 0 10px;
  color: var(--ink);
  font-family: Caveat, "Comic Sans MS", cursive;
  font-size: 29px;
  font-weight: 700;
}

.text-path::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 3px;
  border-radius: 99px;
  background: var(--pink);
  transform: rotate(-3deg);
  transition: transform 180ms ease;
}

.text-path:nth-child(2)::after {
  background: var(--cyan);
  transform: rotate(2deg);
}

.text-path:nth-child(3)::after {
  background: var(--yellow);
  transform: rotate(-1deg);
}

.text-path:hover::after {
  transform: translateY(-2px) rotate(1deg);
}

.hand-signature {
  width: max-content;
  margin: 42px 0 0 7px;
  color: var(--pink);
  font-family: Caveat, "Comic Sans MS", cursive;
  font-size: 34px;
  transform: rotate(-5deg);
}

.loose-words {
  position: relative;
  height: 0;
}

.loose-words span {
  position: absolute;
  display: inline-block;
  padding: 6px 13px 7px;
  border-radius: 18px 21px 16px 23px;
  font-family: Caveat, "Comic Sans MS", cursive;
  font-size: 21px;
  font-weight: 700;
}

.loose-words span:nth-child(1) {
  left: 202px;
  top: -40px;
  background: #d8f8ff;
  color: #227ca1;
  transform: rotate(5deg);
}

.loose-words span:nth-child(2) {
  left: 303px;
  top: -4px;
  background: #fff0b3;
  color: #a66809;
  transform: rotate(-6deg);
}

.loose-words span:nth-child(3) {
  left: 390px;
  top: -58px;
  background: #ffe2f2;
  color: #c63d86;
  transform: rotate(8deg);
}

.profile-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(28, 36, 64, 0.08);
  border-radius: 36px;
  padding: 28px;
  background:
    radial-gradient(circle at 90% 8%, rgba(255, 112, 190, 0.18), transparent 28%),
    radial-gradient(circle at 12% 86%, rgba(71, 217, 255, 0.2), transparent 31%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(245, 248, 255, 0.82));
  box-shadow: 0 28px 78px rgba(51, 65, 120, 0.11);
}

.profile-panel::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px dashed rgba(88, 108, 255, 0.22);
}

.panel-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 44px;
}

.panel-topline span {
  border-radius: 999px;
  padding: 9px 12px;
  background: #fff;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(51, 65, 120, 0.06);
}

.panel-topline strong {
  font-family: Caveat, "Comic Sans MS", cursive;
  color: var(--pink);
  font-size: 33px;
  transform: rotate(-4deg);
}

.panel-main {
  position: relative;
  z-index: 1;
}

.panel-main p {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.panel-main h2 {
  max-width: 390px;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.075em;
  line-height: 0.98;
}

.panel-proof {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 24px;
}

.panel-proof div {
  border: 1px solid rgba(28, 36, 64, 0.08);
  border-radius: 23px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.74);
}

.panel-proof strong,
.panel-proof span {
  display: block;
}

.panel-proof strong {
  color: var(--blue);
  font-size: 30px;
  letter-spacing: -0.06em;
}

.panel-proof span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.panel-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.panel-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}

.panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 211, 79, 0.22);
}

.panel-contact {
  position: relative;
  z-index: 1;
  display: inline-flex;
  border-radius: 999px;
  padding: 13px 17px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(18, 24, 38, 0.16);
}

.playground {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 46% 54% 46% 54% / 39% 49% 51% 61%;
  background:
    radial-gradient(circle at 30% 22%, #fff5ba 0, transparent 30%),
    radial-gradient(circle at 78% 25%, #ffd9eb 0, transparent 28%),
    radial-gradient(circle at 25% 82%, #dafcff 0, transparent 32%),
    #f8faff;
  box-shadow: 0 24px 68px rgba(77, 93, 164, 0.08);
  transform: rotate(1.6deg);
}

.playground::before,
.playground::after {
  content: "";
  position: absolute;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.playground::before {
  top: 55px;
  right: 38px;
  width: 116px;
  height: 88px;
  transform: rotate(5deg);
}

.playground::after {
  bottom: 48px;
  left: 39px;
  width: 108px;
  height: 84px;
  transform: rotate(-5deg);
}

.scribble {
  position: absolute;
  z-index: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scribble-line {
  right: 44px;
  bottom: 69px;
  width: 148px;
  stroke: var(--pink);
  stroke-width: 4;
  transform: rotate(-9deg);
}

.scribble-star {
  top: 35px;
  left: 31px;
  width: 54px;
  stroke: var(--blue);
  stroke-width: 3;
  animation: wiggle 4s ease-in-out infinite;
}

.orbit {
  position: absolute;
  border: 1px dashed rgba(88, 108, 255, 0.21);
  border-radius: 50%;
  animation: rotate 22s linear infinite;
}

.orbit-one {
  inset: 84px 49px;
}

.orbit-two {
  inset: 122px 85px 109px;
  animation-direction: reverse;
  animation-duration: 30s;
}

.bubble {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  font-family: Caveat, "Comic Sans MS", cursive;
  font-size: 20px;
  font-weight: 700;
  animation: float 5s ease-in-out infinite;
}

.bubble-a {
  top: 70px;
  left: 56px;
  width: 73px;
  height: 42px;
  border-radius: 999px;
  background: var(--yellow);
  transform: rotate(-8deg);
}

.bubble-b {
  top: 146px;
  right: 45px;
  width: 67px;
  height: 67px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  animation-delay: -2s;
}

.bubble-c {
  right: 113px;
  bottom: 106px;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--cyan);
  color: #083344;
  animation-delay: -3s;
}

.shape {
  position: absolute;
  top: 182px;
  left: 115px;
  width: 220px;
  height: 168px;
  border-radius: 39% 61% 53% 47% / 47% 38% 62% 53%;
  background: linear-gradient(132deg, var(--blue), #737cff 43%, var(--cyan));
  transform: rotate(-9deg);
}

.cursor {
  position: absolute;
  z-index: 3;
  bottom: 113px;
  left: 173px;
  border-radius: 11px 11px 11px 2px;
  padding: 9px 14px;
  background: #fff;
  color: var(--blue);
  box-shadow: 0 9px 24px rgba(88, 108, 255, 0.16);
  font-family: Caveat, "Comic Sans MS", cursive;
  font-size: 20px;
  font-weight: 700;
  animation: nudge 4.5s ease-in-out infinite;
}

.canvas-note {
  position: absolute;
  z-index: 3;
  right: 45px;
  bottom: 84px;
  transform: rotate(-5deg);
}

.canvas-note span {
  display: inline-block;
  color: var(--blue);
  font-family: Caveat, "Comic Sans MS", cursive;
  font-size: 29px;
}

.showcase {
  position: relative;
  padding: 18px 0 108px;
}

.paint-splash {
  position: absolute;
  z-index: -1;
}

.splash-yellow {
  top: 79px;
  right: -33px;
  width: 156px;
  height: 82px;
  border-radius: 58% 42% 70% 30% / 31% 60% 40% 69%;
  background: rgba(255, 211, 79, 0.37);
  transform: rotate(13deg);
}

.showcase-head,
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 44px;
}

.showcase-head h2 {
  max-width: 590px;
}

.section-number {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.section-number::after {
  content: "";
  display: inline-block;
  width: 36px;
  height: 7px;
  margin: 0 0 2px 13px;
  border-radius: 99px;
  background: var(--yellow);
  transform: rotate(-4deg);
}

h2 {
  margin: 0;
  font-size: clamp(39px, 4vw, 49px);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 1;
}

.section-note {
  max-width: 326px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.compact-heading {
  align-items: start;
  margin-bottom: 28px;
}

.interview-summary {
  padding: 8px 0 82px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.summary-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(28, 36, 64, 0.08);
  border-radius: 28px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 42px rgba(51, 65, 120, 0.06);
}

.summary-grid article::after {
  content: "";
  position: absolute;
  right: -35px;
  top: -35px;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: rgba(255, 112, 190, 0.11);
}

.summary-grid span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f4f7ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.summary-grid h3 {
  margin: 42px 0 12px;
  font-size: 26px;
  letter-spacing: -0.06em;
}

.summary-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.home-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 0 0 104px;
}

.path-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: 34px;
  padding: 32px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.path-card:hover {
  transform: translateY(-5px) rotate(-0.35deg);
  box-shadow: var(--shadow);
}

.path-card::after {
  content: "->";
  position: absolute;
  right: 32px;
  bottom: 30px;
  font-size: 25px;
}

.path-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.path-card h2 {
  max-width: 460px;
  margin-top: 58px;
}

.path-card p {
  max-width: 460px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.work-path {
  background:
    radial-gradient(circle at 80% 18%, rgba(71, 217, 255, 0.18), transparent 25%),
    #f4f7ff;
}

.about-path {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 211, 79, 0.24), transparent 27%),
    #fff5fb;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.24fr 0.76fr 0.86fr;
  grid-template-rows: 312px 244px;
  gap: 25px;
}

.showcase-grid > a {
  display: block;
  overflow: hidden;
  border-radius: 38% 62% 39% 61% / 9% 12% 10% 14%;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.showcase-grid > a:hover {
  transform: translateY(-5px) rotate(-0.35deg);
  box-shadow: var(--shadow);
}

.showcase-feature {
  grid-row: 1 / span 2;
  background: #f5f8ff;
  border-radius: 32px 49px 38px 57px;
  transform: rotate(-1.2deg);
}

.feature-canvas {
  position: relative;
  min-height: 356px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 13%, #ddfbff 0 14%, transparent 15%),
    linear-gradient(142deg, #f6f7ff, #f0fbff);
}

.feature-label {
  position: absolute;
  z-index: 2;
  top: 27px;
  left: 27px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.paint {
  position: absolute;
}

.paint-blue {
  top: 100px;
  left: 59px;
  width: 238px;
  height: 150px;
  border-radius: 45% 55% 42% 58% / 56% 39% 61% 44%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  transform: rotate(-9deg);
}

.paint-pink {
  top: 179px;
  right: 65px;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: var(--pink);
}

.paint-yellow {
  top: 87px;
  right: 102px;
  width: 108px;
  height: 38px;
  border-radius: 999px;
  background: var(--yellow);
  transform: rotate(9deg);
}

.feature-canvas svg {
  position: absolute;
  right: 36px;
  bottom: 32px;
  width: 178px;
  fill: none;
  stroke: #16214d;
  stroke-width: 3px;
  stroke-linecap: round;
}

.feature-copy {
  padding: 27px 28px;
}

.feature-copy h3,
.showcase-sound h3,
.showcase-ask h3,
.portal-card h3,
.card-copy h3 {
  margin: 0 0 12px;
  font-size: 27px;
  letter-spacing: -0.055em;
}

.feature-copy p,
.showcase-ask p:not(.card-kicker),
.portal-card p,
.card-copy p,
.note-invite p,
.coming-card > p:not(.handwritten) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.card-kicker {
  margin: 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.showcase-sound {
  padding: 27px 25px;
  background: #141b31;
  color: #fff;
  border-radius: 45px 28px 54px 36px !important;
  transform: translateY(19px) rotate(2.1deg);
}

.showcase-sound .card-kicker {
  color: var(--pink);
}

.wave {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 63px;
  margin: 35px 0 27px;
}

.wave i {
  width: 7px;
  border-radius: 10px;
  background: var(--yellow);
}

.wave i:nth-child(1) { height: 22px; }
.wave i:nth-child(2) { height: 46px; }
.wave i:nth-child(3) { height: 29px; }
.wave i:nth-child(4) { height: 60px; background: var(--pink); }
.wave i:nth-child(5) { height: 38px; }
.wave i:nth-child(6) { height: 18px; }

.open-link {
  color: #d7dceb;
  font-size: 14px;
}

.showcase-note {
  grid-row: 1 / span 2;
  padding: 29px 27px;
  background:
    radial-gradient(circle at 89% 12%, var(--cyan) 0 7%, transparent 8%),
    #fff7d9;
  border-radius: 35px 56px 34px 61px !important;
  transform: translateY(-16px) rotate(1.8deg);
}

.showcase-note blockquote {
  margin: 74px 0 0;
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 1.27;
}

.showcase-ask {
  display: flex !important;
  align-items: center;
  gap: 25px;
  padding: 27px 24px;
  background: #eefbff;
  border-radius: 53px 37px 41px 29px !important;
  transform: translateY(27px) rotate(-2deg);
}

.ask-orb {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: Caveat, "Comic Sans MS", cursive;
  font-size: 49px;
}

.manifesto {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 232px;
  margin: 0 0 88px;
  overflow: hidden;
  border-radius: 42% 58% 48% 52% / 29% 37% 63% 71%;
  background:
    radial-gradient(circle at 16% 12%, #fff1a9 0 8%, transparent 9%),
    radial-gradient(circle at 88% 78%, #ffc7e5 0 12%, transparent 13%),
    #f7f9ff;
  transform: rotate(-0.7deg);
}

.manifesto-mark {
  margin: -52px 0 0;
  color: var(--blue);
  font-family: Caveat, "Comic Sans MS", cursive;
  font-size: 72px;
}

.manifesto > p:not(.manifesto-mark) {
  max-width: 720px;
  margin: 0;
  font-size: clamp(24px, 2.7vw, 34px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.3;
}

.manifesto-stroke {
  position: absolute;
  right: 70px;
  bottom: 37px;
  width: 198px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 4px;
  stroke-linecap: round;
}

.portal {
  padding: 20px 0 96px;
}

.portal-heading {
  padding-top: 40px;
  border-top: 1px dashed #dde4f4;
}

.portal-grid,
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.portal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.portal-card {
  position: relative;
  min-height: 236px;
  overflow: hidden;
  border-radius: 24px 35px 28px 38px;
  padding: 24px 22px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.portal-card::after {
  content: "->";
  position: absolute;
  right: 22px;
  bottom: 24px;
  font-size: 20px;
  transition: transform 200ms ease;
}

.portal-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.portal-card:hover::after {
  transform: translateX(5px);
}

.portal-card > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.portal-card h3 {
  margin-top: 40px;
}

.portal-card.blue { background: rgba(242, 245, 255, 0.74); transform: translateY(11px) rotate(-1.7deg); }
.portal-card.pink { background: rgba(255, 240, 247, 0.75); transform: rotate(1.9deg); }
.portal-card.yellow { background: rgba(255, 249, 229, 0.78); transform: translateY(15px) rotate(-1.3deg); }
.portal-card.cyan { background: rgba(234, 252, 255, 0.76); transform: translateY(-8px) rotate(2deg); }

.inner-page main {
  min-height: calc(100vh - 156px);
}

.page-intro {
  max-width: 820px;
  padding: 94px 0 64px;
}

.page-intro h1,
.about-page h1 {
  margin-bottom: 25px;
}

.gallery {
  padding-bottom: 94px;
}

.work-collection {
  padding-bottom: 100px;
}

.collection-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
  align-items: stretch;
  border: 1px solid rgba(28, 36, 64, 0.08);
  border-radius: var(--radius-lg);
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(244, 247, 255, 0.72)),
    #fff;
  box-shadow: 0 24px 70px rgba(51, 65, 120, 0.09);
}

.collection-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 500px;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 10px);
  padding: 28px;
}

.collection-visual span {
  position: relative;
  z-index: 1;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collection-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px clamp(20px, 4vw, 48px);
}

.collection-copy h2 {
  max-width: 620px;
  margin: 0 0 22px;
  font-size: clamp(38px, 6vw, 76px);
  letter-spacing: -0.085em;
  line-height: 0.92;
}

.collection-copy > p:not(.work-meta) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.project-facts {
  display: grid;
  gap: 10px;
  max-width: 620px;
  margin: 28px 0 0;
}

.project-facts div {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 18px;
  border-top: 1px solid rgba(28, 36, 64, 0.09);
  padding-top: 12px;
}

.project-facts dt,
.project-facts dd {
  margin: 0;
}

.project-facts dt {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-facts dd {
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 620px;
  margin-top: 24px;
}

.proof-strip div {
  border: 1px solid rgba(28, 36, 64, 0.1);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.68);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  color: var(--pink);
  font-size: 22px;
  letter-spacing: -0.045em;
}

.proof-strip span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.link-stack {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.mini-work-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(28, 36, 64, 0.1);
  border-radius: 20px;
  padding: 15px 17px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  box-shadow: 0 12px 26px rgba(51, 65, 120, 0.06);
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.mini-work-link:hover {
  transform: translateY(-3px) rotate(-0.45deg);
  background: #fff;
  box-shadow: 0 18px 34px rgba(51, 65, 120, 0.1);
}

.mini-work-link span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.mini-work-link strong {
  flex: 1;
  font-size: 14px;
}

.work-roadmap {
  padding: 0 0 108px;
}

.work-roadmap .section-number {
  margin-bottom: 22px;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.roadmap-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(28, 36, 64, 0.08);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 34px rgba(51, 65, 120, 0.06);
}

.roadmap-grid article::after {
  content: "";
  position: absolute;
  right: -32px;
  top: -32px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(71, 103, 255, 0.11);
}

.roadmap-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f4f7ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.roadmap-grid h2 {
  margin: 32px 0 12px;
  font-size: 24px;
  letter-spacing: -0.055em;
}

.roadmap-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.work-card {
  grid-column: span 1;
}

.work-card.featured {
  grid-column: span 2;
}

.art {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 282px;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 23px;
  box-shadow: 0 12px 35px rgba(51, 65, 120, 0.06);
  transition: transform 230ms ease;
}

.featured .art {
  min-height: 384px;
}

.work-card:hover .art {
  transform: translateY(-7px) rotate(-1deg);
}

.art span {
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.67);
  font-size: 12px;
  font-weight: 600;
}

.art-one {
  background:
    radial-gradient(circle at 25% 28%, var(--yellow) 0 14%, transparent 15%),
    radial-gradient(circle at 72% 60%, var(--pink) 0 16%, transparent 17%),
    linear-gradient(130deg, #dce2ff, #e7fcff);
}

.art-two {
  background:
    repeating-radial-gradient(circle at 36% 50%, #f4f6ff 0 17px, transparent 18px 33px),
    var(--pink);
}

.art-three {
  background:
    linear-gradient(45deg, transparent 42%, rgba(255, 255, 255, 0.42) 43% 49%, transparent 50%),
    var(--cyan);
}

.art-four {
  background:
    radial-gradient(circle at 74% 26%, rgba(255, 255, 255, 0.76) 0 11%, transparent 12%),
    repeating-linear-gradient(-18deg, rgba(255, 255, 255, 0.42) 0 10px, transparent 11px 23px),
    #fff0c7;
}

.tiktok-art::before,
.tiktok-art::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.tiktok-art::before {
  inset: 24px auto auto 28px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(28, 36, 64, 0.2);
  box-shadow:
    120px 62px 0 -20px rgba(255, 78, 171, 0.28),
    210px -3px 0 -28px rgba(71, 103, 255, 0.26);
}

.tiktok-art::after {
  right: 26px;
  bottom: 28px;
  width: 52px;
  height: 52px;
  background:
    linear-gradient(135deg, transparent 42%, rgba(255, 255, 255, 0.78) 43% 56%, transparent 57%),
    var(--yellow);
}

.card-copy {
  padding: 22px 3px 0;
}

.work-meta {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.work-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  border: 1px solid rgba(28, 36, 64, 0.12);
  border-radius: 999px;
  padding: 10px 15px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(51, 65, 120, 0.07);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.work-link:hover {
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 15px 30px rgba(51, 65, 120, 0.11);
}

.music-shelf,
.notes-stream,
.about-page {
  display: grid;
  gap: 34px;
  padding-bottom: 100px;
}

.music-shelf {
  grid-template-columns: 370px 1fr;
}

.record-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 370px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle, #121826 0 11%, #fff 12% 14%, transparent 15%),
    repeating-radial-gradient(circle, #222b48 0 2px, #151b30 3px 12px);
}

.record-art span {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--blue);
  font-size: 32px;
}

.coming-card,
.quote-note,
.note-invite {
  border-radius: var(--radius);
  padding: 42px;
}

.coming-card,
.quote-note {
  background: #f4f7ff;
}

.handwritten {
  margin: 0 0 36px;
  color: var(--pink);
  font-family: Caveat, "Comic Sans MS", cursive;
  font-size: 28px;
}

.notes-stream {
  grid-template-columns: 1.25fr 0.75fr;
}

.quote-note time {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.quote-note blockquote {
  margin: 56px 0 0;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 1.25;
}

.note-invite {
  background: #fff8df;
}

.note-invite h2 {
  margin: 66px 0 18px;
  font-size: 31px;
}

.about-page {
  grid-template-columns: 0.9fr 1fr;
  gap: 100px;
  padding: 112px 0 110px;
}

.about-page h1 {
  font-size: clamp(51px, 5.5vw, 69px);
}

.pronouns {
  display: inline-flex;
  border: 1px solid #dbe2ff;
  border-radius: 999px;
  padding: 8px 15px;
  background: #f5f7ff;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
}

.bio {
  padding-top: 42px;
}

.bio > p {
  max-width: 535px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 20px;
  letter-spacing: -0.025em;
  line-height: 1.65;
}

.about-facts {
  display: grid;
  gap: 14px;
  max-width: 650px;
  margin: 38px 0;
}

.about-facts div {
  border: 1px solid rgba(28, 36, 64, 0.09);
  border-radius: 22px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 12px 28px rgba(51, 65, 120, 0.05);
}

.about-facts dt,
.about-facts dd {
  margin: 0;
}

.about-facts dt {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-facts dd {
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.55;
}

.cv-snapshot {
  display: grid;
  gap: 14px;
  max-width: 700px;
  margin: 42px 0 0;
}

.cv-snapshot article {
  position: relative;
  border-radius: 25px;
  padding: 24px 24px 24px 72px;
  background: #f4f7ff;
  box-shadow: 0 14px 32px rgba(51, 65, 120, 0.06);
}

.cv-snapshot article:nth-child(2) {
  background: #fff2f8;
}

.cv-snapshot article:nth-child(3) {
  background: #fff8df;
}

.cv-snapshot span {
  position: absolute;
  top: 24px;
  left: 24px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.cv-snapshot h2 {
  margin: 0 0 10px;
  font-size: 21px;
  letter-spacing: -0.045em;
}

.cv-snapshot p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 52px;
}

.contact {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 13px;
  font-size: 15px;
  font-weight: 600;
}

.contact span + span {
  color: var(--muted);
  font-weight: 400;
}

.centered {
  max-width: 770px;
  margin: 0 auto;
  padding-top: 124px;
  text-align: center;
}

.centered .intro {
  margin: 0 auto 57px;
}

.question-bubbles {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding-bottom: 86px;
}

.question-bubbles span {
  border-radius: 999px;
  padding: 17px 24px;
  background: #f4f7ff;
  color: var(--blue);
  font-weight: 600;
}

.question-bubbles span:nth-child(2) {
  background: #fff2f8;
  color: #d44291;
  transform: translateY(16px) rotate(-2deg);
}

.question-bubbles span:nth-child(3) {
  background: #fff8df;
  color: #a96900;
  transform: rotate(3deg);
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  border-top: 1px solid rgba(18, 24, 38, 0.72);
  padding: 24px 36px 34px;
  color: var(--muted);
  font-size: 13px;
}

.footer p {
  margin: 0;
}

.footer-details > p:first-child {
  color: var(--ink);
}

.footer-details > a {
  justify-self: center;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  color: var(--ink);
}

.footer-details > p:last-child {
  justify-self: end;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: var(--ink);
  font-weight: 700;
}

html[lang="zh-CN"] h1 {
  font-size: clamp(52px, 5.3vw, 67px);
  line-height: 1.13;
  letter-spacing: -0.085em;
}

@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

@keyframes nudge {
  0%, 100% { transform: translate(0); }
  48% { transform: translate(20px, -17px); }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(-5deg) scale(1); }
  50% { transform: rotate(7deg) scale(1.08); }
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 52px;
    padding-top: 55px;
  }

  .playground {
    width: min(446px, 100%);
    height: 456px;
    margin: 0 auto;
  }

  .profile-panel {
    width: min(560px, 100%);
    margin: 0 auto;
  }

  .portal-grid,
  .gallery,
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collection-card {
    grid-template-columns: 1fr;
  }

  .collection-visual {
    min-height: 340px;
  }

  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .summary-grid,
  .home-paths {
    grid-template-columns: 1fr;
  }

  .showcase-grid {
    grid-template-rows: auto;
  }

  .showcase-feature,
  .showcase-note {
    grid-row: auto;
  }

  .showcase-feature {
    grid-column: 1 / span 2;
  }

  .music-shelf,
  .about-page {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .bio {
    padding-top: 0;
  }
}

@media (max-width: 680px) {
  .header {
    flex-wrap: wrap;
    height: auto;
    padding: 0 20px;
  }

  .brand,
  .language {
    margin-top: 16px;
  }

  .nav {
    order: 3;
    width: 100%;
    gap: 26px;
    overflow-x: auto;
    margin: 16px 0 0;
    padding: 0 0 15px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .language {
    margin-left: auto;
  }

  main {
    padding: 0 20px;
  }

  .hero {
    min-height: 0;
    padding: 42px 0 68px;
  }

  h1 {
    font-size: clamp(48px, 15.5vw, 65px);
  }

  html[lang="zh-CN"] h1 {
    font-size: clamp(39px, 11.3vw, 48px);
    line-height: 1.2;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 22px 31px;
  }

  .loose-words {
    display: none;
  }

  .playground {
    height: 365px;
  }

  .profile-panel {
    padding: 22px;
    border-radius: 28px;
  }

  .panel-topline {
    margin-bottom: 32px;
  }

  .panel-proof {
    grid-template-columns: 1fr;
  }

  .shape {
    top: 142px;
    left: 23%;
    width: 47%;
    height: 126px;
  }

  .showcase-head,
  .section-heading {
    display: block;
  }

  .showcase-grid {
    display: flex;
    flex-direction: column;
  }

  .interview-summary {
    padding-bottom: 58px;
  }

  .path-card {
    min-height: 230px;
    padding: 25px;
  }

  .showcase-feature,
  .showcase-note,
  .showcase-sound,
  .showcase-ask {
    transform: rotate(0);
  }

  .portal-grid,
  .gallery,
  .music-shelf,
  .notes-stream {
    grid-template-columns: 1fr;
  }

  .collection-card {
    border-radius: var(--radius);
    padding: 14px;
  }

  .collection-visual {
    min-height: 270px;
    border-radius: calc(var(--radius) - 6px);
  }

  .collection-copy {
    padding: 24px 8px 10px;
  }

  .collection-copy h2 {
    font-size: clamp(38px, 13vw, 54px);
  }

  .mini-work-link {
    border-radius: 17px;
    padding: 13px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .work-card.featured {
    grid-column: span 1;
  }

  .page-intro {
    padding: 48px 0;
  }

  .about-page {
    display: block;
    padding: 52px 0 74px;
  }

  .bio {
    margin-top: 46px;
  }

  .centered {
    padding-top: 76px;
  }

  .question-bubbles {
    flex-direction: column;
    align-items: center;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 11px;
    padding: 24px 20px 32px;
  }

  .footer-details > a,
  .footer-details > p:last-child {
    justify-self: start;
  }
}

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