.po-business-public-page {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% -12%, rgba(0, 190, 214, .16), transparent 38%),
    linear-gradient(180deg, #031a20 0%, #020f13 100%);
  color: #f4fdff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.po-business-public-page__shell {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  padding: clamp(18px, 4vw, 56px) 14px;
  box-sizing: border-box;
}

.po-business-profile-context {
  width: min(920px, 100%);
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  box-sizing: border-box;
  border: 1px solid rgba(87, 206, 230, .2);
  border-radius: 17px;
  background: rgba(4, 29, 36, .88);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .2);
  backdrop-filter: blur(14px);
}

.po-business-profile-context a,
.po-business-profile-context__visibility {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid rgba(87, 206, 230, .22);
  border-radius: 12px;
  color: #dffbff;
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
}

.po-business-profile-context a:hover,
.po-business-profile-context a:focus-visible {
  border-color: rgba(87, 221, 246, .62);
  background: rgba(19, 130, 154, .2);
  outline: none;
}

.po-business-profile-context__visibility {
  margin-left: auto;
  border-color: transparent;
  background: rgba(255, 255, 255, .04);
  color: rgba(224, 248, 252, .68);
}

.po-business-profile-context svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.po-business-profile,
.po-business-profile * {
  box-sizing: border-box;
}

.po-business-profile {
  --po-bp-bg: #061d23;
  --po-bp-panel: #0a3039;
  --po-bp-card: #0b3640;
  --po-bp-text: #f5fdff;
  --po-bp-muted: rgba(232, 250, 253, .68);
  --po-bp-line: rgba(var(--po-bp-accent-rgb), .24);
  width: min(920px, 100%);
  max-width: 100%;
  min-width: 0;
  color: var(--po-bp-text);
  text-align: left;
  border: 1px solid var(--po-bp-line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 12% -8%, rgba(var(--po-bp-accent-rgb), .20), transparent 38%),
    linear-gradient(150deg, rgba(var(--po-bp-accent-rgb), .06), transparent 66%),
    var(--po-bp-bg);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .34), 0 0 60px rgba(var(--po-bp-accent-rgb), .10);
  overflow: hidden;
  container-type: inline-size;
}

.po-business-profile--vibrant {
  --po-bp-bg: #080c1b;
  --po-bp-panel: #15142a;
  --po-bp-card: #18172e;
  --po-bp-line: rgba(var(--po-bp-accent-rgb), .38);
}

.po-business-profile--dark {
  --po-bp-bg: #04171c;
  --po-bp-panel: #082830;
  --po-bp-card: #0a3038;
}

.po-business-profile--light {
  --po-bp-bg: #eef8f8;
  --po-bp-panel: #fff;
  --po-bp-card: #f6fbfb;
  --po-bp-text: #082a31;
  --po-bp-muted: rgba(8, 42, 49, .64);
  --po-bp-line: rgba(var(--po-bp-accent-rgb), .28);
  box-shadow: 0 26px 70px rgba(8, 42, 49, .16);
}

.po-business-profile a {
  color: inherit;
}

.po-business-profile svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.po-business-profile__headline {
  margin: 0;
  padding: 20px 28px 0;
  color: var(--po-bp-accent-text);
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 850;
  line-height: 1.2;
  text-align: left;
}

.po-business-profile__hero {
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: clamp(28px, 5vw, 54px);
  background:
    radial-gradient(circle at 84% 10%, rgba(var(--po-bp-accent-rgb), .34), transparent 44%),
    linear-gradient(145deg, rgba(var(--po-bp-accent-rgb), .15), transparent 70%),
    var(--po-bp-panel);
  border-bottom: 1px solid var(--po-bp-line);
}

.po-business-profile__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--po-bp-bg) 18%, transparent) 0%, color-mix(in srgb, var(--po-bp-bg) 86%, transparent) 100%),
    linear-gradient(90deg, color-mix(in srgb, var(--po-bp-bg) 90%, transparent) 0%, color-mix(in srgb, var(--po-bp-bg) 42%, transparent) 100%);
}

.po-business-profile__cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: .72;
}

.po-business-profile__identity {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: clamp(18px, 4vw, 32px);
  width: min(100%, 760px);
}

