:root {
  --bg: #fcf3fe;
  --text: #311b4f;
  --muted: #735f8e;
  --aqua: #ffb56a;
  --violet: #a359cb;
  --line: rgba(163, 89, 203, 0.28);
  --accent: #ff8a2e;
  --accent-soft: #ffd6ac;
  --accent-pink: #c860ba;
  --ink: #26163c;
  --intro-ease: cubic-bezier(0.2, 0.9, 0.18, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  background:
    radial-gradient(47vw 47vw at 14% 10%, rgba(200, 96, 186, 0.24), transparent 62%),
    radial-gradient(58vw 58vw at 90% 82%, rgba(255, 140, 56, 0.2), transparent 66%),
    linear-gradient(142deg, #fcf4ff 0%, #f9efff 40%, #fff4ea 100%);
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  overflow: hidden;
}

.canvas {
  width: min(96vw, 1600px);
  height: calc(100vh - 3.2vw);
  margin: 1.6vw auto;
  padding: clamp(1.25rem, 2.4vw, 2.8rem);
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 251, 255, 0.94), rgba(255, 245, 234, 0.92));
  border: 1px solid var(--line);
  box-shadow: 0 24px 72px rgba(92, 47, 130, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.79rem;
  font-weight: 700;
  color: var(--text);
  background: transparent;
  border: 0;
  padding: 0;
}

.menu-chip {
  cursor: pointer;
}

.mark {
  width: 88px;
  height: 44px;
  border-right: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-right: 1rem;
}

.mark img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  transform-origin: center;
  transition: transform 240ms ease;
}

.menu-chip:hover .mark img,
.menu-chip:focus-visible .mark img {
  transform: translateX(2px) rotate(-4deg) scale(1.04);
}

.bubble {
  width: 1.9rem;
  aspect-ratio: 1;
  border: 2px solid var(--accent);
  border-radius: 999px;
  position: relative;
}

.bubble::after {
  content: "";
  width: 8px;
  height: 8px;
  border-left: 2px solid var(--accent-pink);
  border-bottom: 2px solid var(--accent-pink);
  position: absolute;
  right: -2px;
  bottom: -3px;
  transform: rotate(-30deg);
}

.hero {
  display: grid;
  grid-template-columns: 64px 1.15fr 1fr;
  column-gap: clamp(1rem, 3vw, 3.2rem);
  row-gap: clamp(2.6rem, 6vw, 5.6rem);
  align-items: center;
  min-height: 0;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  padding: clamp(1rem, 1vw, 3rem) 0;
}

.side-meta {
  position: fixed;
  left: calc((100vw - min(96vw, 1600px)) / 2 + clamp(1.25rem, 2.4vw, 2.8rem));
  bottom: clamp(2.8rem, 6vh, 4.4rem);
  width: 64px;
  z-index: 3;
  display: block;
  pointer-events: none;
}

.side-meta p {
  margin: 0;
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: rgba(93, 66, 126, 0.52);
}

.intro {
  grid-column: 2;
  grid-row: 1;
  max-width: 690px;
}

.intro h1 {
  margin: 0 0 1.4rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  font-size: clamp(2.55rem, 7vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.015em;
  color: var(--text);
  text-shadow: 0 2px 8px rgba(128, 84, 167, 0.08);
}

.intro h1 .name-token {
  color: var(--violet);
  font-weight: 500;
  text-shadow: 0 0 22px rgba(163, 89, 203, 0.24);
}

.typed-heading .type-target {
  white-space: pre-line;
}

.type-target.is-typing::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.88em;
  margin-left: 0.06em;
  background: currentColor;
  vertical-align: 0.02em;
  animation: caret-blink 900ms steps(1, end) infinite;
}

.intro p {
  margin: 0;
  max-width: 30ch;
  font-size: clamp(1.03rem, 1.75vw, 1.2rem);
  line-height: 1.5;
  color: rgba(66, 47, 94, 0.86);
}

.intro strong {
  color: #52307c;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
  opacity: 0;
  pointer-events: none;
}

.actions a {
  text-decoration: none;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0.85rem 1.1rem;
  transition: 180ms ease;
}

.cta-primary {
  background: linear-gradient(132deg, var(--accent), var(--accent-pink));
  color: var(--ink);
  border: 1px solid rgba(255, 221, 185, 0.25);
}

.cta-primary:hover,
.cta-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(200, 96, 186, 0.24), 0 0 0 1px rgba(255, 178, 120, 0.45);
}

.cta-ghost {
  border: 1px solid var(--line);
  color: #55327e;
}

.cta-ghost:hover,
.cta-ghost:focus-visible {
  border-color: var(--accent);
  color: #3d215f;
}

.art {
  grid-column: 3;
  grid-row: 1;
  min-height: clamp(350px, 46vw, 760px);
  position: relative;
  display: grid;
  place-items: center;
}

.work-section {
  grid-column: 2 / 4;
  grid-row: 2;
  min-height: clamp(520px, 84vh, 800px);
  display: flex;
  align-items: flex-start;
  padding: clamp(1.4rem, 6vw, 8.3rem) 0 clamp(3rem, 8vw, 0.8rem);
}

.work-inner {
  max-width: 860px;
}

.work-section h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  font-size: clamp(1.9rem, 5.2vw, 2.8rem);
  line-height: 0.92;
  letter-spacing: -0.015em;
  color: var(--text);
  text-shadow: 0 2px 8px rgba(128, 84, 167, 0.08);
  white-space: nowrap;
}

