:root {
  --bg: #f5f6f8;
  --surface: #ffffff;
  --surface-soft: #f9fafb;
  --ink: #191b20;
  --muted: #7b7f89;
  --line: #dedfe4;
  --line-soft: #eceef2;
  --blue: #2f86ff;
  --orange: #ff6a1a;
  --shadow: 0 18px 50px rgba(18, 22, 30, 0.08);
  --radius: 8px;
  --content: min(1120px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

button {
  font: inherit;
}

svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.page-shell {
  width: var(--content);
  margin: 0 auto;
  padding: 24px 0 88px;
}

.profile-hero {
  position: relative;
  min-height: 360px;
  display: grid;
  grid-template-columns: 1fr 260px;
  grid-template-rows: 250px auto;
  gap: 26px 36px;
  align-items: end;
}

.brand-board {
  grid-column: 1 / -1;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

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

.profile-photo {
  position: absolute;
  right: 78px;
  top: 162px;
  width: 184px;
  aspect-ratio: 1;
  border: 8px solid var(--surface);
  border-radius: 50%;
  background: #c3c9d0;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.identity-block {
  grid-column: 1;
  max-width: 560px;
}

.name-row {
  display: flex;
  align-items: center;
  gap: 9px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 800;
}

.verified {
  width: 20px;
  height: 20px;
  color: var(--blue);
}

.verified .check {
  fill: #fff;
}

.handle {
  margin-top: 8px;
  color: #6d737d;
  font-size: 1.28rem;
  font-weight: 600;
}

.followers {
  margin-top: 28px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #7f8590;
  font-size: 0.95rem;
  font-weight: 700;
}

.followers strong {
  color: var(--ink);
  font-size: 1.32rem;
  line-height: 1;
}

.followers em {
  padding: 5px 10px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: #f1f2f4;
  color: #9aa0aa;
  font-size: 0.74rem;
  font-style: normal;
}

.people-icon {
  width: 20px;
  height: 20px;
  color: #777d87;
}

.social-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f0f1f3;
  color: #575d66;
  font-size: 0.82rem;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.pill img {
  width: 15px;
  height: 15px;
  display: block;
  object-fit: contain;
  opacity: 0.72;
}

.pill:hover,
.pill:focus-visible {
  transform: translateY(-2px);
  border-color: #c8ccd4;
  background: #fff;
  outline: none;
}

.icon-only {
  width: 40px;
  padding: 0;
}

.icon-only img {
  width: 16px;
  height: 16px;
}

.section-block {
  margin-top: 72px;
}

.section-block h2,
.section-head h2 {
  color: #717782;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.link-list {
  width: min(680px, 100%);
  margin: 28px auto 0;
  display: grid;
  gap: 10px;
}

.link-list a {
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: #4b5059;
  font-weight: 800;
  font-size: 0.94rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.link-list a:hover,
.link-list a:focus-visible {
  transform: translateY(-2px);
  border-color: #c9ccd3;
  box-shadow: 0 8px 26px rgba(20, 24, 31, 0.06);
  outline: none;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.section-head.compact {
  justify-content: center;
  position: relative;
}

.partner-marquee {
  margin-top: 26px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  cursor: grab;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.partner-marquee:active {
  cursor: grabbing;
}

.partner-marquee::-webkit-scrollbar {
  display: none;
}

.partner-track {
  --partner-gap: 18px;
  --partner-card-size: 184px;
  display: flex;
  gap: var(--partner-gap);
  width: max-content;
}

.partner-marquee.is-dragging {
  user-select: none;
}

.partner-track::-webkit-scrollbar {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .partner-track {
    overflow-x: auto;
    scrollbar-width: none;
  }
}

.partner-card {
  flex: 0 0 var(--partner-card-size, 184px);
  min-height: 234px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  scroll-snap-align: center;
}

.logo-tile {
  height: 152px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-weight: 800;
}

.logo-style-0,
.compass {
  background: #14308e;
  color: #fff;
  font-size: 3rem;
}

.logo-style-1,
.dark {
  background: #030303;
  color: #fff;
  font-size: 1.25rem;
}

.logo-style-2,
.invoicible {
  background: linear-gradient(145deg, #f7f9ff, #edf1ff);
  color: #4386ff;
  font-size: 1.25rem;
}

.logo-style-3,
.case {
  background: #56a9a3;
  color: #fff;
  font-size: 2.25rem;
}

.logo-style-4,
.oraimo {
  background: #040404;
  color: #63ee3e;
  font-size: 1.45rem;
}

.logo-style-5,
.qcy {
  background: #ffc44f;
  color: #4a4d55;
  font-size: 2.45rem;
  letter-spacing: 0.04em;
}

.partner-image {
  width: 100%;
  height: 152px;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.partner-card h3 {
  margin-top: 12px;
  font-size: 0.93rem;
  font-weight: 800;
}

.partner-card p {
  margin-top: 3px;
  color: #9aa0aa;
  font-size: 0.77rem;
  font-weight: 600;
}

.rate-card,
.work-card {
  margin-top: 52px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #858b94;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow svg {
  width: 18px;
  height: 18px;
}

.rate-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px 30px;
  margin-top: 28px;
}

.rate-copy h3,
.licensing h3 {
  font-size: 0.99rem;
  font-weight: 800;
}

.rate-copy p,
.licensing p {
  margin-top: 6px;
  color: #8b919d;
  font-size: 0.87rem;
  line-height: 1.45;
  font-weight: 600;
}

.rate-grid > strong {
  font-size: 1.15rem;
}

.rate-grid small {
  display: block;
  color: #949aa4;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: right;
}

.licensing {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}

.license-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.license-options button {
  min-height: 62px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.license-options button:hover,
.license-options button.is-selected {
  border-color: #c7cbd2;
  background: #fff;
}

.license-options span {
  display: block;
  color: #9ca2ab;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.license-options strong {
  display: block;
  margin-top: 3px;
  font-size: 0.96rem;
}

.work-card {
  padding: 28px;
}

.work-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: end;
  margin-top: 34px;
  padding: 0 18px 2px;
}

.work-content h2 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 800;
}

.work-content p {
  max-width: 760px;
  margin-top: 12px;
  color: #8a909b;
  font-size: 0.95rem;
  line-height: 1.55;
  font-weight: 600;
}

.primary-button {
  min-width: 180px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 8px;
  background: #18191d;
  color: #fff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  transform: translateY(-2px);
  background: #000;
  outline: none;
}

.blog-section {
  margin-top: 88px;
}

.view-all {
  color: #464b54;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 360px));
  gap: 28px;
}

.post-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(19, 24, 33, 0.05);
}

.post-image {
  width: 100%;
  height: 230px;
  display: block;
  object-fit: cover;
}

.portrait-post {
  background:
    radial-gradient(circle at 52% 48%, #6c4638 0 28px, transparent 29px),
    radial-gradient(circle at 52% 33%, #111 0 29px, transparent 30px),
    linear-gradient(90deg, transparent 0 36%, #d39a5d 37% 63%, transparent 64%),
    radial-gradient(circle at 50% 104%, #d59c62 0 88px, transparent 89px),
    linear-gradient(90deg, #078d8f 0 8%, #252827 9% 91%, #078d8f 92%);
}

.collab-post {
  background:
    radial-gradient(circle at 29% 35%, #1c1d23 0 11px, transparent 12px),
    radial-gradient(circle at 70% 35%, #1c1d23 0 11px, transparent 12px),
    linear-gradient(30deg, transparent 0 34%, #1c1d23 35% 38%, transparent 39%),
    linear-gradient(-30deg, transparent 0 61%, #1c1d23 62% 65%, transparent 66%),
    linear-gradient(#26272f 0 0) 31% 57% / 58px 90px no-repeat,
    linear-gradient(#26272f 0 0) 70% 57% / 58px 90px no-repeat,
    linear-gradient(#41424a 0 0) 50% 69% / 138px 56px no-repeat,
    linear-gradient(135deg, #08a9bd, #12c5cc);
}

.post-body {
  padding: 24px 26px 30px;
}

.post-body time {
  color: #666c75;
  font-size: 0.83rem;
  font-weight: 800;
}

.post-body h3 {
  margin-top: 9px;
  font-size: 1.55rem;
  font-weight: 800;
}

.post-body p {
  min-height: 44px;
  margin-top: 10px;
  color: #8b919c;
  font-size: 0.94rem;
  line-height: 1.5;
  font-weight: 600;
}

.post-body a {
  display: inline-flex;
  gap: 8px;
  margin-top: 32px;
  color: #2d3036;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px max(16px, calc((100vw - 1120px) / 2)) 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #8d939d;
  font-size: 0.88rem;
  font-weight: 600;
}

.site-footer p {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.footer-icons {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-icons a {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  opacity: 0.66;
  transition: opacity 180ms ease, transform 180ms ease;
}

.footer-icons a:hover,
.footer-icons a:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
  outline: none;
}

.footer-icons img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 10;
  translate: -50% 18px;
  min-width: 220px;
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #17181c;
  color: #fff;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, translate 180ms ease;
}

.toast.is-visible {
  translate: -50% 0;
  opacity: 1;
}

@media (min-width: 900px) {
  .partner-marquee {
    width: 100%;
  }
}

@media (max-width: 760px) {
  :root {
    --content: min(100vw, 430px);
  }

  .page-shell {
    padding-top: 0;
  }

  .profile-hero {
    display: block;
    min-height: 0;
  }

  .brand-board {
    display: none;
  }

  .profile-photo {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 540px;
    aspect-ratio: auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .profile-photo img {
    object-position: center top;
  }

  .identity-block {
    margin-top: -130px;
    padding: 0 22px 0;
    position: relative;
    z-index: 2;
  }

  h1 {
    font-size: 1.48rem;
  }

  .verified {
    width: 18px;
    height: 18px;
  }

  .handle {
    margin-top: 4px;
    font-size: 1rem;
  }

  .followers {
    margin-top: 24px;
    font-size: 0.74rem;
  }

  .followers strong {
    font-size: 1rem;
  }

  .social-pills {
    gap: 8px;
  }

  .pill {
    min-height: 30px;
    padding: 0 11px;
    font-size: 0.68rem;
  }

  .pill img {
    width: 13px;
    height: 13px;
  }

  .icon-only {
    width: 34px;
  }

  .section-block {
    margin-top: 64px;
    padding-inline: 22px;
  }

  .link-list {
    margin-top: 24px;
  }

  .link-list a {
    min-height: 42px;
    font-size: 0.83rem;
  }

  .partner-marquee {
    margin-left: -22px;
    margin-right: -22px;
    padding-left: 22px;
    padding-right: 22px;
    scroll-padding-inline: 22px;
  }

  .partner-track {
    --partner-card-size: 178px;
  }

  .rate-card,
  .work-card {
    margin: 56px 22px 0;
    padding: 22px 18px;
  }

  .rate-grid {
    gap: 22px 16px;
  }

  .license-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .work-content {
    display: block;
    margin-top: 28px;
    padding: 0 8px;
  }

  .primary-button {
    width: 100%;
    margin-top: 22px;
  }

  .blog-section {
    margin-top: 78px;
  }

  .post-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 22px;
    scroll-snap-type: x mandatory;
    touch-action: pan-x;
    cursor: grab;
    margin-left: -22px;
    margin-right: -22px;
    padding: 0 22px 10px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .post-grid::-webkit-scrollbar {
    display: none;
  }

  .post-grid.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    user-select: none;
  }

  .post-card {
    flex: 0 0 min(78vw, 340px);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .post-image {
    height: 210px;
  }

  .post-body {
    padding: 20px 22px 26px;
  }

  .post-body h3 {
    font-size: 1.2rem;
  }

  .site-footer {
    display: grid;
    justify-items: center;
    padding: 34px 18px 38px;
    text-align: center;
  }

  .site-footer p {
    justify-content: center;
  }

  .footer-icons {
    gap: 20px;
  }
}

@media (max-width: 390px) {
  .profile-photo {
    height: 520px;
  }

  .identity-block {
    margin-top: -120px;
  }

  .license-options button {
    min-height: 56px;
  }
}