.po-business-profile__logo {
  width: clamp(96px, 17vw, 152px);
  height: clamp(96px, 17vw, 152px);
  flex: 0 0 auto;
  display: block;
  object-fit: cover;
  border: 1px solid var(--po-bp-line);
  border-radius: 28px;
  background: var(--po-bp-card);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
}

.po-business-profile__logo--fallback {
  display: grid;
  place-items: center;
  color: var(--po-bp-accent-text);
  font-size: clamp(36px, 7vw, 64px);
  font-weight: 950;
  line-height: 1;
}

.po-business-profile__identity-copy {
  min-width: 0;
  max-width: 100%;
  justify-self: start;
  text-align: left !important;
}

.po-business-profile__identity-copy > .po-business-profile__eyebrow,
.po-business-profile__identity-copy > h1,
.po-business-profile__identity-copy > .po-business-profile__tagline,
.po-business-profile__identity-copy > .po-business-profile__location,
.po-business-profile__identity-copy > .po-business-profile__chips {
  align-self: start;
  justify-self: start;
  text-align: left !important;
}

.po-business-profile__eyebrow,
.po-business-profile__section-label {
  display: block;
  color: var(--po-bp-accent-text);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .07em;
  line-height: 1.2;
  text-transform: uppercase;
}

.po-business-profile__identity h1 {
  max-width: 650px;
  margin: 6px 0 10px;
  color: var(--po-bp-text);
  font-size: clamp(36px, 7vw, 46px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .98;
  overflow-wrap: anywhere;
}

.po-business-profile__tagline {
  max-width: 620px;
  margin: 0 0 12px;
  color: var(--po-bp-text);
  font-size: clamp(15px, 2.2vw, 18px);
  font-weight: 720;
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.po-business-profile__location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--po-bp-muted);
  font-size: 13px;
  font-weight: 700;
}

.po-business-profile__location svg {
  width: 15px;
  height: 15px;
  color: var(--po-bp-accent-text);
}