.work-section h2 span {
  color: var(--accent);
}

.work-line {
  display: block;
  width: 88px;
  height: 3px;
  margin: clamp(1.2rem, 2.1vw, 1.9rem) 0 clamp(1.3rem, 2.6vw, 2.1rem);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-pink));
}

.work-copy {
  margin: 0;
  max-width: 30ch;
  font-size: clamp(1.03rem, 1.75vw, 2rem);
  line-height: 1.5;
  color: rgba(66, 47, 94, 0.86);
}

.work-copy strong {
  color: #52307c;
}

.approach-btn {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--line);
  color: #55327e;
  background: transparent;
  transition: 180ms ease;
}

.approach-btn:hover,
.approach-btn:focus-visible {
  border-color: var(--accent);
  color: #3d215f;
  transform: translateY(-2px);
}

.approach-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 1px rgba(255, 178, 120, 0.45);
}

.approach-btn:active {
  transform: translateY(0);
}

.work-section .intro {
  max-width: 690px;
}

.work-section .intro h2 {
  margin-bottom: 0;
}

.work-section .intro .work-copy {
  margin-top: 0;
}

.work-section .intro .approach-btn {
  width: fit-content;
}

.products-section {
  grid-column: 2 / 4;
  grid-row: 3;
  min-height: clamp(1100px, 95vh, 980px);
  display: grid;
  align-content: start;
  gap: clamp(1.8rem, 4.5vw, 4.4rem);
  padding: clamp(3.4rem, 9vw, 6.4rem) 0 clamp(2.4rem, 7vw, 6rem);
}

.products-top {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1rem, 3vw, 3rem);
  align-items: center;
}

.products-intro {
  max-width: 680px;
}

.products-intro h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  font-size: clamp(1.9rem, 5.2vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--text);
  text-shadow: 0 2px 8px rgba(128, 84, 167, 0.08);
  white-space: nowrap;
}

.products-intro h2 span {
  color: var(--accent);
}

.products-intro p {
  margin: clamp(1.2rem, 2.1vw, 1.9rem) 0 0;
  max-width: 34ch;
  font-size: clamp(1.03rem, 1.6vw, 1.2rem);
  line-height: 1.48;
  color: rgba(66, 47, 94, 0.86);
}

.products-dots {
  width: min(100%, 640px);
  height: clamp(110px, 11vw, 180px);
  justify-self: end;
  background-image: radial-gradient(circle, var(--text) 2px, transparent 2.1px);
  background-size: 15px 15px;
  opacity: 0.75;
}

.products-dots::before {
  content: none;
}

.products-dots::after {
  content: none;
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) 1.2fr;
  gap: clamp(1.6rem, 0vw, 4.4rem);
  align-items: center;
}

.product-feature + .product-feature {
  margin-top: clamp(1.6rem, 4.4vw, 4rem);
}

.product-glyph {
  width: 100%;
  max-width: 410px;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 30px rgba(84, 44, 126, 0.16));
}

.product-feature--reverse {
  grid-template-columns: 1.2fr minmax(250px, 0.75fr);
}

.product-feature--reverse .product-content {
  order: 1;
}

.product-feature--reverse .product-glyph {
  order: 2;
  justify-self: start;
  transform: translateX(-1rem);
}

.product-content h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--text);
}

.product-content h3 span {
  color: var(--accent);
}

.product-content p {
  margin: 1rem 0 0;
  max-width: 40ch;
  font-size: clamp(1.02rem, 1.45vw, 1.09rem);
  line-height: 1.5;
  color: rgba(56, 41, 80, 0.9);
}

.product-btn {
  margin-top: 1.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0.85rem 1.1rem;
  background: linear-gradient(132deg, var(--accent), var(--accent-pink));
  color: var(--ink);
  border: 1px solid rgba(255, 221, 185, 0.25);
  transition: 180ms ease;
}

.product-btn:hover,
.product-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(200, 96, 186, 0.24), 0 0 0 1px rgba(255, 178, 120, 0.45);
}

.stripe-panel {
  width: min(100%, 920px);
  height: clamp(140px, 18vw, 280px);
  position: absolute;
  inset: 55% 0 auto auto;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 150, 76, 0.3);
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(255, 140, 56, 0.2) 0 5px,
      rgba(200, 96, 186, 0.08) 5px 14px
    ),
    linear-gradient(135deg, rgba(255, 160, 87, 0.13), rgba(200, 96, 186, 0.11));
  opacity: 0;
}

.portrait-shell {
  margin: 0;
  width: min(92%, 560px);
  aspect-ratio: 8 / 10;
  border: 4px solid transparent;
  background:
    linear-gradient(#fff9ff, #fff3ea) padding-box,
    linear-gradient(145deg, #ffae58, #cf63be, #a56ad2) border-box;
  box-shadow: 0 30px 68px rgba(91, 49, 126, 0.2), 0 0 44px rgba(200, 96, 186, 0.16);
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  transform: translateY(34px) scale(0.9) rotate(-2deg);
}

.portrait-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.12);
}

.canvas.intro-art .stripe-panel {
  animation: stripe-in 740ms var(--intro-ease) 80ms both;
}

.canvas.intro-art .portrait-shell {
  animation: portrait-in 920ms var(--intro-ease) 200ms both;
}

.canvas.intro-art .portrait-shell img {
  animation: portrait-focus 920ms ease-out 320ms both;
}

.canvas.intro-copy .actions {
  animation: copy-in 680ms var(--intro-ease) 120ms both;
  pointer-events: auto;
}

