:root {
  /* Social HR visual identity — sky blue primary */
  --shr-sky: #38b6e8;
  --shr-sky-dark: #1a9fd4;
  --shr-sky-soft: #e8f4fa;
  --shr-teal: #14b8a6;
  --shr-navy: #0f2744;
  --shr-ink: #0f2744;
  --shr-slate: #3d4f66;
  --shr-muted: #6b7a90;
  --shr-white: #ffffff;
  --shr-paper: #f5fafd;
  --shr-mist: #e8f4fa;
  --shr-star: #f5c518;
  --shr-danger: #dc2626;
  --shr-success: #16a34a;
  --shr-gold: #d4a017;
  --shr-yellow: var(--shr-star);
  --shr-ai-deep: #0a2740;

  /* Landing aliases → sky identity */
  --shr-brand: var(--shr-sky);
  --shr-brand-dark: var(--shr-sky-dark);
  --shr-brand-soft: var(--shr-sky-soft);
  --shr-ember: var(--shr-sky);
  --shr-gray: var(--shr-mist);

  --shr-radius: 14px;
  --shr-radius-sm: 12px;
  --shr-radius-lg: 22px;
  --shr-shadow: 0 8px 30px rgba(15, 39, 68, 0.08);
  --shr-shadow-hover: 0 14px 36px rgba(56, 182, 232, 0.22);
  --shr-font-ui: "DM Sans", "Manrope", system-ui, sans-serif;
  --shr-font-display: "Outfit", "DM Sans", system-ui, sans-serif;
  --shr-font-mono: "JetBrains Mono", ui-monospace, monospace;
  --shr-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --z-sticky: 40;
  --shr-wrap: min(1180px, calc(100% - 2.5rem));
}

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

html {
  scroll-behavior: smooth;
}

body.shr-body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--shr-font-ui);
  color: var(--shr-slate);
  background: var(--shr-white);
  line-height: 1.6;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--shr-brand-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--shr-brand);
}

h1,
h2,
h3 {
  font-family: var(--shr-font-display);
  color: var(--shr-ink);
  text-wrap: balance;
  line-height: 1.15;
  margin: 0 0 0.65rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

p {
  text-wrap: pretty;
  max-width: 62ch;
}

.shr-mono {
  font-family: var(--shr-font-mono);
  font-size: 0.9em;
}

.shr-wrap {
  width: var(--shr-wrap);
  margin-inline: auto;
}

.shr-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ---- Brand ---- */
.shr-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--shr-font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--shr-ink);
  text-decoration: none;
  letter-spacing: -0.03em;
}

.shr-brand:hover {
  color: var(--shr-ink);
}

.shr-brand__mark {
  width: 2.15rem;
  height: 2.15rem;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 0;
}

.shr-brand__accent {
  color: var(--shr-brand);
}

/* ---- Buttons ---- */
.shr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.35rem;
  border-radius: var(--shr-radius);
  border: 1.5px solid transparent;
  font-family: var(--shr-font-ui);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms var(--shr-ease), background 180ms var(--shr-ease),
    color 180ms var(--shr-ease), border-color 180ms var(--shr-ease),
    box-shadow 180ms var(--shr-ease);
}

.shr-btn--pill {
  border-radius: 999px;
}

.shr-btn:focus-visible {
  outline: 2px solid var(--shr-brand);
  outline-offset: 2px;
}

.shr-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shr-shadow-hover);
}

.shr-btn--primary,
.shr-btn--ember {
  background: var(--shr-brand);
  color: var(--shr-white);
}

.shr-btn--primary:hover,
.shr-btn--ember:hover {
  background: var(--shr-brand-dark);
  color: var(--shr-white);
}

.shr-btn--secondary,
.shr-btn--ghost {
  background: var(--shr-white);
  border-color: color-mix(in srgb, var(--shr-ink) 16%, transparent);
  color: var(--shr-ink);
}

.shr-btn--secondary:hover,
.shr-btn--ghost:hover {
  background: var(--shr-paper);
  border-color: var(--shr-ink);
  color: var(--shr-ink);
}

.shr-btn--soft {
  background: var(--shr-mist);
  border-color: transparent;
  color: var(--shr-ink);
}

.shr-btn--soft:hover {
  background: var(--shr-brand-soft);
  color: var(--shr-ink);
}

.shr-btn--light {
  background: var(--shr-white);
  color: var(--shr-ink);
}

.shr-btn--light:hover {
  background: var(--shr-brand-soft);
  color: var(--shr-ink);
}

.shr-btn--teal {
  background: var(--shr-brand);
  color: var(--shr-white);
}

.shr-btn--danger {
  background: var(--shr-danger);
  color: var(--shr-white);
}

.shr-btn--small {
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
}

