:root {
  color-scheme: light;
  --ink: #171717;
  --muted: #545454;
  --accent-start: #ffbf64;
  --accent-mid: #ff668a;
  --accent-end: #f80091;
  --accent-gradient: linear-gradient(110deg, var(--accent-start) 0%, var(--accent-mid) 48%, var(--accent-end) 100%);
  font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #fff; color: var(--ink); }
button, input { font: inherit; }
button { cursor: pointer; }
a { color: inherit; }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
:focus-visible { outline: 2px solid #f9008d; outline-offset: 5px; }

.page-shell { width: 100%; padding: 38px 14px 70px; }
.portfolio { position: relative; isolation: isolate; width: min(100%, 480px); margin: 0 auto; overflow: hidden; background: #fff; }
.gradient-text {
  color: #fa268f;
  background: var(--accent-gradient);
  background-size: 240% 240%;
  background-position: 10% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-travel 9s ease-in-out infinite alternate;
}
@keyframes gradient-travel { to { background-position: 95% 50%; } }
@keyframes divider-flow { to { background-position: 0 100%; } }
@keyframes atmosphere { 0% { background-position: 20% 0%, 100% 100%; } 50% { background-position: 75% 38%, 0% 65%; } 100% { background-position: 15% 100%, 100% 5%; } }
@keyframes gentle-float { 50% { transform: translateY(-10px); } }
@keyframes ring-turn { to { transform: rotate(360deg); } }
@keyframes ring-colors { 0%, 100% { filter: hue-rotate(0deg) saturate(1.04); } 50% { filter: hue-rotate(20deg) saturate(1.27); } }
@keyframes content-panel-drift {
  0% { background-position: 0% 0%, 100% 18%, 0% 48%, 100% 76%, 0 0; }
  50% { background-position: 42% 10%, 18% 42%, 76% 58%, 26% 90%, 0 0; }
  100% { background-position: 92% 18%, 0% 62%, 24% 76%, 82% 100%, 0 0; }
}

.hero { position: relative; z-index: 1; min-height: 535px; text-align: center; }
.hero::before {
  content: ""; position: absolute; inset: 0 0 0 0; z-index: -1;
  border-bottom-right-radius: 48% 30%;
  background:
    radial-gradient(ellipse at 16% -2%, rgba(184,184,184,.58) 0%, rgba(211,211,211,.22) 48%, transparent 77%),
    radial-gradient(ellipse at 92% 82%, rgba(196,196,196,.62) 0%, rgba(235,235,235,.36) 54%, transparent 82%),
    linear-gradient(145deg, #cfcfcf 0%, #dedede 56%, #f2f2f2 100%);
  background-size: 135% 135%, 130% 135%, 100% 100%;
  animation: atmosphere 25s ease-in-out infinite alternate;
}
.hero-content { display: flex; flex-direction: column; align-items: center; padding: 64px 27px 0; }
.portrait-ring { position: relative; display: grid; place-items: center; width: 180px; height: 180px; border-radius: 50%; overflow: hidden; }
.portrait-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: conic-gradient(from -18deg, #ffcc4e, #ff9a62, #ff4d8d, #f90091, #ff626f, #ffe047, #ffcc4e);
  animation: ring-turn 18s linear infinite, ring-colors 7s ease-in-out infinite;
}
.portrait-ring img { position: relative; width: 174px; height: 174px; border-radius: 50%; object-fit: cover; object-position: center 44%; background: #eee; }
.hero h1 { margin: 27px 0 2px; font-size: clamp(27px, 6.1vw, 32px); line-height: 1.12; font-weight: 750; letter-spacing: -.028em; }
.role { margin: 0; color: #2e2e2e; font-size: 18px; font-weight: 300; }
.menu-toggle { position: absolute; z-index: 5; top: 94px; right: 21px; display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; width: 28px; height: 74px; padding: 2px; border: 0; background: transparent; }
.menu-toggle span { height: 3px; border-radius: 9px; background: #fff; transition: transform .25s, width .25s, opacity .25s; }
.menu-toggle span:nth-child(1) { width: 19px; }
.menu-toggle span:nth-child(2) { width: 15px; opacity: .9; }
.menu-toggle span:nth-child(3) { width: 12px; opacity: .75; }
.menu-toggle span:nth-child(4) { width: 9px; opacity: .55; }
.menu-toggle span:nth-child(5) { width: 6px; opacity: .3; }
.menu-toggle[aria-expanded="true"] span:first-child { width: 23px; transform: translateY(35px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2), .menu-toggle[aria-expanded="true"] span:nth-child(3), .menu-toggle[aria-expanded="true"] span:nth-child(4) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:last-child { width: 23px; opacity: 1; transform: translateY(-35px) rotate(-45deg); }
.site-menu { position: absolute; z-index: 4; top: 69px; right: 60px; display: grid; gap: 11px; min-width: 160px; padding: 19px 21px; border: 1px solid rgba(255,255,255,.85); border-radius: 16px; background: rgba(250,250,250,.94); box-shadow: 0 12px 32px rgba(0,0,0,.12); backdrop-filter: blur(14px); text-align: left; }
.site-menu a { text-decoration: none; font-size: 14px; }
.site-menu a:hover { color: #ed0a83; }
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 54px; min-height: 54px; }
.stat { display: flex; flex-direction: column; align-items: center; min-width: 95px; }
.stat-rating { align-items: flex-end; }
.stat-stars { position: relative; display: inline-block; color: #a9a9a9; font-size: 20px; line-height: 1; letter-spacing: 1px; white-space: nowrap; }
.stat-stars-fill { position: absolute; top: 0; left: 0; width: 0; overflow: hidden; white-space: nowrap; color: #f9608e; background: var(--accent-gradient); background-size: 250% 250%; background-position: 10% 50%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: gradient-travel 9s ease-in-out infinite alternate; }
.stat-line { display: flex; align-items: baseline; gap: 5px; margin-top: 4px; }
.stat strong { font-size: 22px; font-weight: 700; line-height: 1; font-variant-numeric: tabular-nums; }
.stat-line strong { font-size: 17px; }
.stat span:not(.stat-stars):not(.stat-stars-fill) { font-size: 12px; font-weight: 300; }
.stat-reach { align-items: flex-start; gap: 5px; }
.stat-divider { display: block; width: 1px; height: 45px; background: linear-gradient(transparent, #202020 22%, #202020 78%, transparent); background-size: 100% 240%; animation: divider-flow 10s ease-in-out infinite alternate; }

.content-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 15% 8%, rgba(216,216,216,.8) 0%, rgba(239,239,239,.26) 47%, transparent 75%),
    radial-gradient(ellipse at 87% 34%, rgba(195,195,195,.72) 0%, rgba(233,233,233,.24) 53%, transparent 79%),
    radial-gradient(ellipse at 12% 61%, rgba(221,221,221,.82) 0%, rgba(245,245,245,.22) 51%, transparent 80%),
    radial-gradient(ellipse at 86% 86%, rgba(200,200,200,.68) 0%, rgba(241,241,241,.2) 54%, transparent 81%),
    linear-gradient(180deg, #fdfdfd 0%, #f5f5f5 50%, #fbfbfb 100%);
  background-size: 165% 44%, 155% 46%, 170% 48%, 160% 45%, 100% 100%;
  background-repeat: no-repeat;
  animation: content-panel-drift 44s ease-in-out infinite alternate;
}
.content-panel > section,
.content-panel > footer { background: transparent; }
.experience { position: relative; z-index: 1; min-height: 315px; padding: 47px 18px 62px; text-align: center; }
.experience h2 { margin: 0; line-height: 1; }
.experience .heavy { display: block; font-size: clamp(53px, 12.5vw, 70px); font-weight: 760; letter-spacing: -.035em; white-space: nowrap; }
.experience .light-line { display: block; margin-top: 5px; color: #080808; font-size: clamp(38px, 9vw, 52px); font-weight: 250; letter-spacing: -.048em; white-space: nowrap; }
.experience p { margin: 22px 0 0; color: #3e3e3e; font-size: 12.5px; font-weight: 300; line-height: 1.35; }

.brands { position: relative; z-index: 1; display: grid; align-content: center; gap: 10px; min-height: 230px; padding: 9px 0 0; text-align: center; }
.brands h2 { margin: 0; font-size: 16px; line-height: 1.1; font-weight: 300; white-space: nowrap; }
.brands h2 .gradient-text { font-weight: 750; }
.brands-light { font-size: 12px; font-weight: 300; }
.logo-rail { overflow: hidden; cursor: grab; touch-action: pan-y; user-select: none; -webkit-user-select: none; }
.logo-rail:active { cursor: grabbing; }
.logo-track { display: flex; width: max-content; will-change: transform; }
.logo-track img { display: block; flex: none; width: 880px; height: auto; pointer-events: none; }

.featured-booth { position: relative; display: grid; place-items: center; min-height: 370px; padding: 0 14px; }
.featured-booth img { display: block; width: min(100%, 455px); height: auto; animation: gentle-float 9s ease-in-out infinite; }

.projects { position: relative; min-height: 412px; padding: 0 0 14px; text-align: center; }
.orbit { position: relative; height: 365px; }
.orbit h2 { position: absolute; top: 50%; left: 50%; width: 185px; margin: 0; transform: translate(-50%, -50%); font-size: 23px; font-weight: 300; line-height: 1.12; pointer-events: none; }
.orbit h2 strong { font-weight: 760; }
.project-node { position: absolute; top: 50%; left: 50%; display: grid; place-items: center; width: 82px; height: 82px; padding: 10px; border: 1px solid rgba(255,255,255,.92); border-radius: 50%; background: radial-gradient(circle at 44% 40%, #fff 38%, #eee 66%, #b2b2b2 100%); background-size: 145% 145%; animation: atmosphere 19s ease-in-out infinite alternate; color: #313131; font-size: 12px; font-weight: 300; line-height: 1.05; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,.055), inset 0 0 5px rgba(255,255,255,.85); transition: width .3s, height .3s, box-shadow .3s, border-color .3s, opacity .3s; will-change: transform; }
.project-node.is-selected { z-index: 2; border-color: #484848; box-shadow: 0 0 0 3px rgba(255,255,255,.7), 0 0 0 4px #545454, 0 9px 22px rgba(0,0,0,.12), inset 0 0 12px #fff; font-size: 13px; }
.project-node:not(.is-selected) { opacity: .82; }
.project-node:hover { opacity: 1; }
.project-hint { min-height: 16px; margin: -3px 20px 0; color: #565656; font-size: 11px; font-weight: 300; }
.project-open { display: inline-flex; align-items: center; gap: 4px; margin-top: 8px; color: #111; font-size: 12px; text-decoration-color: #fc5d8f; text-underline-offset: 4px; }
.project-open svg, .rating-submit svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.featured-branding { display: grid; place-items: center; min-height: 320px; padding: 0 9px 14px; }
.featured-branding img { width: min(100%, 460px); height: auto; animation: gentle-float 11s ease-in-out infinite reverse; }

.rating { position: relative; min-height: 445px; padding: 37px 30px 61px; text-align: center; }
.section-rule { display: block; width: 54px; height: 2px; margin: 0 auto 30px; background: var(--accent-gradient); background-size: 250% 250%; animation: gradient-travel 9s ease-in-out infinite alternate; }
.rating h2 { margin: 0; font-size: clamp(31px, 8vw, 43px); font-weight: 750; letter-spacing: -.035em; white-space: nowrap; }
.rating-intro { margin: 10px 0 21px; color: #3e3e3e; font-size: 14px; font-weight: 300; }
.rating-summary { display: flex; justify-content: center; align-items: baseline; gap: 9px; margin-bottom: 16px; min-height: 32px; }
.rating-summary strong { font-size: 30px; line-height: 1; font-weight: 720; font-variant-numeric: tabular-nums; }
.rating-summary span { color: #5f5f5f; font-size: 12px; }
.rating fieldset { margin: 0; padding: 0; border: 0; }
.rating-stars { display: flex; justify-content: center; gap: 9px; }
.rating-stars label { position: relative; display: grid; place-items: center; width: 49px; height: 55px; cursor: pointer; }
.rating-stars input { position: absolute; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: inherit; }
.rating-stars svg { width: 42px; height: 42px; fill: rgba(255,255,255,.38); stroke: #a1a1a1; stroke-width: 1.3; transition: transform .25s, fill .25s, stroke .25s; pointer-events: none; }
.rating-stars label.is-lit svg { fill: #ff648d; stroke: #ff5292; transform: scale(1.08); }
.rating-stars label:hover svg { transform: scale(1.16); }
.rating-stars input:focus-visible + svg { outline: 2px solid #f9008d; outline-offset: 3px; border-radius: 4px; }
.rating-stars input:disabled { cursor: default; }
.rating-submit { display: inline-flex; justify-content: center; align-items: center; gap: 10px; min-width: 202px; min-height: 47px; margin-top: 23px; padding: 9px 19px; border: 0; border-radius: 28px; background: var(--accent-gradient); background-size: 250% 250%; color: #fff; font-size: 15px; font-weight: 650; animation: gradient-travel 9s ease-in-out infinite alternate; box-shadow: 0 7px 16px rgba(252,47,132,.19); transition: transform .2s, opacity .2s; }
.rating-submit:not(:disabled):hover { transform: translateY(-2px); }
.rating-submit:disabled { cursor: default; opacity: .48; box-shadow: none; }
.rating-note { min-height: 34px; max-width: 325px; margin: 18px auto 0; color: #5c5c5c; font-size: 12px; font-weight: 300; line-height: 1.4; }

.footer { position: relative; min-height: 335px; padding: 44px 28px 25px; text-align: center; }
.footer h2 { margin: 0; font-size: clamp(32px, 8.2vw, 43px); line-height: 1.08; font-weight: 730; letter-spacing: -.04em; }
.footer > p { margin: 17px 0 17px; font-size: 13px; font-weight: 300; }
.social-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }
.social-link { display: inline-flex; align-items: center; gap: 6px; min-height: 37px; padding: 3px 0; font-size: 13px; font-weight: 600; text-decoration: none; border-bottom: 1px solid #222; }
.social-link svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.social-link.behance svg { fill: currentColor; stroke: none; }
.social-link.pinterest svg { fill: currentColor; stroke: none; }
.social-link.is-pending { color: #565656; border-bottom-style: dotted; cursor: default; }
.social-link:not(.is-pending):hover { color: #f00089; border-color: #f00089; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 44px; padding-top: 13px; border-top: 1px solid rgba(0,0,0,.18); color: #505050; font-size: 11px; letter-spacing: .02em; }
.footer-bottom a { text-decoration: none; }
.footer-bottom a:hover { color: #f00089; }

@media (min-width: 900px) { .page-shell { padding-top: 58px; } }
@media (max-width: 540px) {
  .page-shell { padding: 0; }
  .portfolio { width: 100%; }
  .hero { min-height: 535px; }
  .experience { min-height: 305px; }
}
@media (max-width: 380px) {
  .hero-content { padding-top: 60px; }
  .portrait-ring { width: 166px; height: 166px; }
  .portrait-ring img { width: 160px; height: 160px; }
  .menu-toggle { top: 76px; right: 17px; }
  .hero-stats { gap: 14px; }
  .stat-stars { font-size: 17px; }
  .experience .heavy { font-size: 49px; }
  .experience .light-line { font-size: 34px; }
  .orbit h2 { font-size: 20px; }
  .rating { padding-inline: 15px; }
  .rating-stars { gap: 3px; }
  .rating-stars label { width: 45px; }
  .rating-stars svg { width: 37px; height: 37px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .gradient-text, .stat-stars-fill, .stat-divider, .portrait-ring::before, .hero::before, .content-panel, .featured-booth img, .project-node, .featured-branding img, .rating-submit, .section-rule { animation: none !important; }
  .rating-stars svg, .rating-submit, .project-node { transition: none; }
}