@keyframes caret-blink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

@keyframes stripe-in {
  from {
    opacity: 0;
    transform: translateX(54px) translateY(-50%) skewX(-8deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(-50%) skewX(0);
  }
}

@keyframes portrait-in {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.9) rotate(-2deg);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
    filter: blur(0);
  }
}

@keyframes portrait-focus {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1);
  }
}

@keyframes copy-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .type-target::after,
  .actions,
  .stripe-panel,
  .portrait-shell,
  .portrait-shell img {
    animation: none !important;
    opacity: 1;
    transform: none;
    filter: none;
    clip-path: inset(0 0 0 0);
  }

  .actions a {
    transition: none;
  }

  .actions {
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "art";
    gap: 2.4rem;
  }

  .side-meta {
    display: none;
  }

  .intro {
    grid-area: intro;
    grid-column: auto;
    grid-row: auto;
    max-width: 100%;
  }

  .art {
    grid-area: art;
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
  }

  .work-section {
    grid-column: 1;
    grid-row: 3;
    min-height: auto;
    padding: 1rem 0 2.6rem;
  }

  .products-section {
    grid-column: 1;
    grid-row: 4;
    min-height: auto;
    gap: 1.9rem;
    padding: 2.4rem 0 2.5rem;
  }

  .products-top {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .products-intro h2 {
    white-space: normal;
  }

  .products-dots {
    justify-self: start;
    width: 100%;
    max-width: 540px;
  }

  .product-feature {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.4rem;
  }

  .product-feature + .product-feature {
    margin-top: 1.1rem;
  }

  .product-feature--reverse .product-content,
  .product-feature--reverse .product-glyph {
    order: initial;
  }

  .product-feature--reverse .product-glyph {
    transform: none;
  }

  .product-glyph {
    width: min(76vw, 380px);
  }

  .work-inner {
    max-width: 100%;
  }

  .stripe-panel {
    width: 100%;
    inset: 57% auto auto 0;
  }

  .portrait-shell {
    width: min(86vw, 540px);
  }

}

@media (max-width: 640px) {
  .canvas {
    width: 100vw;
    margin: 0;
    height: 100vh;
    border: 0;
    padding: 1.1rem;
  }

  .mark {
    width: 74px;
    height: 36px;
    padding-right: 0.65rem;
  }

  .chip {
    letter-spacing: 0.16em;
    font-size: 0.7rem;
    gap: 0.5rem;
  }

  .intro h1 {
    margin-bottom: 1rem;
  }

  .work-section h2 {
    font-size: clamp(1.45rem, 8vw, 2.15rem);
  }

  .intro p {
    max-width: 100%;
    font-size: 1rem;
  }

  .work-copy {
    max-width: 100%;
    font-size: 1rem;
  }

  .products-intro p,
  .product-content p {
    max-width: 100%;
    font-size: 1rem;
  }

  .product-content h3 {
    font-size: clamp(1.45rem, 8.5vw, 2.2rem);
  }

  .product-btn {
    font-size: 0.75rem;
    padding: 0.7rem 0.85rem;
  }

  .approach-btn {
    font-size: 0.75rem;
    padding: 0.7rem 0.85rem;
  }

  .actions a {
    font-size: 0.75rem;
    padding: 0.7rem 0.85rem;
  }
}
:root {
  --bg: #fcf3fe;
  --text: #311b4f;
  --muted: #735f8e;
  --line: rgba(163, 89, 203, 0.28);
  --accent: #ff8a2e;
  --accent-pink: #c860ba;
  --mint: #87cdb4;
  --ink: #26163c;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  background:
    radial-gradient(47vw 47vw at 14% 10%, rgba(200, 96, 186, 0.2), transparent 62%),
    radial-gradient(58vw 58vw at 90% 82%, rgba(255, 140, 56, 0.16), transparent 66%),
    linear-gradient(142deg, #fcf4ff 0%, #f9efff 40%, #fff4ea 100%);
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
}

.about-canvas {
  width: min(96vw, 1600px);
  height: calc(100vh - 3.2vw);
  margin: 1.6vw auto;
  padding: clamp(1.25rem, 2.4vw, 2.8rem);
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 251, 255, 0.94), rgba(255, 245, 234, 0.92));
  border: 1px solid var(--line);
  box-shadow: 0 24px 72px rgba(92, 47, 130, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.79rem;
  font-weight: 700;
  color: var(--text);
  background: transparent;
  border: 0;
  padding: 0;
}

.menu-chip {
  cursor: pointer;
}

.mark {
  width: 88px;
  height: 44px;
  border-right: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-right: 1rem;
}

.mark img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  transform-origin: center;
  transition: transform 240ms ease;
}

.menu-chip:hover .mark img,
.menu-chip:focus-visible .mark img {
  transform: translateX(2px) rotate(-4deg) scale(1.04);
}

.bubble {
  width: 1.9rem;
  aspect-ratio: 1;
  border: 2px solid var(--accent);
  border-radius: 999px;
  position: relative;
}

.bubble::after {
  content: "";
  width: 8px;
  height: 8px;
  border-left: 2px solid var(--accent-pink);
  border-bottom: 2px solid var(--accent-pink);
  position: absolute;
  right: -2px;
  bottom: -3px;
  transform: rotate(-30deg);
}