.po-business-profile__chips,
.po-business-profile__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.po-business-profile__chips span,
.po-business-profile__socials a,
.po-business-profile__access-chip,
.po-business-profile__preview-chip {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid var(--po-bp-line);
  border-radius: 999px;
  background: rgba(var(--po-bp-accent-rgb), .09);
  color: var(--po-bp-muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.po-business-profile__socials a {
  gap: 6px;
}

.po-business-profile__socials a svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.po-business-profile__chip--secondary {
  border-style: dashed;
}

.po-business-profile__hero-actions {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
  max-width: calc(100% - 40px);
}

.po-business-profile__access-chip,
.po-business-profile__preview-chip {
  color: var(--po-bp-accent-text);
}

.po-business-profile__access-chip {
  gap: 6px;
  color: var(--po-bp-text);
  background: color-mix(in srgb, var(--po-bp-bg) 80%, transparent);
  backdrop-filter: blur(10px);
}

.po-business-profile__access-chip svg {
  width: 14px;
  height: 14px;
  color: var(--po-bp-accent-text);
}

.po-business-profile__share {
  width: auto;
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid var(--po-bp-line);
  border-radius: 14px;
  background: rgba(var(--po-bp-accent-rgb), .10);
  color: var(--po-bp-accent-text);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.po-business-profile__share span {
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
}

.po-business-profile__share:hover,
.po-business-profile__share:focus-visible,
.po-business-profile__socials a:hover,
.po-business-profile__socials a:focus-visible {
  border-color: var(--po-bp-accent);
  background: rgba(var(--po-bp-accent-rgb), .18);
  outline: none;
}

.po-business-profile__share[data-copied="1"]::after {
  content: "Copiado";
  position: absolute;
  top: calc(100% + 7px);
  right: 0;
  padding: 6px 9px;
  border-radius: 8px;
  background: var(--po-bp-accent);
  color: var(--po-bp-on-accent);
  font-size: 11px;
  font-weight: 850;
}

.po-business-profile__section {
  margin: 0;
  padding: clamp(26px, 4vw, 40px) clamp(22px, 5vw, 54px);
  border: 0;
  border-top: 1px solid var(--po-bp-line);
  border-radius: 0;
  background:
    linear-gradient(145deg, rgba(var(--po-bp-accent-rgb), .045), transparent 68%);
  text-align: left;
}

.po-business-profile__about {
  display: grid;
  grid-template-columns: minmax(120px, .34fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(18px, 4vw, 46px);
}

.po-business-profile__about p {
  margin: 0;
  font-size: clamp(15px, 2vw, 18px);
}

.po-business-profile__section > header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 17px;
}

.po-business-profile__section > header > div,
.po-business-profile__section > header .po-business-profile__section-label,
.po-business-profile__section > header h2,
.po-business-profile__section > .po-business-profile__empty {
  justify-self: start;
  text-align: left !important;
}

.po-business-profile__section h2 {
  margin: 4px 0 0;
  color: var(--po-bp-text);
  font-size: clamp(23px, 4vw, 34px);
  letter-spacing: -.035em;
  line-height: 1.05;
}

.po-business-profile__section > header > strong {
  color: var(--po-bp-accent-text);
  font-size: 19px;
}

.po-business-profile__about p,
.po-business-profile__empty {
  margin: 10px 0 0;
  color: var(--po-bp-muted);
  font-size: 15px;
  line-height: 1.65;
}

.po-business-profile__projects,
.po-business-profile__people-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.po-business-profile__project,
.po-business-profile__people-grid article,
.po-business-profile__people-grid a,
.po-business-profile__contact-list a {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--po-bp-line);
  border-radius: 17px;
  background: var(--po-bp-card);
  color: var(--po-bp-text);
  text-decoration: none;
  text-align: left;
  overflow: hidden;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.po-business-profile__project:hover,
.po-business-profile__project:focus-within,
.po-business-profile__people-grid a:hover,
.po-business-profile__people-grid a:focus-visible,
.po-business-profile__contact-list a:hover,
.po-business-profile__contact-list a:focus-visible {
  border-color: var(--po-bp-accent);
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .14);
}

.po-business-profile__project-thumb,
.po-business-profile__project-placeholder {
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 13px;
  object-fit: cover;
  background: rgba(var(--po-bp-accent-rgb), .10);
  color: var(--po-bp-accent-text);
}

.po-business-profile__project-thumb {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease;
}

.po-business-profile__project-thumb[data-po-thumb-state="playing"],
.po-business-profile__project-thumb[data-po-thumb-state="loading_playback"] {
  box-shadow: 0 0 0 2px rgba(var(--po-bp-accent-rgb), .52), 0 9px 24px rgba(0, 0, 0, .28);
}

.po-business-profile__project-thumb--static {
  cursor: default;
}

.po-business-profile__project-thumb > img,
.po-business-profile__project-thumb > .po-business-profile__project-placeholder {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  object-fit: cover;
}

.po-business-profile__project-thumb > .po-business-profile__project-placeholder {
  display: grid;
  place-items: center;
}

.po-business-profile__project-thumb:focus-visible {
  outline: 2px solid var(--po-bp-accent);
  outline-offset: 2px;
}

.po-business-profile__project-copy,
.po-business-profile__people-grid span {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 3px;
  text-align: left;
}

.po-business-profile__project-copy {
  flex: 1 1 auto;
  align-self: stretch;
  color: inherit;
  text-decoration: none;
}

.po-business-profile__project-copy:focus-visible {
  outline: none;
}

.po-business-profile__project-copy strong,
.po-business-profile__people-grid strong {
  overflow: hidden;
  color: var(--po-bp-text);
  font-size: 14px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.po-business-profile__project-kicker {
  color: var(--po-bp-accent-text);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .07em;
  line-height: 1.2;
  text-transform: uppercase;
}

.po-business-profile__project--featured {
  grid-column: 1 / -1;
  min-height: 132px;
  padding: 16px;
  background:
    linear-gradient(120deg, rgba(var(--po-bp-accent-rgb), .14), transparent 55%),
    var(--po-bp-card);
}

.po-business-profile__project--featured .po-business-profile__project-thumb,
.po-business-profile__project--featured .po-business-profile__project-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 18px;
}

.po-business-profile__project--featured .po-business-profile__project-copy strong {
  font-size: clamp(17px, 2.6vw, 23px);
}

.po-business-profile__project--featured .po-business-profile__project-copy small {
  font-size: 12px;
}

.po-business-profile__project-copy small,
.po-business-profile__people-grid small {
  overflow: hidden;
  color: var(--po-bp-muted);
  font-size: 11px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.po-business-profile__people-grid img {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  display: block;
  border-radius: 14px;
  object-fit: cover;
  background: rgba(var(--po-bp-accent-rgb), .10);
}

.po-business-profile__person-avatar {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  display: grid !important;
  place-items: center;
  border: 1px solid var(--po-bp-line);
  border-radius: 50%;
  background: rgba(var(--po-bp-accent-rgb), .12);
  color: var(--po-bp-accent-text);
  font-size: 18px;
  font-weight: 900;
}

.po-business-profile__person-avatar--team {
  border-radius: 14px;
}

.po-business-profile__person img {
  border-radius: 50%;
}

.po-business-profile__contact-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.po-business-profile__contact-list a {
  min-height: 72px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 4px;
  text-align: left;
}

.po-business-profile__contact-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--po-bp-accent-text);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.po-business-profile__contact-label svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.po-business-profile__contact-label span {
  color: inherit;
  font: inherit;
}

.po-business-profile__contact-list strong {
  overflow: hidden;
  color: var(--po-bp-text);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.po-business-profile__cta {
  margin: 0;
  padding: clamp(24px, 4vw, 38px) clamp(22px, 5vw, 54px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--po-bp-line);
  background: linear-gradient(110deg, rgba(var(--po-bp-accent-rgb), .16), rgba(var(--po-bp-accent-rgb), .035));
  text-align: left;
}

.po-business-profile__cta > span {
  color: var(--po-bp-muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.po-business-profile__cta > a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 14px;
  background: var(--po-bp-accent);
  color: var(--po-bp-on-accent);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  text-decoration: none;
  text-align: center;
}

.po-business-profile__cta > a:hover,
.po-business-profile__cta > a:focus-visible {
  box-shadow: 0 0 0 4px rgba(var(--po-bp-accent-rgb), .18);
  outline: 2px solid var(--po-bp-accent-text);
  outline-offset: 2px;
}

.po-business-profile__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px clamp(28px, 5vw, 54px) 30px;
  color: var(--po-bp-muted);
  font-size: 12px;
  font-weight: 700;
}

.po-business-profile__footer a {
  color: var(--po-bp-accent-text);
  font-weight: 850;
  text-decoration: none;
}

@media (max-width: 720px) {
  .po-business-public-page__shell {
    padding: 0;
  }

  .po-business-profile {
    min-height: 100vh;
    border-width: 0;
    border-radius: 0;
  }

  .po-business-profile__hero {
    min-height: 230px;
    padding: 64px 18px 24px;
  }

  .po-business-profile__identity {
    align-items: flex-start;
    gap: 15px;
  }

  .po-business-profile__logo {
    width: 82px;
    height: 82px;
    border-radius: 21px;
  }

  .po-business-profile__identity h1 {
    margin-top: 4px;
  }

  .po-business-profile__tagline {
    margin-bottom: 9px;
  }

  .po-business-profile__hero-actions {
    top: 15px;
    right: 15px;
    left: 15px;
  }

  .po-business-profile__share span {
    display: none;
  }

  .po-business-profile__share {
    padding: 0;
  }

  .po-business-profile__section {
    margin: 0;
    padding: 24px 18px;
    border-radius: 0;
  }

  .po-business-profile__about {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .po-business-profile__projects,
  .po-business-profile__people-grid,
  .po-business-profile__contact-list {
    grid-template-columns: 1fr;
  }

  .po-business-profile__footer {
    padding: 8px 20px 24px;
  }

  .po-business-profile__project--featured {
    min-height: 108px;
    padding: 12px;
  }

  .po-business-profile__project--featured .po-business-profile__project-thumb,
  .po-business-profile__project--featured .po-business-profile__project-placeholder {
    width: 78px;
    height: 78px;
    border-radius: 15px;
  }

  .po-business-profile__cta {
    align-items: stretch;
    flex-direction: column;
    padding: 24px 18px;
  }

  .po-business-profile__cta > a {
    width: 100%;
  }

  .po-business-profile-context {
    margin: 10px 10px 0;
    width: calc(100% - 20px);
    flex-wrap: wrap;
    border-radius: 15px;
  }

  .po-business-profile-context__visibility {
    order: -1;
    width: 100%;
    margin-left: 0;
  }

  .po-business-profile-context a {
    flex: 1 1 calc(50% - 4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .po-business-profile__project,
  .po-business-profile__project-thumb {
    transition: none;
  }
}
