/**
 * Marketing product mocks — simplified UI for homepage visuals
 */

.m-shot {
  --m-shot-scale: 1;
  font-size: calc(1rem * var(--m-shot-scale));
}

.m-shot__frame {
  background: var(--sbc-surface);
  border: 1px solid var(--sbc-border);
  border-radius: var(--sbc-radius-lg);
  box-shadow: var(--sbc-shadow-lg);
  padding: var(--sbc-space-5);
  overflow: hidden;
}

.m-shot__focus {
  outline: 2px solid var(--sbc-accent-muted);
  outline-offset: 2px;
  border-radius: var(--sbc-radius-sm);
}

.m-shot__label {
  font-size: 0.6875rem;
  font-weight: var(--sbc-weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sbc-text-muted);
  margin-bottom: var(--sbc-space-3);
}

.m-shot__header {
  display: flex;
  align-items: center;
  gap: var(--sbc-space-4);
  margin-bottom: var(--sbc-space-4);
}

.m-shot__avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--sbc-accent-soft);
  color: var(--sbc-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: var(--sbc-weight-bold);
  flex-shrink: 0;
}

.m-shot__name {
  font-size: 1.25rem;
  font-weight: var(--sbc-weight-semibold);
  letter-spacing: -0.02em;
  color: var(--sbc-text);
  line-height: 1.2;
}

.m-shot__role {
  font-size: 0.9375rem;
  color: var(--sbc-text-secondary);
  margin-top: 0.125rem;
}

.m-shot__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sbc-space-2);
  list-style: none;
  margin: 0 0 var(--sbc-space-4);
  padding: 0;
}

.m-shot__tags li {
  font-size: 0.8125rem;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  background: var(--sbc-bg-subtle);
  color: var(--sbc-text-secondary);
  border: 1px solid var(--sbc-border);
}

.m-shot__block {
  margin-bottom: var(--sbc-space-4);
  padding: var(--sbc-space-3);
}

.m-shot__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--sbc-text-secondary);
}

.m-shot__guide {
  padding: var(--sbc-space-3);
}

.m-shot__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sbc-space-4);
}

.m-shot__col-title {
  font-size: 0.8125rem;
  font-weight: var(--sbc-weight-semibold);
  margin-bottom: var(--sbc-space-2);
}

.m-shot__col-title--do {
  color: var(--sbc-success);
}

.m-shot__col-title--dont {
  color: var(--sbc-destructive);
}

.m-shot__col ul {
  margin: 0;
  padding-left: 1.125rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--sbc-text);
}

.m-shot__col li + li {
  margin-top: 0.25rem;
}

/* Journal mock */
.m-shot__journal-meta {
  font-size: 0.8125rem;
  color: var(--sbc-text-muted);
  margin-bottom: var(--sbc-space-3);
}

.m-shot__journal-body {
  background: var(--sbc-bg-subtle);
  border-radius: var(--sbc-radius-sm);
  padding: var(--sbc-space-4);
  border: 1px solid var(--sbc-border);
}

.m-shot__journal-body p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--sbc-text);
}

.m-shot__journal-body p + p {
  margin-top: 0.375rem;
}

/* Schedule mock */
.m-shot__schedule-card {
  display: flex;
  gap: var(--sbc-space-4);
  align-items: flex-start;
  background: var(--sbc-accent-soft);
  border: 1px solid var(--sbc-accent-muted);
  border-radius: var(--sbc-radius-sm);
  padding: var(--sbc-space-4);
}

.m-shot__schedule-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--sbc-radius-sm);
  background: var(--sbc-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sbc-accent);
  flex-shrink: 0;
}

.m-shot__schedule-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.m-shot__schedule-event {
  font-size: 1.0625rem;
  font-weight: var(--sbc-weight-semibold);
  color: var(--sbc-text);
  line-height: 1.3;
}

.m-shot__schedule-action {
  font-size: 0.9375rem;
  color: var(--sbc-accent);
  margin-top: 0.25rem;
}

.m-shot__schedule-meta {
  font-size: 0.8125rem;
  color: var(--sbc-text-muted);
  margin-top: var(--sbc-space-2);
}

/* Variants */
.m-shot--mobile {
  max-width: 20rem;
  margin-inline: auto;
}

.m-shot--mobile .m-shot__cols {
  grid-template-columns: 1fr;
}

.m-shot--compact .m-shot__tags {
  display: none;
}

.m-shot--mini .m-shot__frame {
  padding: var(--sbc-space-4);
  box-shadow: var(--sbc-shadow-md);
}

.m-shot--mini .m-shot__text {
  font-size: 0.8125rem;
}

.m-shot--dossier {
  --m-shot-scale: 1.05;
}

.m-shot--journal,
.m-shot--schedule,
.m-shot--prime {
  --m-shot-scale: 1.08;
}

/* Hero variant — story-driven marketing compositions */
.m-shot--hero {
  --m-shot-scale: 1.25;
}

.m-shot--hero .m-shot__frame {
  box-shadow:
    0 16px 48px rgba(20, 24, 32, 0.1),
    0 4px 12px rgba(20, 24, 32, 0.06);
}

.m-shot--hero .m-shot__avatar {
  width: 3.5rem;
  height: 3.5rem;
  font-size: 1.375rem;
}

.m-shot--hero .m-shot__name {
  font-size: 1.5rem;
}

.m-shot--hero .m-shot__text {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--sbc-text);
}

.m-shot--hero .m-shot__col ul {
  font-size: 1.0625rem;
}

.m-shot--hero .m-shot__col-title {
  font-size: 0.9375rem;
}