.about-main {
  display: grid;
  grid-template-columns: 64px 1fr;
  column-gap: clamp(1rem, 3vw, 3.2rem);
  row-gap: clamp(1.2rem, 4vh, 2.8rem);
  min-height: 0;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  padding: clamp(1rem, 1vw, 3rem) 0 clamp(2.5rem, 6vh, 4rem);
}

.side-meta {
  position: fixed;
  left: calc((100vw - min(96vw, 1600px)) / 2 + clamp(1.25rem, 2.4vw, 2.8rem));
  bottom: clamp(2.8rem, 6vh, 4.4rem);
  width: 64px;
  z-index: 3;
  display: block;
  pointer-events: none;
}

.side-meta p {
  margin: 0;
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: rgba(93, 66, 126, 0.52);
}

.about-panel {
  grid-column: 2;
}

.about-hero {
  min-height: clamp(420px, 68vh, 620px);
  display: flex;
  align-items: center;
}

.about-copy {
  max-width: 64ch;
}

h1,
h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: clamp(2.2rem, 6.1vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: -0.018em;
  color: var(--text);
}

h2 {
  font-size: clamp(2rem, 4.8vw, 3.8rem);
}

h1 span,
h2 span {
  color: var(--accent);
}

.about-line {
  display: block;
  width: 88px;
  height: 3px;
  margin: clamp(1.2rem, 2.1vw, 1.9rem) 0 clamp(1.4rem, 2.6vw, 2.1rem);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-pink));
}

p {
  margin: 0;
  font-size: clamp(1.04rem, 1.72vw, 1.09rem);
  line-height: 1.5;
  color: rgba(31, 60, 74, 0.95);
}

p + p {
  margin-top: 1.1rem;
}

strong {
  color: #163f4d;
  font-weight: 700;
}

.split-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: clamp(1.4rem, 5vw, 4rem);
  min-height: clamp(540px, 86vh, 840px);
}

.split-section.reverse {
  grid-template-columns: 1fr 1.1fr;
}

.origin-media {
  margin: 0;
  min-height: clamp(340px, 44vw, 620px);
  overflow: hidden;
}

.origin-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ai-media {
  background: transparent;
}

.ai-media img {
  object-fit: contain;
  object-position: center;
}

.story-art,
.language-art {
  position: relative;
  min-height: clamp(320px, 42vw, 520px);
}

.story-circle {
  position: absolute;
  inset: 2% 6% auto auto;
  width: min(72%, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(135, 205, 180, 0.45) 0,
      rgba(135, 205, 180, 0.45) 4px,
      rgba(255, 255, 255, 0) 4px,
      rgba(255, 255, 255, 0) 11px
    );
}

.story-mountain {
  position: absolute;
  left: 0;
  bottom: 6%;
  width: 82%;
  height: 44%;
  background: var(--mint);
  clip-path: polygon(0 100%, 28% 58%, 40% 57%, 58% 38%, 71% 37%, 100% 100%);
  border-radius: 0 0 50% 50%;
}

.story-tower {
  position: absolute;
  right: 9%;
  bottom: 8%;
  width: clamp(90px, 17%, 130px);
  height: 62%;
}

.tower-top {
  position: absolute;
  left: 15%;
  right: 15%;
  top: 2%;
  height: 44%;
  background: rgba(135, 205, 180, 0.78);
  clip-path: polygon(50% 0, 68% 38%, 82% 38%, 82% 100%, 18% 100%, 18% 38%, 32% 38%);
  border: 4px solid #5977cf;
  border-bottom: 0;
}

.tower-core {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 0;
  top: 42%;
  border: 4px solid #5977cf;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.04));
}

.lang-disc {
  position: absolute;
  left: 12%;
  top: 0;
  width: min(76%, 490px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(135, 205, 180, 0.45) 0,
      rgba(135, 205, 180, 0.45) 4px,
      rgba(255, 255, 255, 0) 4px,
      rgba(255, 255, 255, 0) 11px
    );
}

.bubble-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 0.8rem 1.1rem;
  border: 3px solid #5977cf;
  border-radius: 999px;
  background: var(--mint);
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 2.1rem);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.bubble-pill::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background: var(--mint);
  border-right: 3px solid #5977cf;
  border-bottom: 3px solid #5977cf;
  transform: rotate(32deg);
}

.bubble-pill--one {
  left: 6%;
  top: 36%;
}

.bubble-pill--one::after {
  right: 16%;
  bottom: -10px;
}

.bubble-pill--two {
  left: 42%;
  top: 8%;
}

.bubble-pill--two::after {
  left: 18%;
  bottom: -10px;
}

.bubble-pill--three {
  left: 48%;
  top: 62%;
}

.bubble-pill--three::after {
  left: 24%;
  bottom: -10px;
}

.about-photo {
  min-height: clamp(740px, 100vh, 1200px);
  display: grid;
  gap: clamp(1.2rem, 2.5vw, 2rem);
  align-content: start;
}

.photo-copy {
  max-width: 54ch;
}

.photo-grid {
  column-count: 2;
  column-gap: clamp(0.8rem, 1.8vw, 1.4rem);
}

.photo-card {
  margin: 0;
  display: inline-block;
  width: 100%;
  margin-bottom: clamp(0.8rem, 1.8vw, 1.4rem);
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}

.photo-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.photo-card--wide {
  height: auto;
}

.photo-card--tall {
  height: auto;
}

.photo-card--tile {
  height: auto;
}

@media (max-width: 1100px) {
  .about-main {
    grid-template-columns: 1fr;
  }

  .side-meta {
    display: none;
  }

  .about-panel {
    grid-column: 1;
  }
}