/* ---- Top nav ---- */
.shr-top {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: color-mix(in srgb, var(--shr-white) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid color-mix(in srgb, var(--shr-ink) 6%, transparent);
}

.shr-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.shr-nav-panel {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.shr-nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.shr-nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--shr-slate);
}

.shr-nav-links a:hover {
  color: var(--shr-brand-dark);
}

.shr-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.shr-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--shr-mist);
  border-radius: 0.75rem;
  background: var(--shr-white);
  cursor: pointer;
}

.shr-nav-toggle__bar {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin-inline: auto;
  background: var(--shr-ink);
  border-radius: 2px;
}

/* ---- Hero ---- */
.shr-hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 3.25rem;
  text-align: center;
}

.shr-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.shr-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.shr-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(247, 249, 251, 0.88) 55%,
    #ffffff 100%
  );
}

.shr-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 1.15rem;
}

.shr-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--shr-white);
  border: 1px solid color-mix(in srgb, var(--shr-ink) 8%, transparent);
  box-shadow: var(--shr-shadow);
  font-size: 0.88rem;
  color: var(--shr-slate);
}

.shr-rating-pill__stars {
  color: var(--shr-star);
  letter-spacing: 0.05em;
}

.shr-hero__title {
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  max-width: 16ch;
  margin: 0.25rem 0 0;
}

.shr-hero__lead {
  margin: 0;
  font-size: 1.1rem;
  color: var(--shr-slate);
  max-width: 48ch;
}

.shr-hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.shr-checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 1.5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.95rem;
  color: var(--shr-ink);
  font-weight: 600;
}

.shr-checks li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.shr-checks li::before {
  content: "";
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 999px;
  background: var(--shr-brand) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' d='M3.5 8.2l2.8 2.8 6.2-6.2'/%3E%3C/svg%3E") center / 0.7rem no-repeat;
  flex-shrink: 0;
}

.shr-checks--start {
  justify-content: flex-start;
}

/* ---- Trust marquee ---- */
.shr-trust {
  padding: 1.5rem 0 2.5rem;
  overflow: hidden;
}

.shr-trust__label {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--shr-muted);
  max-width: none;
}

.shr-marquee {
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.shr-marquee__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: shr-marquee 28s linear infinite;
  color: var(--shr-muted);
  font-family: var(--shr-font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.shr-marquee__track span {
  white-space: nowrap;
}

@keyframes shr-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- AI section ---- */
.shr-ai {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  color: #e8f6f4;
}

.shr-ai__bg {
  position: absolute;
  inset: 0;
}

.shr-ai__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shr-ai__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 39, 64, 0.94), rgba(26, 159, 212, 0.72));
}

.shr-ai__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.shr-ai__visual {
  margin: 0;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.shr-ai__copy h2 {
  color: var(--shr-white);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.shr-ai__copy > p {
  color: rgba(232, 246, 244, 0.88);
  max-width: 42ch;
}

.shr-ai__points {
  margin: 1.25rem 0 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.shr-ai__points li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
}

.shr-ai__points li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--shr-brand);
  box-shadow: 0 0 0 4px rgba(56, 182, 232, 0.25);
}

.shr-eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--shr-brand-dark);
}

.shr-eyebrow--light {
  color: #9ad8f5;
}

/* ---- Sections ---- */
.shr-section {
  padding: 5rem 0;
}

.shr-section--soft {
  background: var(--shr-paper);
}

.shr-section__head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.shr-section__head h2 {
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.shr-section__lead {
  margin: 0.75rem auto 0;
  color: var(--shr-slate);
  max-width: 54ch;
}

.shr-modules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.shr-module {
  padding: 1.35rem 1.25rem;
  border-radius: var(--shr-radius-lg);
  background: var(--shr-white);
  border: 1px solid color-mix(in srgb, var(--shr-ink) 7%, transparent);
  box-shadow: 0 4px 18px rgba(28, 36, 52, 0.04);
  transition: transform 180ms var(--shr-ease), box-shadow 180ms var(--shr-ease),
    border-color 180ms var(--shr-ease);
}

.shr-module:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--shr-brand) 35%, transparent);
  box-shadow: var(--shr-shadow);
}

.shr-module h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.shr-module p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--shr-slate);
}

/* ---- Regions ---- */
.shr-regions {
  display: grid;
  gap: 1.25rem;
}

.shr-regions__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.shr-regions__tabs button {
  border: 1px solid color-mix(in srgb, var(--shr-ink) 10%, transparent);
  background: var(--shr-white);
  color: var(--shr-slate);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font: inherit;
  font-weight: 650;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 160ms var(--shr-ease), color 160ms var(--shr-ease),
    border-color 160ms var(--shr-ease);
}

.shr-regions__tabs button.is-active,
.shr-regions__tabs button:hover {
  background: var(--shr-brand);
  border-color: var(--shr-brand);
  color: var(--shr-white);
}

