/**
 * Public company profile showcase styles.
 */
:root {
  --shop-primary: #8931a1;
  --shop-secondary: #a92176;
  --shop-accent: #6366f1;
  --shop-gradient: linear-gradient(135deg, #8931a1 0%, #a92176 50%, #6366f1 100%);
  --shop-text: #0f172a;
  --shop-text-muted: #64748b;
  --shop-surface: #f8fafc;
  --shop-white: #ffffff;
  --shop-radius: 16px;
  --shop-shadow: 0 12px 30px -8px rgba(137, 49, 161, 0.22);
}

.shop-public {
  font-family: "Reddit Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--shop-text);
  background: var(--shop-surface);
  min-height: 100vh;
  padding-bottom: 3rem;
}

.shop-public a {
  color: var(--shop-primary);
  text-decoration: none;
  font-weight: 600;
}

.shop-public a:hover {
  color: var(--shop-secondary);
}

.shop-banner {
  position: relative;
  width: 100%;
  min-height: 220px;
  max-height: 340px;
  overflow: hidden;
  background: var(--shop-gradient);
}

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

.shop-banner-title {
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%) rotate(-11deg);
  color: rgba(255, 255, 255, 0.14);
  font-size: clamp(5.2rem, 19vw, 14rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 0.95;
  pointer-events: none;
  user-select: none;
}

.shop-banner-placeholder {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.12);
  font-size: clamp(5.8rem, 21vw, 16rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transform: rotate(-11deg) translateY(14px);
  user-select: none;
  text-align: center;
  line-height: 0.95;
}

.shop-contact-bar {
  width: 100%;
  margin: 0;
  padding: 0.85rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.9rem;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(76, 29, 149, 0.14);
  border-bottom: 1px solid rgba(76, 29, 149, 0.14);
  background: #fff;
}

.shop-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(137, 49, 161, 0.2);
  border-radius: 999px;
  background: #fff;
  padding: 0.35rem 0.7rem;
  color: #3b136f !important;
  font-size: 0.82rem;
  font-weight: 700;
}

.shop-contact-static {
  color: #3b136f !important;
}

.shop-brand {
  text-align: left;
  margin-top: 0;
  padding: 1rem 1rem 1rem;
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  align-items: start;
}

.shop-brand-main {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(137, 49, 161, 0.15);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.shop-brand-head {
  display: grid;
  grid-template-columns: 102px 1fr;
  gap: 0.95rem;
  align-items: center;
}

.shop-brand-copy {
  min-width: 0;
}

.shop-logo-wrap {
  display: inline-block;
  width: 102px;
  height: 102px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--shop-white);
  box-shadow: var(--shop-shadow);
  background: var(--shop-white);
}

.shop-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shop-logo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--shop-gradient);
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

.shop-name {
  font-size: 1.85rem;
  font-weight: 800;
  margin: 0 0 0.3rem;
  color: var(--shop-text);
}

.shop-tagline {
  font-size: 1rem;
  color: var(--shop-text-muted);
  max-width: 680px;
  margin: 0;
}

.shop-highlights {
  margin: 0;
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-column: 1 / -1;
}

.shop-highlight {
  background: var(--shop-white);
  border: 1px solid rgba(137, 49, 161, 0.15);
  border-radius: 12px;
  padding: 0.75rem 0.7rem;
  box-shadow: 0 3px 12px rgba(15, 23, 42, 0.06);
}

.shop-highlight-value {
  font-size: 1.08rem;
  font-weight: 800;
  color: #4c1d95;
}

.shop-highlight-label {
  font-size: 0.78rem;
  color: var(--shop-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.shop-company-wrap,
.shop-focus-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.3rem 1rem 0.8rem;
}

.shop-company-wrap h2,
.shop-focus-wrap h2 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.9rem;
  background: var(--shop-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shop-company-description {
  font-size: 1.01rem;
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

.shop-story {
  font-size: 1.03rem;
  line-height: 1.7;
  color: var(--shop-text);
  white-space: pre-line;
}

.shop-focus-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.shop-focus-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  background: rgba(137, 49, 161, 0.09);
  border: 1px solid rgba(137, 49, 161, 0.2);
  color: #4c1d95;
  border-radius: 999px;
  padding: 0.35rem 0.72rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.shop-roles-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem 2rem;
}

.shop-roles-wrap h2 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 1.15rem;
  text-align: center;
  color: var(--shop-text);
}

.shop-roles-list {
  display: grid;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.shop-role-card {
  background: var(--shop-white);
  border-radius: var(--shop-radius);
  padding: 1.2rem 1.3rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(137, 49, 161, 0.12);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.shop-role-card:hover {
  box-shadow: var(--shop-shadow);
  transform: translateY(-2px);
}

.shop-role-title {
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  color: var(--shop-text);
}

.shop-role-meta {
  font-size: 0.9rem;
  color: var(--shop-text-muted);
  margin-bottom: 0.32rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.shop-role-tags {
  margin-top: 0.4rem;
}

.shop-role-type {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: var(--shop-gradient);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}

.shop-roles-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--shop-text-muted);
  font-size: 1rem;
}

.shop-cta-wrap {
  text-align: center;
  padding: 1.8rem 1rem;
}

.shop-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff !important;
  background: linear-gradient(135deg, #6b21a8 0%, #be185d 100%);
  border: none;
  box-shadow: 0 10px 24px rgba(137, 49, 161, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.shop-cta-btn:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(137, 49, 161, 0.32);
}

@media (min-width: 768px) {
  .shop-banner {
    min-height: 280px;
    max-height: 390px;
  }

  .shop-brand { margin-top: 0; }

  .shop-logo-wrap {
    width: 120px;
    height: 120px;
  }

  .shop-name {
    font-size: 2rem;
  }

  .shop-company-wrap,
  .shop-focus-wrap,
  .shop-roles-wrap {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .shop-roles-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .shop-roles-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .shop-brand {
    grid-template-columns: 1fr;
    text-align: center;
    margin-top: 0;
  }

  .shop-brand-main {
    text-align: center;
  }

  .shop-brand-head {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .shop-tagline {
    margin: 0 auto;
  }

  .shop-contact-bar {
    justify-content: center;
  }

  .shop-highlights {
    grid-template-columns: 1fr;
  }

  .shop-banner-title {
    font-size: clamp(3.2rem, 16vw, 8.4rem);
    top: 58%;
  }
}