@media (max-width: 980px) {
  .split-section,
  .split-section.reverse {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .story-art,
  .language-art {
    min-height: 360px;
  }

  .about-photo {
    min-height: auto;
  }

  .photo-grid {
    column-count: 1;
  }

  .photo-card--tile {
    height: auto;
  }

  .photo-card img {
    max-height: none;
  }
}

@media (max-width: 740px) {
  html,
  body {
    overflow: auto;
  }

  .about-canvas {
    width: 100vw;
    margin: 0;
    min-height: 100vh;
    height: auto;
    border: 0;
    padding: 1.1rem;
  }

  .about-main {
    grid-template-columns: 1fr;
    overflow: visible;
    height: auto;
  }

  .side-meta {
    display: none;
  }

  .about-panel {
    grid-column: 1;
  }

  .about-hero {
    min-height: 68vh;
  }

  h1,
  h2 {
    font-size: clamp(2rem, 11vw, 2.95rem);
  }

  p {
    font-size: 1.03rem;
  }

  .mark {
    width: 74px;
    height: 36px;
    padding-right: 0.65rem;
  }

  .chip {
    letter-spacing: 0.16em;
    font-size: 0.7rem;
    gap: 0.5rem;
  }
}
:root {
  --bg: #fcf3fe;
  --text: #311b4f;
  --muted: #735f8e;
  --aqua: #ffb56a;
  --violet: #a359cb;
  --line: rgba(163, 89, 203, 0.28);
  --accent: #ff8a2e;
  --accent-soft: #ffd6ac;
  --accent-pink: #c860ba;
  --ink: #26163c;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  background:
    radial-gradient(47vw 47vw at 14% 10%, rgba(200, 96, 186, 0.24), transparent 62%),
    radial-gradient(58vw 58vw at 90% 82%, rgba(255, 140, 56, 0.2), transparent 66%),
    linear-gradient(142deg, #fcf4ff 0%, #f9efff 40%, #fff4ea 100%);
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
}

.work-canvas {
  width: min(96vw, 1600px);
  height: calc(100vh - 3.2vw);
  margin: 1.6vw auto;
  padding: clamp(1.25rem, 2.4vw, 2.8rem);
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 251, 255, 0.94), rgba(255, 245, 234, 0.92));
  border: 1px solid var(--line);
  box-shadow: 0 24px 72px rgba(92, 47, 130, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.79rem;
  font-weight: 700;
  color: var(--text);
  background: transparent;
  border: 0;
  padding: 0;
}

.menu-chip {
  cursor: pointer;
}

.mark {
  width: 88px;
  height: 44px;
  border-right: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-right: 1rem;
}

.mark img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  transform-origin: center;
  transition: transform 240ms ease;
}

.menu-chip:hover .mark img,
.menu-chip:focus-visible .mark img {
  transform: translateX(2px) rotate(-4deg) scale(1.04);
}

.bubble {
  width: 1.9rem;
  aspect-ratio: 1;
  border: 2px solid var(--accent);
  border-radius: 999px;
  position: relative;
}

.bubble::after {
  content: "";
  width: 8px;
  height: 8px;
  border-left: 2px solid var(--accent-pink);
  border-bottom: 2px solid var(--accent-pink);
  position: absolute;
  right: -2px;
  bottom: -3px;
  transform: rotate(-30deg);
}

.work-main {
  display: grid;
  grid-template-columns: 64px 1fr;
  column-gap: clamp(1rem, 3vw, 3.2rem);
  row-gap: clamp(2.2rem, 6vh, 4.2rem);
  min-height: 0;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  padding: clamp(1rem, 1vw, 3rem) 0 clamp(2.4rem, 6vh, 4.2rem);
}

.side-meta {
  position: fixed;
  left: calc((100vw - min(96vw, 1600px)) / 2 + clamp(1.25rem, 2.4vw, 2.8rem));
  bottom: clamp(2.8rem, 6vh, 4.4rem);
  width: 64px;
  z-index: 3;
  display: block;
  pointer-events: none;
}

.side-meta p {
  margin: 0;
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: rgba(93, 66, 126, 0.52);
}

.work-panel {
  grid-column: 2;
}

.hero-panel {
  display: grid;
  grid-template-columns: 0.98fr 1.12fr;
  gap: clamp(1.2rem, 4vw, 3.2rem);
  align-items: center;
  min-height: clamp(560px, 88vh, 880px);
}

.system-visual {
  height: clamp(340px, 10vw, 520px);
  position: relative;
  overflow: hidden;
}

.system-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: clamp(2.2rem, 6.1vw, 3.2rem);
  line-height: 0.92;
  letter-spacing: -0.018em;
  color: var(--text);
}

.hero-copy h1 span {
  color: var(--accent);
}

.hero-subtitle {
  margin: clamp(1.2rem, 2.1vw, 1.7rem) 0 0;
  max-width: 42ch;
  font-size: clamp(1.03rem, 1.75vw, 1.2rem);
  line-height: 1.52;
  color: rgba(66, 47, 94, 0.86);
}

.pillars-grid {
  margin-top: clamp(1.6rem, 2.8vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.7rem, 1.4vw, 1rem);
}

.pillar-card {
  padding: clamp(0.9rem, 1.4vw, 1.2rem);
  border: 1px solid rgba(163, 89, 203, 0.22);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 245, 234, 0.3));
  transition: 180ms ease;
}