.shr-regions__panels {
  background: var(--shr-white);
  border-radius: var(--shr-radius-lg);
  border: 1px solid color-mix(in srgb, var(--shr-ink) 7%, transparent);
  padding: 2rem;
  box-shadow: var(--shr-shadow);
}

.shr-region h3 {
  font-size: 1.45rem;
}

.shr-region ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.shr-region li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  color: var(--shr-slate);
}

.shr-region li::before {
  content: "✓";
  color: var(--shr-brand);
  font-weight: 800;
}

/* ---- Media split ---- */
.shr-split-media {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  align-items: center;
}

.shr-split-media--reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.shr-split-media--reverse > :first-child {
  order: 0;
}

.shr-media-frame {
  margin: 0;
  border-radius: 1.35rem;
  overflow: hidden;
  background: var(--shr-white);
  border: 1px solid color-mix(in srgb, var(--shr-ink) 7%, transparent);
  box-shadow: var(--shr-shadow);
}

.shr-media-frame--phone {
  max-width: 360px;
  margin-inline: auto;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.shr-media-frame--phone img {
  border-radius: 1.5rem;
  box-shadow: var(--shr-shadow);
}

/* ---- Reviews / stats ---- */
.shr-reviews,
.shr-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.shr-review,
.shr-stats article {
  background: var(--shr-white);
  border: 1px solid color-mix(in srgb, var(--shr-ink) 7%, transparent);
  border-radius: var(--shr-radius-lg);
  padding: 1.5rem;
  box-shadow: 0 4px 18px rgba(28, 36, 52, 0.04);
}

.shr-review__score,
.shr-stats__num {
  font-family: var(--shr-font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--shr-brand);
  margin: 0;
  letter-spacing: -0.03em;
}

.shr-review__label,
.shr-stats__label {
  margin: 0.2rem 0 0.75rem;
  font-weight: 700;
  color: var(--shr-ink);
}

.shr-review p:last-child {
  margin: 0;
  color: var(--shr-slate);
}

.shr-stats article {
  text-align: center;
}

.shr-stats__label {
  margin-bottom: 0;
}

/* ---- CTA band ---- */
.shr-cta-band {
  padding: 3.5rem 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(56, 182, 232, 0.4), transparent 45%),
    linear-gradient(135deg, #0a2740, #1a9fd4 55%, #38b6e8);
  color: var(--shr-white);
}

.shr-cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.shr-cta-band h2 {
  color: var(--shr-white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.4rem;
}

.shr-cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  max-width: 40ch;
}

/* ---- Footer ---- */
.shr-footer {
  padding: 2rem 0;
  background: var(--shr-ink);
  color: rgba(255, 255, 255, 0.72);
}

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

.shr-footer .shr-brand {
  color: var(--shr-white);
}

.shr-footer p {
  margin: 0;
  font-size: 0.9rem;
  max-width: none;
}

.shr-footer__links {
  display: flex;
  gap: 1rem;
}

.shr-footer__links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-weight: 600;
}

.shr-footer__links a:hover {
  color: #9ad8f5;
}

/* ---- Auth ---- */
.shr-auth {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
  background:
    radial-gradient(circle at top right, rgba(56, 182, 232, 0.16), transparent 40%),
    var(--shr-paper);
}

.shr-auth__panel {
  width: min(420px, 100%);
  background: var(--shr-white);
  border: 1px solid color-mix(in srgb, var(--shr-ink) 8%, transparent);
  border-radius: var(--shr-radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shr-shadow);
}

.shr-auth__panel h1 {
  font-size: 1.65rem;
  margin-top: 1.25rem;
}

.shr-auth__panel .shr-lead {
  margin: 0 0 1.25rem;
  color: var(--shr-slate);
}

.shr-form {
  display: grid;
  gap: 1rem;
}

.shr-field {
  display: grid;
  gap: 0.35rem;
}

.shr-field label {
  font-weight: 650;
  font-size: 0.9rem;
  color: var(--shr-ink);
}

.shr-field input,
.shr-field select,
.shr-field textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid color-mix(in srgb, var(--shr-ink) 14%, transparent);
  border-radius: var(--shr-radius-sm);
  background: var(--shr-white);
  font: inherit;
  color: var(--shr-slate);
  transition: border-color 160ms var(--shr-ease), box-shadow 160ms var(--shr-ease);
}

.shr-field input:focus,
.shr-field select:focus,
.shr-field textarea:focus {
  outline: none;
  border-color: var(--shr-brand);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--shr-brand) 22%, transparent);
}

.shr-help {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--shr-slate) 75%, transparent);
}