.m-shot--hero .m-shot__guide .m-shot__focus,
.m-shot--hero .m-shot__block.m-shot__focus {
  outline: none;
}

.m-shot--hero .m-shot__col--do {
  background: var(--sbc-success-soft);
  border-radius: var(--sbc-radius-sm);
  padding: var(--sbc-space-3);
  box-shadow: 0 0 0 1px rgba(15, 118, 110, 0.15);
}

.m-shot--hero .m-shot__col--dont {
  background: var(--sbc-destructive-soft);
  border-radius: var(--sbc-radius-sm);
  padding: var(--sbc-space-3);
  box-shadow: 0 0 0 1px rgba(180, 35, 24, 0.12);
}

/* Fade secondary UI when guide is the hero focus */
.m-shot--hero.m-shot--focus-guide .m-shot__header,
.m-shot--hero.m-shot--focus-guide .m-shot__tags,
.m-shot--hero.m-shot--focus-guide .m-shot__block {
  opacity: 0.35;
  filter: blur(0.5px);
  transition: opacity var(--sbc-transition), filter var(--sbc-transition);
}

/* Fade secondary UI when summary is the hero focus */
.m-shot--hero.m-shot--focus-summary .m-shot__header,
.m-shot--hero.m-shot--focus-summary .m-shot__tags,
.m-shot--hero.m-shot--focus-summary .m-shot__guide {
  opacity: 0.35;
  filter: blur(0.5px);
  transition: opacity var(--sbc-transition), filter var(--sbc-transition);
}

.m-shot--hero.m-shot--focus-summary .m-shot__block {
  background: var(--sbc-accent-soft);
  border-radius: var(--sbc-radius-sm);
  padding: var(--sbc-space-4);
  box-shadow: 0 0 0 1px rgba(43, 89, 195, 0.12);
}

/* Journal hero */
.m-shot--journal.m-shot--hero .m-shot__label {
  opacity: 0.35;
  filter: blur(0.5px);
}

.m-shot--journal.m-shot--hero .m-shot__journal-meta {
  opacity: 0.35;
}

.m-shot--journal.m-shot--hero .m-shot__journal-body p {
  font-size: 1.125rem;
  line-height: 1.6;
}

.m-shot--journal.m-shot--hero .m-shot__journal-body {
  padding: var(--sbc-space-5);
  border-color: var(--sbc-accent-muted);
  background: var(--sbc-surface);
  box-shadow: 0 0 0 1px rgba(43, 89, 195, 0.08);
}

/* Schedule hero */
.m-shot--schedule.m-shot--hero .m-shot__label {
  opacity: 0.35;
  filter: blur(0.5px);
}

.m-shot--schedule.m-shot--hero .m-shot__schedule-event {
  font-size: 1.25rem;
}

.m-shot--schedule.m-shot--hero .m-shot__schedule-action {
  font-size: 1.0625rem;
  font-weight: var(--sbc-weight-medium);
}

.m-shot--schedule.m-shot--hero .m-shot__schedule-card {
  padding: var(--sbc-space-5);
  box-shadow: 0 0 0 1px rgba(43, 89, 195, 0.15);
}

/* Prime briefing hero mock */
.m-shot--prime.m-shot--hero {
  --m-shot-scale: 1.2;
}

.m-shot__prime-sheet {
  padding: var(--sbc-space-6);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.m-shot__prime-header {
  display: flex;
  gap: var(--sbc-space-4);
  align-items: center;
  margin-bottom: var(--sbc-space-5);
}

.m-shot__prime-eyebrow {
  font-size: 0.75rem;
  font-weight: var(--sbc-weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sbc-accent);
  margin-bottom: 0.25rem;
}

.m-shot__prime-read {
  font-size: 0.875rem;
  color: var(--sbc-text-muted);
  margin-top: 0.25rem;
}

.m-shot__prime-summary {
  margin-bottom: var(--sbc-space-5);
  background: var(--sbc-accent-soft);
  border-radius: var(--sbc-radius-sm);
  padding: var(--sbc-space-4);
  box-shadow: 0 0 0 1px rgba(43, 89, 195, 0.1);
}

.m-shot__prime-guide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sbc-space-3);
  margin-bottom: var(--sbc-space-5);
}

.m-shot__prime-col {
  border-radius: var(--sbc-radius-sm);
  padding: var(--sbc-space-3);
}

.m-shot__prime-col ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9375rem;
  line-height: 1.45;
}

.m-shot__prime-col--topics {
  background: var(--sbc-surface-muted);
  box-shadow: 0 0 0 1px var(--sbc-border);
}

.m-shot__prime-col--dos {
  background: var(--sbc-success-soft);
  box-shadow: 0 0 0 1px rgba(15, 118, 110, 0.15);
}

.m-shot__prime-col--donts {
  background: var(--sbc-destructive-soft);
  box-shadow: 0 0 0 1px rgba(180, 35, 24, 0.12);
}

.m-shot--prime.m-shot--hero .m-shot__prime-col ul {
  font-size: 1rem;
}

.m-shot__prime-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--sbc-radius-md);
  background: var(--sbc-accent);
  color: #fff;
  font-weight: var(--sbc-weight-semibold);
  font-size: 0.9375rem;
}

@media (max-width: 640px) {
  .m-shot__cols {
    grid-template-columns: 1fr;
  }

  .m-shot--dossier:not(.m-shot--hero) {
    --m-shot-scale: 1;
  }

  .m-shot--hero {
    --m-shot-scale: 1.05;
  }
}