.pillar-card h2 {
  margin: 0;
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  letter-spacing: -0.01em;
  color: var(--text);
}

.pillar-card p {
  margin: 0.56rem 0 0;
  font-size: clamp(0.95rem, 1.2vw, 1rem);
  line-height: 1.45;
  color: rgba(56, 41, 80, 0.88);
}

.pillar-card:hover,
.pillar-card:focus-within {
  border-color: rgba(255, 138, 46, 0.4);
  transform: translateY(-2px);
}

.manifesto-panel {
  min-height: clamp(600px, 90vh, 980px);
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 0.36fr) 1fr;
  gap: clamp(1.1rem, 3.4vw, 3rem);
  align-items: start;
}

.manifesto-pattern {
  align-self: stretch;
  min-height: clamp(360px, 66vh, 740px);
  background-image: radial-gradient(circle, rgba(255, 138, 46, 0.34) 1.8px, transparent 1.9px);
  background-size: 14px 14px;
  opacity: 0.62;
}

.manifesto-copy {
  max-width: 720px;
  padding-top: clamp(6.5rem, 0.7vw, 0.8rem);
}

.manifesto-copy h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: clamp(2rem, 5.6vw, 3.5rem);
  line-height: 0.94;
  letter-spacing: -0.02em;
  color: var(--text);
  text-shadow: 0 2px 8px rgba(128, 84, 167, 0.08);
}

.manifesto-copy h2 span {
  color: var(--accent);
}

.manifesto-copy p {
  margin: clamp(1.1rem, 2.2vw, 1.6rem) 0 0;
  max-width: 40ch;
  font-size: clamp(1.03rem, 1.7vw, 1.1rem);
  line-height: 1.5;
  color: rgba(56, 41, 80, 0.9);
}

.manifesto-copy .actions {
  opacity: 1;
  pointer-events: auto;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.actions a {
  text-decoration: none;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0.85rem 1.1rem;
  transition: 180ms ease;
}

.cta-primary {
  background: linear-gradient(132deg, var(--accent), var(--accent-pink));
  color: var(--ink);
  border: 1px solid rgba(255, 221, 185, 0.25);
}

.cta-primary:hover,
.cta-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(200, 96, 186, 0.24), 0 0 0 1px rgba(255, 178, 120, 0.45);
}

.cta-ghost {
  border: 1px solid var(--line);
  color: #55327e;
}

.cta-ghost:hover,
.cta-ghost:focus-visible {
  border-color: var(--accent);
  color: #3d215f;
}

.manifesto-btn {
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(255, 138, 46, 0.13) 0 6px,
      rgba(200, 96, 186, 0.1) 6px 14px
    );
  border-color: rgba(163, 89, 203, 0.52);
  font-weight: 700;
}

.manifesto-btn:hover,
.manifesto-btn:focus-visible {
  box-shadow: 0 0 0 1px rgba(255, 178, 120, 0.45);
}

@media (max-width: 1100px) {
  .work-main {
    grid-template-columns: 1fr;
  }

  .side-meta {
    display: none;
  }

  .work-panel {
    grid-column: 1;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .system-visual {
    height: clamp(270px, 46vw, 420px);
  }

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

  .manifesto-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .manifesto-pattern {
    min-height: clamp(140px, 22vw, 220px);
  }
}

@media (max-width: 740px) {
  html,
  body {
    overflow: auto;
  }

  .work-canvas {
    width: 100vw;
    margin: 0;
    min-height: 100vh;
    height: auto;
    border: 0;
    padding: 1.1rem;
  }

  .work-main {
    overflow: visible;
    height: auto;
  }

  .mark {
    width: 74px;
    height: 36px;
    padding-right: 0.65rem;
  }

  .chip {
    letter-spacing: 0.16em;
    font-size: 0.7rem;
    gap: 0.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 10.2vw, 2.95rem);
  }

  .manifesto-copy h2 {
    font-size: clamp(1.8rem, 10vw, 2.9rem);
  }

  .actions a {
    font-size: 0.75rem;
    padding: 0.72rem 0.9rem;
  }
}
:root {
  --bg: #fcf3fe;
  --text: #311b4f;
  --line: rgba(163, 89, 203, 0.28);
  --accent: #ff8a2e;
  --accent-pink: #c860ba;
  --ink: #26163c;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(48vw 48vw at 12% 8%, rgba(200, 96, 186, 0.22), transparent 62%),
    radial-gradient(54vw 54vw at 88% 84%, rgba(255, 140, 56, 0.16), transparent 64%),
    linear-gradient(150deg, #fcf4ff 0%, #f9efff 45%, #fff4ea 100%);
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
}

.vibez-shell {
  width: min(95vw, 1280px);
  margin: clamp(1rem, 2.4vw, 2.2rem) auto;
  padding: clamp(1.2rem, 2.6vw, 2.4rem);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 251, 255, 0.95), rgba(255, 246, 236, 0.9));
  box-shadow: 0 24px 72px rgba(92, 47, 130, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.79rem;
  font-weight: 700;
  color: var(--text);
  background: transparent;
  border: 0;
  padding: 0;
}

.menu-chip {
  cursor: pointer;
}

.mark {
  width: 88px;
  height: 44px;
  border-right: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-right: 1rem;
}

.mark img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  transform-origin: center;
  transition: transform 240ms ease;
}

.menu-chip:hover .mark img,
.menu-chip:focus-visible .mark img {
  transform: translateX(2px) rotate(-4deg) scale(1.04);
}