.shr-errorlist {
  margin: 0;
  padding: 0.75rem 1rem;
  list-style: none;
  background: color-mix(in srgb, var(--shr-danger) 8%, var(--shr-white));
  border: 1px solid color-mix(in srgb, var(--shr-danger) 30%, transparent);
  border-radius: var(--shr-radius-sm);
  color: var(--shr-danger);
}

.shr-field .errorlist {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--shr-danger);
  font-size: 0.85rem;
}

.shr-messages {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.shr-flash {
  padding: 0.75rem 1rem;
  border-radius: var(--shr-radius-sm);
  background: var(--shr-mist);
  border: 1px solid color-mix(in srgb, var(--shr-brand) 18%, transparent);
}

.shr-flash--success {
  background: color-mix(in srgb, var(--shr-success) 10%, var(--shr-white));
  border-color: color-mix(in srgb, var(--shr-success) 28%, transparent);
  color: var(--shr-success);
}

.shr-flash--error {
  background: color-mix(in srgb, var(--shr-danger) 8%, var(--shr-white));
  border-color: color-mix(in srgb, var(--shr-danger) 28%, transparent);
  color: var(--shr-danger);
}

/* ---- Dashboard (legacy public templates) ---- */
.shr-dash-body {
  background: var(--shr-paper);
}

.shr-dash-top {
  background: var(--shr-white);
  color: var(--shr-ink);
  border-bottom: 1px solid color-mix(in srgb, var(--shr-brand) 14%, transparent);
  box-shadow: var(--shr-shadow);
}

.shr-dash-top .shr-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.shr-dash-top .shr-brand {
  color: var(--shr-ink);
}

.shr-dash-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9rem;
}

.shr-dash-meta a {
  color: var(--shr-brand-dark);
  text-decoration: none;
  font-weight: 600;
}

.shr-dash-meta a:hover {
  color: var(--shr-brand);
}

.shr-dash-main {
  padding: 2rem 0 3rem;
}

.shr-panel {
  background: var(--shr-white);
  border: 1px solid color-mix(in srgb, var(--shr-ink) 8%, transparent);
  border-radius: var(--shr-radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shr-shadow);
}

.shr-panel__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.shr-panel__head h1 {
  font-family: var(--shr-font-ui);
  font-size: 1.45rem;
  margin: 0;
}

.shr-table-wrap {
  overflow-x: auto;
}

.shr-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.shr-table th,
.shr-table td {
  text-align: left;
  padding: 0.85rem 0.65rem;
  border-bottom: 1px solid var(--shr-mist);
  vertical-align: middle;
}

.shr-table th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: color-mix(in srgb, var(--shr-slate) 70%, transparent);
}

.shr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.shr-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--shr-mist);
  color: var(--shr-ink);
  text-transform: lowercase;
}

.shr-pill--active {
  background: color-mix(in srgb, var(--shr-success) 16%, var(--shr-white));
  color: var(--shr-success);
}

.shr-pill--trial {
  background: color-mix(in srgb, var(--shr-star) 28%, var(--shr-white));
  color: #8a6d00;
}

.shr-pill--suspended,
.shr-pill--cancelled,
.shr-pill--past_due {
  background: color-mix(in srgb, var(--shr-danger) 12%, var(--shr-white));
  color: var(--shr-danger);
}

.shr-empty {
  padding: 2rem 0.5rem;
  color: color-mix(in srgb, var(--shr-slate) 75%, transparent);
}

.shr-preview {
  margin-top: 0.25rem;
  padding: 0.65rem 0.8rem;
  background: var(--shr-mist);
  border-radius: var(--shr-radius-sm);
}

.shr-form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.shr-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .shr-modules {
    grid-template-columns: repeat(2, 1fr);
  }

  .shr-ai__grid,
  .shr-split-media,
  .shr-split-media--reverse {
    grid-template-columns: 1fr;
  }

  .shr-reviews,
  .shr-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .shr-nav-toggle {
    display: inline-flex;
  }

  .shr-nav-panel {
    position: absolute;
    top: calc(100% + 0.35rem);
    right: 1.25rem;
    left: 1.25rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
    background: var(--shr-white);
    border: 1px solid color-mix(in srgb, var(--shr-ink) 8%, transparent);
    border-radius: var(--shr-radius-lg);
    box-shadow: var(--shr-shadow);
  }

  .shr-nav-panel.is-open {
    display: flex;
  }

  .shr-nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .shr-nav-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .shr-top {
    position: sticky;
  }

  .shr-top__inner {
    position: relative;
  }

  .shr-checks {
    flex-direction: column;
    align-items: flex-start;
  }

  .shr-hero {
    padding-top: 3rem;
    text-align: left;
  }

  .shr-hero__content {
    justify-items: start;
  }

  .shr-hero__cta {
    justify-content: flex-start;
  }

  .shr-modules {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .shr-marquee__track,
  .shr-btn,
  .shr-module {
    animation: none !important;
    transition: none !important;
  }
}