.bubble {
  width: 1.9rem;
  aspect-ratio: 1;
  border: 2px solid var(--accent);
  border-radius: 999px;
  position: relative;
}

.bubble::after {
  content: "";
  width: 8px;
  height: 8px;
  border-left: 2px solid var(--accent-pink);
  border-bottom: 2px solid var(--accent-pink);
  position: absolute;
  right: -2px;
  bottom: -3px;
  transform: rotate(-30deg);
}

.vibez-head {
  max-width: 64ch;
  margin-top: clamp(1.3rem, 2.8vw, 2.2rem);
}

.eyebrow {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(84, 60, 115, 0.7);
}

h1 {
  margin: 0.45rem 0 0;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.02em;
}

h1 span {
  color: var(--accent);
}

.intro {
  margin: 1.05rem 0 0;
  font-size: clamp(1rem, 1.45vw, 1.08rem);
  line-height: 1.5;
  color: rgba(66, 47, 94, 0.9);
}

.vibez-about {
  margin-top: 1rem;
  max-width: 70ch;
  display: grid;
  gap: 0.75rem;
}

.vibez-about p {
  margin: 0;
  font-size: clamp(0.96rem, 1.2vw, 1.06rem);
  line-height: 1.55;
  color: rgba(66, 47, 94, 0.9);
}

.vibez-about p:last-child {
  width: fit-content;
  padding: 0.45rem 0.72rem;
  border: 1px solid rgba(255, 140, 56, 0.42);
  background: linear-gradient(140deg, rgba(255, 221, 187, 0.28), rgba(255, 255, 255, 0.76));
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6b3776;
}

.preview-grid {
  margin-top: clamp(1.6rem, 3.6vw, 3rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: clamp(0.9rem, 2vw, 1.35rem);
}

.phone-shot {
  min-width: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
  justify-items: center;
}

.phone-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(75, 51, 107, 0.72);
}

.sim-shot {
  width: min(100%, 320px);
  max-height: min(72vh, 760px);
  object-fit: contain;
  display: block;
}

@media (max-width: 980px) {
  .mark {
    width: 74px;
    height: 36px;
    padding-right: 0.65rem;
  }

  .chip {
    letter-spacing: 0.16em;
    font-size: 0.7rem;
    gap: 0.5rem;
  }

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

  .sim-shot {
    width: min(90vw, 360px);
  }
}
:root {
  --bg: #fcf3fe;
  --text: #311b4f;
  --muted: #735f8e;
  --aqua: #ffb56a;
  --violet: #a359cb;
  --line: rgba(163, 89, 203, 0.28);
  --accent: #ff8a2e;
  --accent-soft: #ffd6ac;
  --accent-pink: #c860ba;
  --ink: #26163c;
  --intro-ease: cubic-bezier(0.2, 0.9, 0.18, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  background:
    radial-gradient(47vw 47vw at 14% 10%, rgba(200, 96, 186, 0.24), transparent 62%),
    radial-gradient(58vw 58vw at 90% 82%, rgba(255, 140, 56, 0.2), transparent 66%),
    linear-gradient(142deg, #fcf4ff 0%, #f9efff 40%, #fff4ea 100%);
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  overflow: hidden;
}

.menu-shell {
  width: min(96vw, 1600px);
  height: calc(100vh - 3.2vw);
  margin: 1.6vw auto;
  padding: clamp(1.25rem, 2.4vw, 2.8rem);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 251, 255, 0.94), rgba(255, 245, 234, 0.92));
  box-shadow: 0 24px 72px rgba(92, 47, 130, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.65);
  display: grid;
  grid-template-rows: auto 1fr;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transform-origin: 50% 0;
  animation: menu-page-in 880ms var(--intro-ease) both;
}

.menu-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 243, 234, 0.85), rgba(255, 243, 234, 0)),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 20px,
      rgba(255, 255, 255, 0.28) 20px,
      rgba(255, 255, 255, 0.28) 24px
    );
  transform: translateY(-100%);
  animation: menu-scroll-wash 880ms var(--intro-ease) both;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(18px);
  animation: menu-content-in 420ms ease forwards;
  animation-delay: 420ms;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.79rem;
  font-weight: 700;
  color: var(--text);
  background: transparent;
  border: 0;
  padding: 0;
}

.menu-chip {
  cursor: pointer;
}

.mark {
  width: 88px;
  height: 44px;
  border-right: 1px solid rgba(65, 48, 99, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-right: 1rem;
}

.mark img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  transform-origin: center;
  transition: transform 240ms ease;
}

.menu-chip:hover .mark img,
.menu-chip:focus-visible .mark img {
  transform: translateX(2px) rotate(-4deg) scale(1.04);
}

.bubble {
  width: 1.9rem;
  aspect-ratio: 1;
  border: 2px solid var(--accent);
  border-radius: 999px;
  position: relative;
}

.bubble::after {
  content: "";
  width: 8px;
  height: 8px;
  border-left: 2px solid var(--accent-pink);
  border-bottom: 2px solid var(--accent-pink);
  position: absolute;
  right: -2px;
  bottom: -3px;
  transform: rotate(-30deg);
}

.menu-main {
  padding: clamp(1.3rem, 4vh, 2.8rem) 0 clamp(1.3rem, 4vh, 2.8rem);
  display: grid;
  grid-template-rows: 1fr;
  align-content: stretch;
  min-height: 0;
  position: relative;
  z-index: 2;
}

.social-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  opacity: 0;
  transform: translateY(18px);
  animation: menu-content-in 420ms ease forwards;
  animation-delay: 500ms;
}

.social-line {
  width: 84px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-pink));
}

.social-row a {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text);
  border: 1px solid rgba(52, 36, 85, 0.2);
  background: rgba(255, 255, 255, 0.62);
  transition: 180ms ease;
}

.social-row a:hover,
.social-row a:focus-visible {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.menu-links {
  display: grid;
  grid-template-rows: repeat(3, auto);
  align-content: space-between;
  gap: 0;
  height: 100%;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  align-items: baseline;
  gap: clamp(1rem, 3vw, 3.2rem);
  text-decoration: none;
  padding: 0.2rem 0;
  opacity: 0;
  transform: translateY(24px);
  animation: menu-content-in 420ms ease forwards;
}

.item-title {
  font-size: clamp(2.55rem, 6.4vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: var(--text);
  transition: transform 220ms ease, color 220ms ease;
}

.item-copy {
  font-size: clamp(1rem, 1.6vw, 2rem);
  line-height: 1.3;
  color: rgba(66, 47, 94, 0.86);
}

.menu-item:hover .item-title,
.menu-item:focus-visible .item-title {
  color: #3d215f;
  transform: translateX(5px);
}

.menu-item:nth-child(1) {
  animation-delay: 580ms;
}

.menu-item:nth-child(2) {
  animation-delay: 650ms;
}

.menu-item:nth-child(3) {
  animation-delay: 720ms;
}

@keyframes menu-page-in {
  0% {
    opacity: 0;
    clip-path: inset(100% 0 0 0);
    transform: translateY(64px);
  }
  55% {
    opacity: 1;
    clip-path: inset(18% 0 0 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}

@keyframes menu-scroll-wash {
  0% {
    opacity: 0.65;
    transform: translateY(-100%);
  }
  65% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: translateY(100%);
  }
}

@keyframes menu-content-in {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu-shell,
  .menu-shell::before,
  .topbar,
  .social-row,
  .menu-item {
    animation: none;
    opacity: 1;
    transform: none;
    clip-path: inset(0);
  }
}

@media (max-width: 860px) {
  .menu-main {
    padding: 1rem 0 0;
  }

  .menu-links {
    height: auto;
    grid-template-rows: none;
    align-content: start;
    gap: clamp(0.95rem, 2.4vh, 1.75rem);
  }

  .menu-item {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .item-title {
    font-size: clamp(2.05rem, 11vw, 3rem);
  }

  .item-copy {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  body {
    overflow: auto;
  }

  .menu-shell {
    width: 100vw;
    margin: 0;
    height: 100vh;
    border: 0;
    padding: 1.1rem;
  }

  .mark {
    width: 74px;
    height: 36px;
    padding-right: 0.65rem;
  }

  .chip {
    letter-spacing: 0.16em;
    font-size: 0.7rem;
    gap: 0.5rem;
  }
}
html {
  scroll-behavior: smooth;
}

.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0) scale(0.996);
  filter: blur(2px);
  transition:
    opacity 620ms cubic-bezier(0.2, 0.9, 0.18, 1),
    transform 620ms cubic-bezier(0.2, 0.9, 0.18, 1),
    filter 620ms cubic-bezier(0.2, 0.9, 0.18, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

[data-reveal="left"] {
  transform: translate3d(-20px, 0, 0);
}

[data-reveal="right"] {
  transform: translate3d(20px, 0, 0);
}

[data-reveal="up"] {
  transform: translate3d(0, 26px, 0);
}

.pressable {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  transition: transform 170ms ease;
}

.pressable.is-pressed {
  transform: scale(0.985);
}

.pressable > * {
  position: relative;
  z-index: 1;
}

.click-ripple {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
  transform: scale(0);
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.54) 0%,
    rgba(255, 180, 120, 0.3) 34%,
    rgba(200, 96, 186, 0.18) 54%,
    rgba(200, 96, 186, 0) 74%
  );
  animation: click-ripple 560ms cubic-bezier(0.2, 0.9, 0.18, 1) forwards;
}

/* Preset icon styling (Bootstrap Icons) for all Hire Me chips */
.hire-icon {
  font-size: 1.46rem;
  line-height: 1;
  color: var(--accent);
  filter: drop-shadow(0 1px 0 rgba(200, 96, 186, 0.35));
  transition: transform 220ms ease, color 220ms ease;
}

.hire-chip:hover .hire-icon,
.hire-chip:focus-visible .hire-icon {
  color: var(--accent-pink);
  transform: translateY(-1px) scale(1.06);
}

.page-transition-root {
  will-change: opacity, transform, filter;
}

.page-transition-out {
  animation: page-out 440ms cubic-bezier(0.2, 0.9, 0.18, 1) forwards;
}

.page-transition-out-menu {
  animation: page-out-menu 500ms cubic-bezier(0.2, 0.9, 0.18, 1) forwards;
}

html.is-transitioning,
html.is-transitioning body {
  cursor: progress;
}

@keyframes page-out {
  to {
    opacity: 0;
    transform: translateY(20px) scale(0.986);
    filter: blur(4px);
  }
}

@keyframes page-out-menu {
  to {
    opacity: 0;
    transform: translateY(-14px) scale(0.988);
    filter: blur(3.5px);
  }
}

@keyframes click-ripple {
  to {
    transform: scale(1);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .pressable,
  .pressable.is-pressed {
    transition: none !important;
    transform: none !important;
  }

  .click-ripple {
    display: none !important;
  }
}
